Skip to content

Commit 927b26b

Browse files
authored
Merge pull request #19190 from adityasharad/actions/initial-docs
Docs: Add GitHub Actions as a supported language
2 parents 62fa136 + 4d6afe7 commit 927b26b

16 files changed

+254
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
.. _codeql-for-actions:
3+
4+
CodeQL for GitHub Actions
5+
=========================
6+
7+
Experiment and learn how to write effective and efficient queries for CodeQL databases generated from GitHub Actions code.
8+
9+
.. toctree::
10+
:hidden:
11+
12+
codeql-library-for-actions
13+
customizing-library-models-for-actions
14+
15+
- :doc:`CodeQL library for GitHub Actions <codeql-library-for-actions>`: When you're analyzing a Ruby program, you can make use of the large collection of classes in the CodeQL library for GitHub Actions.
16+
17+
- :doc:`Customizing library models for GitHub Actions <customizing-library-models-for-actions>`: You can model frameworks and libraries that your codebase depends on using data extensions and publish them as CodeQL model packs.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
.. _codeql-library-for-actions:
2+
3+
CodeQL library for GitHub Actions
4+
=================================
5+
6+
When you're analyzing GitHub Actions workflows and Action metadata files, you can make use of the large collection of classes in the CodeQL library for GitHub Actions.
7+
8+
Overview
9+
--------
10+
11+
CodeQL ships with an extensive library for analyzing GitHub Actions code, particularly GitHub Actions workflow files and Action metadata files, each written in YAML.
12+
The classes in this library present the data from a CodeQL database in an object-oriented form and provide abstractions and predicates
13+
to help you with common analysis tasks.
14+
15+
The library is implemented as a set of CodeQL modules, that is, files with the extension ``.qll``. The
16+
module `actions.qll <https://github.com/github/codeql/blob/main/actions/ql/lib/actions.qll>`__ imports most other standard library modules, so you can include the complete
17+
library by beginning your query with:
18+
19+
.. code-block:: ql
20+
21+
import actions
22+
23+
The CodeQL libraries model various aspects of the YAML code used to define workflows and actions.
24+
The above import includes the abstract syntax tree (AST) library, which is used for locating program elements, to match syntactic
25+
elements in the YAML source code. This can be used to find values, patterns and structures.
26+
Both the underlying YAML elements and the GitHub Actions-specific meaning of those elements are modeled.
27+
28+
See the GitHub Actions documentation on `workflow syntax <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions>`__ and `metadata syntax <https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions>`__ for more information on GitHub Actions YAML syntax and meaning.
29+
30+
The control flow graph (CFG) is imported using
31+
32+
.. code-block:: ql
33+
34+
import codeql.actions.Cfg
35+
36+
The CFG models the control flow between statements and expressions, for example whether one expression can
37+
be evaluated before another expression, or whether an expression "dominates" another one, meaning that all paths to an
38+
expression must flow through another expression first.
39+
40+
The data flow library is imported using
41+
42+
.. code-block:: ql
43+
44+
import codeql.actions.DataFlow
45+
46+
Data flow tracks the flow of data through the program, including through function calls (interprocedural data flow) and between steps in a job or workflow.
47+
Data flow is particularly useful for security queries, where untrusted data flows to vulnerable parts of the program
48+
to exploit it. Related to data flow, is the taint-tracking library, which finds how data can *influence* other values
49+
in a program, even when it is not copied exactly.
50+
51+
To summarize, the main GitHub Actions library modules are:
52+
53+
.. list-table:: Main GitHub Actions library modules
54+
:header-rows: 1
55+
56+
* - Import
57+
- Description
58+
* - ``actions``
59+
- The standard GitHub Actions library
60+
* - ``codeql.actions.Ast``
61+
- The abstract syntax tree library (also imported by `actions.qll`)
62+
* - ``codeql.actions.Cfg``
63+
- The control flow graph library
64+
* - ``codeql.actions.DataFlow``
65+
- The data flow library
66+
* - ``codeql.actions.TaintTracking``
67+
- The taint tracking library
68+
69+
The CodeQL examples in this article are only excerpts and are not meant to represent complete queries.
70+
71+
Abstract syntax
72+
---------------
73+
74+
The abstract syntax tree (AST) represents the elements of the source code organized into a tree. The `AST viewer <https://docs.github.com/en/code-security/codeql-for-vs-code/using-the-advanced-functionality-of-the-codeql-for-vs-code-extension/exploring-the-structure-of-your-source-code/>`__
75+
in Visual Studio Code shows the AST nodes, including the relevant CodeQL classes and predicates.
76+
77+
All CodeQL AST classes inherit from the `AstNode` class, which provides the following member predicates
78+
to all AST classes:
79+
80+
.. list-table:: Main predicates in ``AstNode``
81+
:header-rows: 1
82+
83+
* - Predicate
84+
- Description
85+
* - ``getEnclosingWorkflow()``
86+
- Gets the enclosing Actions workflow, if any. Applies only to elements within a workflow.
87+
* - ``getEnclosingJob()``
88+
- Gets the enclosing Actions workflow job, if any. Applies only to elements within a workflow.
89+
* - ``getEnclosingStep()``
90+
- Gets the enclosing Actions workflow job step, if any.
91+
* - ``getEnclosingCompositeAction()``
92+
- Gets the enclosing composite action, if any. Applies only to elements within an action metadata file.
93+
* - ``getLocation()``
94+
- Gets the location of this node.
95+
* - ``getAChildNode()``
96+
- Gets a child node of this node.
97+
* - ``getParentNode()``
98+
- Gets the parent of this `AstNode`, if this node is not a root node.
99+
* - ``getATriggerEvent()``
100+
- Gets an Actions trigger event that can start the enclosing Actions workflow, if any.
101+
102+
103+
Workflows
104+
~~~~~~~~~
105+
106+
A workflow is a configurable automated process made up of one or more jobs,
107+
defined in a workflow YAML file in the `.github/workflows` directory of a GitHub repository.
108+
109+
In the CodeQL AST library, a `Workflow` is an `AstNode` representing the mapping at the top level of an Actions YAML workflow file.
110+
111+
See the GitHub Actions documentation on `workflows <https://docs.github.com/en/actions/writing-workflows/about-workflows>`__ and `workflow syntax <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions>`__ for more information.
112+
113+
.. list-table:: Callable classes
114+
:header-rows: 1
115+
116+
* - CodeQL class
117+
- Description and selected predicates
118+
* - ``Workflow``
119+
- An Actions workflow, defined as a mapping at the top level of a workflow YAML file in `.github/workflows`. See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions.
120+
- `getAJob()` - Gets a job within the `jobs` mapping of this workflow.
121+
- `getEnv()` - Gets an `env` mapping within this workflow declaring workflow-level environment variables, if any.
122+
- `getJob(string jobId)` - Gets a job within the `jobs` mapping of this workflow with the given job ID.
123+
- `getOn()` - Gets the `on` mapping defining the events that trigger this workflow.
124+
- `getPermissions()` - Gets a `permissions` mapping within this workflow declaring workflow-level token permissions, if any.
125+
- `getStrategy()` - Gets a `strategy` mapping for the jobs in this workflow, if any.
126+
- `getName()` - Gets the name of this workflow, if defined within the workflow.
127+
128+
The following example lists all jobs in a workflow with the name declaration `name: test`:
129+
130+
.. code-block:: ql
131+
132+
import actions
133+
134+
from Workflow w
135+
where w.getName() = "test"
136+
select w, m.getAJob()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
.. _customizing-library-models-for-actions:
2+
3+
Customizing Library Models for GitHub Actions
4+
=============================================
5+
6+
.. include:: ../reusables/beta-note-customizing-library-models.rst
7+
8+
GitHub Actions analysis can be customized by adding library models in data extension files.
9+
10+
A data extension for GitHub Actions is a YAML file of the form:
11+
12+
.. code-block:: yaml
13+
14+
extensions:
15+
- addsTo:
16+
pack: codeql/actions-all
17+
extensible: <name of extensible predicate>
18+
data:
19+
- <tuple1>
20+
- <tuple2>
21+
- ...
22+
23+
The CodeQL library for GitHub Actions exposes the following extensible predicates:
24+
25+
Customizing data flow and taint tracking:
26+
27+
- **actionsSourceModel**\(action, version, output, kind, provenance)
28+
- **actionsSinkModel**\(action, version, input, kind, provenance)
29+
- **actionsSummaryModel**\(action, version, input, output, kind, provenance)
30+
31+
Customizing Actions-specific analysis:
32+
33+
- **argumentInjectionSinksDataModel**\(regexp, command_group, argument_group)
34+
- **contextTriggerDataModel**\(trigger, context_prefix)
35+
- **externallyTriggerableEventsDataModel**\(event)
36+
- **immutableActionsDataModel**\(action)
37+
- **poisonableActionsDataModel**\(action)
38+
- **poisonableCommandsDataModel**\(regexp)
39+
- **poisonableLocalScriptsDataModel**\(regexp, group)
40+
- **repositoryDataModel**\(visibility, default_branch_name)
41+
- **trustedActionsOwnerDataModel**\(owner)
42+
- **untrustedEventPropertiesDataModel**\(property, kind)
43+
- **untrustedGhCommandDataModel**\(cmd_regex, flag)
44+
- **untrustedGitCommandDataModel**\(cmd_regex, flag)
45+
- **vulnerableActionsDataModel**\(action, vulnerable_version, vulnerable_sha, fixed_version)
46+
- **workflowDataModel**\(path, trigger, job, secrets_source, permissions, runner)

