用户模式权限被拒绝绑定到套接字
在 Linux 计算机上的用户模式 [非 root] 下,我尝试使用 ioctl(iInterfaceSocket, SIOCSIFADDR, &stCommand) 绑定套接字。我收到错误 13 ->由于用户模式,权限被拒绝
。如果从用户模式更改为内核模式,一切正常。
我只需要在用户模式下绑定套接字。请在解释上述问题的同时提出解决方案。如果我错过了任何信息,请告诉我,我将提供更多信息。
In user mode [non-root] on a linux machine, I am trying to bind a socket by using a ioctl(iInterfaceSocket, SIOCSIFADDR, &stCommand)
. I am getting error 13 -> Permission denied because of user mode
. If change from usermode to kernel mode everything works fine.
I need to bind the socket in user mode only. Please suggest a solution while explaining the problem above. If I missed any information please let me know and I will provide more info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您是 root,否则无法设置接口地址(从技术上讲,除非您拥有 CAP_NET_ADMIN)。请参阅 devinet.c。
解决方案是以 root 身份运行。如何实现该解决方案,是否使整个程序 SUID,或者要求用户通过 sudo 运行它 或 gksudo,或者是否将程序分成两部分(根和非root),这个选择取决于你。
You can't set the interface address unless you are root (well, technically, unless you have
CAP_NET_ADMIN
). See devinet.c.The solution is to run as root. How to implement that solution, whether to make your entire program SUID, or ask the user to run it via sudo or gksudo, or whether to factor your program into two parts (root and non-root), that choice is up to you.