Conditional Jump Verification
Our implementation differs from the verifier in Linux.
Range Narrowing
The eBPF verifier should use conditional jump information to narrow down the range of possible values. For example, evaluating the following code goto (A <= B) ? branch_1 : branch_2;
, the verifier can use the extra condition A <= B
after jumping to branch_1
, and apply A > B
for branch_2
.
The main difference is that we handle range comparisons like and , while Linux seems to handle only comparison against a constant number.
Handling the A ⩽ B
branch
Let .
We are to narrow down the ranges assuming that .
- If , since is always true, we can extract no extra info.
- If , then is never true and the execution flow should never reach here.
Otherwise, let , where , and . is never empty.
We can then narrow down the ranges into:
You can verify it by:
- letting (necessity),
- and trying or (sufficiency).
So the above result is the best estimate we can ever deduce.
Handling the A > B
branch
It is a little bit more complex.
See the section above for handling these two condition:
- ,
- .
Otherwise, again, let . The narrowed-down ranges are as follows:
Condition | ||
---|---|---|
Summing up:
It should be fairly easy to understand why it is so:
since , following the section above, we have:
- ,
- .
Sufficiency: ,
Necessity: verifier against or should be enough.
Note that and the ranges above are always valid.