docs/codeql/codeql-language-guides/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat
77

88
.. toctree::
99

10+
codeql-for-actions
1011
codeql-for-cpp
1112
codeql-for-csharp
1213
codeql-for-go

docs/codeql/codeql-overview/codeql-tools.rst

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ The standard CodeQL query and library packs
2323
(`source <https://github.com/github/codeql/tree/codeql-cli/latest>`__)
2424
maintained by GitHub are:
2525

26+
- ``codeql/actions-queries`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/src/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/src>`__)
27+
- ``codeql/actions-all`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/lib/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/lib>`__)
2628
- ``codeql/cpp-queries`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/src/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/src>`__)
2729
- ``codeql/cpp-all`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/lib/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/lib>`__)
2830
- ``codeql/csharp-queries`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/csharp/ql/src/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/csharp/ql/src>`__)

docs/codeql/query-help/actions-cwe.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CWE coverage for GitHub Actions
2+
3+
An overview of CWE coverage for GitHub Actions in the latest release of CodeQL.
4+
5+
## Overview
6+
7+
<!-- autogenerated CWE coverage table will be added below -->
8+

docs/codeql/query-help/actions.rst

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CodeQL query help for GitHub Actions
2+
============================
3+
4+
.. include:: ../reusables/query-help-overview.rst
5+
6+
These queries are published in the CodeQL query pack ``codeql/actions-queries`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/src/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/src>`__).
7+
8+
.. include:: toc-actions.rst

