race condition in the common lock on file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:40:03Zhttp://stackoverflow.com/feeds/question/325628http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/325628/race-condition-in-the-common-lock-on-file1race condition in the common lock on file?n-alexander2008-11-28T12:17:18Z2009-10-15T11:14:12Z
<p>this is the standard approach to create locks using file system. For example, visudo uses it:</p>
<pre><code>[ -f ".lock" ] && exit 1
touch .lock
# do something
rm .lock
</code></pre>
<p>1) I'm confused, for there's a race condition, yet Linux uses it</p>
<p>2) is there a better way to lock on files from shell? </p>
<p>3) or do I have to use directories instead? </p>
<p>Found solution: man lockfile.</p>
http://stackoverflow.com/questions/325628/race-condition-in-the-common-lock-on-file/325645#3256453Answer by Barry Kelly for race condition in the common lock on file?Barry Kelly2008-11-28T12:23:32Z2008-11-28T12:23:32Z<p>Yes, there is indeed a race condition in the sample script. You can use bash's noclobber option in order to get a failure in case of a race, when a different script sneaks in between the test and the touch.</p>
<p>It's described <a href="http://www.davidpashley.com/articles/writing-robust-shell-scripts.html" rel="nofollow">here</a>. I've excerpted the critical piece, with a couple of annotations (prefixed by BK:):</p>
<blockquote>
<p>A possible solution to this is to use IO redirection and bash's noclobber mode, which won't redirect to an existing file. We can use something similar to:</p>
</blockquote>
<pre><code>if ( set -o noclobber; echo "$$" > "$lockfile") 2> /dev/null;
then
# BK: this will cause the lock file to be deleted in case of other exit
trap 'rm -f "$lockfile"; exit $?' INT TERM EXIT
# critical-section BK: (the protected bit)
rm -f "$lockfile"
trap - INT TERM EXIT
else
echo "Failed to acquire lockfile: $lockfile."
echo "Held by $(cat $lockfile)"
fi
</code></pre>
http://stackoverflow.com/questions/325628/race-condition-in-the-common-lock-on-file/325662#3256620Answer by n-alexander for race condition in the common lock on file?n-alexander2008-11-28T12:28:34Z2008-11-28T12:28:34Z<p>seems like I've found an easier solution: man lockfile</p>
http://stackoverflow.com/questions/325628/race-condition-in-the-common-lock-on-file/1571711#15717110Answer by jpastuszek for race condition in the common lock on file?jpastuszek2009-10-15T11:14:12Z2009-10-15T11:14:12Z<p>Try flock command:</p>
<pre><code>exec 200>"$LOCK_FILE"
flock -e -n 200 || exit 1
</code></pre>
<p>It will exit if the lock file is locked. It is atomic and it will work over recent version of NFS.</p>
<p>I did a test. I have created a counter file with 0 in it and executed the following in a loop on two servers simultaneously 500 times:</p>
<pre><code>#!/bin/bash
exec 200>/nfs/mount/testlock
flock -e 200
NO=`cat /nfs/mount/counter`
echo "$NO"
let NO=NO+1
echo "$NO" > /nfs/mount/counter
</code></pre>
<p>One node was fighting with the other for the lock. When both runs finished the file content was 1000. I have tried multiple times and it always works!</p>
<p>Note: NFS client is RHEL 5.2 and server used is NetApp.</p>