diff options
author | Andrii Nakryiko <[email protected]> | 2023-10-22 13:57:37 -0700 |
---|---|---|
committer | Daniel Borkmann <[email protected]> | 2023-10-24 14:45:51 +0200 |
commit | 42d31dd601fa43b9afdf069d1ba410b2306a4c76 (patch) | |
tree | e018bf2cea6bc60112aef36047781ccb59c31f1f /scripts/generate_rust_analyzer.py | |
parent | 06646da01458682023321bdc7553b8140e95d077 (diff) |
bpf: Improve JEQ/JNE branch taken logic
When determining if an if/else branch will always or never be taken, use
signed range knowledge in addition to currently used unsigned range knowledge.
If either signed or unsigned range suggests that condition is always/never
taken, return corresponding branch_taken verdict.
Current use of unsigned range for this seems arbitrary and unnecessarily
incomplete. It is possible for *signed* operations to be performed on
register, which could "invalidate" unsigned range for that register. In such
case branch_taken will be artificially useless, even if we can still tell
that some constant is outside of register value range based on its signed
bounds.
veristat-based validation shows zero differences across selftests, Cilium,
and Meta-internal BPF object files.
Signed-off-by: Andrii Nakryiko <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
Acked-by: Shung-Hsi Yu <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
0 files changed, 0 insertions, 0 deletions