docs/codeql/query-help/codeql-cwe-coverage.rst

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Note that the CWE coverage includes both "`supported queries <https://github.com
2727
:titlesonly:
2828

2929
full-cwe
30+
actions-cwe
3031
cpp-cwe
3132
csharp-cwe
3233
go-cwe

docs/codeql/query-help/index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ View the query help for the queries included in the ``default``, ``security-exte
55

66
- :doc:`CodeQL query help for C and C++ <cpp>`
77
- :doc:`CodeQL query help for C# <csharp>`
8+
- :doc:`CodeQL query help for GitHub Actions <actions>`
89
- :doc:`CodeQL query help for Go <go>`
910
- :doc:`CodeQL query help for Java and Kotlin <java>`
1011
- :doc:`CodeQL query help for JavaScript and TypeScript <javascript>`
@@ -28,6 +29,7 @@ For a full list of the CWEs covered by these queries, see ":doc:`CodeQL CWE cove
2829
:hidden:
2930
:titlesonly:
3031

32+
actions
3133
cpp
3234
csharp
3335
go
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- `CodeQL queries for GitHub Actions <https://github.com/github/codeql/tree/main/actions/ql/src>`__
2+
- `CodeQL library reference for GitHub Actions <https://codeql.github.com/codeql-standard-libraries/actions/>`__

docs/codeql/reusables/extractors.rst

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
* - Language
66
- Identifier
7+
* - GitHub Actions
8+
- ``actions``
79
* - C/C++
810
- ``cpp``
911
* - C#

docs/codeql/reusables/supported-frameworks.rst

