7

我正在尝试创建一个将由多个进程使用的共享内存,这些进程不一定由同一个用户启动,因此我使用以下行创建段:

fd = shm_open(SHARE_MEM_NAME,O_RDWR | O_CREAT,0606);

但是,当我检查在 /dev/shm 中创建的文件的权限时,它们是:

-rw----r-- 1 lmccauslin lmccauslin 1784 2012-08-10 17:11 /dev/shm/CubeConfigShare 不像-rw----rw-我预期的那样。

/dev/shm 的权限是 lrwxrwxrwx。

同样的事情发生在同样创建的信号量上。

内核版本:3.0.0-23-generic

glibc 版本:EGLIBC 2.13-20ubuntu5.1

有人有什么想法吗?

4

2 回答 2

10

大概是吧umask

引用手册shm_open

   O_CREAT    Create  the  shared memory object if it does not exist.  The user and
              group ownership of the object are taken from the corresponding effec‐
              tive IDs of the calling process, and the object's permission bits are
              set according to the low-order 9 bits of mode, except that those bits
              set in the process file mode creation mask (see umask(2)) are cleared
              for the new object.  A set of macro constants which can  be  used  to
              define  mode  is  listed  in open(2).  (Symbolic definitions of these
              constants can be obtained by including <sys/stat.h>.)

因此,为了允许创建全局可写文件,您需要设置一个允许它的 umask,例如:

umask(0);

像这样设置,umask不会再影响对创建文件的任何权限。但是,您应该注意,如果您随后创建另一个文件而不明确指定权限,那么它也将是全局可写的。

因此,您可能只想暂时清除 umask,然后将其恢复:

#include <sys/types.h>
#include <sys/stat.h>

...

void yourfunc()
{
    // store old
    mode_t old_umask = umask(0);

    int fd = shm_open(SHARE_MEM_NAME,O_RDWR | O_CREAT,0606);

    // restore old
    umask(old_umask);
}
于 2012-08-10T21:51:39.377 回答
0

据我了解,POSIX 信号量是在共享内存中创建的。所以你需要确保用户有

rw permissions to /dev/shm for the semaphores to be created.

然后,作为一个方便的选项,将以下行放入您的 /etc/fstab 文件以挂载 tmpfs:

无 /dev/shm tmpfs 默认值 0 0

这样当您的机器重新启动时,权限就从一开始就设置好了。

三个中的两个将 /dev/shm 设置为 drwxrwxrwx,而不允许创建信号量的机器将其设置为 drwxr_xr_x。
您还可以查看共享内存限制:

------ 共享内存限制--------
max number of segments = 4096
max seg size (kbytes) = 18014398509465599 max total shared memory (kbytes) = 18446744073642442748
min seg size (bytes) = 1

于 2018-01-12T08:54:53.573 回答