Has anybody succeeded in mmap'ing a /proc/pid/mem file with Linux kernel 2.6? I am getting an ENODEV (No such device) error. My call looks like this:

char * map = mmap(NULL, PAGE_SIZE, PROT_READ, MAP_SHARED, mem_fd, offset);

And I have verified by looking at the /proc/pid/maps file while debugging that, when execution reaches this call, offset has the value of the top of the stack minus PAGE_SIZE. I have also verified with ptrace that mmap is setting errno to ENODEV.

link|improve this question

36% accept rate
feedback

1 Answer

up vote 7 down vote accepted

See proc_mem_operations in /usr/src/linux/fs/proc/base.c: /proc/.../mem does not support mmap.

link|improve this answer
Thanks a lot! I don't seem to have that base.c file in my Ubuntu x86_64--my /usr/src dir is empty. What distro are you running? – Amittai Aviram Mar 8 '11 at 21:59
@Amittai: You can install the linux-source package or fetch the Linux kernel source yourself directly from kernel.org. – ephemient Mar 8 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.