execve() 中的 linux_binprm
在源 execve() 系统调用中 http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=fs/exec.c#l186
有一个结构linux_binprm
你能告诉我该结构的相关性吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它封装了执行程序所需的所有数据:虚拟内存区域、磁盘上的文件名、文件描述符表、是否是二进制程序还是脚本等。请参见其 LXR 的定义。
It encapsulates all the data needed to execute a program: it's virtual memory area, filename on disk, file descriptor table, whether it's a binary program or a script, etc. See its definition at LXR.
当然,http://lxr.linux.no 是你的朋友,请参阅http://lxr.linux.no/linux+v2.6.37/include/linux/binfmts .h#L28
Sure thing, http://lxr.linux.no is your friend, see http://lxr.linux.no/linux+v2.6.37/include/linux/binfmts.h#L28