-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
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
add module.GetSymbolByAddr / GetDemangleSymbolByAddr #232
base: master
Are you sure you want to change the base?
Conversation
compiled
add GetSymbolByAddr/GetDemangleSymbolByAddr
bccSymbolByAddr(addr uint64, pid int, demangle int) string
rm dup
Based on libbpf's source code and the code An additional wrapper named something like
|
Hi @weixingsun @holmanb, I tested it against the latest version of gobpf (my up-to-date fork). |
@maxgio92 bummer that this didn't land. The last commit in this repo is over a year ago, and lots of PRs and Issues filed are completely ignored. This project is dead. @schu @chantra @iaguis @alban There was an offer to take over maintainership. Alternatively @vietanhduong appears to have a fork that has been landing old PRs, maybe they have interest in maintainership. Do any former contributors care to see this project live on? Handing over control to an active maintainer would be good stewardship. Alternatively, marking the project as no longer maintained would tell users to look towards an actively maintained project rather than wasting effort on an abandoned one. |
Hi, Although I made a few contributions to this project, I'm not associated with it and definitely not a maintainer here. I am associated with a competing project: https://github.com/aquasecurity/libbpfgo |
Hey! As you see, the current maintainers don't have time to work on this project, so I talked with @alban and others in the team and we were converging on the following plan:
What do people think? Would it cover your use cases? If you think that makes sense, a review of iovisor/bcc#4449 would help. |
What steps are needed to proceed with the merge? Are there specific tasks that must be addressed first? It seems there are outstanding questions regarding the absence of tests and concerns about the quality of existing tests compared to other supported platforms in the repository. |
Hi everyone, I'm starting to build a new project to wrap up Cilium/eBPF in pure Go. It has a similar structure to the gobpf repository. You can take a look at it here: https://github.com/vietanhduong/wbpf. If you prefer to stick with gobpf, you can choose this one: https://github.com/vietanhduong/go-bpf. I've also updated some features in it. Feel free to contribute. Thank you, guys! |
just added the funcs as I cannot find it anywhere else, thanks