I have a simple mmap program that behaves differently in two linux machines:
cat a.c
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/mman.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int
main(void)
{
int fd = -1;
char *A, *zero;
if ((fd = open("./a.out", O_RDONLY, 0)) == -1)
exit(1);
A = mmap(NULL, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, fd, 0);
if (A == MAP_FAILED)
printf("error %d, errno=%d\n", A, errno);
else
printf("OK %d\n", A);
return (EXIT_SUCCESS);
}
in one machine mmap returns with success but the other machine it prints error (errno is 1).
relevant differences in strace results are:
good one: (2.6.9-78.ELsmp #1 SMP Wed Jul 9 15:46:26 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux) open("./a.out", O_RDONLY) = 3 mmap(NULL, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0) = 0
failed one: ( 2.6.18-194.26.1.el5 #1 SMP Fri Oct 29 14:21:16 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux) open("./a.out", O_RDONLY) = 3 mmap(NULL, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0) = -1 EPERM (Operation not permitted)
In the failed one, if I get rid of MAP_FIXED flag, mmap succeeds. Seems that the failed process doesn't have memory space [0, 65535] available for mapping.
I don't know where to look into for this problem? What could be the cause for the different behavior and failure? Or more specificailly, if my guess that the failure is due to unavailable [0,65535], what could be the cause that one machine has it available while the other one doesn't? thanks
thanks
setenforce 0, withsetenforce 1to change it back after)? – Ignacio Vazquez-Abrams Oct 4 '12 at 20:18sysctl vm.mmap_min_addrin both systems? – ninjalj Oct 4 '12 at 21:52