gpt4 book ai didi

c - msgsnd 无权限错误

转载 作者:行者123 更新时间:2023-11-30 16:49:30 24 4
gpt4 key购买 nike

我想在两个进程之间发送消息。但当我尝试使用 msgsnd()

发送消息时,出现 EACCES 错误

创建消息队列

const char* MSG_QUEUE = "/tmp/msg_queue";

int file = open(MSG_QUEUE, O_CREAT | O_RDWR | O_APPEND, 0755);
close(file);
key_t key = ftok(MSG_QUEUE, 1);
errno = 0;
msg_queue = msgget(key, IPC_CREAT);
if(msg_queue == -1) {
M_DEBUG("Error %s\r\n", strerror(errno));
}

消息结构

struct feld_msg_s {
long id;
char mtext[5];
};

发送消息

struct feld_msg_s a_msg = {1, "Test"};
errno = 0;
int ret = msgsnd(msg_queue, &a_msg, sizeof(a_msg.mtext), 0);
if(ret == -1) {
if(errno == EACCES) {
printf("\r\n NO PERMISSION\r\n");
} else {
printf("msgsnd ERROR!: %s\r\n", strerror(errno));
}
}

在msgsnd的联机帮助页中这样写

EACCES The calling process does not have read permission on the message queue, and does not have the CAP_IPC_OWNER capability.

因此我使用 setcap 命令添加了以下功能

sudo setcap CAP_SETFCAP,CAP_IPC_OWNER+epi /home/mvollmer/build-APP-Desktop_Qt_5_6_1_GCC_64bit-Debug/APP 

我已使用 getcap 检查应用程序是否具有这些功能。没关系。但我仍然收到无权限错误。

当以 root 权限执行应用程序时,它可以工作!

有一件事很奇怪,尽管 msgget 成功,但 ipcs 不显示任何消息队列。

那我的错在哪里呢?

我正在使用 Linux Mint

其他问题:是否可以在 msg 结构中使用除 char 以外的其他数据类型,或者消息是否仅限于字符串?

最佳答案

您需要阅读手册页。每the POSIX msgget() standard :

SYNOPSIS

#include <sys/msg.h>

int msgget(key_t key, int msgflg); [Option End]

DESCRIPTION

...

  • The low-order 9 bits of msg_perm.mode shall be set to the low-order 9 bits of msgflg.

因此,这段代码

msg_queue = msgget(key, IPC_CREAT);

“msgflg 的低 9 位”全部设置为零。因此消息队列模式也是全0 - 任何人都没有权限。

关于c - msgsnd 无权限错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42573384/

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