I'm trying to find a simple way to ensure exclusive access to a resource by several instances of a same command, while at the same time make sure that whichever process asked for the resource first will get it first.
If I do:
#! /bin/sh -
{ flock 3
some-possibly lengthy code
exec 4>&
} 3<> some-resource
(flock(1) uses flock(2)), I do get exclusive access, but as confirmed by this script:
flock a-resource sleep 6 &
for i in 1 2 3 4 5; do
sleep 1
flock a-resource echo "$i" &
done
wait
where we've got one process (sleep) holding the resource for 6 seconds, during which 5 other processes, in turn, request access to the resource, whoever gets the resource after sleep has relinquished it is random.
It looks like fcntl(F_SETLK) or the semaphore APIs don't give that guarantee of first-ordered-first-served either.
Is there a Linux system API (though I'd be interested to know about portable or from other Unices as well) that would allow that, without having to implement it in userspace?
If not, what would be the best way to implement a mechanism for a process to request exclusive access to a resource that doesn't require a dedicated supervisor process that arbitrates allocation of the resource and where processes waiting for the resource would be sleeping (not be scheduled) until the resource is relinquished (and that would guarantee first-ordered-first-served)?
Though it's a theoretical question, to help understand the question, a real-life example could be a CGI script run by some web server that updates the content of a file based on web client input, and I want to make sure that if Joe queried that URL first, it will get the response before Lucy if Lucy queried it after. I suppose the canonical way would be to have a daemon process that serializes the requests. I know how to do that, I'm only interested to know whether there's a Unix API that would grant an exclusive lock while at the same time putting the requesting processes in a queue that is processed in a FIFO manner. Or if not, some neat/clever mechanism (neater, less over-engineered/clunky that I can come with, see my own answer) to do that.