gpt4 book ai didi

c - 从 mmap-ed 内存中进行有效读取会在负载下产生 SIGBUS。为什么?

转载 作者:太空狗 更新时间:2023-10-29 12:25:02 26 4
gpt4 key购买 nike

我有一个程序可以将缓冲区复制到文件,mmap 将它们返回,然后检查它们的内容。多个线程可以处理同一个文件。偶尔,我在阅读时收到 SIGBUS,但只是在负载下。

映射是 MAP_PRIVATE 和 MAP_POPULATE。通过 SIGBUS 的崩溃发生在 mmap 成功之后,我不明白,因为使用了 MAP_POPULATE。

这是一个完整的示例(在/tmp/buf_* 下创建文件并用零填充),使用 OpenMP 创建更多负载和并发写入:

// Program to check for unexpected SIGBUS
// gcc -std=c99 -fopenmp -g -O3 -o mmap_manymany mmap_manymany.c
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

#define NBUFS 64
const char bufs[NBUFS][65536] = {{0}};
const char zeros[65536] = {0};

int main()
{
int count = 0;
while ( 1 )
{
void *mappings[ 1000 ] = {NULL};

#pragma omp parallel for
for ( int i = 0; i < 1000; ++i )
{
// Prepare filename
int bufIdx = i % NBUFS;
char path[ 128 ] = { 0 };
sprintf( path, "/tmp/buf_%0d", bufIdx );

// Write full buffer
int outFd = -1;
#pragma omp critical
{
remove( path );
outFd = open( path, O_EXCL | O_CREAT | O_WRONLY | O_TRUNC, 0644 );
}
assert( outFd != -1 );
ssize_t size = write( outFd, bufs[bufIdx], 65536 );
assert( size == 65536 );
close( outFd );

// Map it to memory
int inFd = open( path, O_RDONLY );
if ( inFd == -1 )
continue; // Deleted by other thread. Nevermind

mappings[i] = mmap( NULL, 65536, PROT_READ, MAP_PRIVATE | MAP_POPULATE, inFd, 0 );
assert( mappings[i] != MAP_FAILED );
close( inFd );

// Read data immediately. Creates occasional SIGBUS but only under load.
int v = memcmp( mappings[i], zeros, 65536 );
assert( v == 0 );
}

// Clean up
for ( int i = 0; i < 1000; ++i )
munmap( mappings[ i ], 65536 );
printf( "count: %d\n", ++count );
}
}

我没有断言触发,但程序总是在 SIGBUS 几秒钟后崩溃。

最佳答案

对于您当前的程序,线程 0 可能会创建 /tmp/buf_0,写入并关闭它。然后线程 1 删除并创建 /tmp/buf_0,但在线程 1 写入它之前,线程 0 打开、映射并从 /tmp/buf_0 读取 - 因此尝试访问尚未包含 64 kiB 数据的文件。你得到一个 SIGBUS

为避免该问题,只需使用 omp_get_thread_num() 而不是 bufIdx 为每个线程创建唯一的文件/和 bufs

关于c - 从 mmap-ed 内存中进行有效读取会在负载下产生 SIGBUS。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44542852/

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