mirror of
https://github.com/github/codeql.git
synced 2026-07-06 03:55:30 +02:00
Compare commits
1 Commits
codeql-cli
...
dbartol/ja
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
85cfb83f32 |
2
.bazelrc
2
.bazelrc
@@ -1,4 +1,5 @@
|
|||||||
common --enable_platform_specific_config
|
common --enable_platform_specific_config
|
||||||
|
common --enable_bzlmod
|
||||||
# because we use --override_module with `%workspace%`, the lock file is not stable
|
# because we use --override_module with `%workspace%`, the lock file is not stable
|
||||||
common --lockfile_mode=off
|
common --lockfile_mode=off
|
||||||
|
|
||||||
@@ -23,5 +24,6 @@ common --registry=file:///%workspace%/misc/bazel/registry
|
|||||||
common --registry=https://bcr.bazel.build
|
common --registry=https://bcr.bazel.build
|
||||||
|
|
||||||
common --@rules_dotnet//dotnet/settings:strict_deps=false
|
common --@rules_dotnet//dotnet/settings:strict_deps=false
|
||||||
|
common --experimental_isolated_extension_usages
|
||||||
|
|
||||||
try-import %workspace%/local.bazelrc
|
try-import %workspace%/local.bazelrc
|
||||||
|
|||||||
@@ -8,3 +8,4 @@ common --registry=https://bcr.bazel.build
|
|||||||
# its implementation packages without providing any code itself.
|
# its implementation packages without providing any code itself.
|
||||||
# We either can depend on internal implementation details, or turn of strict deps.
|
# We either can depend on internal implementation details, or turn of strict deps.
|
||||||
common --@rules_dotnet//dotnet/settings:strict_deps=false
|
common --@rules_dotnet//dotnet/settings:strict_deps=false
|
||||||
|
common --experimental_isolated_extension_usages
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
8.0.0rc1
|
5f5d70b6c4d2fb1a889479569107f1692239e8a7
|
||||||
|
|||||||
2
.github/codeql/codeql-config.yml
vendored
2
.github/codeql/codeql-config.yml
vendored
@@ -9,5 +9,3 @@ paths-ignore:
|
|||||||
- '/python/'
|
- '/python/'
|
||||||
- '/javascript/ql/test'
|
- '/javascript/ql/test'
|
||||||
- '/javascript/extractor/tests'
|
- '/javascript/extractor/tests'
|
||||||
- '/rust/ql/test'
|
|
||||||
- '/rust/ql/integration-tests'
|
|
||||||
|
|||||||
4
.github/labeler.yml
vendored
4
.github/labeler.yml
vendored
@@ -38,10 +38,6 @@ Swift:
|
|||||||
- swift/**/*
|
- swift/**/*
|
||||||
- change-notes/**/*swift*
|
- change-notes/**/*swift*
|
||||||
|
|
||||||
Actions:
|
|
||||||
- actions/**/*
|
|
||||||
- change-notes/**/*actions*
|
|
||||||
|
|
||||||
documentation:
|
documentation:
|
||||||
- "**/*.qhelp"
|
- "**/*.qhelp"
|
||||||
- "**/*.md"
|
- "**/*.md"
|
||||||
|
|||||||
2
.github/workflows/build-ripunzip.yml
vendored
2
.github/workflows/build-ripunzip.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04, macos-13, windows-2019]
|
os: [ubuntu-20.04, macos-12, windows-2019]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
|||||||
- name: Setup dotnet
|
- name: Setup dotnet
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: 9.0.100
|
dotnet-version: 8.0.101
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
2
.github/workflows/cpp-swift-analysis.yml
vendored
2
.github/workflows/cpp-swift-analysis.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
|||||||
- name: "Build Swift extractor using Bazel"
|
- name: "Build Swift extractor using Bazel"
|
||||||
run: |
|
run: |
|
||||||
bazel clean --expunge
|
bazel clean --expunge
|
||||||
bazel run //swift:install --nouse_action_cache --noremote_accept_cached --noremote_upload_local_results --spawn_strategy=local
|
bazel run //swift:create-extractor-pack --nouse_action_cache --noremote_accept_cached --noremote_upload_local_results --spawn_strategy=local
|
||||||
bazel shutdown
|
bazel shutdown
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
|
|||||||
10
.github/workflows/csharp-qltest.yml
vendored
10
.github/workflows/csharp-qltest.yml
vendored
@@ -39,14 +39,14 @@ jobs:
|
|||||||
- name: Setup dotnet
|
- name: Setup dotnet
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: 9.0.100
|
dotnet-version: 8.0.101
|
||||||
- name: Extractor unit tests
|
- name: Extractor unit tests
|
||||||
run: |
|
run: |
|
||||||
dotnet tool restore
|
dotnet tool restore
|
||||||
dotnet test -p:RuntimeFrameworkVersion=9.0.0 extractor/Semmle.Util.Tests
|
dotnet test -p:RuntimeFrameworkVersion=8.0.1 extractor/Semmle.Util.Tests
|
||||||
dotnet test -p:RuntimeFrameworkVersion=9.0.0 extractor/Semmle.Extraction.Tests
|
dotnet test -p:RuntimeFrameworkVersion=8.0.1 extractor/Semmle.Extraction.Tests
|
||||||
dotnet test -p:RuntimeFrameworkVersion=9.0.0 autobuilder/Semmle.Autobuild.CSharp.Tests
|
dotnet test -p:RuntimeFrameworkVersion=8.0.1 autobuilder/Semmle.Autobuild.CSharp.Tests
|
||||||
dotnet test -p:RuntimeFrameworkVersion=9.0.0 autobuilder/Semmle.Autobuild.Cpp.Tests
|
dotnet test -p:RuntimeFrameworkVersion=8.0.1 autobuilder/Semmle.Autobuild.Cpp.Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
stubgentest:
|
stubgentest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
4
.github/workflows/csv-coverage-metrics.yml
vendored
4
.github/workflows/csv-coverage-metrics.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
DATABASE="${{ runner.temp }}/java-database"
|
DATABASE="${{ runner.temp }}/java-database"
|
||||||
codeql database analyze --format=sarif-latest --output=metrics-java.sarif -- "$DATABASE" ./java/ql/src/Metrics/Summaries/FrameworkCoverage.ql
|
codeql database analyze --format=sarif-latest --output=metrics-java.sarif -- "$DATABASE" ./java/ql/src/Metrics/Summaries/FrameworkCoverage.ql
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: metrics-java.sarif
|
name: metrics-java.sarif
|
||||||
path: metrics-java.sarif
|
path: metrics-java.sarif
|
||||||
@@ -64,7 +64,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
DATABASE="${{ runner.temp }}/csharp-database"
|
DATABASE="${{ runner.temp }}/csharp-database"
|
||||||
codeql database analyze --format=sarif-latest --output=metrics-csharp.sarif -- "$DATABASE" ./csharp/ql/src/Metrics/Summaries/FrameworkCoverage.ql
|
codeql database analyze --format=sarif-latest --output=metrics-csharp.sarif -- "$DATABASE" ./csharp/ql/src/Metrics/Summaries/FrameworkCoverage.ql
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: metrics-csharp.sarif
|
name: metrics-csharp.sarif
|
||||||
path: metrics-csharp.sarif
|
path: metrics-csharp.sarif
|
||||||
|
|||||||
10
.github/workflows/csv-coverage-pr-artifacts.yml
vendored
10
.github/workflows/csv-coverage-pr-artifacts.yml
vendored
@@ -71,21 +71,21 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python base/misc/scripts/library-coverage/compare-folders.py out_base out_merge comparison.md
|
python base/misc/scripts/library-coverage/compare-folders.py out_base out_merge comparison.md
|
||||||
- name: Upload CSV package list
|
- name: Upload CSV package list
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: csv-framework-coverage-merge
|
name: csv-framework-coverage-merge
|
||||||
path: |
|
path: |
|
||||||
out_merge/framework-coverage-*.csv
|
out_merge/framework-coverage-*.csv
|
||||||
out_merge/framework-coverage-*.rst
|
out_merge/framework-coverage-*.rst
|
||||||
- name: Upload CSV package list
|
- name: Upload CSV package list
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: csv-framework-coverage-base
|
name: csv-framework-coverage-base
|
||||||
path: |
|
path: |
|
||||||
out_base/framework-coverage-*.csv
|
out_base/framework-coverage-*.csv
|
||||||
out_base/framework-coverage-*.rst
|
out_base/framework-coverage-*.rst
|
||||||
- name: Upload comparison results
|
- name: Upload comparison results
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comparison
|
name: comparison
|
||||||
path: |
|
path: |
|
||||||
@@ -97,7 +97,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
PR_NUMBER: ${{ github.event.pull_request.number }}
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
- name: Upload PR number
|
- name: Upload PR number
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: pr
|
name: pr
|
||||||
path: pr/
|
path: pr/
|
||||||
@@ -117,7 +117,7 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
PR_NUMBER: ${{ github.event.pull_request.number }}
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
- name: Upload comment ID (if it exists)
|
- name: Upload comment ID (if it exists)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comment
|
name: comment
|
||||||
path: comment/
|
path: comment/
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python script/misc/scripts/library-coverage/generate-timeseries.py codeqlModels
|
python script/misc/scripts/library-coverage/generate-timeseries.py codeqlModels
|
||||||
- name: Upload timeseries CSV
|
- name: Upload timeseries CSV
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: framework-coverage-timeseries
|
name: framework-coverage-timeseries
|
||||||
path: framework-coverage-timeseries-*.csv
|
path: framework-coverage-timeseries-*.csv
|
||||||
|
|||||||
4
.github/workflows/csv-coverage.yml
vendored
4
.github/workflows/csv-coverage.yml
vendored
@@ -34,12 +34,12 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python script/misc/scripts/library-coverage/generate-report.py ci codeqlModels script
|
python script/misc/scripts/library-coverage/generate-report.py ci codeqlModels script
|
||||||
- name: Upload CSV package list
|
- name: Upload CSV package list
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: framework-coverage-csv
|
name: framework-coverage-csv
|
||||||
path: framework-coverage-*.csv
|
path: framework-coverage-*.csv
|
||||||
- name: Upload RST package list
|
- name: Upload RST package list
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: framework-coverage-rst
|
name: framework-coverage-rst
|
||||||
path: framework-coverage-*.rst
|
path: framework-coverage-*.rst
|
||||||
|
|||||||
16
.github/workflows/mad_modelDiff.yml
vendored
16
.github/workflows/mad_modelDiff.yml
vendored
@@ -38,20 +38,14 @@ jobs:
|
|||||||
path: codeql-main
|
path: codeql-main
|
||||||
ref: main
|
ref: main
|
||||||
- uses: ./codeql-main/.github/actions/fetch-codeql
|
- uses: ./codeql-main/.github/actions/fetch-codeql
|
||||||
# compute the shortname of the project that does not contain any special (disk) characters
|
|
||||||
- run: |
|
|
||||||
echo "SHORTNAME=${SLUG//[^a-zA-Z0-9_]/}" >> $GITHUB_OUTPUT
|
|
||||||
env:
|
|
||||||
SLUG: ${{ matrix.slug }}
|
|
||||||
id: shortname
|
|
||||||
- name: Download database
|
- name: Download database
|
||||||
env:
|
env:
|
||||||
SLUG: ${{ matrix.slug }}
|
SLUG: ${{ matrix.slug }}
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
SHORTNAME: ${{ steps.shortname.outputs.SHORTNAME }}
|
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
mkdir lib-dbs
|
mkdir lib-dbs
|
||||||
|
SHORTNAME=${SLUG//[^a-zA-Z0-9_]/}
|
||||||
gh api -H "Accept: application/zip" "/repos/${SLUG}/code-scanning/codeql/databases/java" > "$SHORTNAME.zip"
|
gh api -H "Accept: application/zip" "/repos/${SLUG}/code-scanning/codeql/databases/java" > "$SHORTNAME.zip"
|
||||||
unzip -q -d "${SHORTNAME}-db" "${SHORTNAME}.zip"
|
unzip -q -d "${SHORTNAME}-db" "${SHORTNAME}.zip"
|
||||||
mkdir "lib-dbs/$SHORTNAME/"
|
mkdir "lib-dbs/$SHORTNAME/"
|
||||||
@@ -99,14 +93,14 @@ jobs:
|
|||||||
name="diff_${basename/.model.yml/""}"
|
name="diff_${basename/.model.yml/""}"
|
||||||
(diff -w -u $m $t | diff2html -i stdin -F $MODELS/$name.html) || true
|
(diff -w -u $m $t | diff2html -i stdin -F $MODELS/$name.html) || true
|
||||||
done
|
done
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: models-${{ steps.shortname.outputs.SHORTNAME }}
|
name: models
|
||||||
path: tmp-models/**/**/*.model.yml
|
path: tmp-models/**/**/*.model.yml
|
||||||
retention-days: 20
|
retention-days: 20
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: diffs-${{ steps.shortname.outputs.SHORTNAME }}
|
name: diffs
|
||||||
path: tmp-models/*.html
|
path: tmp-models/*.html
|
||||||
# An html file is only produced if the generated models differ.
|
# An html file is only produced if the generated models differ.
|
||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
|
|||||||
2
.github/workflows/mad_regenerate-models.yml
vendored
2
.github/workflows/mad_regenerate-models.yml
vendored
@@ -59,7 +59,7 @@ jobs:
|
|||||||
find java -name "*.model.yml" -print0 | xargs -0 git add
|
find java -name "*.model.yml" -print0 | xargs -0 git add
|
||||||
git status
|
git status
|
||||||
git diff --cached > models.patch
|
git diff --cached > models.patch
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: patch
|
name: patch
|
||||||
path: models.patch
|
path: models.patch
|
||||||
|
|||||||
7
.github/workflows/post-pr-comment.yml
vendored
7
.github/workflows/post-pr-comment.yml
vendored
@@ -17,11 +17,8 @@ jobs:
|
|||||||
post_comment:
|
post_comment:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download artifact
|
||||||
run: |
|
run: gh run download "${WORKFLOW_RUN_ID}" --repo "${GITHUB_REPOSITORY}" --name "comment"
|
||||||
gh run download "${WORKFLOW_RUN_ID}" --repo "${GITHUB_REPOSITORY}" --name "comment-pr-number"
|
|
||||||
gh run download "${WORKFLOW_RUN_ID}" --repo "${GITHUB_REPOSITORY}" --name "comment-body"
|
|
||||||
gh run download "${WORKFLOW_RUN_ID}" --repo "${GITHUB_REPOSITORY}" --name "comment-id"
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
|
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
|
||||||
|
|||||||
12
.github/workflows/qhelp-pr-preview.yml
vendored
12
.github/workflows/qhelp-pr-preview.yml
vendored
@@ -36,9 +36,9 @@ jobs:
|
|||||||
- run: echo "${PR_NUMBER}" > pr_number.txt
|
- run: echo "${PR_NUMBER}" > pr_number.txt
|
||||||
env:
|
env:
|
||||||
PR_NUMBER: ${{ github.event.number }}
|
PR_NUMBER: ${{ github.event.number }}
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comment-pr-number
|
name: comment
|
||||||
path: pr_number.txt
|
path: pr_number.txt
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
@@ -78,9 +78,9 @@ jobs:
|
|||||||
exit "${EXIT_CODE}"
|
exit "${EXIT_CODE}"
|
||||||
|
|
||||||
- if: ${{ !cancelled() }}
|
- if: ${{ !cancelled() }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comment-body
|
name: comment
|
||||||
path: comment_body.txt
|
path: comment_body.txt
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
@@ -94,9 +94,9 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
PR_NUMBER: ${{ github.event.number }}
|
PR_NUMBER: ${{ github.event.number }}
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comment-id
|
name: comment
|
||||||
path: comment_id.txt
|
path: comment_id.txt
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|||||||
4
.github/workflows/ql-for-ql-build.yml
vendored
4
.github/workflows/ql-for-ql-build.yml
vendored
@@ -75,7 +75,7 @@ jobs:
|
|||||||
sarif_file: ql-for-ql.sarif
|
sarif_file: ql-for-ql.sarif
|
||||||
category: ql-for-ql
|
category: ql-for-ql
|
||||||
- name: Sarif as artifact
|
- name: Sarif as artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ql-for-ql.sarif
|
name: ql-for-ql.sarif
|
||||||
path: ql-for-ql.sarif
|
path: ql-for-ql.sarif
|
||||||
@@ -84,7 +84,7 @@ jobs:
|
|||||||
mkdir split-sarif
|
mkdir split-sarif
|
||||||
node ./ql/scripts/split-sarif.js ql-for-ql.sarif split-sarif
|
node ./ql/scripts/split-sarif.js ql-for-ql.sarif split-sarif
|
||||||
- name: Upload langs as artifacts
|
- name: Upload langs as artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ql-for-ql-langs
|
name: ql-for-ql-langs
|
||||||
path: split-sarif
|
path: split-sarif
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ jobs:
|
|||||||
"${CODEQL}" dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ql"
|
"${CODEQL}" dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ql"
|
||||||
env:
|
env:
|
||||||
CODEQL: ${{ steps.find-codeql.outputs.codeql-path }}
|
CODEQL: ${{ steps.find-codeql.outputs.codeql-path }}
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: measurements
|
name: measurements
|
||||||
path: stats
|
path: stats
|
||||||
@@ -76,14 +76,14 @@ jobs:
|
|||||||
needs: measure
|
needs: measure
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: measurements
|
name: measurements
|
||||||
path: stats
|
path: stats
|
||||||
- run: |
|
- run: |
|
||||||
python -m pip install --user lxml
|
python -m pip install --user lxml
|
||||||
find stats -name 'stats.xml' -print0 | sort -z | xargs -0 python ruby/scripts/merge_stats.py --output ql/ql/src/ql.dbscheme.stats --normalise ql_tokeninfo
|
find stats -name 'stats.xml' -print0 | sort -z | xargs -0 python ruby/scripts/merge_stats.py --output ql/ql/src/ql.dbscheme.stats --normalise ql_tokeninfo
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ql.dbscheme.stats
|
name: ql.dbscheme.stats
|
||||||
path: ql/ql/src/ql.dbscheme.stats
|
path: ql/ql/src/ql.dbscheme.stats
|
||||||
|
|||||||
2
.github/workflows/query-list.yml
vendored
2
.github/workflows/query-list.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
|
python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
|
||||||
- name: Upload code scanning query list
|
- name: Upload code scanning query list
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: code-scanning-query-list
|
name: code-scanning-query-list
|
||||||
path: code-scanning-query-list.csv
|
path: code-scanning-query-list.csv
|
||||||
|
|||||||
24
.github/workflows/ruby-build.yml
vendored
24
.github/workflows/ruby-build.yml
vendored
@@ -92,17 +92,17 @@ jobs:
|
|||||||
- name: Generate dbscheme
|
- name: Generate dbscheme
|
||||||
if: ${{ matrix.os == 'ubuntu-latest' && steps.cache-extractor.outputs.cache-hit != 'true'}}
|
if: ${{ matrix.os == 'ubuntu-latest' && steps.cache-extractor.outputs.cache-hit != 'true'}}
|
||||||
run: ../target/release/codeql-extractor-ruby generate --dbscheme ql/lib/ruby.dbscheme --library ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
|
run: ../target/release/codeql-extractor-ruby generate --dbscheme ql/lib/ruby.dbscheme --library ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
if: ${{ matrix.os == 'ubuntu-latest' }}
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
||||||
with:
|
with:
|
||||||
name: ruby.dbscheme
|
name: ruby.dbscheme
|
||||||
path: ruby/ql/lib/ruby.dbscheme
|
path: ruby/ql/lib/ruby.dbscheme
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
if: ${{ matrix.os == 'ubuntu-latest' }}
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
||||||
with:
|
with:
|
||||||
name: TreeSitter.qll
|
name: TreeSitter.qll
|
||||||
path: ruby/ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
|
path: ruby/ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: extractor-${{ matrix.os }}
|
name: extractor-${{ matrix.os }}
|
||||||
path: |
|
path: |
|
||||||
@@ -134,7 +134,7 @@ jobs:
|
|||||||
PACK_FOLDER=$(readlink -f "$PACKS"/codeql/ruby-queries/*)
|
PACK_FOLDER=$(readlink -f "$PACKS"/codeql/ruby-queries/*)
|
||||||
codeql generate query-help --format=sarifv2.1.0 --output="${PACK_FOLDER}/rules.sarif" ql/src
|
codeql generate query-help --format=sarifv2.1.0 --output="${PACK_FOLDER}/rules.sarif" ql/src
|
||||||
(cd ql/src; find queries \( -name '*.qhelp' -o -name '*.rb' -o -name '*.erb' \) -exec bash -c 'mkdir -p "'"${PACK_FOLDER}"'/$(dirname "{}")"' \; -exec cp "{}" "${PACK_FOLDER}/{}" \;)
|
(cd ql/src; find queries \( -name '*.qhelp' -o -name '*.rb' -o -name '*.erb' \) -exec bash -c 'mkdir -p "'"${PACK_FOLDER}"'/$(dirname "{}")"' \; -exec cp "{}" "${PACK_FOLDER}/{}" \;)
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codeql-ruby-queries
|
name: codeql-ruby-queries
|
||||||
path: |
|
path: |
|
||||||
@@ -147,19 +147,19 @@ jobs:
|
|||||||
needs: [build, compile-queries]
|
needs: [build, compile-queries]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ruby.dbscheme
|
name: ruby.dbscheme
|
||||||
path: ruby/ruby
|
path: ruby/ruby
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: extractor-ubuntu-latest
|
name: extractor-ubuntu-latest
|
||||||
path: ruby/linux64
|
path: ruby/linux64
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: extractor-windows-latest
|
name: extractor-windows-latest
|
||||||
path: ruby/win64
|
path: ruby/win64
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: extractor-macos-latest
|
name: extractor-macos-latest
|
||||||
path: ruby/osx64
|
path: ruby/osx64
|
||||||
@@ -172,13 +172,13 @@ jobs:
|
|||||||
cp win64/codeql-extractor-ruby.exe ruby/tools/win64/extractor.exe
|
cp win64/codeql-extractor-ruby.exe ruby/tools/win64/extractor.exe
|
||||||
chmod +x ruby/tools/{linux64,osx64}/extractor
|
chmod +x ruby/tools/{linux64,osx64}/extractor
|
||||||
zip -rq codeql-ruby.zip ruby
|
zip -rq codeql-ruby.zip ruby
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codeql-ruby-pack
|
name: codeql-ruby-pack
|
||||||
path: ruby/codeql-ruby.zip
|
path: ruby/codeql-ruby.zip
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
include-hidden-files: true
|
include-hidden-files: true
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codeql-ruby-queries
|
name: codeql-ruby-queries
|
||||||
path: ruby/qlpacks
|
path: ruby/qlpacks
|
||||||
@@ -190,7 +190,7 @@ jobs:
|
|||||||
]
|
]
|
||||||
}' > .codeqlmanifest.json
|
}' > .codeqlmanifest.json
|
||||||
zip -rq codeql-ruby-bundle.zip .codeqlmanifest.json ruby qlpacks
|
zip -rq codeql-ruby-bundle.zip .codeqlmanifest.json ruby qlpacks
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codeql-ruby-bundle
|
name: codeql-ruby-bundle
|
||||||
path: ruby/codeql-ruby-bundle.zip
|
path: ruby/codeql-ruby-bundle.zip
|
||||||
@@ -214,7 +214,7 @@ jobs:
|
|||||||
uses: ./.github/actions/fetch-codeql
|
uses: ./.github/actions/fetch-codeql
|
||||||
|
|
||||||
- name: Download Ruby bundle
|
- name: Download Ruby bundle
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: codeql-ruby-bundle
|
name: codeql-ruby-bundle
|
||||||
path: ${{ runner.temp }}
|
path: ${{ runner.temp }}
|
||||||
|
|||||||
9
.github/workflows/ruby-dataset-measure.yml
vendored
9
.github/workflows/ruby-dataset-measure.yml
vendored
@@ -52,9 +52,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
mkdir -p "stats/${{ matrix.repo }}"
|
mkdir -p "stats/${{ matrix.repo }}"
|
||||||
codeql dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ruby"
|
codeql dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ruby"
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: measurements-${{ hashFiles('stats/**') }}
|
name: measurements
|
||||||
path: stats
|
path: stats
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
@@ -63,13 +63,14 @@ jobs:
|
|||||||
needs: measure
|
needs: measure
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
name: measurements
|
||||||
path: stats
|
path: stats
|
||||||
- run: |
|
- run: |
|
||||||
python -m pip install --user lxml
|
python -m pip install --user lxml
|
||||||
find stats -name 'stats.xml' | sort | xargs python ruby/scripts/merge_stats.py --output ruby/ql/lib/ruby.dbscheme.stats --normalise ruby_tokeninfo
|
find stats -name 'stats.xml' | sort | xargs python ruby/scripts/merge_stats.py --output ruby/ql/lib/ruby.dbscheme.stats --normalise ruby_tokeninfo
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ruby.dbscheme.stats
|
name: ruby.dbscheme.stats
|
||||||
path: ruby/ql/lib/ruby.dbscheme.stats
|
path: ruby/ql/lib/ruby.dbscheme.stats
|
||||||
|
|||||||
64
.github/workflows/rust-analysis.yml
vendored
64
.github/workflows/rust-analysis.yml
vendored
@@ -1,64 +0,0 @@
|
|||||||
name: "Code scanning - Rust"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- 'rc/*'
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- 'rc/*'
|
|
||||||
paths:
|
|
||||||
- '**/*.rs'
|
|
||||||
- '**/Cargo.toml'
|
|
||||||
- '.github/codeql/codeql-config.yml'
|
|
||||||
- '.github/workflows/rust-analysis.yml'
|
|
||||||
schedule:
|
|
||||||
- cron: '0 9 * * 1'
|
|
||||||
|
|
||||||
env:
|
|
||||||
CODEQL_ENABLE_EXPERIMENTAL_FEATURES: "true"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
language: [ 'rust' ]
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
pull-requests: read
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Query latest nightly CodeQL bundle
|
|
||||||
shell: bash
|
|
||||||
id: codeql
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
|
||||||
run: |
|
|
||||||
REPO=dsp-testing/codeql-cli-nightlies
|
|
||||||
TAG=$(
|
|
||||||
gh release list -R $REPO -L1 --exclude-drafts --json tagName -q ".[] | .tagName"
|
|
||||||
)
|
|
||||||
echo "nightly_bundle=https://github.com/$REPO/releases/download/$TAG/codeql-bundle-linux64.tar.zst" \
|
|
||||||
| tee -a "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@main
|
|
||||||
with:
|
|
||||||
tools: ${{ steps.codeql.outputs.nightly_bundle }}
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
config-file: ./.github/codeql/codeql-config.yml
|
|
||||||
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@main
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@main
|
|
||||||
6
.github/workflows/swift.yml
vendored
6
.github/workflows/swift.yml
vendored
@@ -44,7 +44,7 @@ jobs:
|
|||||||
# without waiting for the macOS build
|
# without waiting for the macOS build
|
||||||
build-and-test-macos:
|
build-and-test-macos:
|
||||||
if: github.repository_owner == 'github'
|
if: github.repository_owner == 'github'
|
||||||
runs-on: macos-13-xlarge
|
runs-on: macos-12-xl
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./swift/actions/build-and-test
|
- uses: ./swift/actions/build-and-test
|
||||||
@@ -64,7 +64,7 @@ jobs:
|
|||||||
qltests-macos:
|
qltests-macos:
|
||||||
if: ${{ github.repository_owner == 'github' && github.event_name == 'pull_request' }}
|
if: ${{ github.repository_owner == 'github' && github.event_name == 'pull_request' }}
|
||||||
needs: build-and-test-macos
|
needs: build-and-test-macos
|
||||||
runs-on: macos-13-xlarge
|
runs-on: macos-12-xl
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./swift/actions/run-ql-tests
|
- uses: ./swift/actions/run-ql-tests
|
||||||
@@ -98,7 +98,7 @@ jobs:
|
|||||||
- name: Generate C++ files
|
- name: Generate C++ files
|
||||||
run: |
|
run: |
|
||||||
bazel run //swift/codegen:codegen -- --generate=trap,cpp --cpp-output=$PWD/generated-cpp-files
|
bazel run //swift/codegen:codegen -- --generate=trap,cpp --cpp-output=$PWD/generated-cpp-files
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: swift-generated-cpp-files
|
name: swift-generated-cpp-files
|
||||||
path: generated-cpp-files/**
|
path: generated-cpp-files/**
|
||||||
|
|||||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"omnisharp.autoStart": false,
|
"omnisharp.autoStart": false,
|
||||||
"cmake.sourceDirectory": "${workspaceFolder}/swift",
|
"cmake.sourceDirectory": "${workspaceFolder}/swift",
|
||||||
"cmake.buildDirectory": "${workspaceFolder}/bazel-cmake-build",
|
"cmake.buildDirectory": "${workspaceFolder}/bazel-cmake-build"
|
||||||
"editor.suggest.matchOnWordStartOnly": false
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1 @@
|
|||||||
exports_files([
|
exports_files(["LICENSE"])
|
||||||
"LICENSE",
|
|
||||||
"Cargo.lock",
|
|
||||||
"Cargo.toml",
|
|
||||||
])
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
/ql/ @github/codeql-ql-for-ql-reviewers
|
/ql/ @github/codeql-ql-for-ql-reviewers
|
||||||
|
|
||||||
# Bazel (excluding BUILD.bazel files)
|
# Bazel (excluding BUILD.bazel files)
|
||||||
|
WORKSPACE.bazel @github/codeql-ci-reviewers
|
||||||
MODULE.bazel @github/codeql-ci-reviewers
|
MODULE.bazel @github/codeql-ci-reviewers
|
||||||
.bazelversion @github/codeql-ci-reviewers
|
.bazelversion @github/codeql-ci-reviewers
|
||||||
.bazelrc @github/codeql-ci-reviewers
|
.bazelrc @github/codeql-ci-reviewers
|
||||||
|
|||||||
298
Cargo.lock
generated
298
Cargo.lock
generated
@@ -43,9 +43,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anstream"
|
name = "anstream"
|
||||||
version = "0.6.18"
|
version = "0.6.15"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstyle",
|
"anstyle",
|
||||||
"anstyle-parse",
|
"anstyle-parse",
|
||||||
@@ -58,43 +58,43 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anstyle"
|
name = "anstyle"
|
||||||
version = "1.0.10"
|
version = "1.0.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anstyle-parse"
|
name = "anstyle-parse"
|
||||||
version = "0.2.6"
|
version = "0.2.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
|
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"utf8parse",
|
"utf8parse",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anstyle-query"
|
name = "anstyle-query"
|
||||||
version = "1.1.2"
|
version = "1.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
|
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-sys 0.59.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anstyle-wincon"
|
name = "anstyle-wincon"
|
||||||
version = "3.0.6"
|
version = "3.0.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
|
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstyle",
|
"anstyle",
|
||||||
"windows-sys 0.59.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anyhow"
|
name = "anyhow"
|
||||||
version = "1.0.93"
|
version = "1.0.87"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
|
checksum = "10f00e1f6e58a40e807377c75c6a7f97bf9044fab57816f2414e6f5f4499d7b8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "argfile"
|
name = "argfile"
|
||||||
@@ -112,16 +112,6 @@ version = "0.7.6"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "ast-generator"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"itertools 0.10.5",
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"ungrammar",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atomic"
|
name = "atomic"
|
||||||
version = "0.6.0"
|
version = "0.6.0"
|
||||||
@@ -133,9 +123,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "autocfg"
|
name = "autocfg"
|
||||||
version = "1.4.0"
|
version = "1.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "base64"
|
name = "base64"
|
||||||
@@ -173,9 +163,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bytemuck"
|
name = "bytemuck"
|
||||||
version = "1.19.0"
|
version = "1.18.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d"
|
checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "byteorder"
|
name = "byteorder"
|
||||||
@@ -217,9 +207,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cc"
|
name = "cc"
|
||||||
version = "1.1.37"
|
version = "1.1.18"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf"
|
checksum = "b62ac837cdb5cb22e10a256099b4fc502b1dfe560cb282963a974d7abd80e476"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"shlex",
|
"shlex",
|
||||||
]
|
]
|
||||||
@@ -274,7 +264,7 @@ dependencies = [
|
|||||||
"chalk-derive",
|
"chalk-derive",
|
||||||
"chalk-ir",
|
"chalk-ir",
|
||||||
"ena",
|
"ena",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"petgraph",
|
"petgraph",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
@@ -298,9 +288,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "4.5.20"
|
version = "4.5.17"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
|
checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap_builder",
|
"clap_builder",
|
||||||
"clap_derive",
|
"clap_derive",
|
||||||
@@ -308,9 +298,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_builder"
|
name = "clap_builder"
|
||||||
version = "4.5.20"
|
version = "4.5.17"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
|
checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anstyle",
|
"anstyle",
|
||||||
@@ -320,9 +310,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_derive"
|
name = "clap_derive"
|
||||||
version = "4.5.18"
|
version = "4.5.13"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
|
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"heck 0.5.0",
|
"heck 0.5.0",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
@@ -384,22 +374,17 @@ dependencies = [
|
|||||||
"clap",
|
"clap",
|
||||||
"codeql-extractor",
|
"codeql-extractor",
|
||||||
"figment",
|
"figment",
|
||||||
"glob",
|
|
||||||
"itertools 0.13.0",
|
"itertools 0.13.0",
|
||||||
"log",
|
"log",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"ra_ap_base_db",
|
"ra_ap_base_db",
|
||||||
"ra_ap_cfg",
|
|
||||||
"ra_ap_hir",
|
"ra_ap_hir",
|
||||||
"ra_ap_hir_def",
|
"ra_ap_hir_def",
|
||||||
"ra_ap_hir_expand",
|
|
||||||
"ra_ap_ide_db",
|
"ra_ap_ide_db",
|
||||||
"ra_ap_intern",
|
|
||||||
"ra_ap_load-cargo",
|
"ra_ap_load-cargo",
|
||||||
"ra_ap_parser",
|
"ra_ap_parser",
|
||||||
"ra_ap_paths",
|
"ra_ap_paths",
|
||||||
"ra_ap_project_model",
|
"ra_ap_project_model",
|
||||||
"ra_ap_span",
|
|
||||||
"ra_ap_syntax",
|
"ra_ap_syntax",
|
||||||
"ra_ap_vfs",
|
"ra_ap_vfs",
|
||||||
"rust-extractor-macros",
|
"rust-extractor-macros",
|
||||||
@@ -411,9 +396,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "colorchoice"
|
name = "colorchoice"
|
||||||
version = "1.0.3"
|
version = "1.0.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "core-foundation-sys"
|
name = "core-foundation-sys"
|
||||||
@@ -634,7 +619,6 @@ dependencies = [
|
|||||||
"atomic",
|
"atomic",
|
||||||
"pear",
|
"pear",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_yaml",
|
|
||||||
"uncased",
|
"uncased",
|
||||||
"version_check",
|
"version_check",
|
||||||
]
|
]
|
||||||
@@ -659,9 +643,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "flate2"
|
name = "flate2"
|
||||||
version = "1.0.34"
|
version = "1.0.33"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crc32fast",
|
"crc32fast",
|
||||||
"miniz_oxide",
|
"miniz_oxide",
|
||||||
@@ -697,6 +681,16 @@ version = "0.4.7"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
|
checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "generate-schema"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"itertools 0.10.5",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"ungrammar",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "getrandom"
|
name = "getrandom"
|
||||||
version = "0.2.15"
|
version = "0.2.15"
|
||||||
@@ -708,12 +702,6 @@ dependencies = [
|
|||||||
"wasi",
|
"wasi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "glob"
|
|
||||||
version = "0.3.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "globset"
|
name = "globset"
|
||||||
version = "0.4.15"
|
version = "0.4.15"
|
||||||
@@ -723,8 +711,8 @@ dependencies = [
|
|||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
"bstr",
|
"bstr",
|
||||||
"log",
|
"log",
|
||||||
"regex-automata 0.4.8",
|
"regex-automata 0.4.7",
|
||||||
"regex-syntax 0.8.5",
|
"regex-syntax 0.8.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -739,12 +727,6 @@ version = "0.14.5"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hashbrown"
|
|
||||||
version = "0.15.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "heck"
|
name = "heck"
|
||||||
version = "0.4.1"
|
version = "0.4.1"
|
||||||
@@ -786,9 +768,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "iana-time-zone"
|
name = "iana-time-zone"
|
||||||
version = "0.1.61"
|
version = "0.1.60"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"android_system_properties",
|
"android_system_properties",
|
||||||
"core-foundation-sys",
|
"core-foundation-sys",
|
||||||
@@ -826,12 +808,12 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "indexmap"
|
name = "indexmap"
|
||||||
version = "2.6.0"
|
version = "2.5.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"equivalent",
|
"equivalent",
|
||||||
"hashbrown 0.15.1",
|
"hashbrown 0.14.5",
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -919,9 +901,9 @@ checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "js-sys"
|
name = "js-sys"
|
||||||
version = "0.3.72"
|
version = "0.3.70"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"wasm-bindgen",
|
"wasm-bindgen",
|
||||||
]
|
]
|
||||||
@@ -960,9 +942,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.162"
|
version = "0.2.158"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398"
|
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libredox"
|
name = "libredox"
|
||||||
@@ -977,9 +959,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "line-index"
|
name = "line-index"
|
||||||
version = "0.1.2"
|
version = "0.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
|
checksum = "67d61795376ae2683928c218fda7d7d7db136fd38c06b7552904667f0d55580a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
"text-size",
|
"text-size",
|
||||||
@@ -1123,9 +1105,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "once_cell"
|
name = "once_cell"
|
||||||
version = "1.20.2"
|
version = "1.19.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oorandom"
|
name = "oorandom"
|
||||||
@@ -1220,14 +1202,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fixedbitset",
|
"fixedbitset",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pin-project-lite"
|
name = "pin-project-lite"
|
||||||
version = "0.2.15"
|
version = "0.2.14"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "powerfmt"
|
name = "powerfmt"
|
||||||
@@ -1246,9 +1228,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proc-macro2"
|
name = "proc-macro2"
|
||||||
version = "1.0.89"
|
version = "1.0.86"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"unicode-ident",
|
"unicode-ident",
|
||||||
]
|
]
|
||||||
@@ -1412,7 +1394,7 @@ dependencies = [
|
|||||||
"either",
|
"either",
|
||||||
"fst",
|
"fst",
|
||||||
"hashbrown 0.14.5",
|
"hashbrown 0.14.5",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"la-arena",
|
"la-arena",
|
||||||
"ra-ap-rustc_abi",
|
"ra-ap-rustc_abi",
|
||||||
@@ -1477,7 +1459,7 @@ dependencies = [
|
|||||||
"cov-mark",
|
"cov-mark",
|
||||||
"either",
|
"either",
|
||||||
"ena",
|
"ena",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"la-arena",
|
"la-arena",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
@@ -1514,7 +1496,7 @@ dependencies = [
|
|||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"either",
|
"either",
|
||||||
"fst",
|
"fst",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"line-index",
|
"line-index",
|
||||||
"memchr",
|
"memchr",
|
||||||
@@ -1623,7 +1605,7 @@ version = "0.0.232"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "809670622e93f105abc60ea0cb371cfaff990beae7ce534b127fb39b423b4b92"
|
checksum = "809670622e93f105abc60ea0cb371cfaff990beae7ce534b127fb39b423b4b92"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"ra_ap_base_db",
|
"ra_ap_base_db",
|
||||||
"ra_ap_intern",
|
"ra_ap_intern",
|
||||||
"ra_ap_paths",
|
"ra_ap_paths",
|
||||||
@@ -1679,7 +1661,7 @@ version = "0.0.232"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "370b302873eeafd07ccc6a714fc9395cae11e385955ccb78081093ee3b86f94e"
|
checksum = "370b302873eeafd07ccc6a714fc9395cae11e385955ccb78081093ee3b86f94e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"lock_api",
|
"lock_api",
|
||||||
"oorandom",
|
"oorandom",
|
||||||
@@ -1742,7 +1724,7 @@ checksum = "f1ac12decfd5cadd880177316fc16afc1f2c67f241f6290b51fd6f222e2bd4d5"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"cov-mark",
|
"cov-mark",
|
||||||
"either",
|
"either",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"itertools 0.12.1",
|
"itertools 0.12.1",
|
||||||
"ra-ap-rustc_lexer",
|
"ra-ap-rustc_lexer",
|
||||||
"ra_ap_parser",
|
"ra_ap_parser",
|
||||||
@@ -1812,7 +1794,7 @@ checksum = "d833eaa5422de9bb51ab1841fe505ed00fb51e64cce397e21de6c324bbcbffa0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"fst",
|
"fst",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
"ra_ap_paths",
|
"ra_ap_paths",
|
||||||
"ra_ap_stdx",
|
"ra_ap_stdx",
|
||||||
@@ -1889,23 +1871,23 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "redox_syscall"
|
name = "redox_syscall"
|
||||||
version = "0.5.7"
|
version = "0.5.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "regex"
|
name = "regex"
|
||||||
version = "1.11.1"
|
version = "1.10.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
"memchr",
|
"memchr",
|
||||||
"regex-automata 0.4.8",
|
"regex-automata 0.4.7",
|
||||||
"regex-syntax 0.8.5",
|
"regex-syntax 0.8.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1919,13 +1901,13 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "regex-automata"
|
name = "regex-automata"
|
||||||
version = "0.4.8"
|
version = "0.4.7"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
"memchr",
|
"memchr",
|
||||||
"regex-syntax 0.8.5",
|
"regex-syntax 0.8.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1936,9 +1918,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "regex-syntax"
|
name = "regex-syntax"
|
||||||
version = "0.8.5"
|
version = "0.8.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rowan"
|
name = "rowan"
|
||||||
@@ -2014,18 +1996,18 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "1.0.214"
|
version = "1.0.210"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
|
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_derive"
|
name = "serde_derive"
|
||||||
version = "1.0.214"
|
version = "1.0.210"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
|
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@@ -2034,9 +2016,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_json"
|
name = "serde_json"
|
||||||
version = "1.0.132"
|
version = "1.0.128"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
|
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itoa",
|
"itoa",
|
||||||
"memchr",
|
"memchr",
|
||||||
@@ -2046,15 +2028,15 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_with"
|
name = "serde_with"
|
||||||
version = "3.11.0"
|
version = "3.9.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
|
checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"chrono",
|
"chrono",
|
||||||
"hex",
|
"hex",
|
||||||
"indexmap 1.9.3",
|
"indexmap 1.9.3",
|
||||||
"indexmap 2.6.0",
|
"indexmap 2.5.0",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
@@ -2064,9 +2046,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_with_macros"
|
name = "serde_with_macros"
|
||||||
version = "3.11.0"
|
version = "3.9.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
|
checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"darling",
|
"darling",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
@@ -2074,19 +2056,6 @@ dependencies = [
|
|||||||
"syn",
|
"syn",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde_yaml"
|
|
||||||
version = "0.9.34+deprecated"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
||||||
dependencies = [
|
|
||||||
"indexmap 2.6.0",
|
|
||||||
"itoa",
|
|
||||||
"ryu",
|
|
||||||
"serde",
|
|
||||||
"unsafe-libyaml",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sharded-slab"
|
name = "sharded-slab"
|
||||||
version = "0.1.7"
|
version = "0.1.7"
|
||||||
@@ -2142,12 +2111,6 @@ dependencies = [
|
|||||||
"thread_local",
|
"thread_local",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "streaming-iterator"
|
|
||||||
version = "0.1.9"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "strsim"
|
name = "strsim"
|
||||||
version = "0.11.1"
|
version = "0.11.1"
|
||||||
@@ -2156,9 +2119,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "2.0.87"
|
version = "2.0.77"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
|
checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@@ -2193,18 +2156,18 @@ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.69"
|
version = "1.0.63"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.69"
|
version = "1.0.63"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@@ -2315,22 +2278,20 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter"
|
name = "tree-sitter"
|
||||||
version = "0.24.4"
|
version = "0.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b67baf55e7e1b6806063b1e51041069c90afff16afcbbccd278d899f9d84bca4"
|
checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"regex",
|
"regex",
|
||||||
"regex-syntax 0.8.5",
|
"regex-syntax 0.8.4",
|
||||||
"streaming-iterator",
|
|
||||||
"tree-sitter-language",
|
"tree-sitter-language",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter-embedded-template"
|
name = "tree-sitter-embedded-template"
|
||||||
version = "0.23.2"
|
version = "0.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/tree-sitter/tree-sitter-embedded-template.git?rev=62b0a6e45900a7dff7c37da95fec20a09968ba52#62b0a6e45900a7dff7c37da95fec20a09968ba52"
|
||||||
checksum = "790063ef14e5b67556abc0b3be0ed863fb41d65ee791cf8c0b20eb42a1fa46af"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"tree-sitter-language",
|
"tree-sitter-language",
|
||||||
@@ -2338,9 +2299,8 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter-json"
|
name = "tree-sitter-json"
|
||||||
version = "0.24.8"
|
version = "0.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/tree-sitter/tree-sitter-json#8bfdb43f47ad805bb1ce093203cfcbaa8ed2c571"
|
||||||
checksum = "4d727acca406c0020cffc6cf35516764f36c8e3dc4408e5ebe2cb35a947ec471"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"tree-sitter-language",
|
"tree-sitter-language",
|
||||||
@@ -2348,15 +2308,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter-language"
|
name = "tree-sitter-language"
|
||||||
version = "0.1.2"
|
version = "0.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600"
|
checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter-ql"
|
name = "tree-sitter-ql"
|
||||||
version = "0.23.1"
|
version = "0.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/tree-sitter/tree-sitter-ql#c73c31c89cb0019ef56fe8bc1723e7c36e0be607"
|
||||||
checksum = "80b7bcaf39acefbb199417a6ec2fd0c038083ba115da3e4f4426c820dc76d386"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"tree-sitter-language",
|
"tree-sitter-language",
|
||||||
@@ -2364,9 +2323,8 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tree-sitter-ruby"
|
name = "tree-sitter-ruby"
|
||||||
version = "0.23.1"
|
version = "0.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/tree-sitter/tree-sitter-ruby.git?rev=a66579f70d6f50ffd81a16fc3d3358e2ac173c88#a66579f70d6f50ffd81a16fc3d3358e2ac173c88"
|
||||||
checksum = "be0484ea4ef6bb9c575b4fdabde7e31340a8d2dbc7d52b321ac83da703249f95"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"tree-sitter-language",
|
"tree-sitter-language",
|
||||||
@@ -2374,9 +2332,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "triomphe"
|
name = "triomphe"
|
||||||
version = "0.1.14"
|
version = "0.1.13"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85"
|
checksum = "e6631e42e10b40c0690bf92f404ebcfe6e1fdb480391d15f17cc8e96eeed5369"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"stable_deref_trait",
|
"stable_deref_trait",
|
||||||
@@ -2411,21 +2369,15 @@ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-properties"
|
name = "unicode-properties"
|
||||||
version = "0.1.3"
|
version = "0.1.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
|
checksum = "52ea75f83c0137a9b98608359a5f1af8144876eb67bcb1ce837368e906a9f524"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-xid"
|
name = "unicode-xid"
|
||||||
version = "0.2.6"
|
version = "0.2.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unsafe-libyaml"
|
|
||||||
version = "0.2.11"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "utf8parse"
|
name = "utf8parse"
|
||||||
@@ -2463,9 +2415,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasm-bindgen"
|
name = "wasm-bindgen"
|
||||||
version = "0.2.95"
|
version = "0.2.93"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@@ -2474,9 +2426,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasm-bindgen-backend"
|
name = "wasm-bindgen-backend"
|
||||||
version = "0.2.95"
|
version = "0.2.93"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bumpalo",
|
"bumpalo",
|
||||||
"log",
|
"log",
|
||||||
@@ -2489,9 +2441,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasm-bindgen-macro"
|
name = "wasm-bindgen-macro"
|
||||||
version = "0.2.95"
|
version = "0.2.93"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"quote",
|
"quote",
|
||||||
"wasm-bindgen-macro-support",
|
"wasm-bindgen-macro-support",
|
||||||
@@ -2499,9 +2451,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasm-bindgen-macro-support"
|
name = "wasm-bindgen-macro-support"
|
||||||
version = "0.2.95"
|
version = "0.2.93"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@@ -2512,9 +2464,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasm-bindgen-shared"
|
name = "wasm-bindgen-shared"
|
||||||
version = "0.2.95"
|
version = "0.2.93"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winapi"
|
name = "winapi"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ members = [
|
|||||||
"ruby/extractor",
|
"ruby/extractor",
|
||||||
"rust/extractor",
|
"rust/extractor",
|
||||||
"rust/extractor/macros",
|
"rust/extractor/macros",
|
||||||
"rust/ast-generator",
|
"rust/generate-schema",
|
||||||
]
|
]
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
|
|||||||
77
MODULE.bazel
77
MODULE.bazel
@@ -18,60 +18,57 @@ bazel_dep(name = "platforms", version = "0.0.10")
|
|||||||
bazel_dep(name = "rules_go", version = "0.50.0")
|
bazel_dep(name = "rules_go", version = "0.50.0")
|
||||||
bazel_dep(name = "rules_pkg", version = "1.0.1")
|
bazel_dep(name = "rules_pkg", version = "1.0.1")
|
||||||
bazel_dep(name = "rules_nodejs", version = "6.2.0-codeql.1")
|
bazel_dep(name = "rules_nodejs", version = "6.2.0-codeql.1")
|
||||||
bazel_dep(name = "rules_python", version = "0.36.0")
|
bazel_dep(name = "rules_python", version = "0.35.0")
|
||||||
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
bazel_dep(name = "bazel_skylib", version = "1.6.1")
|
||||||
bazel_dep(name = "abseil-cpp", version = "20240116.0", repo_name = "absl")
|
bazel_dep(name = "abseil-cpp", version = "20240116.0", repo_name = "absl")
|
||||||
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "json")
|
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "json")
|
||||||
bazel_dep(name = "fmt", version = "10.0.0")
|
bazel_dep(name = "fmt", version = "10.0.0")
|
||||||
bazel_dep(name = "rules_kotlin", version = "2.0.0-codeql.1")
|
bazel_dep(name = "rules_kotlin", version = "1.9.4-codeql.1")
|
||||||
bazel_dep(name = "gazelle", version = "0.38.0")
|
bazel_dep(name = "gazelle", version = "0.38.0")
|
||||||
bazel_dep(name = "rules_dotnet", version = "0.17.4")
|
bazel_dep(name = "rules_dotnet", version = "0.15.1")
|
||||||
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
|
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
|
||||||
bazel_dep(name = "rules_rust", version = "0.52.2")
|
bazel_dep(name = "rules_rust", version = "0.50.0")
|
||||||
|
|
||||||
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True)
|
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True)
|
||||||
|
|
||||||
# Keep edition and version approximately in sync with internal repo.
|
# crate_py but shortened due to Windows file path considerations
|
||||||
# the versions there are canonical, the versions here are used for CI in github/codeql, as well as for the vendoring of dependencies.
|
cp = use_extension(
|
||||||
RUST_EDITION = "2021"
|
"@rules_rust//crate_universe:extension.bzl",
|
||||||
|
"crate",
|
||||||
RUST_VERSION = "1.81.0"
|
isolate = True,
|
||||||
|
)
|
||||||
rust = use_extension("@rules_rust//rust:extensions.bzl", "rust")
|
cp.from_cargo(
|
||||||
rust.toolchain(
|
name = "py_deps",
|
||||||
edition = RUST_EDITION,
|
cargo_lockfile = "//python/extractor/tsg-python:Cargo.lock",
|
||||||
# We need those extra target triples so that we can build universal binaries on macos
|
manifests = [
|
||||||
extra_target_triples = [
|
"//python/extractor/tsg-python:Cargo.toml",
|
||||||
"x86_64-apple-darwin",
|
"//python/extractor/tsg-python/tsp:Cargo.toml",
|
||||||
"aarch64-apple-darwin",
|
|
||||||
],
|
],
|
||||||
versions = [RUST_VERSION],
|
|
||||||
)
|
)
|
||||||
use_repo(rust, "rust_toolchains")
|
use_repo(cp, "py_deps")
|
||||||
|
|
||||||
register_toolchains("@rust_toolchains//:all")
|
# deps for ruby+rust, but shortened due to windows file paths
|
||||||
|
r = use_extension(
|
||||||
rust_host_tools = use_extension("@rules_rust//rust:extensions.bzl", "rust_host_tools")
|
"@rules_rust//crate_universe:extension.bzl",
|
||||||
|
"crate",
|
||||||
# Don't download a second toolchain as host toolchain, make sure this is the same version as above
|
isolate = True,
|
||||||
# The host toolchain is used for vendoring dependencies.
|
|
||||||
rust_host_tools.host_tools(
|
|
||||||
edition = RUST_EDITION,
|
|
||||||
version = RUST_VERSION,
|
|
||||||
)
|
)
|
||||||
|
r.from_cargo(
|
||||||
# deps for python extractor
|
name = "r",
|
||||||
# keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh`
|
cargo_lockfile = "//:Cargo.lock",
|
||||||
py_deps = use_extension("//misc/bazel/3rdparty:py_deps_extension.bzl", "p")
|
manifests = [
|
||||||
use_repo(py_deps, "vendor__anyhow-1.0.44", "vendor__cc-1.0.70", "vendor__clap-2.33.3", "vendor__regex-1.5.5", "vendor__smallvec-1.6.1", "vendor__string-interner-0.12.2", "vendor__thiserror-1.0.29", "vendor__tree-sitter-0.20.4", "vendor__tree-sitter-graph-0.7.0")
|
"//:Cargo.toml",
|
||||||
|
"//ruby/extractor:Cargo.toml",
|
||||||
# deps for ruby+rust
|
"//rust/extractor:Cargo.toml",
|
||||||
# keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh`
|
"//rust/extractor/macros:Cargo.toml",
|
||||||
tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r")
|
"//rust/generate-schema:Cargo.toml",
|
||||||
use_repo(tree_sitter_extractors_deps, "vendor__anyhow-1.0.93", "vendor__argfile-0.2.1", "vendor__chrono-0.4.38", "vendor__clap-4.5.20", "vendor__encoding-0.2.33", "vendor__figment-0.10.19", "vendor__flate2-1.0.34", "vendor__glob-0.3.1", "vendor__globset-0.4.15", "vendor__itertools-0.10.5", "vendor__itertools-0.13.0", "vendor__lazy_static-1.5.0", "vendor__log-0.4.22", "vendor__num-traits-0.2.19", "vendor__num_cpus-1.16.0", "vendor__proc-macro2-1.0.89", "vendor__quote-1.0.37", "vendor__ra_ap_base_db-0.0.232", "vendor__ra_ap_cfg-0.0.232", "vendor__ra_ap_hir-0.0.232", "vendor__ra_ap_hir_def-0.0.232", "vendor__ra_ap_hir_expand-0.0.232", "vendor__ra_ap_ide_db-0.0.232", "vendor__ra_ap_intern-0.0.232", "vendor__ra_ap_load-cargo-0.0.232", "vendor__ra_ap_parser-0.0.232", "vendor__ra_ap_paths-0.0.232", "vendor__ra_ap_project_model-0.0.232", "vendor__ra_ap_span-0.0.232", "vendor__ra_ap_syntax-0.0.232", "vendor__ra_ap_vfs-0.0.232", "vendor__rand-0.8.5", "vendor__rayon-1.10.0", "vendor__regex-1.11.1", "vendor__serde-1.0.214", "vendor__serde_json-1.0.132", "vendor__serde_with-3.11.0", "vendor__stderrlog-0.6.0", "vendor__syn-2.0.87", "vendor__tracing-0.1.40", "vendor__tracing-subscriber-0.3.18", "vendor__tree-sitter-0.24.4", "vendor__tree-sitter-embedded-template-0.23.2", "vendor__tree-sitter-json-0.24.8", "vendor__tree-sitter-ql-0.23.1", "vendor__tree-sitter-ruby-0.23.1", "vendor__triomphe-0.1.14", "vendor__ungrammar-1.16.1")
|
"//shared/tree-sitter-extractor:Cargo.toml",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
use_repo(r, tree_sitter_extractors_deps = "r")
|
||||||
|
|
||||||
dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet")
|
dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet")
|
||||||
dotnet.toolchain(dotnet_version = "9.0.100")
|
dotnet.toolchain(dotnet_version = "8.0.101")
|
||||||
use_repo(dotnet, "dotnet_toolchains")
|
use_repo(dotnet, "dotnet_toolchains")
|
||||||
|
|
||||||
register_toolchains("@dotnet_toolchains//:all")
|
register_toolchains("@dotnet_toolchains//:all")
|
||||||
|
|||||||
2
WORKSPACE.bazel
Normal file
2
WORKSPACE.bazel
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# please use MODULE.bazel to add dependencies
|
||||||
|
# this empty file is required by internal repositories, don't remove it
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
load("//misc/bazel:pkg.bzl", "codeql_pack")
|
|
||||||
|
|
||||||
package(default_visibility = ["//visibility:public"])
|
|
||||||
|
|
||||||
codeql_pack(
|
|
||||||
name = "actions",
|
|
||||||
srcs = ["//actions/extractor"],
|
|
||||||
experimental = True,
|
|
||||||
)
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
load("//misc/bazel:pkg.bzl", "codeql_pkg_files", "strip_prefix")
|
|
||||||
|
|
||||||
codeql_pkg_files(
|
|
||||||
name = "extractor",
|
|
||||||
srcs = [
|
|
||||||
"codeql-extractor.yml",
|
|
||||||
] + glob(["tools/**"]),
|
|
||||||
strip_prefix = strip_prefix.from_pkg(),
|
|
||||||
visibility = ["//actions:__pkg__"],
|
|
||||||
)
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
name: "actions"
|
|
||||||
aliases: []
|
|
||||||
display_name: "GitHub Actions"
|
|
||||||
version: 0.0.1
|
|
||||||
column_kind: "utf16"
|
|
||||||
unicode_newlines: true
|
|
||||||
build_modes:
|
|
||||||
- none
|
|
||||||
file_coverage_languages: []
|
|
||||||
github_api_languages: []
|
|
||||||
scc_languages: []
|
|
||||||
file_types:
|
|
||||||
- name: workflow
|
|
||||||
display_name: GitHub Actions workflow files
|
|
||||||
extensions:
|
|
||||||
- .yml
|
|
||||||
- .yaml
|
|
||||||
forwarded_extractor_name: javascript
|
|
||||||
options:
|
|
||||||
trap:
|
|
||||||
title: TRAP options
|
|
||||||
description: Options about how the extractor handles TRAP files
|
|
||||||
type: object
|
|
||||||
visibility: 3
|
|
||||||
properties:
|
|
||||||
cache:
|
|
||||||
title: TRAP cache options
|
|
||||||
description: Options about how the extractor handles its TRAP cache
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
dir:
|
|
||||||
title: TRAP cache directory
|
|
||||||
description: The directory of the TRAP cache to use
|
|
||||||
type: string
|
|
||||||
bound:
|
|
||||||
title: TRAP cache bound
|
|
||||||
description: A soft limit (in MB) on the size of the TRAP cache
|
|
||||||
type: string
|
|
||||||
pattern: "[0-9]+"
|
|
||||||
write:
|
|
||||||
title: TRAP cache writeable
|
|
||||||
description: Whether to write to the TRAP cache as well as reading it
|
|
||||||
type: string
|
|
||||||
pattern: "(true|TRUE|false|FALSE)"
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
if (($null -ne $env:LGTM_INDEX_INCLUDE) -or ($null -ne $env:LGTM_INDEX_EXCLUDE) -or ($null -ne $env:LGTM_INDEX_FILTERS)) {
|
|
||||||
Write-Output 'Path filters set. Passing them through to the JavaScript extractor.'
|
|
||||||
} else {
|
|
||||||
Write-Output 'No path filters set. Using the default filters.'
|
|
||||||
$DefaultPathFilters = @(
|
|
||||||
'exclude:**/*',
|
|
||||||
'include:.github/workflows/**/*.yml',
|
|
||||||
'include:.github/workflows/**/*.yaml',
|
|
||||||
'include:**/action.yml',
|
|
||||||
'include:**/action.yaml'
|
|
||||||
)
|
|
||||||
|
|
||||||
$env:LGTM_INDEX_FILTERS = $DefaultPathFilters -join "`n"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Find the JavaScript extractor directory via `codeql resolve extractor`.
|
|
||||||
$CodeQL = Join-Path $env:CODEQL_DIST 'codeql.exe'
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT = &$CodeQL resolve extractor --language javascript
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
throw 'Failed to resolve JavaScript extractor.'
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Output "Found JavaScript extractor at '${env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}'."
|
|
||||||
|
|
||||||
# Run the JavaScript autobuilder.
|
|
||||||
$JavaScriptAutoBuild = Join-Path $env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT 'tools\autobuild.cmd'
|
|
||||||
Write-Output "Running JavaScript autobuilder at '${JavaScriptAutoBuild}'."
|
|
||||||
|
|
||||||
# Copy the values of the Actions extractor environment variables to the JavaScript extractor environment variables.
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_DIAGNOSTIC_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_DIAGNOSTIC_DIR
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_LOG_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_LOG_DIR
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_SCRATCH_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_SCRATCH_DIR
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_SOURCE_ARCHIVE_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_SOURCE_ARCHIVE_DIR
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_TRAP_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_TRAP_DIR
|
|
||||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE = $env:CODEQL_EXTRACTOR_ACTIONS_WIP_DATABASE
|
|
||||||
|
|
||||||
&$JavaScriptAutoBuild
|
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
throw "JavaScript autobuilder failed."
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
@echo off
|
|
||||||
rem All of the work is done in the PowerShell script
|
|
||||||
powershell.exe %~dp0autobuild-impl.ps1
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
DEFAULT_PATH_FILTERS=$(cat << END
|
|
||||||
exclude:**/*
|
|
||||||
include:.github/workflows/**/*.yml
|
|
||||||
include:.github/workflows/**/*.yaml
|
|
||||||
include:**/action.yml
|
|
||||||
include:**/action.yaml
|
|
||||||
END
|
|
||||||
)
|
|
||||||
|
|
||||||
if [ -n "${LGTM_INDEX_INCLUDE:-}" ] || [ -n "${LGTM_INDEX_EXCLUDE:-}" ] || [ -n "${LGTM_INDEX_FILTERS:-}" ] ; then
|
|
||||||
echo "Path filters set. Passing them through to the JavaScript extractor."
|
|
||||||
else
|
|
||||||
echo "No path filters set. Using the default filters."
|
|
||||||
LGTM_INDEX_FILTERS="${DEFAULT_PATH_FILTERS}"
|
|
||||||
export LGTM_INDEX_FILTERS
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Find the JavaScript extractor directory via `codeql resolve extractor`.
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_ROOT="$($CODEQL_DIST/codeql resolve extractor --language javascript)"
|
|
||||||
export CODEQL_EXTRACTOR_JAVASCRIPT_ROOT
|
|
||||||
|
|
||||||
echo "Found JavaScript extractor at '${CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}'."
|
|
||||||
|
|
||||||
# Run the JavaScript autobuilder
|
|
||||||
JAVASCRIPT_AUTO_BUILD="${CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}/tools/autobuild.sh"
|
|
||||||
echo "Running JavaScript autobuilder at '${JAVASCRIPT_AUTO_BUILD}'."
|
|
||||||
|
|
||||||
# Copy the values of the Actions extractor environment variables to the JavaScript extractor environment variables.
|
|
||||||
env CODEQL_EXTRACTOR_JAVASCRIPT_DIAGNOSTIC_DIR="${CODEQL_EXTRACTOR_ACTIONS_DIAGNOSTIC_DIR}" \
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_LOG_DIR="${CODEQL_EXTRACTOR_ACTIONS_LOG_DIR}" \
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_SCRATCH_DIR="${CODEQL_EXTRACTOR_ACTIONS_SCRATCH_DIR}" \
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_SOURCE_ARCHIVE_DIR="${CODEQL_EXTRACTOR_ACTIONS_SOURCE_ARCHIVE_DIR}" \
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_TRAP_DIR="${CODEQL_EXTRACTOR_ACTIONS_TRAP_DIR}" \
|
|
||||||
CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE="${CODEQL_EXTRACTOR_ACTIONS_WIP_DATABASE}" \
|
|
||||||
${JAVASCRIPT_AUTO_BUILD}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
predicate placeholder(int x) { x = 0 }
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
name: codeql/actions-all
|
|
||||||
version: 0.0.1-dev
|
|
||||||
library: true
|
|
||||||
warnOnImplicitThis: true
|
|
||||||
dependencies:
|
|
||||||
codeql/util: ${workspace}
|
|
||||||
codeql/yaml: ${workspace}
|
|
||||||
codeql/controlflow: ${workspace}
|
|
||||||
codeql/dataflow: ${workspace}
|
|
||||||
codeql/javascript-all: ${workspace}
|
|
||||||
extractor: actions
|
|
||||||
groups: actions
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* @name Placeholder Query
|
|
||||||
* @description Placeholder
|
|
||||||
* @kind problem
|
|
||||||
* @problem.severity warning
|
|
||||||
* @security-severity 9.3
|
|
||||||
* @precision high
|
|
||||||
* @id actions/placeholder
|
|
||||||
* @tags actions security
|
|
||||||
*/
|
|
||||||
|
|
||||||
import actions
|
|
||||||
import javascript
|
|
||||||
|
|
||||||
from File f
|
|
||||||
select f, "Analyzed a file."
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
name: codeql/actions-queries
|
|
||||||
version: 0.0.1-dev
|
|
||||||
library: false
|
|
||||||
groups: [actions, queries]
|
|
||||||
extractor: actions
|
|
||||||
dependencies:
|
|
||||||
codeql/actions-all: ${workspace}
|
|
||||||
warnOnImplicitThis: true
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
on: push
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
job1:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- shell: pwsh
|
|
||||||
run: Write-Output "foo"
|
|
||||||
job2:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo "foo"
|
|
||||||
|
|
||||||
job3:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- shell: bash
|
|
||||||
run: echo "foo"
|
|
||||||
job4:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- run: Write-Output "foo"
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
| 1 |
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
select 1
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
name: codeql/actions-tests
|
|
||||||
groups: [codeql, test]
|
|
||||||
dependencies:
|
|
||||||
codeql/actions-all: ${workspace}
|
|
||||||
codeql/actions-queries: ${workspace}
|
|
||||||
extractor: actions
|
|
||||||
tests: .
|
|
||||||
warnOnImplicitThis: true
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
on: push
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
job1:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- shell: pwsh
|
|
||||||
run: Write-Output "foo"
|
|
||||||
job2:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo "foo"
|
|
||||||
|
|
||||||
job3:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- shell: bash
|
|
||||||
run: echo "foo"
|
|
||||||
job4:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- run: Write-Output "foo"
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
| .github/workflows/shell.yml:0:0:0:0 | .github/workflows/shell.yml | Analyzed a file. |
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Placeholder.ql
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
provide:
|
provide:
|
||||||
|
- "*/ql/base/qlpack.yml"
|
||||||
- "*/ql/src/qlpack.yml"
|
- "*/ql/src/qlpack.yml"
|
||||||
- "*/ql/lib/qlpack.yml"
|
- "*/ql/lib/qlpack.yml"
|
||||||
- "*/ql/test*/qlpack.yml"
|
- "*/ql/test*/qlpack.yml"
|
||||||
|
|||||||
@@ -351,5 +351,9 @@
|
|||||||
"Python model summaries test extension": [
|
"Python model summaries test extension": [
|
||||||
"python/ql/test/library-tests/dataflow/model-summaries/InlineTaintTest.ext.yml",
|
"python/ql/test/library-tests/dataflow/model-summaries/InlineTaintTest.ext.yml",
|
||||||
"python/ql/test/library-tests/dataflow/model-summaries/NormalDataflowTest.ext.yml"
|
"python/ql/test/library-tests/dataflow/model-summaries/NormalDataflowTest.ext.yml"
|
||||||
|
],
|
||||||
|
"Diagnostics.qll": [
|
||||||
|
"ruby/ql/lib/codeql/ruby/Diagnostics.qll",
|
||||||
|
"rust/ql/lib/codeql/rust/Diagnostics.qll"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
class Expr extends @expr {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
class Location extends @location_expr {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
predicate isExprRequires(Expr expr) { exists(int kind | exprs(expr, kind, _) | kind = 390) }
|
|
||||||
|
|
||||||
from Expr expr, int kind, int kind_new, Location location
|
|
||||||
where
|
|
||||||
exprs(expr, kind, location) and
|
|
||||||
if isExprRequires(expr) then kind_new = 1 else kind_new = kind
|
|
||||||
select expr, kind_new, location
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
|||||||
description: Add requires expr
|
|
||||||
compatibility: partial
|
|
||||||
exprs.rel: run exprs.qlo
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
class Expr extends @expr {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
class Location extends @location_expr {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
predicate isExprRequirement(Expr expr) {
|
|
||||||
exists(int kind | exprs(expr, kind, _) | kind = [391, 392, 393])
|
|
||||||
}
|
|
||||||
|
|
||||||
from Expr expr, int kind, int kind_new, Location location
|
|
||||||
where
|
|
||||||
exprs(expr, kind, location) and
|
|
||||||
if isExprRequirement(expr) then kind_new = 1 else kind_new = kind
|
|
||||||
select expr, kind_new, location
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,17 +0,0 @@
|
|||||||
class Parameter extends @parameter {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
class ParameterizedElement extends @parameterized_element {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
class Type extends @type {
|
|
||||||
string toString() { none() }
|
|
||||||
}
|
|
||||||
|
|
||||||
from Parameter param, ParameterizedElement pe, int index, Type type
|
|
||||||
where
|
|
||||||
params(param, pe, index, type) and
|
|
||||||
not pe instanceof @requires_expr
|
|
||||||
select param, pe, index, type
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +0,0 @@
|
|||||||
description: Support C++20 requires expressions
|
|
||||||
compatibility: partial
|
|
||||||
compound_requirement_is_noexcept.rel: delete
|
|
||||||
exprs.rel: run exprs.qlo
|
|
||||||
params.rel: run params.qlo
|
|
||||||
@@ -1,27 +1,3 @@
|
|||||||
## 2.1.1
|
|
||||||
|
|
||||||
No user-facing changes.
|
|
||||||
|
|
||||||
## 2.1.0
|
|
||||||
|
|
||||||
### New Features
|
|
||||||
|
|
||||||
* Added a new predicate `DataFlow::getARuntimeTarget` for getting a function that may be invoked by a `Call` expression. Unlike `Call.getTarget` this new predicate may also resolve function pointers.
|
|
||||||
* Added the predicate `mayBeFromImplicitlyDeclaredFunction()` to the `Call` class to represent calls that may be the return value of an implicitly declared C function.
|
|
||||||
* Added the predicate `getAnExplicitDeclarationEntry()` to the `Function` class to get a `FunctionDeclarationEntry` that is not implicit.
|
|
||||||
* Added classes `RequiresExpr`, `SimpleRequirementExpr`, `TypeRequirementExpr`, `CompoundRequirementExpr`, and `NestedRequirementExpr` to represent C++20 requires expressions and the simple, type, compound, and nested requirements that can occur in `requires` expressions.
|
|
||||||
|
|
||||||
### Minor Analysis Improvements
|
|
||||||
|
|
||||||
* The function call target resolution algorithm has been improved to resolve more calls through function pointers. As a result, dataflow queries may have more results.
|
|
||||||
|
|
||||||
## 2.0.2
|
|
||||||
|
|
||||||
### Minor Analysis Improvements
|
|
||||||
|
|
||||||
* Added taint flow model for `fopen` and related functions.
|
|
||||||
* The `SimpleRangeAnalysis` library (`semmle.code.cpp.rangeanalysis.SimpleRangeAnalysis`) now generates more precise ranges for calls to `fgetc` and `getc`.
|
|
||||||
|
|
||||||
## 2.0.1
|
## 2.0.1
|
||||||
|
|
||||||
No user-facing changes.
|
No user-facing changes.
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
## 2.0.2
|
|
||||||
|
|
||||||
### Minor Analysis Improvements
|
|
||||||
|
|
||||||
* Added taint flow model for `fopen` and related functions.
|
|
||||||
* The `SimpleRangeAnalysis` library (`semmle.code.cpp.rangeanalysis.SimpleRangeAnalysis`) now generates more precise ranges for calls to `fgetc` and `getc`.
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
## 2.1.0
|
|
||||||
|
|
||||||
### New Features
|
|
||||||
|
|
||||||
* Added a new predicate `DataFlow::getARuntimeTarget` for getting a function that may be invoked by a `Call` expression. Unlike `Call.getTarget` this new predicate may also resolve function pointers.
|
|
||||||
* Added the predicate `mayBeFromImplicitlyDeclaredFunction()` to the `Call` class to represent calls that may be the return value of an implicitly declared C function.
|
|
||||||
* Added the predicate `getAnExplicitDeclarationEntry()` to the `Function` class to get a `FunctionDeclarationEntry` that is not implicit.
|
|
||||||
* Added classes `RequiresExpr`, `SimpleRequirementExpr`, `TypeRequirementExpr`, `CompoundRequirementExpr`, and `NestedRequirementExpr` to represent C++20 requires expressions and the simple, type, compound, and nested requirements that can occur in `requires` expressions.
|
|
||||||
|
|
||||||
### Minor Analysis Improvements
|
|
||||||
|
|
||||||
* The function call target resolution algorithm has been improved to resolve more calls through function pointers. As a result, dataflow queries may have more results.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
## 2.1.1
|
|
||||||
|
|
||||||
No user-facing changes.
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
---
|
---
|
||||||
lastReleaseVersion: 2.1.1
|
lastReleaseVersion: 2.0.1
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ import semmle.code.cpp.File
|
|||||||
import semmle.code.cpp.Linkage
|
import semmle.code.cpp.Linkage
|
||||||
import semmle.code.cpp.Location
|
import semmle.code.cpp.Location
|
||||||
import semmle.code.cpp.Compilation
|
import semmle.code.cpp.Compilation
|
||||||
import semmle.code.cpp.Concept
|
|
||||||
import semmle.code.cpp.Element
|
import semmle.code.cpp.Element
|
||||||
import semmle.code.cpp.Namespace
|
import semmle.code.cpp.Namespace
|
||||||
import semmle.code.cpp.Specifier
|
import semmle.code.cpp.Specifier
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: codeql/cpp-all
|
name: codeql/cpp-all
|
||||||
version: 2.1.1
|
version: 2.0.2-dev
|
||||||
groups: cpp
|
groups: cpp
|
||||||
dbscheme: semmlecode.cpp.dbscheme
|
dbscheme: semmlecode.cpp.dbscheme
|
||||||
extractor: cpp
|
extractor: cpp
|
||||||
|
|||||||
@@ -1,161 +0,0 @@
|
|||||||
/**
|
|
||||||
* Provides classes for working with C++ concepts.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import semmle.code.cpp.exprs.Expr
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ requires expression.
|
|
||||||
*
|
|
||||||
* For example, with `T` and `U` template parameters:
|
|
||||||
* ```cpp
|
|
||||||
* requires (T x, U y) { x + y; };
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
class RequiresExpr extends Expr, @requires_expr {
|
|
||||||
override string toString() {
|
|
||||||
if exists(this.getAParameter())
|
|
||||||
then result = "requires(...) { ... }"
|
|
||||||
else result = "requires { ... }"
|
|
||||||
}
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "RequiresExpr" }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a requirement in this requires expression.
|
|
||||||
*/
|
|
||||||
RequirementExpr getARequirement() { result = this.getAChild() }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the nth requirement in this requires expression.
|
|
||||||
*/
|
|
||||||
RequirementExpr getRequirement(int n) { result = this.getChild(n) }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the number of requirements in this requires expression.
|
|
||||||
*/
|
|
||||||
int getNumberOfRequirements() { result = count(this.getARequirement()) }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a parameter of this requires expression, if any.
|
|
||||||
*/
|
|
||||||
Parameter getAParameter() { result.getRequiresExpr() = underlyingElement(this) }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the the nth parameter of this requires expression.
|
|
||||||
*/
|
|
||||||
Parameter getParameter(int n) {
|
|
||||||
result.getRequiresExpr() = underlyingElement(this) and result.getIndex() = n
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the number of parameters of this requires expression.
|
|
||||||
*/
|
|
||||||
int getNumberOfParameters() { result = count(this.getAParameter()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ requirement in a requires expression.
|
|
||||||
*/
|
|
||||||
class RequirementExpr extends Expr { }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ simple requirement in a requires expression.
|
|
||||||
*
|
|
||||||
* For example, if:
|
|
||||||
* ```cpp
|
|
||||||
* requires(T x, U y) { x + y; };
|
|
||||||
* ```
|
|
||||||
* with `T` and `U` template parameters, then `x + y;` is a simple requirement.
|
|
||||||
*/
|
|
||||||
class SimpleRequirementExpr extends RequirementExpr {
|
|
||||||
SimpleRequirementExpr() {
|
|
||||||
this.getParent() instanceof RequiresExpr and
|
|
||||||
not this instanceof TypeRequirementExpr and
|
|
||||||
not this instanceof CompoundRequirementExpr and
|
|
||||||
not this instanceof NestedRequirementExpr
|
|
||||||
}
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "SimpleRequirementExpr" }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ type requirement in a requires expression.
|
|
||||||
*
|
|
||||||
* For example, if:
|
|
||||||
* ```cpp
|
|
||||||
* requires { typename T::a_field; };
|
|
||||||
* ```
|
|
||||||
* with `T` a template parameter, then `typename T::a_field;` is a type requirement.
|
|
||||||
*/
|
|
||||||
class TypeRequirementExpr extends RequirementExpr, TypeName {
|
|
||||||
TypeRequirementExpr() { this.getParent() instanceof RequiresExpr }
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "TypeRequirementExpr" }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ compound requirement in a requires expression.
|
|
||||||
*
|
|
||||||
* For example, if:
|
|
||||||
* ```cpp
|
|
||||||
* requires(T x) { { x } noexcept -> std::same_as<int>; };
|
|
||||||
* ```
|
|
||||||
* with `T` a template parameter, then `{ x } noexcept -> std::same_as<int>;` is
|
|
||||||
* a compound requirement.
|
|
||||||
*/
|
|
||||||
class CompoundRequirementExpr extends RequirementExpr, @compound_requirement {
|
|
||||||
override string toString() {
|
|
||||||
if exists(this.getReturnTypeRequirement())
|
|
||||||
then result = "{ ... } -> ..."
|
|
||||||
else result = "{ ... }"
|
|
||||||
}
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "CompoundRequirementExpr" }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the expression from the compound requirement.
|
|
||||||
*/
|
|
||||||
Expr getExpr() { result = this.getChild(0) }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the return type requirement from the compound requirement, if any.
|
|
||||||
*/
|
|
||||||
Expr getReturnTypeRequirement() { result = this.getChild(1) }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Holds if the expression from the compound requirement must not be
|
|
||||||
* potentially throwing.
|
|
||||||
*/
|
|
||||||
predicate isNoExcept() { compound_requirement_is_noexcept(underlyingElement(this)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ nested requirement in a requires expression.
|
|
||||||
*
|
|
||||||
* For example, if:
|
|
||||||
* ```cpp
|
|
||||||
* requires { requires std::is_same<T, int>::value; };
|
|
||||||
* ```
|
|
||||||
* with `T` a template parameter, then `requires std::is_same<T, int>::value;` is
|
|
||||||
* a nested requirement.
|
|
||||||
*/
|
|
||||||
class NestedRequirementExpr extends Expr, @nested_requirement {
|
|
||||||
override string toString() { result = "requires ..." }
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "NestedRequirementExpr" }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the constraint from the nested requirement.
|
|
||||||
*/
|
|
||||||
Expr getConstraint() { result = this.getChild(0) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A C++ concept id expression.
|
|
||||||
*/
|
|
||||||
class ConceptIdExpr extends RequirementExpr, @concept_id {
|
|
||||||
override string toString() { result = "concept<...>" }
|
|
||||||
|
|
||||||
override string getAPrimaryQlClass() { result = "ConceptIdExpr" }
|
|
||||||
}
|
|
||||||
@@ -129,7 +129,7 @@ class Element extends ElementBase {
|
|||||||
* or certain kinds of `Statement`.
|
* or certain kinds of `Statement`.
|
||||||
*/
|
*/
|
||||||
Element getParentScope() {
|
Element getParentScope() {
|
||||||
// result instanceof Class
|
// result instanceof class
|
||||||
exists(Declaration m |
|
exists(Declaration m |
|
||||||
m = this and
|
m = this and
|
||||||
result = m.getDeclaringType() and
|
result = m.getDeclaringType() and
|
||||||
@@ -138,40 +138,31 @@ class Element extends ElementBase {
|
|||||||
or
|
or
|
||||||
exists(TemplateClass tc | this = tc.getATemplateArgument() and result = tc)
|
exists(TemplateClass tc | this = tc.getATemplateArgument() and result = tc)
|
||||||
or
|
or
|
||||||
// result instanceof Namespace
|
// result instanceof namespace
|
||||||
exists(Namespace n | result = n and n.getADeclaration() = this)
|
exists(Namespace n | result = n and n.getADeclaration() = this)
|
||||||
or
|
or
|
||||||
exists(FriendDecl d, Namespace n | this = d and n.getADeclaration() = d and result = n)
|
exists(FriendDecl d, Namespace n | this = d and n.getADeclaration() = d and result = n)
|
||||||
or
|
or
|
||||||
exists(Namespace n | this = n and result = n.getParentNamespace())
|
exists(Namespace n | this = n and result = n.getParentNamespace())
|
||||||
or
|
or
|
||||||
// result instanceof Stmt
|
// result instanceof stmt
|
||||||
exists(LocalVariable v |
|
exists(LocalVariable v |
|
||||||
this = v and
|
this = v and
|
||||||
exists(DeclStmt ds | ds.getADeclaration() = v and result = ds.getParent())
|
exists(DeclStmt ds | ds.getADeclaration() = v and result = ds.getParent())
|
||||||
)
|
)
|
||||||
or
|
or
|
||||||
exists(Parameter p |
|
exists(Parameter p | this = p and result = p.getFunction())
|
||||||
this = p and
|
|
||||||
(
|
|
||||||
result = p.getFunction() or
|
|
||||||
result = p.getCatchBlock().getParent().(Handler).getParent().(TryStmt).getParent() or
|
|
||||||
result = p.getRequiresExpr().getEnclosingStmt().getParent()
|
|
||||||
)
|
|
||||||
)
|
|
||||||
or
|
or
|
||||||
exists(GlobalVariable g, Namespace n | this = g and n.getADeclaration() = g and result = n)
|
exists(GlobalVariable g, Namespace n | this = g and n.getADeclaration() = g and result = n)
|
||||||
or
|
or
|
||||||
exists(TemplateVariable tv | this = tv.getATemplateArgument() and result = tv)
|
|
||||||
or
|
|
||||||
exists(EnumConstant e | this = e and result = e.getDeclaringEnum())
|
exists(EnumConstant e | this = e and result = e.getDeclaringEnum())
|
||||||
or
|
or
|
||||||
// result instanceof Block|Function
|
// result instanceof block|function
|
||||||
exists(BlockStmt b | this = b and blockscope(unresolveElement(b), unresolveElement(result)))
|
exists(BlockStmt b | this = b and blockscope(unresolveElement(b), unresolveElement(result)))
|
||||||
or
|
or
|
||||||
exists(TemplateFunction tf | this = tf.getATemplateArgument() and result = tf)
|
exists(TemplateFunction tf | this = tf.getATemplateArgument() and result = tf)
|
||||||
or
|
or
|
||||||
// result instanceof Stmt
|
// result instanceof stmt
|
||||||
exists(ControlStructure s | this = s and result = s.getParent())
|
exists(ControlStructure s | this = s and result = s.getParent())
|
||||||
or
|
or
|
||||||
using_container(unresolveElement(result), underlyingElement(this))
|
using_container(unresolveElement(result), underlyingElement(this))
|
||||||
|
|||||||
@@ -230,14 +230,6 @@ class Function extends Declaration, ControlFlowNode, AccessHolder, @function {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a non-implicit function declaration entry.
|
|
||||||
*/
|
|
||||||
FunctionDeclarationEntry getAnExplicitDeclarationEntry() {
|
|
||||||
result = this.getADeclarationEntry() and
|
|
||||||
not result.isImplicit()
|
|
||||||
}
|
|
||||||
|
|
||||||
private predicate declEntry(FunctionDeclarationEntry fde) {
|
private predicate declEntry(FunctionDeclarationEntry fde) {
|
||||||
fun_decls(unresolveElement(fde), underlyingElement(this), _, _, _) and
|
fun_decls(unresolveElement(fde), underlyingElement(this), _, _, _) and
|
||||||
// If one .cpp file specializes a function, and another calls the
|
// If one .cpp file specializes a function, and another calls the
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import semmle.code.cpp.Declaration
|
|||||||
private import semmle.code.cpp.internal.ResolveClass
|
private import semmle.code.cpp.internal.ResolveClass
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A C/C++ function parameter, catch block parameter, or requires expression parameter.
|
* A C/C++ function parameter or catch block parameter. For example the
|
||||||
* For example the function parameter `p` and the catch block parameter `e` in the following
|
* function parameter `p` and the catch block parameter `e` in the following
|
||||||
* code:
|
* code:
|
||||||
* ```
|
* ```
|
||||||
* void myFunction(int p) {
|
* void myFunction(int p) {
|
||||||
@@ -20,8 +20,8 @@ private import semmle.code.cpp.internal.ResolveClass
|
|||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*
|
*
|
||||||
* For catch block parameters and expression , there is a one-to-one
|
* For catch block parameters, there is a one-to-one correspondence between
|
||||||
* correspondence between the `Parameter` and its `VariableDeclarationEntry`.
|
* the `Parameter` and its `ParameterDeclarationEntry`.
|
||||||
*
|
*
|
||||||
* For function parameters, there is a one-to-many relationship between
|
* For function parameters, there is a one-to-many relationship between
|
||||||
* `Parameter` and `ParameterDeclarationEntry`, because one function can
|
* `Parameter` and `ParameterDeclarationEntry`, because one function can
|
||||||
@@ -73,8 +73,7 @@ class Parameter extends LocalScopeVariable, @parameter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private VariableDeclarationEntry getANamedDeclarationEntry() {
|
private VariableDeclarationEntry getANamedDeclarationEntry() {
|
||||||
result = this.getAnEffectiveDeclarationEntry() and
|
result = this.getAnEffectiveDeclarationEntry() and result.getName() != ""
|
||||||
exists(string name | var_decls(unresolveElement(result), _, _, name, _) | name != "")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -119,12 +118,6 @@ class Parameter extends LocalScopeVariable, @parameter {
|
|||||||
*/
|
*/
|
||||||
BlockStmt getCatchBlock() { params(underlyingElement(this), unresolveElement(result), _, _) }
|
BlockStmt getCatchBlock() { params(underlyingElement(this), unresolveElement(result), _, _) }
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the requires expression to which the parameter belongs, if it is a
|
|
||||||
* requires expression parameter.
|
|
||||||
*/
|
|
||||||
RequiresExpr getRequiresExpr() { params(underlyingElement(this), unresolveElement(result), _, _) }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the zero-based index of this parameter.
|
* Gets the zero-based index of this parameter.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -80,10 +80,6 @@ private Declaration getAnEnclosingDeclaration(Locatable ast) {
|
|||||||
or
|
or
|
||||||
result = ast.(Parameter).getFunction()
|
result = ast.(Parameter).getFunction()
|
||||||
or
|
or
|
||||||
result = ast.(Parameter).getCatchBlock().getEnclosingFunction()
|
|
||||||
or
|
|
||||||
result = ast.(Parameter).getRequiresExpr().getEnclosingFunction()
|
|
||||||
or
|
|
||||||
result = ast.(Expr).getEnclosingDeclaration()
|
result = ast.(Expr).getEnclosingDeclaration()
|
||||||
or
|
or
|
||||||
result = ast.(Initializer).getDeclaration()
|
result = ast.(Initializer).getDeclaration()
|
||||||
@@ -103,10 +99,7 @@ private newtype TPrintAstNode =
|
|||||||
stmt.getADeclarationEntry() = entry and
|
stmt.getADeclarationEntry() = entry and
|
||||||
shouldPrintDeclaration(stmt.getEnclosingFunction())
|
shouldPrintDeclaration(stmt.getEnclosingFunction())
|
||||||
} or
|
} or
|
||||||
TFunctionParametersNode(Function func) { shouldPrintDeclaration(func) } or
|
TParametersNode(Function func) { shouldPrintDeclaration(func) } or
|
||||||
TRequiresExprParametersNode(RequiresExpr req) {
|
|
||||||
shouldPrintDeclaration(getAnEnclosingDeclaration(req))
|
|
||||||
} or
|
|
||||||
TConstructorInitializersNode(Constructor ctor) {
|
TConstructorInitializersNode(Constructor ctor) {
|
||||||
ctor.hasEntryPoint() and
|
ctor.hasEntryPoint() and
|
||||||
shouldPrintDeclaration(ctor)
|
shouldPrintDeclaration(ctor)
|
||||||
@@ -310,14 +303,14 @@ class ExprNode extends AstNode {
|
|||||||
|
|
||||||
ExprNode() { expr = ast }
|
ExprNode() { expr = ast }
|
||||||
|
|
||||||
override PrintAstNode getChildInternal(int childIndex) {
|
override AstNode getChildInternal(int childIndex) {
|
||||||
result.(AstNode).getAst() = expr.getChild(childIndex)
|
result.getAst() = expr.getChild(childIndex)
|
||||||
or
|
or
|
||||||
childIndex = max(int index | exists(expr.getChild(index)) or index = 0) + 1 and
|
childIndex = max(int index | exists(expr.getChild(index)) or index = 0) + 1 and
|
||||||
result.(AstNode).getAst() = expr.(ConditionDeclExpr).getInitializingExpr()
|
result.getAst() = expr.(ConditionDeclExpr).getInitializingExpr()
|
||||||
or
|
or
|
||||||
exists(int destructorIndex |
|
exists(int destructorIndex |
|
||||||
result.(AstNode).getAst() = expr.getImplicitDestructorCall(destructorIndex) and
|
result.getAst() = expr.getImplicitDestructorCall(destructorIndex) and
|
||||||
childIndex = destructorIndex + max(int index | exists(expr.getChild(index)) or index = 0) + 2
|
childIndex = destructorIndex + max(int index | exists(expr.getChild(index)) or index = 0) + 2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -336,8 +329,7 @@ class ExprNode extends AstNode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override string getChildAccessorPredicateInternal(int childIndex) {
|
override string getChildAccessorPredicateInternal(int childIndex) {
|
||||||
result =
|
result = getChildAccessorWithoutConversions(ast, this.getChildInternal(childIndex).getAst())
|
||||||
getChildAccessorWithoutConversions(ast, this.getChildInternal(childIndex).(AstNode).getAst())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -417,26 +409,6 @@ class StmtExprNode extends ExprNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* A node representing a `RequiresExpr`
|
|
||||||
*/
|
|
||||||
class RequiresExprNode extends ExprNode {
|
|
||||||
override RequiresExpr expr;
|
|
||||||
|
|
||||||
override PrintAstNode getChildInternal(int childIndex) {
|
|
||||||
result = super.getChildInternal(childIndex)
|
|
||||||
or
|
|
||||||
childIndex = -1 and
|
|
||||||
result.(RequiresExprParametersNode).getRequiresExpr() = expr
|
|
||||||
}
|
|
||||||
|
|
||||||
override string getChildAccessorPredicateInternal(int childIndex) {
|
|
||||||
result = super.getChildAccessorPredicateInternal(childIndex)
|
|
||||||
or
|
|
||||||
childIndex = -1 and result = "<params>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A node representing a `DeclarationEntry`.
|
* A node representing a `DeclarationEntry`.
|
||||||
*/
|
*/
|
||||||
@@ -538,22 +510,6 @@ class DeclStmtNode extends StmtNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* A node representing a `Handler`.
|
|
||||||
*/
|
|
||||||
class HandlerNode extends ChildStmtNode {
|
|
||||||
Handler handler;
|
|
||||||
|
|
||||||
HandlerNode() { handler = stmt }
|
|
||||||
|
|
||||||
override BaseAstNode getChildInternal(int childIndex) {
|
|
||||||
result = super.getChildInternal(childIndex)
|
|
||||||
or
|
|
||||||
childIndex = -1 and
|
|
||||||
result.getAst() = handler.getParameter()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A node representing a `Parameter`.
|
* A node representing a `Parameter`.
|
||||||
*/
|
*/
|
||||||
@@ -596,10 +552,10 @@ class InitializerNode extends AstNode {
|
|||||||
/**
|
/**
|
||||||
* A node representing the parameters of a `Function`.
|
* A node representing the parameters of a `Function`.
|
||||||
*/
|
*/
|
||||||
class FunctionParametersNode extends PrintAstNode, TFunctionParametersNode {
|
class ParametersNode extends PrintAstNode, TParametersNode {
|
||||||
Function func;
|
Function func;
|
||||||
|
|
||||||
FunctionParametersNode() { this = TFunctionParametersNode(func) }
|
ParametersNode() { this = TParametersNode(func) }
|
||||||
|
|
||||||
final override string toString() { result = "" }
|
final override string toString() { result = "" }
|
||||||
|
|
||||||
@@ -620,33 +576,6 @@ class FunctionParametersNode extends PrintAstNode, TFunctionParametersNode {
|
|||||||
final Function getFunction() { result = func }
|
final Function getFunction() { result = func }
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* A node representing the parameters of a `RequiresExpr`.
|
|
||||||
*/
|
|
||||||
class RequiresExprParametersNode extends PrintAstNode, TRequiresExprParametersNode {
|
|
||||||
RequiresExpr req;
|
|
||||||
|
|
||||||
RequiresExprParametersNode() { this = TRequiresExprParametersNode(req) }
|
|
||||||
|
|
||||||
final override string toString() { result = "" }
|
|
||||||
|
|
||||||
final override Location getLocation() { result = getRepresentativeLocation(req) }
|
|
||||||
|
|
||||||
override AstNode getChildInternal(int childIndex) {
|
|
||||||
result.getAst() = req.getParameter(childIndex)
|
|
||||||
}
|
|
||||||
|
|
||||||
override string getChildAccessorPredicateInternal(int childIndex) {
|
|
||||||
exists(this.getChildInternal(childIndex)) and
|
|
||||||
result = "getParameter(" + childIndex.toString() + ")"
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the `RequiresExpr` for which this node represents the parameters.
|
|
||||||
*/
|
|
||||||
final RequiresExpr getRequiresExpr() { result = req }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A node representing the initializer list of a `Constructor`.
|
* A node representing the initializer list of a `Constructor`.
|
||||||
*/
|
*/
|
||||||
@@ -750,7 +679,7 @@ class FunctionNode extends FunctionOrGlobalOrNamespaceVariableNode {
|
|||||||
|
|
||||||
override PrintAstNode getChildInternal(int childIndex) {
|
override PrintAstNode getChildInternal(int childIndex) {
|
||||||
childIndex = 0 and
|
childIndex = 0 and
|
||||||
result.(FunctionParametersNode).getFunction() = func
|
result.(ParametersNode).getFunction() = func
|
||||||
or
|
or
|
||||||
childIndex = 1 and
|
childIndex = 1 and
|
||||||
result.(ConstructorInitializersNode).getConstructor() = func
|
result.(ConstructorInitializersNode).getConstructor() = func
|
||||||
@@ -825,8 +754,6 @@ private predicate namedStmtChildPredicates(Locatable s, Element e, string pred)
|
|||||||
or
|
or
|
||||||
s.(ConstexprIfStmt).getElse() = e and pred = "getElse()"
|
s.(ConstexprIfStmt).getElse() = e and pred = "getElse()"
|
||||||
or
|
or
|
||||||
s.(Handler).getParameter() = e and pred = "getParameter()"
|
|
||||||
or
|
|
||||||
s.(IfStmt).getInitialization() = e and pred = "getInitialization()"
|
s.(IfStmt).getInitialization() = e and pred = "getInitialization()"
|
||||||
or
|
or
|
||||||
s.(IfStmt).getCondition() = e and pred = "getCondition()"
|
s.(IfStmt).getCondition() = e and pred = "getCondition()"
|
||||||
@@ -974,11 +901,6 @@ private predicate namedExprChildPredicates(Expr expr, Element ele, string pred)
|
|||||||
or
|
or
|
||||||
expr.(CommaExpr).getRightOperand() = ele and pred = "getRightOperand()"
|
expr.(CommaExpr).getRightOperand() = ele and pred = "getRightOperand()"
|
||||||
or
|
or
|
||||||
expr.(CompoundRequirementExpr).getExpr() = ele and pred = "getExpr()"
|
|
||||||
or
|
|
||||||
expr.(CompoundRequirementExpr).getReturnTypeRequirement() = ele and
|
|
||||||
pred = "getReturnTypeRequirement()"
|
|
||||||
or
|
|
||||||
expr.(ConditionDeclExpr).getVariableAccess() = ele and pred = "getVariableAccess()"
|
expr.(ConditionDeclExpr).getVariableAccess() = ele and pred = "getVariableAccess()"
|
||||||
or
|
or
|
||||||
expr.(ConstructorFieldInit).getExpr() = ele and pred = "getExpr()"
|
expr.(ConstructorFieldInit).getExpr() = ele and pred = "getExpr()"
|
||||||
@@ -999,8 +921,6 @@ private predicate namedExprChildPredicates(Expr expr, Element ele, string pred)
|
|||||||
or
|
or
|
||||||
expr.(LambdaExpression).getInitializer() = ele and pred = "getInitializer()"
|
expr.(LambdaExpression).getInitializer() = ele and pred = "getInitializer()"
|
||||||
or
|
or
|
||||||
expr.(NestedRequirementExpr).getConstraint() = ele and pred = "getConstraint()"
|
|
||||||
or
|
|
||||||
expr.(NewOrNewArrayExpr).getAllocatorCall() = ele and pred = "getAllocatorCall()"
|
expr.(NewOrNewArrayExpr).getAllocatorCall() = ele and pred = "getAllocatorCall()"
|
||||||
or
|
or
|
||||||
expr.(NewOrNewArrayExpr).getAlignmentArgument() = ele and pred = "getAlignmentArgument()"
|
expr.(NewOrNewArrayExpr).getAlignmentArgument() = ele and pred = "getAlignmentArgument()"
|
||||||
@@ -1040,11 +960,6 @@ private predicate namedExprChildPredicates(Expr expr, Element ele, string pred)
|
|||||||
or
|
or
|
||||||
expr.(UnaryOperation).getOperand() = ele and pred = "getOperand()"
|
expr.(UnaryOperation).getOperand() = ele and pred = "getOperand()"
|
||||||
or
|
or
|
||||||
exists(int n |
|
|
||||||
expr.(RequiresExpr).getRequirement(n) = ele and
|
|
||||||
pred = "getRequirement(" + n + ")"
|
|
||||||
)
|
|
||||||
or
|
|
||||||
expr.(SizeofExprOperator).getExprOperand() = ele and pred = "getExprOperand()"
|
expr.(SizeofExprOperator).getExprOperand() = ele and pred = "getExprOperand()"
|
||||||
or
|
or
|
||||||
expr.(StmtExpr).getStmt() = ele and pred = "getStmt()"
|
expr.(StmtExpr).getStmt() = ele and pred = "getStmt()"
|
||||||
|
|||||||
@@ -241,10 +241,6 @@ class VariableDeclarationEntry extends DeclarationEntry, @var_decl {
|
|||||||
name != "" and result = name
|
name != "" and result = name
|
||||||
or
|
or
|
||||||
name = "" and result = this.getVariable().(LocalVariable).getName()
|
name = "" and result = this.getVariable().(LocalVariable).getName()
|
||||||
or
|
|
||||||
name = "" and
|
|
||||||
not this instanceof ParameterDeclarationEntry and
|
|
||||||
result = this.getVariable().(Parameter).getName()
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -299,11 +295,19 @@ class ParameterDeclarationEntry extends VariableDeclarationEntry {
|
|||||||
|
|
||||||
private string getAnonymousParameterDescription() {
|
private string getAnonymousParameterDescription() {
|
||||||
not exists(this.getName()) and
|
not exists(this.getName()) and
|
||||||
exists(string anon |
|
exists(string idx |
|
||||||
anon = "(unnamed parameter " + this.getIndex().toString() + ")" and
|
idx =
|
||||||
|
((this.getIndex() + 1).toString() + "th")
|
||||||
|
.replaceAll("1th", "1st")
|
||||||
|
.replaceAll("2th", "2nd")
|
||||||
|
.replaceAll("3th", "3rd")
|
||||||
|
.replaceAll("11st", "11th")
|
||||||
|
.replaceAll("12nd", "12th")
|
||||||
|
.replaceAll("13rd", "13th") and
|
||||||
if exists(this.getCanonicalName())
|
if exists(this.getCanonicalName())
|
||||||
then result = "declaration of " + this.getCanonicalName() + " as " + anon
|
then
|
||||||
else result = "declaration of " + anon
|
result = "declaration of " + this.getCanonicalName() + " as anonymous " + idx + " parameter"
|
||||||
|
else result = "declaration of " + idx + " parameter"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -281,9 +281,3 @@ private predicate exprToPartialDefinitionStep(Expr exprIn, Expr exprOut) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private predicate iteratorDereference(Call c) { c.getTarget() instanceof IteratorReferenceFunction }
|
private predicate iteratorDereference(Call c) { c.getTarget() instanceof IteratorReferenceFunction }
|
||||||
|
|
||||||
/**
|
|
||||||
* Holds if the additional step from `src` to `sink` should be considered in
|
|
||||||
* speculative taint flow exploration.
|
|
||||||
*/
|
|
||||||
predicate speculativeTaintStep(DataFlow::Node src, DataFlow::Node sink) { none() }
|
|
||||||
|
|||||||
@@ -149,11 +149,6 @@ class Call extends Expr, NameQualifiableElement, TCall {
|
|||||||
variableAddressEscapesTreeNonConst(va, this.getQualifier().getFullyConverted()) and
|
variableAddressEscapesTreeNonConst(va, this.getQualifier().getFullyConverted()) and
|
||||||
i = -1
|
i = -1
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Holds if this expression could be the return value of an implicitly declared function. */
|
|
||||||
predicate mayBeFromImplicitlyDeclaredFunction() {
|
|
||||||
this.getTarget().getADeclarationEntry().isImplicit()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -181,7 +181,12 @@ class VariableDeclarationEntry extends @var_decl {
|
|||||||
string getName() { var_decls(this, _, _, result, _) and result != "" }
|
string getName() { var_decls(this, _, _, result, _) and result != "" }
|
||||||
}
|
}
|
||||||
|
|
||||||
class Parameter extends LocalScopeVariable, @parameter { }
|
class Parameter extends LocalScopeVariable, @parameter {
|
||||||
|
@functionorblock function;
|
||||||
|
int index;
|
||||||
|
|
||||||
|
Parameter() { params(this, function, index, _) }
|
||||||
|
}
|
||||||
|
|
||||||
class GlobalOrNamespaceVariable extends Variable, @globalvariable { }
|
class GlobalOrNamespaceVariable extends Variable, @globalvariable { }
|
||||||
|
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -261,17 +261,13 @@ deprecated private module Config implements FullStateConfigSig {
|
|||||||
model = ""
|
model = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate isAdditionalFlowStep(
|
predicate isAdditionalFlowStep(Node node1, FlowState state1, Node node2, FlowState state2) {
|
||||||
Node node1, FlowState state1, Node node2, FlowState state2, string model
|
|
||||||
) {
|
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
getConfig(state1).isAdditionalFlowStep(node1, getState(state1), node2, getState(state2)) and
|
||||||
getConfig(state2) = getConfig(state1) and
|
getConfig(state2) = getConfig(state1)
|
||||||
model = ""
|
|
||||||
or
|
or
|
||||||
not singleConfiguration() and
|
not singleConfiguration() and
|
||||||
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
getConfig(state1).isAdditionalFlowStep(node1, node2) and
|
||||||
state2 = state1 and
|
state2 = state1
|
||||||
model = ""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate allowImplicitRead(Node node, ContentSet c) {
|
predicate allowImplicitRead(Node node, ContentSet c) {
|
||||||
|
|||||||
@@ -1328,10 +1328,7 @@ predicate lambdaCreation(Node creation, LambdaCallKind kind, DataFlowCallable c)
|
|||||||
|
|
||||||
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
|
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
|
||||||
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) {
|
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) {
|
||||||
(
|
call.(SummaryCall).getReceiver() = receiver.(FlowSummaryNode).getSummaryNode() and
|
||||||
call.(SummaryCall).getReceiver() = receiver.(FlowSummaryNode).getSummaryNode() or
|
|
||||||
call.asCallInstruction().getCallTargetOperand() = receiver.asOperand()
|
|
||||||
) and
|
|
||||||
exists(kind)
|
exists(kind)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ private import SsaInternals as Ssa
|
|||||||
private import DataFlowImplCommon as DataFlowImplCommon
|
private import DataFlowImplCommon as DataFlowImplCommon
|
||||||
private import codeql.util.Unit
|
private import codeql.util.Unit
|
||||||
private import Node0ToString
|
private import Node0ToString
|
||||||
private import DataFlowDispatch as DataFlowDispatch
|
|
||||||
import ExprNodes
|
import ExprNodes
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2498,16 +2497,3 @@ class AdditionalCallTarget extends Unit {
|
|||||||
*/
|
*/
|
||||||
abstract Declaration viableTarget(Call call);
|
abstract Declaration viableTarget(Call call);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a function that may be called by `call`.
|
|
||||||
*
|
|
||||||
* Note that `call` may be a call to a function pointer expression.
|
|
||||||
*/
|
|
||||||
Function getARuntimeTarget(Call call) {
|
|
||||||
exists(DataFlowCall dfCall | dfCall.asCallInstruction().getUnconvertedResultExpression() = call |
|
|
||||||
result = DataFlowDispatch::viableCallable(dfCall).asSourceCallable()
|
|
||||||
or
|
|
||||||
result = DataFlowImplCommon::viableCallableLambda(dfCall, _).asSourceCallable()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -212,30 +212,3 @@ predicate modeledTaintStep(DataFlow::Node nodeIn, DataFlow::Node nodeOut, string
|
|||||||
nodeOut = callOutput(call, modelOut)
|
nodeOut = callOutput(call, modelOut)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
import SpeculativeTaintFlow
|
|
||||||
|
|
||||||
private module SpeculativeTaintFlow {
|
|
||||||
private import semmle.code.cpp.ir.dataflow.internal.DataFlowDispatch as DataFlowDispatch
|
|
||||||
private import semmle.code.cpp.ir.dataflow.internal.DataFlowPrivate as DataFlowPrivate
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Holds if the additional step from `src` to `sink` should be considered in
|
|
||||||
* speculative taint flow exploration.
|
|
||||||
*/
|
|
||||||
predicate speculativeTaintStep(DataFlow::Node src, DataFlow::Node sink) {
|
|
||||||
exists(DataFlowCall call, ArgumentPosition argpos |
|
|
||||||
// TODO: exclude neutrals and anything that has QL modeling.
|
|
||||||
not exists(DataFlowDispatch::viableCallable(call)) and
|
|
||||||
src.(DataFlowPrivate::ArgumentNode).argumentOf(call, argpos)
|
|
||||||
|
|
|
||||||
not argpos.(DirectPosition).getIndex() = -1 and
|
|
||||||
sink.(PostUpdateNode)
|
|
||||||
.getPreUpdateNode()
|
|
||||||
.(DataFlowPrivate::ArgumentNode)
|
|
||||||
.argumentOf(call, any(DirectPosition qualpos | qualpos.getIndex() = -1))
|
|
||||||
or
|
|
||||||
sink.(DataFlowPrivate::OutNode).getCall() = call
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ private module Input implements TypeFlowInput<Location> {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
predicate step(TypeFlowNode n1, TypeFlowNode n2) {
|
predicate joinStep(TypeFlowNode n1, TypeFlowNode n2) {
|
||||||
// instruction -> phi
|
// instruction -> phi
|
||||||
getAnUltimateLocalDefinition(n2.asInstruction()) = n1.asInstruction()
|
getAnUltimateLocalDefinition(n2.asInstruction()) = n1.asInstruction()
|
||||||
or
|
or
|
||||||
@@ -179,8 +179,6 @@ private module Input implements TypeFlowInput<Location> {
|
|||||||
n1.asInstruction() = arg and
|
n1.asInstruction() = arg and
|
||||||
n2.asInstruction() = p
|
n2.asInstruction() = p
|
||||||
)
|
)
|
||||||
or
|
|
||||||
instructionStep(n1.asInstruction(), n2.asInstruction())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -201,6 +199,10 @@ private module Input implements TypeFlowInput<Location> {
|
|||||||
i2.(PointerArithmeticInstruction).getLeft() = i1
|
i2.(PointerArithmeticInstruction).getLeft() = i1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
predicate step(TypeFlowNode n1, TypeFlowNode n2) {
|
||||||
|
instructionStep(n1.asInstruction(), n2.asInstruction())
|
||||||
|
}
|
||||||
|
|
||||||
predicate isNullValue(TypeFlowNode n) { n.isNullValue() }
|
predicate isNullValue(TypeFlowNode n) { n.isNullValue() }
|
||||||
|
|
||||||
private newtype TType =
|
private newtype TType =
|
||||||
@@ -243,7 +245,11 @@ private module Input implements TypeFlowInput<Location> {
|
|||||||
|
|
||||||
pragma[nomagic]
|
pragma[nomagic]
|
||||||
private predicate upcastCand(TypeFlowNode n, Type t1, Type t2) {
|
private predicate upcastCand(TypeFlowNode n, Type t1, Type t2) {
|
||||||
exists(TypeFlowNode next | step(n, next) |
|
exists(TypeFlowNode next |
|
||||||
|
step(n, next)
|
||||||
|
or
|
||||||
|
joinStep(n, next)
|
||||||
|
|
|
||||||
n.getType() = t1 and
|
n.getType() = t1 and
|
||||||
next.getType() = t2 and
|
next.getType() = t2 and
|
||||||
t1 != t2
|
t1 != t2
|
||||||
|
|||||||
@@ -546,26 +546,4 @@ module InstructionConsistency {
|
|||||||
"' has no associated variable, in function '$@'." and
|
"' has no associated variable, in function '$@'." and
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText)
|
irFunc = getInstructionIRFunction(instr, irFuncText)
|
||||||
}
|
}
|
||||||
|
|
||||||
query predicate nonBooleanOperand(
|
|
||||||
Instruction instr, string message, OptionalIRFunction irFunc, string irFuncText
|
|
||||||
) {
|
|
||||||
exists(Instruction unary |
|
|
||||||
unary = instr.(LogicalNotInstruction).getUnary() and
|
|
||||||
not unary.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Logical Not instruction " + instr.toString() +
|
|
||||||
" with non-Boolean operand, in function '$@'."
|
|
||||||
)
|
|
||||||
or
|
|
||||||
exists(Instruction cond |
|
|
||||||
cond = instr.(ConditionalBranchInstruction).getCondition() and
|
|
||||||
not cond.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Conditional branch instruction " + instr.toString() +
|
|
||||||
" with non-Boolean condition, in function '$@'."
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,112 +6,6 @@
|
|||||||
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
||||||
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
||||||
* to dump.
|
* to dump.
|
||||||
*
|
|
||||||
* Anatomy of a printed IR instruction
|
|
||||||
*
|
|
||||||
* An instruction:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 2281| v2281_19(void) = Call[~String] : func:r2281_18, this:r2281_17
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* The prefix `# 2281|` specifies that this instruction was generated by the C++ source code on line 2281.
|
|
||||||
* Scrolling up in the printed output, one will eventually find the name of the file to which the line
|
|
||||||
* belongs.
|
|
||||||
*
|
|
||||||
* `v2281_19(void)` is the result of the instruction. Here, `v` means this is a void result or operand (so
|
|
||||||
* there should be no later uses of the result; see below for other possible values). The `2281_19` is a
|
|
||||||
* unique ID for the result. This is usually just the line number plus a small integer suffix to make it
|
|
||||||
* unique within the function. The type of the result is `void`. In this case, it is `void`, because
|
|
||||||
* `~String` returns `void`. The type of the result is usually just the name of the appropriate C++ type,
|
|
||||||
* but it will sometimes be a type like `glval<int>`, which means result holds a glvalue, which at the
|
|
||||||
* IR level works like a pointer. In other words, in the source code the type was `int`, but it is really
|
|
||||||
* more like an `int*`. We see this, for example, in `x = y;`, where `x` is a glvalue.
|
|
||||||
*
|
|
||||||
* `Call` is the opcode of the instruction. Common opcodes include:
|
|
||||||
*
|
|
||||||
* * Arithmetic operations: `Add`, `Sub`, `Mul`, etc.
|
|
||||||
* * Memory access operations: `Load`, `Store`.
|
|
||||||
* * Function calls: `Call`.
|
|
||||||
* * Literals: `Constant`.
|
|
||||||
* * Variable addresses: `VariableAddress`.
|
|
||||||
* * Function entry points: `EnterFunction`.
|
|
||||||
* * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
|
|
||||||
* `Store` to a special `#return` variable.
|
|
||||||
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
|
|
||||||
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
|
|
||||||
* * SSA-related opcodes: `Phi`, `Chi`.
|
|
||||||
*
|
|
||||||
* `[~String]` denotes additional information. The information might be present earlier in the IR, as is the case
|
|
||||||
* for `Call`, where it is the name of the called function. This is also the case for `Load` and `Store`, where it
|
|
||||||
* is the name of the variable that loaded or stored (if known). In the case of `Constant`, `FieldAddress`, and
|
|
||||||
* `VariableAddress`, the information between brackets does not occur earlier.
|
|
||||||
*
|
|
||||||
* `func:r2281_18` and `this:r28281_17` are the operands of the instruction. The `func:` prefix denotes the operand
|
|
||||||
* that holds the address of the called function. The `this:` prefix denotes the argument to the special `this`
|
|
||||||
* parameter of an instance member function. `r2281_18`, `r2281_17` are the unique IDs of the operands. Each of these
|
|
||||||
* matches the ID of a previously seen result, showing where that value came from. The `r` means that these are
|
|
||||||
* "register" operands (see below).
|
|
||||||
*
|
|
||||||
* Result and operand kinds:
|
|
||||||
*
|
|
||||||
* Every result and operand is one of these three kinds:
|
|
||||||
*
|
|
||||||
* * `r` "register". These operands are not stored in any particular memory location. We can think of them as
|
|
||||||
* temporary values created during the evaluation of an expression. A register operand almost always has one
|
|
||||||
* use, often in the same block as its definition.
|
|
||||||
* * `m` "memory". These operands represents accesses to a specific memory location. The location could be a
|
|
||||||
* local variable, a global variable, a field of an object, an element of an array, or any memory that we happen
|
|
||||||
* to have a pointer to. These only occur as the result of a `Store`, the source operand of a `Load` or on the
|
|
||||||
* SSA instructions (`Phi`, `Chi`).
|
|
||||||
* * `v` "void". Really just a register operand, but we mark register operands of type void with this special prefix
|
|
||||||
* so we know that there is no actual value there.
|
|
||||||
*
|
|
||||||
* Branches in the IR:
|
|
||||||
*
|
|
||||||
* The IR is divided into basic blocks. At the end of each block, there are one or more edges showing the possible
|
|
||||||
* control flow successors of the block.
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 44| v44_3(void) = ConditionalBranch : r44_2
|
|
||||||
* #-----| False -> Block 4
|
|
||||||
* #-----| True -> Block 3
|
|
||||||
* ```
|
|
||||||
* Here we have a block that ends with a conditional branch. The two edges show where the control flows to depending
|
|
||||||
* on whether the condition is true or false.
|
|
||||||
*
|
|
||||||
* SSA instructions:
|
|
||||||
*
|
|
||||||
* We use `Phi` instructions in SSA to create a single definition for a variable that might be assigned on multiple
|
|
||||||
* control flow paths. The `Phi` instruction merges the potential values of that variable from each predecessor edge,
|
|
||||||
* and the resulting definition is then used wherever that variable is accessed later on.
|
|
||||||
*
|
|
||||||
* When dealing with aliased memory, we use the `Chi` instruction to create a single definition for memory that might
|
|
||||||
* or might not have been updated by a store, depending on the actual address that was written to. For example, take:
|
|
||||||
*
|
|
||||||
* ```cpp
|
|
||||||
* int x = 5;
|
|
||||||
* int y = 7;
|
|
||||||
* int* p = condition ? &x : &y;
|
|
||||||
* *p = 6;
|
|
||||||
* return x;
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* At the point where we store to `*p`, we do not know whether `p` points to `x` or `y`. Thus, we do not know whether
|
|
||||||
* `return x;` is going to return the value that `x` was originally initialized to (5), or whether it will return 6,
|
|
||||||
* because it was overwritten by `*p = 6;`. We insert a `Chi` instruction immediately after the store to `*p`:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* r2(int) = Constant[6]
|
|
||||||
* r3(int*) = <<value of p>>
|
|
||||||
* m4(int) = Store : &r3, r2 // Stores the constant 6 to *p
|
|
||||||
* m5(unknown) = Chi : total:m1, partial:m4
|
|
||||||
* ```
|
|
||||||
* The `partial:` operand represents the memory that was just stored. The `total:` operand represents the previous
|
|
||||||
* contents of all of the memory that `p` might have pointed to (in this case, both `x` and `y`). The result of the
|
|
||||||
* `Chi` represents the new contents of whatever memory the `total:` operand referred to. We usually do not know exactly
|
|
||||||
* which parts of that memory were overwritten, but it does model that any of that memory could have been modified, so
|
|
||||||
* that later instructions do not assume that the memory was unchanged.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
private import internal.IRInternal
|
private import internal.IRInternal
|
||||||
|
|||||||
@@ -683,13 +683,8 @@ private Overlap getExtentOverlap(MemoryLocation0 def, MemoryLocation0 use) {
|
|||||||
def.getVirtualVariable() = use.getVirtualVariable() and
|
def.getVirtualVariable() = use.getVirtualVariable() and
|
||||||
def instanceof EntireAllocationMemoryLocation and
|
def instanceof EntireAllocationMemoryLocation and
|
||||||
(
|
(
|
||||||
// EntireAllocationMemoryLocation exactly overlaps any EntireAllocationMemoryLocation for the
|
// EntireAllocationMemoryLocation exactly overlaps itself.
|
||||||
// same allocation. Checking the allocation, rather than the memory location itself, ensures
|
use instanceof EntireAllocationMemoryLocation and
|
||||||
// that we get the right relationship between the "must" and "may" memory locations for that
|
|
||||||
// allocation.
|
|
||||||
// Note that if one of the locations is a "may" access, the overlap will be downgraded to
|
|
||||||
// `MustTotallyOverlap` or `MayPartialOverlap` in `getOverlap()`.
|
|
||||||
use.(EntireAllocationMemoryLocation).getAnAllocation() = def.getAnAllocation() and
|
|
||||||
result instanceof MustExactlyOverlap
|
result instanceof MustExactlyOverlap
|
||||||
or
|
or
|
||||||
not use instanceof EntireAllocationMemoryLocation and
|
not use instanceof EntireAllocationMemoryLocation and
|
||||||
|
|||||||
@@ -546,26 +546,4 @@ module InstructionConsistency {
|
|||||||
"' has no associated variable, in function '$@'." and
|
"' has no associated variable, in function '$@'." and
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText)
|
irFunc = getInstructionIRFunction(instr, irFuncText)
|
||||||
}
|
}
|
||||||
|
|
||||||
query predicate nonBooleanOperand(
|
|
||||||
Instruction instr, string message, OptionalIRFunction irFunc, string irFuncText
|
|
||||||
) {
|
|
||||||
exists(Instruction unary |
|
|
||||||
unary = instr.(LogicalNotInstruction).getUnary() and
|
|
||||||
not unary.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Logical Not instruction " + instr.toString() +
|
|
||||||
" with non-Boolean operand, in function '$@'."
|
|
||||||
)
|
|
||||||
or
|
|
||||||
exists(Instruction cond |
|
|
||||||
cond = instr.(ConditionalBranchInstruction).getCondition() and
|
|
||||||
not cond.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Conditional branch instruction " + instr.toString() +
|
|
||||||
" with non-Boolean condition, in function '$@'."
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,112 +6,6 @@
|
|||||||
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
||||||
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
||||||
* to dump.
|
* to dump.
|
||||||
*
|
|
||||||
* Anatomy of a printed IR instruction
|
|
||||||
*
|
|
||||||
* An instruction:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 2281| v2281_19(void) = Call[~String] : func:r2281_18, this:r2281_17
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* The prefix `# 2281|` specifies that this instruction was generated by the C++ source code on line 2281.
|
|
||||||
* Scrolling up in the printed output, one will eventually find the name of the file to which the line
|
|
||||||
* belongs.
|
|
||||||
*
|
|
||||||
* `v2281_19(void)` is the result of the instruction. Here, `v` means this is a void result or operand (so
|
|
||||||
* there should be no later uses of the result; see below for other possible values). The `2281_19` is a
|
|
||||||
* unique ID for the result. This is usually just the line number plus a small integer suffix to make it
|
|
||||||
* unique within the function. The type of the result is `void`. In this case, it is `void`, because
|
|
||||||
* `~String` returns `void`. The type of the result is usually just the name of the appropriate C++ type,
|
|
||||||
* but it will sometimes be a type like `glval<int>`, which means result holds a glvalue, which at the
|
|
||||||
* IR level works like a pointer. In other words, in the source code the type was `int`, but it is really
|
|
||||||
* more like an `int*`. We see this, for example, in `x = y;`, where `x` is a glvalue.
|
|
||||||
*
|
|
||||||
* `Call` is the opcode of the instruction. Common opcodes include:
|
|
||||||
*
|
|
||||||
* * Arithmetic operations: `Add`, `Sub`, `Mul`, etc.
|
|
||||||
* * Memory access operations: `Load`, `Store`.
|
|
||||||
* * Function calls: `Call`.
|
|
||||||
* * Literals: `Constant`.
|
|
||||||
* * Variable addresses: `VariableAddress`.
|
|
||||||
* * Function entry points: `EnterFunction`.
|
|
||||||
* * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
|
|
||||||
* `Store` to a special `#return` variable.
|
|
||||||
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
|
|
||||||
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
|
|
||||||
* * SSA-related opcodes: `Phi`, `Chi`.
|
|
||||||
*
|
|
||||||
* `[~String]` denotes additional information. The information might be present earlier in the IR, as is the case
|
|
||||||
* for `Call`, where it is the name of the called function. This is also the case for `Load` and `Store`, where it
|
|
||||||
* is the name of the variable that loaded or stored (if known). In the case of `Constant`, `FieldAddress`, and
|
|
||||||
* `VariableAddress`, the information between brackets does not occur earlier.
|
|
||||||
*
|
|
||||||
* `func:r2281_18` and `this:r28281_17` are the operands of the instruction. The `func:` prefix denotes the operand
|
|
||||||
* that holds the address of the called function. The `this:` prefix denotes the argument to the special `this`
|
|
||||||
* parameter of an instance member function. `r2281_18`, `r2281_17` are the unique IDs of the operands. Each of these
|
|
||||||
* matches the ID of a previously seen result, showing where that value came from. The `r` means that these are
|
|
||||||
* "register" operands (see below).
|
|
||||||
*
|
|
||||||
* Result and operand kinds:
|
|
||||||
*
|
|
||||||
* Every result and operand is one of these three kinds:
|
|
||||||
*
|
|
||||||
* * `r` "register". These operands are not stored in any particular memory location. We can think of them as
|
|
||||||
* temporary values created during the evaluation of an expression. A register operand almost always has one
|
|
||||||
* use, often in the same block as its definition.
|
|
||||||
* * `m` "memory". These operands represents accesses to a specific memory location. The location could be a
|
|
||||||
* local variable, a global variable, a field of an object, an element of an array, or any memory that we happen
|
|
||||||
* to have a pointer to. These only occur as the result of a `Store`, the source operand of a `Load` or on the
|
|
||||||
* SSA instructions (`Phi`, `Chi`).
|
|
||||||
* * `v` "void". Really just a register operand, but we mark register operands of type void with this special prefix
|
|
||||||
* so we know that there is no actual value there.
|
|
||||||
*
|
|
||||||
* Branches in the IR:
|
|
||||||
*
|
|
||||||
* The IR is divided into basic blocks. At the end of each block, there are one or more edges showing the possible
|
|
||||||
* control flow successors of the block.
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 44| v44_3(void) = ConditionalBranch : r44_2
|
|
||||||
* #-----| False -> Block 4
|
|
||||||
* #-----| True -> Block 3
|
|
||||||
* ```
|
|
||||||
* Here we have a block that ends with a conditional branch. The two edges show where the control flows to depending
|
|
||||||
* on whether the condition is true or false.
|
|
||||||
*
|
|
||||||
* SSA instructions:
|
|
||||||
*
|
|
||||||
* We use `Phi` instructions in SSA to create a single definition for a variable that might be assigned on multiple
|
|
||||||
* control flow paths. The `Phi` instruction merges the potential values of that variable from each predecessor edge,
|
|
||||||
* and the resulting definition is then used wherever that variable is accessed later on.
|
|
||||||
*
|
|
||||||
* When dealing with aliased memory, we use the `Chi` instruction to create a single definition for memory that might
|
|
||||||
* or might not have been updated by a store, depending on the actual address that was written to. For example, take:
|
|
||||||
*
|
|
||||||
* ```cpp
|
|
||||||
* int x = 5;
|
|
||||||
* int y = 7;
|
|
||||||
* int* p = condition ? &x : &y;
|
|
||||||
* *p = 6;
|
|
||||||
* return x;
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* At the point where we store to `*p`, we do not know whether `p` points to `x` or `y`. Thus, we do not know whether
|
|
||||||
* `return x;` is going to return the value that `x` was originally initialized to (5), or whether it will return 6,
|
|
||||||
* because it was overwritten by `*p = 6;`. We insert a `Chi` instruction immediately after the store to `*p`:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* r2(int) = Constant[6]
|
|
||||||
* r3(int*) = <<value of p>>
|
|
||||||
* m4(int) = Store : &r3, r2 // Stores the constant 6 to *p
|
|
||||||
* m5(unknown) = Chi : total:m1, partial:m4
|
|
||||||
* ```
|
|
||||||
* The `partial:` operand represents the memory that was just stored. The `total:` operand represents the previous
|
|
||||||
* contents of all of the memory that `p` might have pointed to (in this case, both `x` and `y`). The result of the
|
|
||||||
* `Chi` represents the new contents of whatever memory the `total:` operand referred to. We usually do not know exactly
|
|
||||||
* which parts of that memory were overwritten, but it does model that any of that memory could have been modified, so
|
|
||||||
* that later instructions do not assume that the memory was unchanged.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
private import internal.IRInternal
|
private import internal.IRInternal
|
||||||
|
|||||||
@@ -196,8 +196,6 @@ private predicate isInvalidFunction(Function func) {
|
|||||||
expr.getEnclosingFunction() = func and
|
expr.getEnclosingFunction() = func and
|
||||||
not exists(expr.getType())
|
not exists(expr.getType())
|
||||||
)
|
)
|
||||||
or
|
|
||||||
count(func.getEntryPoint().getLocation()) > 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -546,26 +546,4 @@ module InstructionConsistency {
|
|||||||
"' has no associated variable, in function '$@'." and
|
"' has no associated variable, in function '$@'." and
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText)
|
irFunc = getInstructionIRFunction(instr, irFuncText)
|
||||||
}
|
}
|
||||||
|
|
||||||
query predicate nonBooleanOperand(
|
|
||||||
Instruction instr, string message, OptionalIRFunction irFunc, string irFuncText
|
|
||||||
) {
|
|
||||||
exists(Instruction unary |
|
|
||||||
unary = instr.(LogicalNotInstruction).getUnary() and
|
|
||||||
not unary.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Logical Not instruction " + instr.toString() +
|
|
||||||
" with non-Boolean operand, in function '$@'."
|
|
||||||
)
|
|
||||||
or
|
|
||||||
exists(Instruction cond |
|
|
||||||
cond = instr.(ConditionalBranchInstruction).getCondition() and
|
|
||||||
not cond.getResultIRType() instanceof IRBooleanType and
|
|
||||||
irFunc = getInstructionIRFunction(instr, irFuncText) and
|
|
||||||
message =
|
|
||||||
"Conditional branch instruction " + instr.toString() +
|
|
||||||
" with non-Boolean condition, in function '$@'."
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,112 +6,6 @@
|
|||||||
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
||||||
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
* `PrintIRConfiguration`, and overrides `shouldPrintDeclaration()` to select a subset of declarations
|
||||||
* to dump.
|
* to dump.
|
||||||
*
|
|
||||||
* Anatomy of a printed IR instruction
|
|
||||||
*
|
|
||||||
* An instruction:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 2281| v2281_19(void) = Call[~String] : func:r2281_18, this:r2281_17
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* The prefix `# 2281|` specifies that this instruction was generated by the C++ source code on line 2281.
|
|
||||||
* Scrolling up in the printed output, one will eventually find the name of the file to which the line
|
|
||||||
* belongs.
|
|
||||||
*
|
|
||||||
* `v2281_19(void)` is the result of the instruction. Here, `v` means this is a void result or operand (so
|
|
||||||
* there should be no later uses of the result; see below for other possible values). The `2281_19` is a
|
|
||||||
* unique ID for the result. This is usually just the line number plus a small integer suffix to make it
|
|
||||||
* unique within the function. The type of the result is `void`. In this case, it is `void`, because
|
|
||||||
* `~String` returns `void`. The type of the result is usually just the name of the appropriate C++ type,
|
|
||||||
* but it will sometimes be a type like `glval<int>`, which means result holds a glvalue, which at the
|
|
||||||
* IR level works like a pointer. In other words, in the source code the type was `int`, but it is really
|
|
||||||
* more like an `int*`. We see this, for example, in `x = y;`, where `x` is a glvalue.
|
|
||||||
*
|
|
||||||
* `Call` is the opcode of the instruction. Common opcodes include:
|
|
||||||
*
|
|
||||||
* * Arithmetic operations: `Add`, `Sub`, `Mul`, etc.
|
|
||||||
* * Memory access operations: `Load`, `Store`.
|
|
||||||
* * Function calls: `Call`.
|
|
||||||
* * Literals: `Constant`.
|
|
||||||
* * Variable addresses: `VariableAddress`.
|
|
||||||
* * Function entry points: `EnterFunction`.
|
|
||||||
* * Return from a function: `Return`, `ReturnVoid`. Note that the value being returned is set separately by a
|
|
||||||
* `Store` to a special `#return` variable.
|
|
||||||
* * Stack unwinding for C++ function that throw and where the exception escapes the function: `Unwind`.
|
|
||||||
* * Common exit point for `Unwind` and `Return`: `ExitFunction`.
|
|
||||||
* * SSA-related opcodes: `Phi`, `Chi`.
|
|
||||||
*
|
|
||||||
* `[~String]` denotes additional information. The information might be present earlier in the IR, as is the case
|
|
||||||
* for `Call`, where it is the name of the called function. This is also the case for `Load` and `Store`, where it
|
|
||||||
* is the name of the variable that loaded or stored (if known). In the case of `Constant`, `FieldAddress`, and
|
|
||||||
* `VariableAddress`, the information between brackets does not occur earlier.
|
|
||||||
*
|
|
||||||
* `func:r2281_18` and `this:r28281_17` are the operands of the instruction. The `func:` prefix denotes the operand
|
|
||||||
* that holds the address of the called function. The `this:` prefix denotes the argument to the special `this`
|
|
||||||
* parameter of an instance member function. `r2281_18`, `r2281_17` are the unique IDs of the operands. Each of these
|
|
||||||
* matches the ID of a previously seen result, showing where that value came from. The `r` means that these are
|
|
||||||
* "register" operands (see below).
|
|
||||||
*
|
|
||||||
* Result and operand kinds:
|
|
||||||
*
|
|
||||||
* Every result and operand is one of these three kinds:
|
|
||||||
*
|
|
||||||
* * `r` "register". These operands are not stored in any particular memory location. We can think of them as
|
|
||||||
* temporary values created during the evaluation of an expression. A register operand almost always has one
|
|
||||||
* use, often in the same block as its definition.
|
|
||||||
* * `m` "memory". These operands represents accesses to a specific memory location. The location could be a
|
|
||||||
* local variable, a global variable, a field of an object, an element of an array, or any memory that we happen
|
|
||||||
* to have a pointer to. These only occur as the result of a `Store`, the source operand of a `Load` or on the
|
|
||||||
* SSA instructions (`Phi`, `Chi`).
|
|
||||||
* * `v` "void". Really just a register operand, but we mark register operands of type void with this special prefix
|
|
||||||
* so we know that there is no actual value there.
|
|
||||||
*
|
|
||||||
* Branches in the IR:
|
|
||||||
*
|
|
||||||
* The IR is divided into basic blocks. At the end of each block, there are one or more edges showing the possible
|
|
||||||
* control flow successors of the block.
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* # 44| v44_3(void) = ConditionalBranch : r44_2
|
|
||||||
* #-----| False -> Block 4
|
|
||||||
* #-----| True -> Block 3
|
|
||||||
* ```
|
|
||||||
* Here we have a block that ends with a conditional branch. The two edges show where the control flows to depending
|
|
||||||
* on whether the condition is true or false.
|
|
||||||
*
|
|
||||||
* SSA instructions:
|
|
||||||
*
|
|
||||||
* We use `Phi` instructions in SSA to create a single definition for a variable that might be assigned on multiple
|
|
||||||
* control flow paths. The `Phi` instruction merges the potential values of that variable from each predecessor edge,
|
|
||||||
* and the resulting definition is then used wherever that variable is accessed later on.
|
|
||||||
*
|
|
||||||
* When dealing with aliased memory, we use the `Chi` instruction to create a single definition for memory that might
|
|
||||||
* or might not have been updated by a store, depending on the actual address that was written to. For example, take:
|
|
||||||
*
|
|
||||||
* ```cpp
|
|
||||||
* int x = 5;
|
|
||||||
* int y = 7;
|
|
||||||
* int* p = condition ? &x : &y;
|
|
||||||
* *p = 6;
|
|
||||||
* return x;
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* At the point where we store to `*p`, we do not know whether `p` points to `x` or `y`. Thus, we do not know whether
|
|
||||||
* `return x;` is going to return the value that `x` was originally initialized to (5), or whether it will return 6,
|
|
||||||
* because it was overwritten by `*p = 6;`. We insert a `Chi` instruction immediately after the store to `*p`:
|
|
||||||
*
|
|
||||||
* ```
|
|
||||||
* r2(int) = Constant[6]
|
|
||||||
* r3(int*) = <<value of p>>
|
|
||||||
* m4(int) = Store : &r3, r2 // Stores the constant 6 to *p
|
|
||||||
* m5(unknown) = Chi : total:m1, partial:m4
|
|
||||||
* ```
|
|
||||||
* The `partial:` operand represents the memory that was just stored. The `total:` operand represents the previous
|
|
||||||
* contents of all of the memory that `p` might have pointed to (in this case, both `x` and `y`). The result of the
|
|
||||||
* `Chi` represents the new contents of whatever memory the `total:` operand referred to. We usually do not know exactly
|
|
||||||
* which parts of that memory were overwritten, but it does model that any of that memory could have been modified, so
|
|
||||||
* that later instructions do not assume that the memory was unchanged.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
private import internal.IRInternal
|
private import internal.IRInternal
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import semmle.code.cpp.models.interfaces.Alias
|
|||||||
import semmle.code.cpp.models.interfaces.SideEffect
|
import semmle.code.cpp.models.interfaces.SideEffect
|
||||||
|
|
||||||
/** The function `fopen` and friends. */
|
/** The function `fopen` and friends. */
|
||||||
private class Fopen extends Function, AliasFunction, SideEffectFunction, TaintFunction {
|
private class Fopen extends Function, AliasFunction, SideEffectFunction {
|
||||||
Fopen() {
|
Fopen() {
|
||||||
this.hasGlobalOrStdName(["fopen", "fopen_s", "freopen"])
|
this.hasGlobalOrStdName(["fopen", "fopen_s", "freopen"])
|
||||||
or
|
or
|
||||||
@@ -47,22 +47,4 @@ private class Fopen extends Function, AliasFunction, SideEffectFunction, TaintFu
|
|||||||
i = 0 and
|
i = 0 and
|
||||||
buffer = true
|
buffer = true
|
||||||
}
|
}
|
||||||
|
|
||||||
override predicate hasTaintFlow(FunctionInput input, FunctionOutput output) {
|
|
||||||
(
|
|
||||||
this.hasGlobalOrStdName(["fopen", "freopen"]) or
|
|
||||||
this.hasGlobalName(["_wfopen", "_fsopen", "_wfsopen"])
|
|
||||||
) and
|
|
||||||
input.isParameterDeref(0) and
|
|
||||||
output.isReturnValueDeref()
|
|
||||||
or
|
|
||||||
// The out parameter is a pointer to a `FILE*`.
|
|
||||||
this.hasGlobalOrStdName("fopen_s") and
|
|
||||||
input.isParameterDeref(1) and
|
|
||||||
output.isParameterDeref(0, 2)
|
|
||||||
or
|
|
||||||
this.hasGlobalName(["_open", "_wopen"]) and
|
|
||||||
input.isParameterDeref(0) and
|
|
||||||
output.isReturnValue()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ private class Sprintf extends FormattingFunction, NonThrowingFunction {
|
|||||||
override int getFirstFormatArgumentIndex() {
|
override int getFirstFormatArgumentIndex() {
|
||||||
if this.hasName("__builtin___sprintf_chk")
|
if this.hasName("__builtin___sprintf_chk")
|
||||||
then result = 4
|
then result = 4
|
||||||
else result = super.getFirstFormatArgumentIndex()
|
else result = this.getNumberOfParameters()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -42,21 +42,6 @@ private Type getAFormatterWideTypeOrDefault() {
|
|||||||
* A standard library function that uses a `printf`-like formatting string.
|
* A standard library function that uses a `printf`-like formatting string.
|
||||||
*/
|
*/
|
||||||
abstract class FormattingFunction extends ArrayFunction, TaintFunction {
|
abstract class FormattingFunction extends ArrayFunction, TaintFunction {
|
||||||
int firstFormatArgumentIndex;
|
|
||||||
|
|
||||||
FormattingFunction() {
|
|
||||||
firstFormatArgumentIndex > 0 and
|
|
||||||
if this.hasDefinition()
|
|
||||||
then firstFormatArgumentIndex = this.getDefinition().getNumberOfParameters()
|
|
||||||
else
|
|
||||||
if this instanceof BuiltInFunction
|
|
||||||
then firstFormatArgumentIndex = this.getNumberOfParameters()
|
|
||||||
else
|
|
||||||
forex(FunctionDeclarationEntry fde | fde = this.getAnExplicitDeclarationEntry() |
|
|
||||||
firstFormatArgumentIndex = fde.getNumberOfParameters()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Gets the position at which the format parameter occurs. */
|
/** Gets the position at which the format parameter occurs. */
|
||||||
abstract int getFormatParameterIndex();
|
abstract int getFormatParameterIndex();
|
||||||
|
|
||||||
@@ -136,7 +121,33 @@ abstract class FormattingFunction extends ArrayFunction, TaintFunction {
|
|||||||
* the first format specifier in the format string. We ignore all
|
* the first format specifier in the format string. We ignore all
|
||||||
* implicit function definitions.
|
* implicit function definitions.
|
||||||
*/
|
*/
|
||||||
int getFirstFormatArgumentIndex() { result = firstFormatArgumentIndex }
|
int getFirstFormatArgumentIndex() {
|
||||||
|
// The formatting function either has a definition in the snapshot, or all
|
||||||
|
// `DeclarationEntry`s agree on the number of parameters (otherwise we don't
|
||||||
|
// really know the correct number)
|
||||||
|
if this.hasDefinition()
|
||||||
|
then result = this.getDefinition().getNumberOfParameters()
|
||||||
|
else result = this.getNumberOfExplicitParameters()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a non-implicit function declaration entry.
|
||||||
|
*/
|
||||||
|
private FunctionDeclarationEntry getAnExplicitDeclarationEntry() {
|
||||||
|
result = this.getADeclarationEntry() and
|
||||||
|
not result.isImplicit()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the number of parameters, excluding any parameters that have been defined
|
||||||
|
* from implicit function declarations. If there is some inconsistency in the number
|
||||||
|
* of parameters, then don't return anything.
|
||||||
|
*/
|
||||||
|
private int getNumberOfExplicitParameters() {
|
||||||
|
forex(FunctionDeclarationEntry fde | fde = this.getAnExplicitDeclarationEntry() |
|
||||||
|
result = fde.getNumberOfParameters()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the position of the buffer size argument, if any.
|
* Gets the position of the buffer size argument, if any.
|
||||||
|
|||||||
@@ -192,37 +192,6 @@ private class UnsignedMulExpr extends MulExpr {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the `EOF` macro.
|
|
||||||
*
|
|
||||||
* This is typically `"-1"`, but this is not guaranteed to be the case on all
|
|
||||||
* systems.
|
|
||||||
*/
|
|
||||||
private int getEofValue() {
|
|
||||||
exists(MacroInvocation mi |
|
|
||||||
mi.getMacroName() = "EOF" and
|
|
||||||
result = unique( | | mi.getExpr().getValue().toInt())
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get standard `getc` function or related variants. */
|
|
||||||
private class Getc extends Function {
|
|
||||||
Getc() { this.hasGlobalOrStdOrBslName(["fgetc", "getc"]) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/** A call to `getc` */
|
|
||||||
private class CallToGetc extends FunctionCall {
|
|
||||||
CallToGetc() { this.getTarget() instanceof Getc }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A call to `getc` that we can analyze because we know
|
|
||||||
* the value of the `EOF` macro.
|
|
||||||
*/
|
|
||||||
private class AnalyzableCallToGetc extends CallToGetc {
|
|
||||||
AnalyzableCallToGetc() { exists(getEofValue()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds if `expr` is effectively a multiplication of `operand` with the
|
* Holds if `expr` is effectively a multiplication of `operand` with the
|
||||||
* positive constant `positive`.
|
* positive constant `positive`.
|
||||||
@@ -318,8 +287,6 @@ private predicate analyzableExpr(Expr e) {
|
|||||||
or
|
or
|
||||||
e instanceof RemExpr
|
e instanceof RemExpr
|
||||||
or
|
or
|
||||||
e instanceof AnalyzableCallToGetc
|
|
||||||
or
|
|
||||||
// A conversion is analyzable, provided that its child has an arithmetic
|
// A conversion is analyzable, provided that its child has an arithmetic
|
||||||
// type. (Sometimes the child is a reference type, and so does not get
|
// type. (Sometimes the child is a reference type, and so does not get
|
||||||
// any bounds.) Rather than checking whether the type of the child is
|
// any bounds.) Rather than checking whether the type of the child is
|
||||||
@@ -894,14 +861,6 @@ private float getLowerBoundsImpl(Expr expr) {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
or
|
or
|
||||||
exists(AnalyzableCallToGetc getc |
|
|
||||||
expr = getc and
|
|
||||||
// from https://en.cppreference.com/w/c/io/fgetc:
|
|
||||||
// On success, returns the obtained character as an unsigned char
|
|
||||||
// converted to an int. On failure, returns EOF.
|
|
||||||
result = min([typeLowerBound(any(UnsignedCharType pct)), getEofValue()])
|
|
||||||
)
|
|
||||||
or
|
|
||||||
// If the conversion is to an arithmetic type then we just return the
|
// If the conversion is to an arithmetic type then we just return the
|
||||||
// lower bound of the child. We do not need to handle truncation and
|
// lower bound of the child. We do not need to handle truncation and
|
||||||
// overflow here, because that is done in `getTruncatedLowerBounds`.
|
// overflow here, because that is done in `getTruncatedLowerBounds`.
|
||||||
@@ -1096,14 +1055,6 @@ private float getUpperBoundsImpl(Expr expr) {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
or
|
or
|
||||||
exists(AnalyzableCallToGetc getc |
|
|
||||||
expr = getc and
|
|
||||||
// from https://en.cppreference.com/w/c/io/fgetc:
|
|
||||||
// On success, returns the obtained character as an unsigned char
|
|
||||||
// converted to an int. On failure, returns EOF.
|
|
||||||
result = max([typeUpperBound(any(UnsignedCharType pct)), getEofValue()])
|
|
||||||
)
|
|
||||||
or
|
|
||||||
// If the conversion is to an arithmetic type then we just return the
|
// If the conversion is to an arithmetic type then we just return the
|
||||||
// upper bound of the child. We do not need to handle truncation and
|
// upper bound of the child. We do not need to handle truncation and
|
||||||
// overflow here, because that is done in `getTruncatedUpperBounds`.
|
// overflow here, because that is done in `getTruncatedUpperBounds`.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user