使用Placement时SIGBUS是新的吗?

时间:2018-02-08 07:49:57

标签: c++ linux g++

我有以下代码(已更新):

#include <iostream>
#include <cassert>
#include <errno.h>
#include <string.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <new>

struct S {
uint32_t a;
uint32_t b;
};

int main() {
    const auto fd = open("/tmp/abc.txt", O_RDWR | O_CREAT, S_IRWXU);
    assert(fd > 0);
    void* ptr = mmap(nullptr, sizeof(S), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
    assert(MAP_FAILED != ptr);
    std::cout << "address: " << ptr << std::endl;
    auto tptr = new (ptr) S();
    tptr->a = 99;
    const auto rc = msync(&ptr, sizeof(S), MS_ASYNC);
    std::cout << "msync returned " << rc << std::endl;
    if (rc != 0) {
        std::cout << "error code = " << errno << ": " << strerror(errno) << std::endl;
    }
}

当我在GDB中运行时,我得到了这个:

address: 0x7ffff7ff8000

Program received signal SIGBUS, Bus error.
0x0000000000400adb in main () at msync.cpp:20
20      auto tptr = new (ptr) S();

我看到有人提到了内存对齐问题,我检查过0x7ffff7ff8000可被2,8,16,32和64整除。然后,我很困惑它期待什么样的对齐。或者它是别的什么?

提前致谢。

1 个答案:

答案 0 :(得分:4)

您似乎正在尝试在此处创建文件并将其写入其中,因此最初它的大小为零并占用零内存页。但mmap无法写入文件的末尾,为您有效地分配内存:首先,如何知道要添加到文件的字节数?您需要确保/tmp/abc.txt包含某些字符,这些字符随后可能会被展示位置new 覆盖。它无法追加

在我将{8}个随机字节写入/tmp/abc.txt之后运行程序成功并通过

覆盖这些字节
63 00 00 00 00 00 00 00
正如我在x86-64上预期的那样。然后,程序会报告您可能要生成的msync错误,并正常退出。