umask 会影响消息队列吗?

发布于 2024-11-19 08:37:02 字数 82 浏览 2 评论 0原文

在 Ubuntu Linux 中,更改系统的 umask(例如通过在程序中调用 umask())是否会影响系统上消息队列等 IPC 设施的创建和使用?

In Ubuntu Linux, does changing umask of the system (by calling umask() in a program for example), affect the creation and usage of the IPC facilities like message queues on the system?

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

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

发布评论

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

评论(1

没有伤那来痛 2024-11-26 08:37:02

来自手册页

umask 设置还会影响分配给 POSIX IPC 对象(mq_open(3)、sem_open(3)、shm_open(3))、FIFO (mkfifo(3))和 UNIX 域套接字 (unix(7))的权限由进程创建。 umask 不会影响分配给进程使用 msgget(2)、semget(2)、shmget(2)) 创建的 System V IPC 对象的权限。

因此,如果您的 IPC 使用上述内容,那么可以。你能说得更具体一些吗?

strace myprogram | 跟踪我的程序egrep 'mq_open|sem_open|...' 应该告诉您是否直接或间接调用其中任何一个。

From the man page

The umask setting also affects the permissions assigned to POSIX IPC objects (mq_open(3), sem_open(3), shm_open(3)), FIFOs (mkfifo(3)), and UNIX domain sockets (unix(7)) created by the process. The umask does not affect the permissions assigned to System V IPC objects created by the process using msgget(2), semget(2), shmget(2)).

So if your IPC uses the above, then yes. Can you be more specific?

strace myprogram | egrep 'mq_open|sem_open|...' should tell you if you're calling any of these, directly or indirectly.

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