用户模式权限被拒绝绑定到套接字

发布于 2024-11-04 10:56:27 字数 231 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

肥爪爪 2024-11-11 10:56:27

除非您是 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.

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