簡體   English   中英

為什么此POSIX共享內存代碼出現分段錯誤?

[英]Why does this POSIX shared memory code give a segmentation fault?

#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <string.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <unistd.h>
#include <sys/mman.h>

int main()
{
    const int SIZE = 500;
    const char *name = "name";
    int fd;
    char *ptr = NULL;
    pid_t pid;
    pid = fork();

    if (pid < 0) {
        fprintf(stderr, "Fork Failed");
        return 1;
    }
    else if (pid == 0) {
        fd = shm_open(name,O_CREAT | O_RDWR,0666);
        ftruncate(fd, SIZE);
        ptr = (char *)mmap(0, SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
        sprintf(ptr, "%s", "Hello, World!\n");
        return 0;
    }
    else {
        wait(NULL);
        fd = shm_open(name, O_RDONLY, 0666);
        ptr = (char *)mmap(0, SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
        printf("%s\n", (char *)ptr);
    }
    return 0;
}

我基本上希望在子進程中創建一些共享內存,並從父進程訪問它。

在子進程中, mmap可以正常工作。 當我使用mmap返回的指針進行打印時Hello, World!實際上會打印Hello, World! ,但相同的打印內容會導致父級出現段錯誤。

在父級(pid!= 0)中,您打開了對象O_RDONLY,但使用PROT_WRITE,MAP_SHARED映射了該對象。 刪除| PROT_WRITE,您還好。 您可能希望在奇數時間檢查返回值是否有錯誤。

崩潰是由於man的摘錄:

O_RDONLY   Open the object for read access.  A shared memory object
           opened in this way can be mmap(2)ed only for read
           (PROT_READ) access.

您試圖:

fd = shm_open(name, O_RDONLY, 0666);
//                  ^^^^^^^^
ptr = (char *)mmap(0, SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
//                                    ^^^^^^^^^^^^ incorrect!

另一句話:您的name應遵循男性的建議,以便攜帶:

For portable use, a shared memory object should be identified by a name
of the form /somename; that is, a null-terminated string of up to
NAME_MAX (i.e., 255) characters consisting of an initial slash,
followed by one or more characters, none of which are slashes.

最后,您進行了一些不必要的(char *)強制轉換,並始終對返回值進行錯誤檢查。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM