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
bpf_probe_read_user_str()
bpf_probe_read_str()
peer-observer/extractor/src/bpf/tracing.bpf.c
Lines 77 to 79 in df2e85d
In multiple places, we use bpf_probe_read_str. https://man7.org/linux/man-pages/man7/bpf-helpers.7.html recommends to use bpf_probe_read_user_str instead.
bpf_probe_read_str
bpf_probe_read_user_str
Generally, use bpf_probe_read_user_str() or bpf_probe_read_kernel_str() instead.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
peer-observer/extractor/src/bpf/tracing.bpf.c
Lines 77 to 79 in df2e85d
In multiple places, we use
bpf_probe_read_str
. https://man7.org/linux/man-pages/man7/bpf-helpers.7.html recommends to usebpf_probe_read_user_str
instead.The text was updated successfully, but these errors were encountered: