是否可以使用 DTrace 查看传递给 strncpy 的参数?
我知道我可以编写一个 interposer 来观察传递给 strncpy 的参数库调用,但使用 DTrace 似乎应该很容易做到这一点。
I know I could write an interposer to watch the arguments being passed to the strncpy library call, but it seems like this should be easy to do with DTrace.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个工作变体(仅在 Mac 上测试):
需要
copyinstr
因为字符串来自用户区到内核。Here's a working variant (tested on Mac only):
copyinstr
is required since the string comes from userland into the kernel.