|
| 1 | +.. _analyzing-data-flow-in-rust: |
| 2 | + |
| 3 | +Analyzing data flow in Rust |
| 4 | +============================= |
| 5 | + |
| 6 | +You can use CodeQL to track the flow of data through a Rust program to places where the data is used. |
| 7 | + |
| 8 | +About this article |
| 9 | +------------------ |
| 10 | + |
| 11 | +This article describes how data flow analysis is implemented in the CodeQL libraries for Rust and includes examples to help you write your own data flow queries. |
| 12 | +The following sections describe how to use the libraries for local data flow, global data flow, and taint tracking. |
| 13 | +For a more general introduction to modeling data flow, see ":ref:`About data flow analysis <about-data-flow-analysis>`." |
| 14 | + |
| 15 | +.. include:: ../reusables/new-data-flow-api.rst |
| 16 | + |
| 17 | +Local data flow |
| 18 | +--------------- |
| 19 | + |
| 20 | +Local data flow tracks the flow of data within a single method or callable. Local data flow is easier, faster, and more precise than global data flow. Before using more complex tracking, consider local tracking, as it is sufficient for many queries. |
| 21 | + |
| 22 | +Using local data flow |
| 23 | +~~~~~~~~~~~~~~~~~~~~~ |
| 24 | + |
| 25 | +You can use the local data flow library by importing the ``codeql.rust.dataflow.DataFlow`` module. The library uses the class ``Node`` to represent any element through which data can flow. |
| 26 | +Common ``Node`` types include expression nodes (``ExprNode``) and parameter nodes (``ParameterNode``). |
| 27 | +You can use the ``asExpr`` member predicate to map a data flow ``ExprNode`` to its corresponding ``ExprCfgNode`` in the control-flow library. |
| 28 | +Similarly, you can map a data flow ``ParameterNode`` to its corresponding ``Parameter`` AST node using the ``asParameter`` member predicate. |
| 29 | + |
| 30 | +.. code-block:: ql |
| 31 | +
|
| 32 | + class Node { |
| 33 | + /** |
| 34 | + * Gets the expression corresponding to this node, if any. |
| 35 | + */ |
| 36 | + CfgNodes::ExprCfgNode asExpr() { ... } |
| 37 | +
|
| 38 | + /** |
| 39 | + * Gets the parameter corresponding to this node, if any. |
| 40 | + */ |
| 41 | + Parameter asParameter() { ... } |
| 42 | +
|
| 43 | + ... |
| 44 | + } |
| 45 | +
|
| 46 | +Note that because ``asExpr`` maps from data-flow to control-flow nodes, you need to call the ``getExpr`` member predicate on the control-flow node to map to the corresponding AST node. For example, you can write ``node.asExpr().getExpr()``. |
| 47 | +A control-flow graph considers every way control can flow through code, consequently, there can be multiple data-flow and control-flow nodes associated with a single expression node in the AST. |
| 48 | + |
| 49 | +The predicate ``localFlowStep(Node nodeFrom, Node nodeTo)`` holds if there is an immediate data flow edge from the node ``nodeFrom`` to the node ``nodeTo``. |
| 50 | +You can apply the predicate recursively by using the ``+`` and ``*`` operators, or you can use the predefined recursive predicate ``localFlow``. |
| 51 | + |
| 52 | +For example, you can find flow from an expression ``source`` to an expression ``sink`` in zero or more local steps: |
| 53 | + |
| 54 | +.. code-block:: ql |
| 55 | +
|
| 56 | + DataFlow::localFlow(source, sink) |
| 57 | +
|
| 58 | +Using local taint tracking |
| 59 | +~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 60 | + |
| 61 | +Local taint tracking extends local data flow to include flow steps where values are not preserved, for example, string manipulation. |
| 62 | +For example: |
| 63 | + |
| 64 | +.. code-block:: rust |
| 65 | +
|
| 66 | + let y: String = "Hello ".to_owned() + x |
| 67 | +
|
| 68 | +If ``x`` is a tainted string then ``y`` is also tainted. |
| 69 | + |
| 70 | +The local taint tracking library is in the module ``TaintTracking``. |
| 71 | +Like local data flow, a predicate ``localTaintStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo)`` holds if there is an immediate taint propagation edge from the node ``nodeFrom`` to the node ``nodeTo``. |
| 72 | +You can apply the predicate recursively by using the ``+`` and ``*`` operators, or you can use the predefined recursive predicate ``localTaint``. |
| 73 | + |
| 74 | +For example, you can find taint propagation from an expression ``source`` to an expression ``sink`` in zero or more local steps: |
| 75 | + |
| 76 | +.. code-block:: ql |
| 77 | +
|
| 78 | + TaintTracking::localTaint(source, sink) |
| 79 | +
|
| 80 | +
|
| 81 | +Using local sources |
| 82 | +~~~~~~~~~~~~~~~~~~~ |
| 83 | + |
| 84 | +When exploring local data flow or taint propagation between two expressions, such as in the previous example, you typically constrain the expressions to those relevant to your investigation. |
| 85 | +The next section provides concrete examples, but first introduces the concept of a local source. |
| 86 | + |
| 87 | +A local source is a data-flow node with no local data flow into it. |
| 88 | +It is a local origin of data flow, a place where a new value is created. |
| 89 | +This includes parameters (which only receive values from global data flow) and most expressions (because they are not value-preserving). |
| 90 | +The class ``LocalSourceNode`` represents data-flow nodes that are also local sources. |
| 91 | +It includes a useful member predicate ``flowsTo(DataFlow::Node node)``, which holds if there is local data flow from the local source to ``node``. |
| 92 | + |
| 93 | +Examples of local data flow |
| 94 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 95 | + |
| 96 | +This query finds the argument passed in each call to ``File::create``: |
| 97 | + |
| 98 | +.. code-block:: ql |
| 99 | +
|
| 100 | + import rust |
| 101 | +
|
| 102 | + from CallExpr call |
| 103 | + where call.getStaticTarget().(Function).getCanonicalPath() = "<std::fs::File>::create" |
| 104 | + select call.getArg(0) |
| 105 | +
|
| 106 | +Unfortunately, this only returns the expression used as the argument, not the possible values that could be passed to it. To address this, you can use local data flow to find all expressions that flow into the argument. |
| 107 | + |
| 108 | +.. code-block:: ql |
| 109 | +
|
| 110 | + import rust |
| 111 | + import codeql.rust.dataflow.DataFlow |
| 112 | +
|
| 113 | + from CallExpr call, DataFlow::ExprNode source, DataFlow::ExprNode sink |
| 114 | + where |
| 115 | + call.getStaticTarget().(Function).getCanonicalPath() = "<std::fs::File>::create" and |
| 116 | + sink.asExpr().getExpr() = call.getArg(0) and |
| 117 | + DataFlow::localFlow(source, sink) |
| 118 | + select source, sink |
| 119 | +
|
| 120 | +You can vary the source by making the source the parameter of a function instead of an expression. The following query finds where a parameter is used in file creation: |
| 121 | + |
| 122 | +.. code-block:: ql |
| 123 | +
|
| 124 | + import rust |
| 125 | + import codeql.rust.dataflow.DataFlow |
| 126 | +
|
| 127 | + from CallExpr call, DataFlow::ParameterNode source, DataFlow::ExprNode sink |
| 128 | + where |
| 129 | + call.getStaticTarget().(Function).getCanonicalPath() = "<std::fs::File>::create" and |
| 130 | + sink.asExpr().getExpr() = call.getArg(0) and |
| 131 | + DataFlow::localFlow(source, sink) |
| 132 | + select source, sink |
| 133 | +
|
| 134 | +Global data flow |
| 135 | +---------------- |
| 136 | + |
| 137 | +Global data flow tracks data flow throughout the entire program, and is therefore more powerful than local data flow. |
| 138 | +However, global data flow is less precise than local data flow, and the analysis typically requires significantly more time and memory to perform. |
| 139 | + |
| 140 | +.. pull-quote:: Note |
| 141 | + |
| 142 | + .. include:: ../reusables/path-problem.rst |
| 143 | + |
| 144 | +Using global data flow |
| 145 | +~~~~~~~~~~~~~~~~~~~~~~ |
| 146 | + |
| 147 | +We can use the global data flow library by implementing the signature ``DataFlow::ConfigSig`` and applying the module ``DataFlow::Global<ConfigSig>``: |
| 148 | + |
| 149 | +.. code-block:: ql |
| 150 | +
|
| 151 | + import codeql.rust.dataflow.DataFlow |
| 152 | +
|
| 153 | + module MyDataFlowConfiguration implements DataFlow::ConfigSig { |
| 154 | + predicate isSource(DataFlow::Node source) { |
| 155 | + ... |
| 156 | + } |
| 157 | +
|
| 158 | + predicate isSink(DataFlow::Node sink) { |
| 159 | + ... |
| 160 | + } |
| 161 | + } |
| 162 | +
|
| 163 | + module MyDataFlow = DataFlow::Global<MyDataFlowConfiguration>; |
| 164 | +
|
| 165 | +These predicates are defined in the configuration: |
| 166 | + |
| 167 | +- ``isSource`` - defines where data may flow from. |
| 168 | +- ``isSink`` - defines where data may flow to. |
| 169 | +- ``isBarrier`` - optional, defines where data flow is blocked. |
| 170 | +- ``isAdditionalFlowStep`` - optional, adds additional flow steps. |
| 171 | + |
| 172 | +The last line (``module MyDataFlow = ...``) instantiates the parameterized module for data flow analysis by passing the configuration to the parameterized module. Data flow analysis can then be performed using ``MyDataFlow::flow(DataFlow::Node source, DataFlow::Node sink)``: |
| 173 | + |
| 174 | +.. code-block:: ql |
| 175 | +
|
| 176 | + from DataFlow::Node source, DataFlow::Node sink |
| 177 | + where MyDataFlow::flow(source, sink) |
| 178 | + select source, "Dataflow to $@.", sink, sink.toString() |
| 179 | +
|
| 180 | +Using global taint tracking |
| 181 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 182 | + |
| 183 | +Global taint tracking relates to global data flow in the same way that local taint tracking relates to local data flow. |
| 184 | +In other words, global taint tracking extends global data flow with additional non-value-preserving steps. |
| 185 | +The global taint tracking library uses the same configuration module as the global data flow library. You can perform taint flow analysis using ``TaintTracking::Global``: |
| 186 | + |
| 187 | +.. code-block:: ql |
| 188 | +
|
| 189 | + module MyTaintFlow = TaintTracking::Global<MyDataFlowConfiguration>; |
| 190 | +
|
| 191 | + from DataFlow::Node source, DataFlow::Node sink |
| 192 | + where MyTaintFlow::flow(source, sink) |
| 193 | + select source, "Taint flow to $@.", sink, sink.toString() |
| 194 | +
|
| 195 | +Predefined sources |
| 196 | +~~~~~~~~~~~~~~~~~~ |
| 197 | + |
| 198 | +The library module ``codeql.rust.Concepts`` contains a number of predefined sources and sinks that you can use to write security queries to track data flow and taint flow. |
| 199 | + |
| 200 | +Examples of global data flow |
| 201 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 202 | + |
| 203 | +The following global taint-tracking query finds places where a string literal is used in a function call argument named "password". |
| 204 | + - Since this is a taint-tracking query, the ``TaintTracking::Global`` module is used. |
| 205 | + - The ``isSource`` predicate defines sources as any ``StringLiteralExpr``. |
| 206 | + - The ``isSink`` predicate defines sinks as arguments to a ``CallExpr`` called "password". |
| 207 | + - The sources and sinks may need to be adjusted for a particular use. For example, passwords might be represented by a type other than ``String`` or passed in arguments with a different name than "password". |
| 208 | + |
| 209 | +.. code-block:: ql |
| 210 | +
|
| 211 | + import rust |
| 212 | + import codeql.rust.dataflow.DataFlow |
| 213 | + import codeql.rust.dataflow.TaintTracking |
| 214 | +
|
| 215 | + module ConstantPasswordConfig implements DataFlow::ConfigSig { |
| 216 | + predicate isSource(DataFlow::Node node) { node.asExpr().getExpr() instanceof StringLiteralExpr } |
| 217 | +
|
| 218 | + predicate isSink(DataFlow::Node node) { |
| 219 | + // any argument going to a parameter called `password` |
| 220 | + exists(Function f, CallExpr call, int index | |
| 221 | + call.getArg(index) = node.asExpr().getExpr() and |
| 222 | + call.getStaticTarget() = f and |
| 223 | + f.getParam(index).getPat().(IdentPat).getName().getText() = "password" |
| 224 | + ) |
| 225 | + } |
| 226 | + } |
| 227 | +
|
| 228 | + module ConstantPasswordFlow = TaintTracking::Global<ConstantPasswordConfig>; |
| 229 | +
|
| 230 | + from DataFlow::Node sourceNode, DataFlow::Node sinkNode |
| 231 | + where ConstantPasswordFlow::flow(sourceNode, sinkNode) |
| 232 | + select sinkNode, "The value $@ is used as a constant password.", sourceNode, sourceNode.toString() |
| 233 | +
|
| 234 | +
|
| 235 | +Further reading |
| 236 | +--------------- |
| 237 | + |
| 238 | +- `Exploring data flow with path queries <https://docs.github.com/en/code-security/codeql-for-vs-code/getting-started-with-codeql-for-vs-code/exploring-data-flow-with-path-queries>`__ in the GitHub documentation. |
| 239 | + |
| 240 | + |
| 241 | +.. include:: ../reusables/rust-further-reading.rst |
| 242 | +.. include:: ../reusables/codeql-ref-tools-further-reading.rst |
0 commit comments