Skip to content

Commit 781af04

Browse files
adityasharadxcorail
authored andcommitted
Add sample solutions
1 parent 1083a95 commit 781af04

9 files changed

+99
-0
lines changed

solutions/10_taint_tracking.ql

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import cpp
2+
import semmle.code.cpp.dataflow.TaintTracking
3+
import DataFlow::PathGraph
4+
5+
/**
6+
* An expression involved when swapping the byte order of network data.
7+
* Its value is likely to have been read from the network.
8+
*/
9+
class NetworkByteSwap extends Expr {
10+
NetworkByteSwap() {
11+
exists(MacroInvocation mi |
12+
mi.getMacroName().regexpMatch("ntoh(s|l|ll)") and
13+
this = mi.getExpr()
14+
)
15+
}
16+
}
17+
18+
class Config extends TaintTracking::Configuration {
19+
Config() { this = "Config: this name doesn't matter" }
20+
21+
override predicate isSource(DataFlow::Node source) { source.asExpr() instanceof NetworkByteSwap }
22+
23+
override predicate isSink(DataFlow::Node sink) {
24+
exists(FunctionCall c | c.getTarget().getName() = "memcpy" and sink.asExpr() = c.getArgument(2))
25+
}
26+
}
27+
28+
from Config cfg, DataFlow::PathNode source, DataFlow::PathNode sink
29+
where cfg.hasFlowPath(source, sink)
30+
select sink, source, sink, "Network byte swap flows to memcpy"

solutions/3_function_definitions.ql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import cpp
2+
3+
from Function f
4+
where f.getName() = "strlen"
5+
select f, "a function named strlen"

solutions/4_memcpy_definitions.ql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import cpp
2+
3+
from Function f
4+
where f.getName() = "memcpy"
5+
select f, "a function named memcpy"

solutions/5_macro_definitions.ql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import cpp
2+
3+
from Macro m
4+
where m.getName().regexpMatch("ntoh(s|l|ll)")
5+
select m

solutions/6_memcpy_calls.ql

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import cpp
2+
3+
// Version with two variables
4+
// from Function f, FunctionCall c
5+
// where c.getTarget() = f and f.getName() = "memcpy"
6+
// select c, f
7+
8+
// More compact version with the Function variable implicit
9+
from FunctionCall c
10+
where c.getTarget().getName() = "memcpy"
11+
select c

solutions/7_macro_invocations.ql

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import cpp
2+
3+
// Version with two variables
4+
// from Macro m, MacroInvocation mi
5+
// where
6+
// m.getName().regexpMatch("ntoh(s|l|ll)") and
7+
// mi.getMacro() = m
8+
// select mi, m
9+
10+
// More compact version with the Macro variable implicit
11+
from MacroInvocation mi
12+
where mi.getMacro().getName().regexpMatch("ntoh(s|l|ll)")
13+
select mi

solutions/8_macro_expressions.ql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import cpp
2+
3+
from MacroInvocation mi
4+
where mi.getMacro().getName().regexpMatch("ntoh(s|l|ll)")
5+
select mi.getExpr()

solutions/9_class_network_byteswap.ql

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import cpp
2+
3+
/**
4+
* An expression involved when swapping the byte order of network data.
5+
* Its value is likely to have been read from the network.
6+
*/
7+
class NetworkByteSwap extends Expr {
8+
NetworkByteSwap() {
9+
exists(MacroInvocation mi |
10+
mi.getMacroName().regexpMatch("ntoh(s|l|ll)") and
11+
this = mi.getExpr()
12+
)
13+
}
14+
}
15+
16+
from NetworkByteSwap n
17+
select n

solutions/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CodeQL U-Boot challenge (C/C++): sample solutions
2+
3+
This folder contains sample solutions for each step of the course.
4+
They are there to help you if you get stuck, but please try to solve the tasks on your own first using the course hints, editor auto-completion, and documentation!
5+
6+
There are often many ways to write the same CodeQL query. These solutions are just examples, and you may come up with other good ways to solve the same tasks.
7+
8+
Happy query writing!

0 commit comments

Comments
 (0)