I'm trying to implement a circular buffer in C, and have come across this example on Wikipedia. It looks as if it would provide a really nice interface for anyone reading from the buffer, as reads which wrap around from the end to the beginning of the buffer are handled automatically. So all reads are contiguous.

However, I'm a bit unsure about using it straight away as I don't really have much experience with memory mapping or virtual memory and I'm not sure that I fully understand what it's doing.

What I think I understand is that it's mapping a shared memory file the size of the buffer into memory twice. Then, whenever data is written into the buffer it appears in memory in 2 places at once. This allows all reads to be contiguous.

What would be really great is if someone with more experience of POSIX memory mapping could have a quick look at the code and tell me if the underlying mechanism used is really that efficient. Am I right in thinking for example that the file in /dev/shm used for the shared memory always stays in RAM or could it get written to the hard drive (performance hit) at some point? Are there any gotchas I should be aware of?

As it stands, I'm probably going to use a simpler method for my current project, but it'd be good to understand this to have it in my toolbox for the future.

Thanks in advance for your time.

link|improve this question
This seems to be for shared memory i.e. for inter-process communication. Is that what you want? If I recollect correctly shared memory is not backed by a disk. (But that is from long time back). – Aryabhatta May 27 '10 at 17:23
@Moron, there is unlink which hides name of file under "/dev/shm", so there is no IPC. – ony May 27 '10 at 17:58
@ony: I don't get you. – Aryabhatta May 27 '10 at 18:07
@Moron, there is no address by which other process may mmap that file, because it was unlinked and the only reference is hold for it is in memory. – ony May 27 '10 at 18:39
@ony: Let me try to understand. You want to unlink /dev/shm just so you can use it and not let other process have access to it!? – Aryabhatta May 27 '10 at 19:19
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

I think first anonymous mmap is done just to select some address area in non-used memory to hold both mappings.
"/dev/shm" is usually mounted with filesystem "tmpfs" which stores all the data in swap/memory. So actually it may result in writing to hard drive, but you have the same chances with your malloc-ed memory.

Even that my "/etc/fstab" says "glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for POSIX shared memory (shm_open, shm_unlink)." some systems may not follow that. But I hope that memory-mapped files works almost like swap, but they try to sync data to disk as soon as possible.

As man mkstemp states - glibc 2.06 and earlier creates file with permission 0666, that may lead into security hole if someone will catch your file between mkstemp and unlink.

link|improve this answer
Cheers for that. With you mentioning the possible security hole it certainly seems that the code needs more thought than just cutting and pasting it in. Although to be fair it is marked as an optimisation. :) – abroun May 28 '10 at 9:37
feedback

Your Answer

 
or
required, but never shown

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