Skip to content

Commit acd31dd

Browse files
authored
Merge pull request #18657 from hvitved/rust/dataflow-node-api
Rust: Hide internal implementation details from `DataFlow::Node`
2 parents d3b7143 + 45fc1da commit acd31dd

File tree

5 files changed

+32
-26
lines changed

5 files changed

+32
-26
lines changed

rust/ql/lib/codeql/rust/dataflow/DataFlow.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ private import DataFlowImpl::Node as Node
1313
* (inter-procedural) data flow analyses.
1414
*/
1515
module DataFlow {
16-
final class Node = Node::Node;
16+
final class Node = Node::NodePublic;
1717

1818
/**
1919
* The value of a parameter at function entry, viewed as a node in a data
@@ -24,7 +24,7 @@ module DataFlow {
2424
ParamBase getParameter() { result = super.getParameter().getParamBase() }
2525
}
2626

27-
final class PostUpdateNode = Node::PostUpdateNode;
27+
final class PostUpdateNode = Node::PostUpdateNodePublic;
2828

2929
final class Content = DataFlowImpl::Content;
3030

rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll

+22-17
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,15 @@ private predicate isArgumentForCall(ExprCfgNode arg, CallExprBaseCfgNode call, P
128128
arg = call.(MethodCallExprCfgNode).getReceiver() and pos.isSelf()
129129
}
130130

131+
/**
132+
* Provides the `Node` class and subclasses thereof.
133+
*
134+
* Classes with names ending in `Public` are exposed as `final` aliases in the
135+
* public `DataFlow` API, so they should not expose internal implementation details.
136+
*/
131137
module Node {
132-
/**
133-
* An element, viewed as a node in a data flow graph. Either an expression
134-
* (`ExprNode`) or a parameter (`ParameterNode`).
135-
*/
136-
abstract class Node extends TNode {
138+
/** An element, viewed as a node in a data flow graph. */
139+
abstract class NodePublic extends TNode {
137140
/** Gets the location of this node. */
138141
abstract Location getLocation();
139142

@@ -149,7 +152,9 @@ module Node {
149152
* Gets the pattern that corresponds to this node, if any.
150153
*/
151154
PatCfgNode asPat() { none() }
155+
}
152156

157+
abstract class Node extends NodePublic {
153158
/** Gets the enclosing callable. */
154159
DataFlowCallable getEnclosingCallable() { result = TCfgScope(this.getCfgScope()) }
155160

@@ -160,11 +165,6 @@ module Node {
160165
* Gets the control flow node that corresponds to this data flow node.
161166
*/
162167
CfgNode getCfgNode() { none() }
163-
164-
/**
165-
* Gets this node's underlying SSA definition, if any.
166-
*/
167-
Ssa::Definition asDefinition() { none() }
168168
}
169169

170170
/** A node type that is not implemented. */
@@ -462,10 +462,12 @@ module Node {
462462
* Nodes corresponding to AST elements, for example `ExprNode`, usually refer
463463
* to the value before the update.
464464
*/
465-
abstract class PostUpdateNode extends Node {
465+
abstract class PostUpdateNodePublic extends NodePublic {
466466
/** Gets the node before the state update. */
467-
abstract Node getPreUpdateNode();
467+
abstract NodePublic getPreUpdateNode();
468+
}
468469

470+
abstract class PostUpdateNode extends PostUpdateNodePublic, Node {
469471
override string toString() { result = "[post] " + this.getPreUpdateNode().toString() }
470472
}
471473

@@ -857,12 +859,13 @@ private module Aliases {
857859

858860
module RustDataFlow implements InputSig<Location> {
859861
private import Aliases
862+
private import codeql.rust.dataflow.DataFlow
860863

861864
/**
862865
* An element, viewed as a node in a data flow graph. Either an expression
863866
* (`ExprNode`) or a parameter (`ParameterNode`).
864867
*/
865-
final class Node = Node::Node;
868+
class Node = DataFlow::Node;
866869

867870
final class ParameterNode = Node::ParameterNode;
868871

@@ -872,7 +875,7 @@ module RustDataFlow implements InputSig<Location> {
872875

873876
final class OutNode = Node::OutNode;
874877

875-
final class PostUpdateNode = Node::PostUpdateNode;
878+
class PostUpdateNode = DataFlow::PostUpdateNode;
876879

877880
final class CastNode = Node::NaNode;
878881

@@ -886,7 +889,9 @@ module RustDataFlow implements InputSig<Location> {
886889
n.isArgumentOf(call, pos)
887890
}
888891

889-
DataFlowCallable nodeGetEnclosingCallable(Node node) { result = node.getEnclosingCallable() }
892+
DataFlowCallable nodeGetEnclosingCallable(Node node) {
893+
result = node.(Node::Node).getEnclosingCallable()
894+
}
890895

891896
DataFlowType getNodeType(Node node) { any() }
892897

@@ -901,9 +906,9 @@ module RustDataFlow implements InputSig<Location> {
901906
}
902907

903908
predicate neverSkipInPathGraph(Node node) {
904-
node.getCfgNode() = any(LetStmtCfgNode s).getPat()
909+
node.(Node::Node).getCfgNode() = any(LetStmtCfgNode s).getPat()
905910
or
906-
node.getCfgNode() = any(AssignmentExprCfgNode a).getLhs()
911+
node.(Node::Node).getCfgNode() = any(AssignmentExprCfgNode a).getLhs()
907912
or
908913
exists(MatchExprCfgNode match |
909914
node.asExpr() = match.getScrutinee() or

rust/ql/lib/codeql/rust/dataflow/internal/FlowSummaryImpl.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,12 @@ private module StepsInput implements Impl::Private::StepsInputSig {
127127
result.asCallBaseExprCfgNode().getCallExprBase() = sc.(LibraryCallable).getACall()
128128
}
129129

130-
Node getSourceNode(Input::SourceBase source, Impl::Private::SummaryComponent sc) {
130+
RustDataFlow::Node getSourceNode(Input::SourceBase source, Impl::Private::SummaryComponent sc) {
131131
sc = Impl::Private::SummaryComponent::return(_) and
132132
result.asExpr().getExpr() = source.getCall()
133133
}
134134

135-
Node getSinkNode(Input::SinkBase sink, Impl::Private::SummaryComponent sc) {
135+
RustDataFlow::Node getSinkNode(Input::SinkBase sink, Impl::Private::SummaryComponent sc) {
136136
exists(CallExprBase call, Expr arg, ParameterPosition pos |
137137
result.asExpr().getExpr() = arg and
138138
sc = Impl::Private::SummaryComponent::argument(pos) and

rust/ql/lib/codeql/rust/dataflow/internal/TaintTrackingImpl.qll

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
private import rust
22
private import codeql.dataflow.TaintTracking
33
private import codeql.rust.controlflow.CfgNodes
4+
private import codeql.rust.dataflow.DataFlow
45
private import codeql.rust.dataflow.FlowSummary
56
private import DataFlowImpl
67
private import FlowSummaryImpl as FlowSummaryImpl
78
private import codeql.rust.internal.CachedStages
89

910
module RustTaintTracking implements InputSig<Location, RustDataFlow> {
10-
predicate defaultTaintSanitizer(Node::Node node) { none() }
11+
predicate defaultTaintSanitizer(DataFlow::Node node) { none() }
1112

1213
/**
1314
* Holds if the additional step from `pred` to `succ` should be included in all
1415
* global taint flow configurations.
1516
*/
1617
cached
17-
predicate defaultAdditionalTaintStep(Node::Node pred, Node::Node succ, string model) {
18+
predicate defaultAdditionalTaintStep(DataFlow::Node pred, DataFlow::Node succ, string model) {
1819
Stages::DataFlowStage::ref() and
1920
model = "" and
2021
(
@@ -61,7 +62,7 @@ module RustTaintTracking implements InputSig<Location, RustDataFlow> {
6162
* and inputs to additional taint steps.
6263
*/
6364
bindingset[node]
64-
predicate defaultImplicitTaintRead(Node::Node node, ContentSet cs) {
65+
predicate defaultImplicitTaintRead(DataFlow::Node node, ContentSet cs) {
6566
exists(node) and
6667
exists(Content c | c = cs.(SingletonContentSet).getContent() |
6768
c instanceof ElementContent or
@@ -73,5 +74,5 @@ module RustTaintTracking implements InputSig<Location, RustDataFlow> {
7374
* Holds if the additional step from `src` to `sink` should be considered in
7475
* speculative taint flow exploration.
7576
*/
76-
predicate speculativeTaintStep(Node::Node src, Node::Node sink) { none() }
77+
predicate speculativeTaintStep(DataFlow::Node src, DataFlow::Node sink) { none() }
7778
}

rust/ql/src/queries/security/CWE-312/CleartextLogging.ql

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module CleartextLoggingConfig implements DataFlow::ConfigSig {
3636
isSource(node)
3737
}
3838

39-
predicate isAdditionalFlowStep(Node node1, Node node2) {
39+
predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) {
4040
// flow from `a` to `&a`
4141
node2.asExpr().getExpr().(RefExpr).getExpr() = node1.asExpr().getExpr()
4242
}

0 commit comments

Comments
 (0)