内存映射文件在ecryptfs目录中失败

时间:2017-03-13 16:16:10

标签: linux memory-mapped-files ecryptfs

在常规的ubuntu机器上,以下测试成功,除非我在我的主目录中运行它,在这种情况下它会因总线错误而崩溃。我能想到的只是因为主目录是加密的。 (我在那里找到Private和.ecryptfs链接。)

// Make with g++ -mcmodel=large -fPIC -g -O0 -o checkmm checkmm.c

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/mman.h>

#define TALLIES "tallies.bin"
#define NUM_TALLIES (550588000/sizeof(int))
typedef struct { int tallies[NUM_TALLIES]; } World;
World* world;

void loadWorld() {
  int fd = open(TALLIES, O_RDWR | O_CREAT);
  if (fd == -1) { printf("Can't open tallies file %s\n", TALLIES); exit(0); }
  fallocate(fd, 0, 0, sizeof(World));
  world = (World*) mmap(0, sizeof(World), PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
  if (world ==(World*) -1) { printf("Failed to map tallies file %s\n", TALLIES); exit(1); }
}

void unloadWorld() { munmap(world, sizeof(World)); }

void resetWorld() {
  int i;
  for (i=0;i<NUM_TALLIES;i++) world->tallies[i]=-1;
}

int main() {
  loadWorld();
  resetWorld();
  unloadWorld();
}

任何人都可以澄清吗?

1 个答案:

答案 0 :(得分:1)

您应该检查每个系统调用的返回码。特别是fallocate()和mmap()。

少数文件系统支持

fallocate()。如果fallocate()失败(将errno设置为EOPNOTSUPP),则应使用ftruncate()。