-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15985 from hvitved/ruby/phi-barrier-guards
Ruby: Extend barrier guards to handle phi inputs
- Loading branch information
Showing
11 changed files
with
1,675 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
ruby/ql/test/library-tests/dataflow/barrier-guards/barrier-flow.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
testFailures | ||
edges | ||
| barrier_flow.rb:2:5:2:5 | x | barrier_flow.rb:4:10:4:10 | x | provenance | | | ||
| barrier_flow.rb:2:9:2:17 | call to source | barrier_flow.rb:2:5:2:5 | x | provenance | | | ||
| barrier_flow.rb:8:5:8:5 | x | barrier_flow.rb:11:14:11:14 | x | provenance | | | ||
| barrier_flow.rb:8:9:8:17 | call to source | barrier_flow.rb:8:5:8:5 | x | provenance | | | ||
| barrier_flow.rb:24:5:24:5 | x | barrier_flow.rb:26:10:26:10 | x | provenance | | | ||
| barrier_flow.rb:24:9:24:17 | call to source | barrier_flow.rb:24:5:24:5 | x | provenance | | | ||
nodes | ||
| barrier_flow.rb:2:5:2:5 | x | semmle.label | x | | ||
| barrier_flow.rb:2:9:2:17 | call to source | semmle.label | call to source | | ||
| barrier_flow.rb:4:10:4:10 | x | semmle.label | x | | ||
| barrier_flow.rb:8:5:8:5 | x | semmle.label | x | | ||
| barrier_flow.rb:8:9:8:17 | call to source | semmle.label | call to source | | ||
| barrier_flow.rb:11:14:11:14 | x | semmle.label | x | | ||
| barrier_flow.rb:24:5:24:5 | x | semmle.label | x | | ||
| barrier_flow.rb:24:9:24:17 | call to source | semmle.label | call to source | | ||
| barrier_flow.rb:26:10:26:10 | x | semmle.label | x | | ||
subpaths | ||
#select | ||
| barrier_flow.rb:4:10:4:10 | x | barrier_flow.rb:2:9:2:17 | call to source | barrier_flow.rb:4:10:4:10 | x | $@ | barrier_flow.rb:2:9:2:17 | call to source | call to source | | ||
| barrier_flow.rb:11:14:11:14 | x | barrier_flow.rb:8:9:8:17 | call to source | barrier_flow.rb:11:14:11:14 | x | $@ | barrier_flow.rb:8:9:8:17 | call to source | call to source | | ||
| barrier_flow.rb:26:10:26:10 | x | barrier_flow.rb:24:9:24:17 | call to source | barrier_flow.rb:26:10:26:10 | x | $@ | barrier_flow.rb:24:9:24:17 | call to source | call to source | |
23 changes: 23 additions & 0 deletions
23
ruby/ql/test/library-tests/dataflow/barrier-guards/barrier-flow.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @kind path-problem | ||
*/ | ||
|
||
import codeql.ruby.AST | ||
import codeql.ruby.CFG | ||
import TestUtilities.InlineFlowTest | ||
import codeql.ruby.dataflow.BarrierGuards | ||
import PathGraph | ||
|
||
module FlowConfig implements DataFlow::ConfigSig { | ||
predicate isSource = DefaultFlowConfig::isSource/1; | ||
|
||
predicate isSink = DefaultFlowConfig::isSink/1; | ||
|
||
predicate isBarrier(DataFlow::Node n) { n instanceof StringConstCompareBarrier } | ||
} | ||
|
||
import ValueFlowTest<FlowConfig> | ||
|
||
from PathNode source, PathNode sink | ||
where flowPath(source, sink) | ||
select sink, source, sink, "$@", source, source.toString() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.