使用内存多于分配linux c

时间:2015-11-08 18:34:04

标签: c linux ipc shared-memory

我正在使用POSIX的shared_memory ..

我已经分配了4KB,但我可以使用超过4KB ...当我向内存写入超过~10350个字符时,它给我一个分段错误。等于~10350字节/ 1024 = ~10KB?

我认为操作系统应该保护内存以防止这种违规行为,但它允许我这样做?为什么?

生产者源代码,用于将内容放入共享内存段

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <sys/stat.h>
#include <sys/mman.h>
int main(void)
{
const int size = 4096; //4kb
const char *name = "os";
const char *message = "Put more than 5000 chars it will work perfectly but less than 10350 or something like that";
int shm_fd;
void *ptr;
shm_fd = shm_open(name,O_CREAT | O_RDWR,0666);
ftruncate(shm_fd,size);// set the size to 4kb
ptr = mmap(0,size,PROT_WRITE | PROT_READ,MAP_SHARED,shm_fd,0);
sprintf(ptr,"%s",message);
ptr += strlen(message);
return 0;

1 个答案:

答案 0 :(得分:1)

我的系统也有4KiB页面大小,我的默认堆栈大小为8KiB。 如果我这样做:

#define _BSD_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
int main(){
  const int size = 4096;
  const char *name = "os";
  int shm_fd = shm_open(name, O_CREAT | O_RDWR, 0666);
  ftruncate(shm_fd,size);// set the size to 4kb
  char* ptr = (char*)mmap(0,size,PROT_WRITE | PROT_READ,MAP_SHARED,shm_fd,0);
  for(int i=0; i>=0; i++){
    printf("%d\n", i);
    ptr[i]='x';
  }
  return 0;
}

它在12KiB(12288)确定性地断裂。 我认为它mmaps位于你的heap空间的开头,就在堆栈旁边(8KiB)并且溢出4KiB会导致堆栈空间被破坏,之后会出现段错误。