如何禁用我自己编写的内核模块的 rmmod?
如果用户进程正在使用内核模块,我希望另一个进程不能为该模块触发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.