codeql/ql
dependabot[bot] de84dddfc1
Merge pull request #12495 from github/dependabot/cargo/ql/serde-1.0.155
2023-03-13 11:32:03 +00:00
..
.vscode QL: move .vscode folder inside the ql subfolder 2021-12-14 14:39:03 +01:00
autobuilder QL: Make the JSON parser a bit more robust 2023-02-22 13:45:47 +00:00
buramu Bump rayon from 1.6.1 to 1.7.0 in /ql 2023-03-06 04:18:21 +00:00
extractor Bump rayon from 1.6.1 to 1.7.0 in /ql 2023-03-06 04:18:21 +00:00
generator QL: Make the JSON parser a bit more robust 2023-02-22 13:45:47 +00:00
node-types Ruby/QL: only create dbscheme case-splits for columns on defining tables 2022-11-23 10:00:08 +00:00
ql Merge pull request #12292 from github/calumgrant/aggregate-domain 2023-02-27 14:19:20 +00:00
scripts Use upstream `tree-sitter-ql` 2022-08-11 12:31:52 +02:00
tools QL: add --working-dir to qltest.cmd to fix qltest 2023-01-16 15:37:14 +01:00
.gitattributes QL: move .git files into the ql/ folder 2021-12-15 12:25:08 +01:00
.gitignore QL: move .git files into the ql/ folder 2021-12-15 12:25:08 +01:00
Cargo.lock Merge pull request #12495 from github/dependabot/cargo/ql/serde-1.0.155 2023-03-13 11:32:03 +00:00
Cargo.toml QL: Add tool for extracting blame info 2023-02-17 13:20:06 +00:00
README.md move create-extractor-pack to a `scripts` folder 2022-06-19 20:09:31 +02:00
codeql-extractor.yml Specify language names in extractor packs 2022-12-23 13:15:04 +00:00
rust-toolchain.toml QL: Add tool for extracting blame info 2023-02-17 13:20:06 +00:00

README.md

QL for QL

QL for QL is a CodeQL analysis designed to find common bug patterns in QL code.
This analysis is mostly used as a PR check in github/codeql.
QL for QL is experimental technology and not a supported product.

This directory contains the extractor, CodeQL libraries, and queries that power QL for QL.

Some setup is required to use QL for QL (see the below sections).

Building the tools from source

Install Rust (if using VSCode, you may also want the rust-analyzer extension), then run:

cargo build --release

Generating the database schema and QL library

The generated ql/src/ql.dbscheme and ql/src/codeql_ql/ast/internal/TreeSitter.qll files are included in the repository, but they can be re-generated as follows:

./scripts/create-extractor-pack.sh

Building a CodeQL database for a QL program

First, get an extractor pack:

Run ./scripts/create-extractor-pack.sh (Linux/Mac) or .\scripts\create-extractor-pack.ps1 (Windows PowerShell) and the pack will be created in the extractor-pack directory.

Then run

codeql database create <database-path> -l ql -s <project-source-path> --search-path <extractor-pack-path>

CodeQL can be configured to remember the extractor by setting the config file ~/.config/codeql/config to:

--search-path /full/path/to/extractor-pack

Running qltests

Run

codeql test run <test-path> --search-path <repository-root-path>