gpt4 book ai didi

Linux - 命名管道 - mknod 中模式的作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:53:28 25 4
gpt4 key购买 nike

我想了解如何在 Linux 中使用命名管道进行 IPC。我在这个 link 找到了示例代码.

谁能告诉我 mknod() 中模式参数的作用是什么?我对权限部分特别感兴趣。为什么对该参数进行按位或运算?创建命名管道后如何使用参数?

最佳答案

仔细阅读mknod(2)手册页(例如,在终端中键入 man 2 mknod)。

   The mode argument specifies both the permissions to use and the type
of node to be created. It should be a combination (using bitwise OR)
of one of the file types listed below and the permissions for the new
node.

顺便说一句,你可能——也可能应该——使用mkfifo(3)相反(或者,在 shell 脚本或终端中,mkfifo(1) 命令)。

权限主要用于 open(2) 的进程-ing 一个已经存在的命名管道。

通过适当的权限设置,您可以限制 FIFO 的使用,例如只有某个给定组的成员。

另请阅读 Advanced Linux Programming , fifo(7) , credentials(7) , capabiities(7) ,以及关于 setuid .

关于Linux - 命名管道 - mknod 中模式的作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25216692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com