如何禁用我自己编写的内核模块的 rmmod?

发布于 2025-01-05 11:30:32 字数 85 浏览 1 评论 0原文

如果用户进程正在使用内核模块,我希望另一个进程不能为该模块触发 rmmod 。 如何实现这种类型的功能呢?

-Linux 内核编程初学者。

If a user process is working with kernel module, I want that another process can't fire rmmod for that module.
How to achieve this type of functionality?

-beginner in Linux kernel programming.

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

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

发布评论

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

评论(1

一瞬间的火花 2025-01-12 11:30:32

rmmod可以在引用计数为零时卸载模块。

如果引用计数在用户进程连接时增加(并在断开连接时减少),那就没问题了。

如果模块公开一个设备,或者作为文件系统安装,这应该自然处理 - 如果没有,我想它将取决于用户空间接口,但这从哪里开始寻找。

顺便说一句,lsmod 将显示您的模块引用计数。您可以检查当用户空间进程连接时它是否递增。

rmmod can only unload a module when the refcount is zero.

If the reference count is incremented when a user process is connected (and decremented when it disconnects), you'll be fine.

If the module exposes a device, or is mounted as a filesystem, this should be handled naturally - if not, I guess it'll depend on the userspace interface, but this where to start looking.

By the way, lsmod will show your module refcount. You can check whether it's incremented when the userspace process connects.

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