Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[deliverable/linux.git] / Documentation / filesystems / Locking
CommitLineData
1da177e4
LT
1 The text below describes the locking rules for VFS-related methods.
2It is (believed to be) up-to-date. *Please*, if you change anything in
3prototypes or locking protocols - update this file. And update the relevant
4instances in the tree, don't leave that to maintainers of filesystems/devices/
5etc. At the very least, put the list of dubious cases in the end of this file.
6Don't turn it into log - maintainers of out-of-the-tree code are supposed to
7be able to use diff(1).
8 Thing currently missing here: socket operations. Alexey?
9
10--------------------------- dentry_operations --------------------------
11prototypes:
12 int (*d_revalidate)(struct dentry *, int);
13 int (*d_hash) (struct dentry *, struct qstr *);
14 int (*d_compare) (struct dentry *, struct qstr *, struct qstr *);
15 int (*d_delete)(struct dentry *);
16 void (*d_release)(struct dentry *);
17 void (*d_iput)(struct dentry *, struct inode *);
c23fbb6b 18 char *(*d_dname)((struct dentry *dentry, char *buffer, int buflen);
1da177e4
LT
19
20locking rules:
21 none have BKL
22 dcache_lock rename_lock ->d_lock may block
23d_revalidate: no no no yes
24d_hash no no no yes
25d_compare: no yes no no
26d_delete: yes no yes no
27d_release: no no no yes
28d_iput: no no no yes
c23fbb6b 29d_dname: no no no no
1da177e4
LT
30
31--------------------------- inode_operations ---------------------------
32prototypes:
33 int (*create) (struct inode *,struct dentry *,int, struct nameidata *);
34 struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameid
35ata *);
36 int (*link) (struct dentry *,struct inode *,struct dentry *);
37 int (*unlink) (struct inode *,struct dentry *);
38 int (*symlink) (struct inode *,struct dentry *,const char *);
39 int (*mkdir) (struct inode *,struct dentry *,int);
40 int (*rmdir) (struct inode *,struct dentry *);
41 int (*mknod) (struct inode *,struct dentry *,int,dev_t);
42 int (*rename) (struct inode *, struct dentry *,
43 struct inode *, struct dentry *);
44 int (*readlink) (struct dentry *, char __user *,int);
45 int (*follow_link) (struct dentry *, struct nameidata *);
46 void (*truncate) (struct inode *);
47 int (*permission) (struct inode *, int, struct nameidata *);
48 int (*setattr) (struct dentry *, struct iattr *);
49 int (*getattr) (struct vfsmount *, struct dentry *, struct kstat *);
50 int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
51 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
52 ssize_t (*listxattr) (struct dentry *, char *, size_t);
53 int (*removexattr) (struct dentry *, const char *);
54
55locking rules:
56 all may block, none have BKL
a7bc02f4 57 i_mutex(inode)
1da177e4
LT
58lookup: yes
59create: yes
60link: yes (both)
61mknod: yes
62symlink: yes
63mkdir: yes
64unlink: yes (both)
65rmdir: yes (both) (see below)
66rename: yes (all) (see below)
67readlink: no
68follow_link: no
69truncate: yes (see below)
70setattr: yes
71permission: no
72getattr: no
73setxattr: yes
74getxattr: no
75listxattr: no
76removexattr: yes
a7bc02f4 77 Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on
1da177e4
LT
78victim.
79 cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem.
80 ->truncate() is never called directly - it's a callback, not a
81method. It's called by vmtruncate() - library function normally used by
82->setattr(). Locking information above applies to that call (i.e. is
83inherited from ->setattr() - vmtruncate() is used when ATTR_SIZE had been
84passed).
85
86See Documentation/filesystems/directory-locking for more detailed discussion
87of the locking scheme for directory operations.
88
89--------------------------- super_operations ---------------------------
90prototypes:
91 struct inode *(*alloc_inode)(struct super_block *sb);
92 void (*destroy_inode)(struct inode *);
1da177e4
LT
93 void (*dirty_inode) (struct inode *);
94 int (*write_inode) (struct inode *, int);
336fb3b9
AV
95 int (*drop_inode) (struct inode *);
96 void (*evict_inode) (struct inode *);
1da177e4
LT
97 void (*put_super) (struct super_block *);
98 void (*write_super) (struct super_block *);
99 int (*sync_fs)(struct super_block *sb, int wait);
c4be0c1d
TS
100 int (*freeze_fs) (struct super_block *);
101 int (*unfreeze_fs) (struct super_block *);
726c3342 102 int (*statfs) (struct dentry *, struct kstatfs *);
1da177e4 103 int (*remount_fs) (struct super_block *, int *, char *);
1da177e4
LT
104 void (*umount_begin) (struct super_block *);
105 int (*show_options)(struct seq_file *, struct vfsmount *);
106 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
107 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
108
109locking rules:
336fb3b9 110 All may block [not true, see below]
7e325d3a
CH
111 None have BKL
112 s_umount
113alloc_inode:
114destroy_inode:
115dirty_inode: (must not sleep)
116write_inode:
117drop_inode: !!!inode_lock!!!
336fb3b9 118evict_inode:
7e325d3a
CH
119put_super: write
120write_super: read
121sync_fs: read
122freeze_fs: read
123unfreeze_fs: read
336fb3b9
AV
124statfs: maybe(read) (see below)
125remount_fs: write
7e325d3a
CH
126umount_begin: no
127show_options: no (namespace_sem)
128quota_read: no (see below)
129quota_write: no (see below)
1da177e4 130
336fb3b9
AV
131->statfs() has s_umount (shared) when called by ustat(2) (native or
132compat), but that's an accident of bad API; s_umount is used to pin
133the superblock down when we only have dev_t given us by userland to
134identify the superblock. Everything else (statfs(), fstatfs(), etc.)
135doesn't hold it when calling ->statfs() - superblock is pinned down
136by resolving the pathname passed to syscall.
1da177e4
LT
137->quota_read() and ->quota_write() functions are both guaranteed to
138be the only ones operating on the quota file by the quota code (via
139dqio_sem) (unless an admin really wants to screw up something and
140writes to quota files with quotas on). For other details about locking
141see also dquot_operations section.
142
143--------------------------- file_system_type ---------------------------
144prototypes:
5d8b2ebf
JC
145 int (*get_sb) (struct file_system_type *, int,
146 const char *, void *, struct vfsmount *);
1da177e4
LT
147 void (*kill_sb) (struct super_block *);
148locking rules:
149 may block BKL
adaae721
CH
150get_sb yes no
151kill_sb yes no
1da177e4 152
454e2398
DH
153->get_sb() returns error or 0 with locked superblock attached to the vfsmount
154(exclusive on ->s_umount).
1da177e4
LT
155->kill_sb() takes a write-locked superblock, does all shutdown work on it,
156unlocks and drops the reference.
157
158--------------------------- address_space_operations --------------------------
159prototypes:
160 int (*writepage)(struct page *page, struct writeback_control *wbc);
161 int (*readpage)(struct file *, struct page *);
162 int (*sync_page)(struct page *);
163 int (*writepages)(struct address_space *, struct writeback_control *);
164 int (*set_page_dirty)(struct page *page);
165 int (*readpages)(struct file *filp, struct address_space *mapping,
166 struct list_head *pages, unsigned nr_pages);
4e02ed4b
NP
167 int (*write_begin)(struct file *, struct address_space *mapping,
168 loff_t pos, unsigned len, unsigned flags,
169 struct page **pagep, void **fsdata);
170 int (*write_end)(struct file *, struct address_space *mapping,
171 loff_t pos, unsigned len, unsigned copied,
172 struct page *page, void *fsdata);
1da177e4
LT
173 sector_t (*bmap)(struct address_space *, sector_t);
174 int (*invalidatepage) (struct page *, unsigned long);
175 int (*releasepage) (struct page *, int);
6072d13c 176 void (*freepage)(struct page *);
1da177e4
LT
177 int (*direct_IO)(int, struct kiocb *, const struct iovec *iov,
178 loff_t offset, unsigned long nr_segs);
e3db7691 179 int (*launder_page) (struct page *);
1da177e4
LT
180
181locking rules:
6072d13c 182 All except set_page_dirty and freepage may block
1da177e4 183
ca0dbd86 184 BKL PageLocked(page) i_mutex
1da177e4
LT
185writepage: no yes, unlocks (see below)
186readpage: no yes, unlocks
187sync_page: no maybe
188writepages: no
189set_page_dirty no no
190readpages: no
afddba49
NP
191write_begin: no locks the page yes
192write_end: no yes, unlocks yes
193perform_write: no n/a yes
fe36adf4 194bmap: no
1da177e4
LT
195invalidatepage: no yes
196releasepage: no yes
6072d13c 197freepage: no yes
1da177e4 198direct_IO: no
e3db7691 199launder_page: no yes
1da177e4 200
4e02ed4b 201 ->write_begin(), ->write_end(), ->sync_page() and ->readpage()
1da177e4
LT
202may be called from the request handler (/dev/loop).
203
204 ->readpage() unlocks the page, either synchronously or via I/O
205completion.
206
207 ->readpages() populates the pagecache with the passed pages and starts
208I/O against them. They come unlocked upon I/O completion.
209
210 ->writepage() is used for two purposes: for "memory cleansing" and for
211"sync". These are quite different operations and the behaviour may differ
212depending upon the mode.
213
214If writepage is called for sync (wbc->sync_mode != WBC_SYNC_NONE) then
215it *must* start I/O against the page, even if that would involve
216blocking on in-progress I/O.
217
218If writepage is called for memory cleansing (sync_mode ==
219WBC_SYNC_NONE) then its role is to get as much writeout underway as
220possible. So writepage should try to avoid blocking against
221currently-in-progress I/O.
222
223If the filesystem is not called for "sync" and it determines that it
224would need to block against in-progress I/O to be able to start new I/O
225against the page the filesystem should redirty the page with
226redirty_page_for_writepage(), then unlock the page and return zero.
227This may also be done to avoid internal deadlocks, but rarely.
228
3a4fa0a2 229If the filesystem is called for sync then it must wait on any
1da177e4
LT
230in-progress I/O and then start new I/O.
231
2054606a
ND
232The filesystem should unlock the page synchronously, before returning to the
233caller, unless ->writepage() returns special WRITEPAGE_ACTIVATE
234value. WRITEPAGE_ACTIVATE means that page cannot really be written out
235currently, and VM should stop calling ->writepage() on this page for some
236time. VM does this by moving page to the head of the active list, hence the
237name.
1da177e4
LT
238
239Unless the filesystem is going to redirty_page_for_writepage(), unlock the page
240and return zero, writepage *must* run set_page_writeback() against the page,
241followed by unlocking it. Once set_page_writeback() has been run against the
242page, write I/O can be submitted and the write I/O completion handler must run
243end_page_writeback() once the I/O is complete. If no I/O is submitted, the
244filesystem must run end_page_writeback() against the page before returning from
245writepage.
246
247That is: after 2.5.12, pages which are under writeout are *not* locked. Note,
248if the filesystem needs the page to be locked during writeout, that is ok, too,
249the page is allowed to be unlocked at any point in time between the calls to
250set_page_writeback() and end_page_writeback().
251
252Note, failure to run either redirty_page_for_writepage() or the combination of
253set_page_writeback()/end_page_writeback() on a page submitted to writepage
254will leave the page itself marked clean but it will be tagged as dirty in the
255radix tree. This incoherency can lead to all sorts of hard-to-debug problems
256in the filesystem like having dirty inodes at umount and losing written data.
257
258 ->sync_page() locking rules are not well-defined - usually it is called
259with lock on page, but that is not guaranteed. Considering the currently
260existing instances of this method ->sync_page() itself doesn't look
261well-defined...
262
263 ->writepages() is used for periodic writeback and for syscall-initiated
264sync operations. The address_space should start I/O against at least
265*nr_to_write pages. *nr_to_write must be decremented for each page which is
266written. The address_space implementation may write more (or less) pages
267than *nr_to_write asks for, but it should try to be reasonably close. If
268nr_to_write is NULL, all dirty pages must be written.
269
270writepages should _only_ write pages which are present on
271mapping->io_pages.
272
273 ->set_page_dirty() is called from various places in the kernel
274when the target page is marked as needing writeback. It may be called
275under spinlock (it cannot block) and is sometimes called with the page
276not locked.
277
278 ->bmap() is currently used by legacy ioctl() (FIBMAP) provided by some
279filesystems and by the swapper. The latter will eventually go away. All
280instances do not actually need the BKL. Please, keep it that way and don't
281breed new callers.
282
283 ->invalidatepage() is called when the filesystem must attempt to drop
284some or all of the buffers from the page when it is being truncated. It
285returns zero on success. If ->invalidatepage is zero, the kernel uses
286block_invalidatepage() instead.
287
288 ->releasepage() is called when the kernel is about to try to drop the
289buffers from the page in preparation for freeing it. It returns zero to
290indicate that the buffers are (or may be) freeable. If ->releasepage is zero,
291the kernel assumes that the fs has no private interest in the buffers.
292
6072d13c
LT
293 ->freepage() is called when the kernel is done dropping the page
294from the page cache.
295
e3db7691
TM
296 ->launder_page() may be called prior to releasing a page if
297it is still found to be dirty. It returns zero if the page was successfully
298cleaned, or an error value if not. Note that in order to prevent the page
299getting mapped back in and redirtied, it needs to be kept locked
300across the entire operation.
301
1da177e4
LT
302 Note: currently almost all instances of address_space methods are
303using BKL for internal serialization and that's one of the worst sources
304of contention. Normally they are calling library functions (in fs/buffer.c)
305and pass foo_get_block() as a callback (on local block-based filesystems,
306indeed). BKL is not needed for library stuff and is usually taken by
307foo_get_block(). It's an overkill, since block bitmaps can be protected by
308internal fs locking and real critical areas are much smaller than the areas
309filesystems protect now.
310
311----------------------- file_lock_operations ------------------------------
312prototypes:
313 void (*fl_insert)(struct file_lock *); /* lock insertion callback */
314 void (*fl_remove)(struct file_lock *); /* lock removal callback */
315 void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
316 void (*fl_release_private)(struct file_lock *);
317
318
319locking rules:
320 BKL may block
321fl_insert: yes no
322fl_remove: yes no
323fl_copy_lock: yes no
324fl_release_private: yes yes
325
326----------------------- lock_manager_operations ---------------------------
327prototypes:
328 int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
329 void (*fl_notify)(struct file_lock *); /* unblock callback */
1da177e4
LT
330 void (*fl_release_private)(struct file_lock *);
331 void (*fl_break)(struct file_lock *); /* break_lease callback */
332
333locking rules:
334 BKL may block
335fl_compare_owner: yes no
336fl_notify: yes no
1da177e4
LT
337fl_release_private: yes yes
338fl_break: yes no
339
340 Currently only NFSD and NLM provide instances of this class. None of the
341them block. If you have out-of-tree instances - please, show up. Locking
342in that area will change.
343--------------------------- buffer_head -----------------------------------
344prototypes:
345 void (*b_end_io)(struct buffer_head *bh, int uptodate);
346
347locking rules:
348 called from interrupts. In other words, extreme care is needed here.
349bh is locked, but that's all warranties we have here. Currently only RAID1,
350highmem, fs/buffer.c, and fs/ntfs/aops.c are providing these. Block devices
351call this method upon the IO completion.
352
353--------------------------- block_device_operations -----------------------
354prototypes:
e1455d1b
CH
355 int (*open) (struct block_device *, fmode_t);
356 int (*release) (struct gendisk *, fmode_t);
357 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
358 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
359 int (*direct_access) (struct block_device *, sector_t, void **, unsigned long *);
1da177e4 360 int (*media_changed) (struct gendisk *);
e1455d1b 361 void (*unlock_native_capacity) (struct gendisk *);
1da177e4 362 int (*revalidate_disk) (struct gendisk *);
e1455d1b
CH
363 int (*getgeo)(struct block_device *, struct hd_geometry *);
364 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1da177e4
LT
365
366locking rules:
e1455d1b
CH
367 BKL bd_mutex
368open: no yes
369release: no yes
370ioctl: no no
371compat_ioctl: no no
372direct_access: no no
1da177e4 373media_changed: no no
e1455d1b 374unlock_native_capacity: no no
1da177e4 375revalidate_disk: no no
e1455d1b
CH
376getgeo: no no
377swap_slot_free_notify: no no (see below)
378
379media_changed, unlock_native_capacity and revalidate_disk are called only from
380check_disk_change().
381
382swap_slot_free_notify is called with swap_lock and sometimes the page lock
383held.
1da177e4 384
1da177e4
LT
385
386--------------------------- file_operations -------------------------------
387prototypes:
388 loff_t (*llseek) (struct file *, loff_t, int);
389 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
1da177e4 390 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
027445c3
BP
391 ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
392 ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
1da177e4
LT
393 int (*readdir) (struct file *, void *, filldir_t);
394 unsigned int (*poll) (struct file *, struct poll_table_struct *);
1da177e4
LT
395 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
396 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
397 int (*mmap) (struct file *, struct vm_area_struct *);
398 int (*open) (struct inode *, struct file *);
399 int (*flush) (struct file *);
400 int (*release) (struct inode *, struct file *);
7ea80859 401 int (*fsync) (struct file *, int datasync);
1da177e4
LT
402 int (*aio_fsync) (struct kiocb *, int datasync);
403 int (*fasync) (int, struct file *, int);
404 int (*lock) (struct file *, int, struct file_lock *);
405 ssize_t (*readv) (struct file *, const struct iovec *, unsigned long,
406 loff_t *);
407 ssize_t (*writev) (struct file *, const struct iovec *, unsigned long,
408 loff_t *);
409 ssize_t (*sendfile) (struct file *, loff_t *, size_t, read_actor_t,
410 void __user *);
411 ssize_t (*sendpage) (struct file *, struct page *, int, size_t,
412 loff_t *, int);
413 unsigned long (*get_unmapped_area)(struct file *, unsigned long,
414 unsigned long, unsigned long, unsigned long);
415 int (*check_flags)(int);
1da177e4
LT
416};
417
418locking rules:
5f820f64 419 All may block.
1da177e4
LT
420 BKL
421llseek: no (see below)
422read: no
423aio_read: no
424write: no
425aio_write: no
426readdir: no
427poll: no
b19dd42f 428unlocked_ioctl: no
1da177e4
LT
429compat_ioctl: no
430mmap: no
adaae721 431open: no
1da177e4
LT
432flush: no
433release: no
434fsync: no (see below)
435aio_fsync: no
adaae721 436fasync: no
1da177e4
LT
437lock: yes
438readv: no
439writev: no
440sendfile: no
441sendpage: no
442get_unmapped_area: no
443check_flags: no
1da177e4
LT
444
445->llseek() locking has moved from llseek to the individual llseek
446implementations. If your fs is not using generic_file_llseek, you
447need to acquire and release the appropriate locks in your ->llseek().
448For many filesystems, it is probably safe to acquire the inode
866707fc
JB
449mutex or just to use i_size_read() instead.
450Note: this does not protect the file->f_pos against concurrent modifications
451since this is something the userspace has to take care about.
1da177e4 452
1da177e4
LT
453Note: ext2_release() was *the* source of contention on fs-intensive
454loads and dropping BKL on ->release() helps to get rid of that (we still
455grab BKL for cases when we close a file that had been opened r/w, but that
456can and should be done using the internal locking with smaller critical areas).
457Current worst offender is ext2_get_block()...
458
76398425
JC
459->fasync() is called without BKL protection, and is responsible for
460maintaining the FASYNC bit in filp->f_flags. Most instances call
461fasync_helper(), which does that maintenance, so it's not normally
462something one needs to worry about. Return values > 0 will be mapped to
463zero in the VFS layer.
1da177e4
LT
464
465->readdir() and ->ioctl() on directories must be changed. Ideally we would
466move ->readdir() to inode_operations and use a separate method for directory
467->ioctl() or kill the latter completely. One of the problems is that for
468anything that resembles union-mount we won't have a struct file for all
469components. And there are other reasons why the current interface is a mess...
470
1da177e4
LT
471->read on directories probably must go away - we should just enforce -EISDIR
472in sys_read() and friends.
473
a7bc02f4 474->fsync() has i_mutex on inode.
1da177e4
LT
475
476--------------------------- dquot_operations -------------------------------
477prototypes:
1da177e4
LT
478 int (*write_dquot) (struct dquot *);
479 int (*acquire_dquot) (struct dquot *);
480 int (*release_dquot) (struct dquot *);
481 int (*mark_dirty) (struct dquot *);
482 int (*write_info) (struct super_block *, int);
483
484These operations are intended to be more or less wrapping functions that ensure
485a proper locking wrt the filesystem and call the generic quota operations.
486
487What filesystem should expect from the generic quota functions:
488
489 FS recursion Held locks when called
1da177e4
LT
490write_dquot: yes dqonoff_sem or dqptr_sem
491acquire_dquot: yes dqonoff_sem or dqptr_sem
492release_dquot: yes dqonoff_sem or dqptr_sem
493mark_dirty: no -
494write_info: yes dqonoff_sem
495
496FS recursion means calling ->quota_read() and ->quota_write() from superblock
497operations.
498
1da177e4
LT
499More details about quota locking can be found in fs/dquot.c.
500
501--------------------------- vm_operations_struct -----------------------------
502prototypes:
503 void (*open)(struct vm_area_struct*);
504 void (*close)(struct vm_area_struct*);
d0217ac0 505 int (*fault)(struct vm_area_struct*, struct vm_fault *);
c2ec175c 506 int (*page_mkwrite)(struct vm_area_struct *, struct vm_fault *);
28b2ee20 507 int (*access)(struct vm_area_struct *, unsigned long, void*, int, int);
1da177e4
LT
508
509locking rules:
ed2f2f9b 510 BKL mmap_sem PageLocked(page)
1da177e4
LT
511open: no yes
512close: no yes
b827e496
NP
513fault: no yes can return with page locked
514page_mkwrite: no yes can return with page locked
28b2ee20 515access: no yes
ed2f2f9b 516
b827e496
NP
517 ->fault() is called when a previously not present pte is about
518to be faulted in. The filesystem must find and return the page associated
519with the passed in "pgoff" in the vm_fault structure. If it is possible that
520the page may be truncated and/or invalidated, then the filesystem must lock
521the page, then ensure it is not already truncated (the page lock will block
522subsequent truncate), and then return with VM_FAULT_LOCKED, and the page
523locked. The VM will unlock the page.
524
525 ->page_mkwrite() is called when a previously read-only pte is
526about to become writeable. The filesystem again must ensure that there are
527no truncate/invalidate races, and then return with the page locked. If
528the page has been truncated, the filesystem should not look up a new page
529like the ->fault() handler, but simply return with VM_FAULT_NOPAGE, which
530will cause the VM to retry the fault.
1da177e4 531
28b2ee20
RR
532 ->access() is called when get_user_pages() fails in
533acces_process_vm(), typically used to debug a process through
534/proc/pid/mem or ptrace. This function is needed only for
535VM_IO | VM_PFNMAP VMAs.
536
1da177e4
LT
537================================================================================
538 Dubious stuff
539
540(if you break something or notice that it is broken and do not fix it yourself
541- at least put it here)
542
543ipc/shm.c::shm_delete() - may need BKL.
544->read() and ->write() in many drivers are (probably) missing BKL.
This page took 0.47697 seconds and 5 git commands to generate.