We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpf2c, libbpf and uBPF plugins exhibit different behaviors on the following test containing JSET.
-- asm mov %r1, 5 jset %r1, %r1, lbl1 mov %r0, 0 exit lbl1: mov %r0, 1 exit -- result 0x1
Test execution outcome across three different plugins:
bpf2c: seems like it does not execute instruction at lbl1
FAIL: Plugin returned incorrect return value 0 expected 1
libbpf: verifier error
ERROR: Plugin returned error code 1
uBPF: appears to execute instruction at lbl1
FAIL: Plugin returned incorrect return value 7ffff338a820 expected 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bpf2c, libbpf and uBPF plugins exhibit different behaviors on the following test containing JSET.
Test: JSET with the same src, dst register
Test execution outcome across three different plugins:
bpf2c: seems like it does not execute instruction at lbl1
libbpf: verifier error
uBPF: appears to execute instruction at lbl1
The text was updated successfully, but these errors were encountered: