如何调用libc中的内核代码? (Windows 或 Linux)

发布于 2024-10-14 19:49:24 字数 31 浏览 5 评论 0原文

我的意思是,内核如何向用户态应用程序公开其功能。

I mean, how the kernel expose its function to user land application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彡翼 2024-10-21 19:49:24

内核函数是使用系统调用来调用的,通常采用填充一些寄存器(系统调用类型、参数等)并执行软件中断(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').

野の 2024-10-21 19:49:24

假设您正在谈论 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文