Can eBPF tamper with function parameters or return values while the Golang process is running? #1137
Replies: 1 comment
-
In theory yes, using uprobes. Changing return parameters via uretprobe probably won't work however: golang/go#22008 Please discuss generic eBPF questions (not related to the library) on the Slack or Stack Overflow. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am engaged in chaos engineering. I want to inject some exceptions into a golang process to mutate the parameters or return values of the target function. Can it be implemented based on eBPF? Of course, it is also acceptable to restart the process if necessary. But it is best not to need to recompile
Beta Was this translation helpful? Give feedback.
All reactions