如何调用libc中的内核代码? (Windows 或 Linux)
我的意思是,内核如何向用户态应用程序公开其功能。
I mean, how the kernel expose its function to user land application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我的意思是,内核如何向用户态应用程序公开其功能。
I mean, how the kernel expose its function to user land application.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
内核函数是使用系统调用来调用的,通常采用填充一些寄存器(系统调用类型、参数等)并执行软件中断(int 0x80)或 sysenter 指令(如果您的体系结构支持)的形式。
如果您在 Linux 上执行此操作,您可能需要查看一些 Linux 系统调用文档,如下所示:http://bluemaster.iu.hio.no/edu/dark/lin-asm/syscalls.html
对于其他内核(Windows)肯定存在一些类似的文档。
Kernel functions are called using syscalls, which usually take form of filling some registers (type of syscall, parameters, ...) and doing a software interrupt (int 0x80) or sysenter instruction (if your architecture supports it).
If you're doing this on Linux, you might want to see some Linux syscall documentation, like one here: http://bluemaster.iu.hio.no/edu/dark/lin-asm/syscalls.html
There surely exists some similar documentation for other kernels (windows').
假设您正在谈论 Linux,您将参数放入寄存器中并调用中断 0x80。这个的名字是“系统调用”
请参阅以下链接:
Windows 可能类似,这看起来是一篇不错的文章:
http://www.codeguru.com/cpp/wp/system/devicedriverdevelopment/article.php/c8035
等...谷歌
Assuming you are talking about Linux, you put your arguments in registers and call interrupt 0x80. The name for this is "system call"
See these links:
Windows is probably similar, this looks like a good article:
http://www.codeguru.com/cpp/w-p/system/devicedriverdevelopment/article.php/c8035
etc... google