I am not being able to check this via experiments and could not gather it from the man pages as well.

Say I have two processes , one moving(rename) file1 from directory1 to directory2. Say the other process running concurrently copies the contents of directory1 and directory2 to another location. Is it possible that the copy happens in such a way that both directory1 and directory2 will show file1.i.e directory1 is copied before the move and directory2 after the move by the first process.

Basically is rename() a atomic system call?

Thanks

link|improve this question

67% accept rate
feedback

3 Answers

Yes and no.

rename() is atomic assuming the OS does not crash. It cannot be split by any other filesystem op.

If the system crashes you might see a ln() operation instead.

Also note, when operating on a network filesystem, you might get ENOENT when the operation succeeded successfully. Local filesystem can't do that to you.

link|improve this answer
@Joshua...Thanks. Is there some references where I can learn about the atomicity of operations. Moreover the following question <stackoverflow.com/questions/2837135/mv-while-reading>; suggests the absence of atomicity. I am not locking explicitly. – Juggler Aug 14 '11 at 4:10
Read the man pages in section 2 of the online manuals for: link(), rename(), creat(), open(), unlink(), read(), write(). There are two APIs for explicit locking but programs that ignore them waltz right through locks. Also, do not trust flock() and friends on network filesystems (no reference: you are expected to know this is an unsolvable problem in computer science and the implementation can fail). O_EXCL didn't always exist which made things harder in the past. – Joshua Aug 15 '11 at 3:09
My source for "If the system crashes you might see a ln() operation instead." is the kernel source code itself. – Joshua Aug 15 '11 at 3:09
feedback

To check this, try using strace to see all of the system calls.

Though, for your case, have you considered using a symlink? In production systems, I use a symlink to point to today's date, so that multiday operations use the correct value.

link|improve this answer
feedback

I'm not sure the "basically" part of your question is valid. Unless you have some kind of synchronization between the two, it doesn't matter how atomic rename is. If the directory copy gets there before the rename, you are going to have file1 in both places.

I'm not sure if you meant thread or processes, but if there are locking mechanisms for both, threading locks are by far the simplest because they don't have to cross process boundaries.

link|improve this answer
Done correctly, rename() is a perfectly legitimate way to divvy up workload between worker processes. – Joshua Aug 15 '11 at 3:10
1  
@Joshua: Yes, but Mark0978 is right: the process described in by the OP is racy even though rename() on one filesystem is atomic (because reading the contents of two different directories is not atomic, so the rename could happen after you have read directory1 and before you have read directory2). – caf Aug 15 '11 at 7:32
@caf: Mark is using a strawman argument. You do rename() from both processes. – Joshua Aug 15 '11 at 17:51
It's not a strawman argument. He wants rename to be atomic, hinting at the fact he doesn't want it interrupted while doing the rename. He hints at using multiple processes or threads (not sure that he knows the difference between the two) and wanting to make sure a rename doesn't get caught in the middle of a copy. All of these point to someone that needs to better understand race conditions. He's asking the WRONG question here, worrying about the wrong thing. The color of the auto doesn't matter when it is going off a cliff to burn in the canyon below. – Mark0978 Aug 15 '11 at 21:53
@Joshua: You need to re-read the original question. It has one process doing a rename(), racing with another process that is "copying the contents of directory1 and directory2 to another location". That second process requires at least distinct "read the contents of directory1" and "read the contents of directory2" steps, even before it does any copying/renaming of its own, and it is these steps that can race with the rename() in the first process. – caf Aug 15 '11 at 23:30
feedback

Your Answer

 
or
required, but never shown

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