打开调用错误地设置POSIX共享内存和信号量权限

时间:2012-08-10 21:28:24

标签: linux posix ipc file-permissions shared-memory

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

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

有人有任何想法吗?

2 个答案:

答案 0 :(得分:8)

可能是umask

引用manpage of 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);
}

答案 1 :(得分: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