Files
google-security-research/analysis/kernel/util
Jordy Zomer 7fd621c4fe Upload results from 6.6 (#80)
* remove anonymous structs

Signed-off-by: Jordy Zomer <jordyzomer@google.com>

* Result from 6.6 with syzkaller config.

Signed-off-by: Jordy Zomer <jordyzomer@google.com>

---------

Signed-off-by: Jordy Zomer <jordyzomer@google.com>
2024-01-22 15:33:47 +01:00
..
2024-01-22 15:33:47 +01:00
2024-01-22 13:59:18 +01:00

Description

This repository contains CodeQL utility queries designed to analyze the Linux kernel source code.

Queries

syscalls.ql

Identifies system calls within the Linux kernel codebase and extracts relevant parameters for each syscall.

Functions.ql

Identifies within the Linux kernel codebase and extracts their file, start-line and end-line.

Fields.ql

Identifies fields within the Linux kernel codebase and extracts their parent struct, their name, their type, their offset and if they might be interesting.

Run query

codeql query run $query -d=$database --threads=$(nproc) -o output.bqrs

Export results

codeql bqrs decode output.bqrs --format=csv > syscalls.csv 

Note: in the results directory you will find some results of a previous run.