+17
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,23 @@ and the CodeQL library pack ``codeql/csharp-all`` (`changelog <https://github.co
4040
NHibernate, Database ORM
4141
WinForms, User interface
4242

43+
GitHub Actions built-in support
44+
================================
45+
46+
Provided by the current versions of the
47+
CodeQL query pack ``codeql/actions-queries`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/src/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/src>`__)
48+
and the CodeQL library pack ``codeql/actions-all`` (`changelog <https://github.com/github/codeql/tree/codeql-cli/latest/cpp/ql/lib/CHANGELOG.md>`__, `source <https://github.com/github/codeql/tree/codeql-cli/latest/actions/ql/lib>`__).
49+
50+
.. csv-table::
51+
:header-rows: 1
52+
:class: fullWidthTable
53+
:widths: auto
54+
:align: left
55+
56+
Name, Category
57+
`GitHub Actions workflow YAML files <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions>`, Workflows
58+
`GitHub Actions action metadata YAML files <https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions>`, Actions
59+
4360
Go built-in support
4461
================================
4562

docs/codeql/reusables/supported-versions-compilers.rst

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
.NET Core up to 3.1
1717

1818
.NET 5, .NET 6, .NET 7, .NET 8, .NET 9","``.sln``, ``.csproj``, ``.cs``, ``.cshtml``, ``.xaml``"
19+
GitHub Actions [12]_,"Not applicable",Not applicable,"``.github/workflows/*.yml``, ``.github/workflows/*.yaml``, ``**/action.yml``, ``**/action.yaml``"
1920
Go (aka Golang), "Go up to 1.24", "Go 1.11 or more recent", ``.go``
2021
Java,"Java 7 to 24 [5]_","javac (OpenJDK and Oracle JDK),
2122

@@ -40,3 +41,4 @@
4041
.. [9] Requires glibc 2.17.
4142
.. [10] Support for the analysis of Swift requires macOS.
4243
.. [11] TypeScript analysis is performed by running the JavaScript extractor with TypeScript enabled. This is the default.
44+
.. [12] Support for GitHub Actions is in public preview.

docs/codeql/writing-codeql-queries/about-codeql-queries.rst

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ When writing your own alert queries, you would typically import the standard lib
7474
- :ref:`CodeQL library guide for C and C++ <codeql-library-for-cpp>`
7575
- :ref:`CodeQL library guide for C# <codeql-library-for-csharp>`
7676
- :ref:`CodeQL library guide for Go <codeql-library-for-go>`
77+
- :ref:`CodeQL library guide for GitHub Actions <codeql-library-for-actions>`
7778
- :ref:`CodeQL library guide for Java and Kotlin <codeql-library-for-java>`
7879
- :ref:`CodeQL library guide for JavaScript <codeql-library-for-javascript>`
7980
- :ref:`CodeQL library guide for Python <codeql-library-for-python>`

docs/query-help-style-guide.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ When you contribute a new [supported query](supported-queries.md) to this reposi
77
* [C/C++ queries](https://codeql.github.com/codeql-query-help/cpp/)
88
* [C# queries](https://codeql.github.com/codeql-query-help/csharp/)
99
* [Go queries](https://codeql.github.com/codeql-query-help/go/)
10-
* [Java queries](https://codeql.github.com/codeql-query-help/java/)
11-
* [JavaScript queries](https://codeql.github.com/codeql-query-help/javascript/)
10+
* [GitHub Actions queries](https://codeql.github.com/codeql-query-help/actions/)
11+
* [Java/Kotlin queries](https://codeql.github.com/codeql-query-help/java/)
12+
* [JavaScript/TypeScript queries](https://codeql.github.com/codeql-query-help/javascript/)
1213
* [Python queries](https://codeql.github.com/codeql-query-help/python/)
14+
* [Ruby queries](https://codeql.github.com/codeql-query-help/ruby/)
15+
* [Swift queries](https://codeql.github.com/codeql-query-help/swift/)
1316

1417
### Location and file name
1518

docs/query-metadata-style-guide.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ For examples of query files for the languages supported by CodeQL, visit the fol
1919

2020
* [C/C++ queries](https://codeql.github.com/codeql-query-help/cpp/)
2121
* [C# queries](https://codeql.github.com/codeql-query-help/csharp/)
22+
* [GitHub Actions queries](https://codeql.github.com/codeql-query-help/actions/)
2223
* [Go queries](https://codeql.github.com/codeql-query-help/go/)
23-
* [Java queries](https://codeql.github.com/codeql-query-help/java/)
24+
* [Java/Kotlin queries](https://codeql.github.com/codeql-query-help/java/)
2425
* [JavaScript queries](https://codeql.github.com/codeql-query-help/javascript/)
2526
* [Python queries](https://codeql.github.com/codeql-query-help/python/)
27+
* [Ruby queries](https://codeql.github.com/codeql-query-help/ruby/)
28+
* [Swift queries](https://codeql.github.com/codeql-query-help/swift/)
2629

2730
## Metadata area
2831

0 commit comments

Comments
 (0)