Blame view

Documentation/filesystems/locks.rst 2.75 KB
63526525d   Mauro Carvalho Chehab   docs: filesystems...
1
2
3
4
5
  .. SPDX-License-Identifier: GPL-2.0
  
  ==========================
  File Locking Release Notes
  ==========================
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
11
12
  
  		Andy Walker <andy@lysaker.kvaerner.no>
  
  			    12 May 1997
  
  
  1. What's New?
63526525d   Mauro Carvalho Chehab   docs: filesystems...
13
  ==============
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
21
22
23
24
25
  
  1.1 Broken Flock Emulation
  --------------------------
  
  The old flock(2) emulation in the kernel was swapped for proper BSD
  compatible flock(2) support in the 1.3.x series of kernels. With the
  release of the 2.1.x kernel series, support for the old emulation has
  been totally removed, so that we don't need to carry this baggage
  forever.
  
  This should not cause problems for anybody, since everybody using a
  2.1.x kernel should have updated their C library to a suitable version
8c27ceff3   Mauro Carvalho Chehab   docs: fix locatio...
26
  anyway (see the file "Documentation/process/changes.rst".)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
30
31
  
  1.2 Allow Mixed Locks Again
  ---------------------------
  
  1.2.1 Typical Problems - Sendmail
63526525d   Mauro Carvalho Chehab   docs: filesystems...
32
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
35
36
37
38
39
40
41
42
43
  Because sendmail was unable to use the old flock() emulation, many sendmail
  installations use fcntl() instead of flock(). This is true of Slackware 3.0
  for example. This gave rise to some other subtle problems if sendmail was
  configured to rebuild the alias file. Sendmail tried to lock the aliases.dir
  file with fcntl() at the same time as the GDBM routines tried to lock this
  file with flock(). With pre 1.3.96 kernels this could result in deadlocks that,
  over time, or under a very heavy mail load, would eventually cause the kernel
  to lock solid with deadlocked processes.
  
  
  1.2.2 The Solution
63526525d   Mauro Carvalho Chehab   docs: filesystems...
44
  ^^^^^^^^^^^^^^^^^^
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  The solution I have chosen, after much experimentation and discussion,
  is to make flock() and fcntl() locks oblivious to each other. Both can
  exists, and neither will have any effect on the other.
  
  I wanted the two lock styles to be cooperative, but there were so many
  race and deadlock conditions that the current solution was the only
  practical one. It puts us in the same position as, for example, SunOS
  4.1.x and several other commercial Unices. The only OS's that support
  cooperative flock()/fcntl() are those that emulate flock() using
  fcntl(), with all the problems that implies.
  
  
  1.3 Mandatory Locking As A Mount Option
  ---------------------------------------
395cf9691   Paul Bolle   doc: fix broken r...
59
  Mandatory locking, as described in
a02dcdf65   Mauro Carvalho Chehab   docs: filesystems...
60
  'Documentation/filesystems/mandatory-locking.rst' was prior to this release a
395cf9691   Paul Bolle   doc: fix broken r...
61
62
63
64
  general configuration option that was valid for all mounted filesystems.  This
  had a number of inherent dangers, not the least of which was the ability to
  freeze an NFS server by asking it to read a file for which a mandatory lock
  existed.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
70
  
  From this release of the kernel, mandatory locking can be turned on and off
  on a per-filesystem basis, using the mount options 'mand' and 'nomand'.
  The default is to disallow mandatory locking. The intention is that
  mandatory locking only be enabled on a local filesystem as the specific need
  arises.