系统调用如何知道包装函数将其参数放在哪里?
我正在尝试在 Linux (RedHat Enterprise 8) 中实现系统调用,但我对其工作方式有点困惑。据我了解,我在用户模式下实现了一个包装器,它将系统调用号放入 eax 中,将参数放入 ebx、ecx、edx 等中,然后调用 int 0x80 来调用适当的系统调用。我的问题是,由于系统调用的编写方式与常规 C 函数类似,它如何知道哪些寄存器包含哪些参数?它是一种约定吗?或者是否有一种机制?如果有的话,它在哪里以及如何实现?
编辑:这是一项家庭作业。我知道有系统调用宏可以为我做这些事情。
I'm trying to implement a syscall in Linux (RedHat Enterprise 8) and I'm a bit confused about the way it works. From what I understand, I implement a wrapper in user mode which puts the syscall number in eax and parameters in ebx, ecx, edx, etc, and then invokes int 0x80 which calls the appropriate syscall. My question is, since a syscall is written like a regular C function, how does it know what registers contain what parameters? Is it a convention, or is there a mechanism for it, and if so where and how does it do it?
EDIT: This is a homework assignment. I know that there are syscall macros that can do this stuff for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
摘自 Linux Journal 文章,第 2 页底部
您的 C 代码可能看起来像是在进行系统调用,但它实际上调用了 libc 中的函数。该函数确保所有参数都位于正确的寄存器中,然后执行中断。
From the Linux Journal article, bottom of page 2
Your c code may look like it's making a system call, but it actually calls a function in libc. That function makes sure that all the arguments are in the right registers, and then does the interrupt.