如何锁定非特权用户的内存?
我需要将程序的页面锁定在内存中。 程序由非特权用户在 Solaris 10 操作系统下运行。 我尝试使用:mlock()、mlockall() 和 plock(),但总是得到相同的结果:
plock/mlock/mlockall: 不是所有者
但它从 root 开始工作。那么我可以以某种方式锁定内存中的程序页面,防止非特权用户访问吗?
谢谢!
I need to lock pages of my program in memory.
Program run under Solaris 10 OS from unprivileged user.
I've tried to use: mlock(), mlockall() and plock(), but always get the same result:
plock/mlock/mlockall: Not owner
But it works from root. So can I lock pages of my program in memory from unprivileged user, somehow?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了决定并想分享它。可能对其他人有帮助。
我修改了用户的权限,在Solaris下可以通过下一个命令来完成:
我认为在Linux中可能是相同的情况,并且可以使用Linux功能来解决。
I found decision and want to share it. May be it will be helpful for someone else.
I modified privileges of user, under Solaris it can be done by next command:
I think in Linux could be the same situation and it can be resolved using Linux capabilities.