In computer science, a readersâÂÂwriter (single-writer lock, a multi-reader lock, a push lock, or an MRSW lock) is a synchronization primitive that solves one of the readersâÂÂwriters problems. An RW lock allows concurrent access for read-only operations, whereas write operations require exclusive access. This means that multiple threads can read the data in parallel but an exclusive lock is needed for writing or modifying data. When a writer is writing the data, all other writers and readers will be blocked until the writer is finished writing. A common use might be to control access to a data structure in memory that cannot be updated atomically and is invalid (and should not be read by another thread) until the update is complete.
ReadersâÂÂwriter locks are usually constructed on top of mutexes and condition variables, or on top of semaphores.
Some RW locks allow the lock to be atomically upgraded from being locked in read-mode to write-mode, as well as being downgraded from write-mode to read-mode. Upgrading a lock from read-mode to write-mode is prone to deadlocks, since whenever two threads holding reader locks both attempt to upgrade to writer locks, a deadlock is created that can only be broken by one of the threads releasing its reader lock. The deadlock can be avoided by allowing only one thread to acquire the lock in "read-mode with intent to upgrade to write" while there are no threads in write mode and possibly non-zero threads in read-mode.
RW locks can be designed with different priority policies for reader vs. writer access. The lock can either be designed to always give priority to readers (read-preferring), to always give priority to writers (write-preferring) or be unspecified with regard to priority. These policies lead to different tradeoffs with regard to concurrency and starvation.
Several implementation strategies for readersâÂÂwriter locks exist, reducing them to synchronization primitives that are assumed to pre-exist.
Raynal demonstrates how to implement an R/W lock using two mutexes and a single integer counter. The counter, , tracks the number of blocking readers. One mutex, , protects and is only used by readers; the other, (for "global") ensures mutual exclusion of writers. This requires that a mutex acquired by one thread can be released by another. The following is pseudocode for the operations:
Initialize Set to . is unlocked. is unlocked.
Begin read Lock . Increment . If , lock . Unlock .
End read Lock . Decrement . If , unlock . Unlock .
Begin write Lock .
End write Unlock .
This implementation is read-preferring.
Alternatively an RW lock can be implemented in terms of a condition variable, , an ordinary (mutex) lock, , and various counters and flags describing the threads that are currently active or waiting. For a write-preferring RW lock one can use two integer counters and one Boolean flag:
Initially and are zero and is false.
The lock and release operations can be implemented as
Begin read Lock While or : wait , Increment Unlock .
End read Lock Decrement If : Notify (broadcast) Unlock .
Begin write Lock Increment While or is : wait , Decrement Set to Unlock .
End write Lock Set to Notify (broadcast) Unlock .
The read-copy-update (RCU) algorithm is one solution to the readersâÂÂwriters problem. RCU is wait-free for readers. The Linux kernel implements a special solution for few writers called seqlock.