blob: 5f0c52a07386ff849c7fb2078669df9e87fa8cdf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 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:
Nick Piggin34286d62011-01-07 17:49:57 +110012 int (*d_revalidate)(struct dentry *, struct nameidata *);
Nick Pigginb1e6a012011-01-07 17:49:28 +110013 int (*d_hash)(const struct dentry *, const struct inode *,
14 struct qstr *);
Nick Piggin621e1552011-01-07 17:49:27 +110015 int (*d_compare)(const struct dentry *, const struct inode *,
16 const struct dentry *, const struct inode *,
17 unsigned int, const char *, const struct qstr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 int (*d_delete)(struct dentry *);
19 void (*d_release)(struct dentry *);
20 void (*d_iput)(struct dentry *, struct inode *);
Eric Dumazetc23fbb62007-05-08 00:26:18 -070021 char *(*d_dname)((struct dentry *dentry, char *buffer, int buflen);
David Howells9875cf82011-01-14 18:45:21 +000022 struct vfsmount *(*d_automount)(struct path *path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24locking rules:
Nick Piggin34286d62011-01-07 17:49:57 +110025 rename_lock ->d_lock may block rcu-walk
26d_revalidate: no no yes (ref-walk) maybe
27d_hash no no no maybe
28d_compare: yes no no maybe
29d_delete: no yes no no
30d_release: no no yes no
31d_iput: no no yes no
32d_dname: no no no no
David Howells9875cf82011-01-14 18:45:21 +000033d_automount: no no yes no
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35--------------------------- inode_operations ---------------------------
36prototypes:
37 int (*create) (struct inode *,struct dentry *,int, struct nameidata *);
38 struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameid
39ata *);
40 int (*link) (struct dentry *,struct inode *,struct dentry *);
41 int (*unlink) (struct inode *,struct dentry *);
42 int (*symlink) (struct inode *,struct dentry *,const char *);
43 int (*mkdir) (struct inode *,struct dentry *,int);
44 int (*rmdir) (struct inode *,struct dentry *);
45 int (*mknod) (struct inode *,struct dentry *,int,dev_t);
46 int (*rename) (struct inode *, struct dentry *,
47 struct inode *, struct dentry *);
48 int (*readlink) (struct dentry *, char __user *,int);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010049 void * (*follow_link) (struct dentry *, struct nameidata *);
50 void (*put_link) (struct dentry *, struct nameidata *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 void (*truncate) (struct inode *);
Nick Pigginb74c79e2011-01-07 17:49:58 +110052 int (*permission) (struct inode *, int, unsigned int);
53 int (*check_acl)(struct inode *, int, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int (*setattr) (struct dentry *, struct iattr *);
55 int (*getattr) (struct vfsmount *, struct dentry *, struct kstat *);
56 int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
57 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
58 ssize_t (*listxattr) (struct dentry *, char *, size_t);
59 int (*removexattr) (struct dentry *, const char *);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010060 void (*truncate_range)(struct inode *, loff_t, loff_t);
61 long (*fallocate)(struct inode *inode, int mode, loff_t offset, loff_t len);
62 int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, u64 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010065 all may block
Artem Bityutskiya7bc02f2007-05-09 07:53:16 +020066 i_mutex(inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067lookup: yes
68create: yes
69link: yes (both)
70mknod: yes
71symlink: yes
72mkdir: yes
73unlink: yes (both)
74rmdir: yes (both) (see below)
75rename: yes (all) (see below)
76readlink: no
77follow_link: no
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010078put_link: no
Linus Torvalds1da177e2005-04-16 15:20:36 -070079truncate: yes (see below)
80setattr: yes
Nick Pigginb74c79e2011-01-07 17:49:58 +110081permission: no (may not block if called in rcu-walk mode)
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010082check_acl: no
Linus Torvalds1da177e2005-04-16 15:20:36 -070083getattr: no
84setxattr: yes
85getxattr: no
86listxattr: no
87removexattr: yes
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010088truncate_range: yes
89fallocate: no
90fiemap: no
Artem Bityutskiya7bc02f2007-05-09 07:53:16 +020091 Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on
Linus Torvalds1da177e2005-04-16 15:20:36 -070092victim.
93 cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem.
94 ->truncate() is never called directly - it's a callback, not a
Christoph Hellwigb83be6f2010-12-16 12:04:54 +010095method. It's called by vmtruncate() - deprecated library function used by
Linus Torvalds1da177e2005-04-16 15:20:36 -070096->setattr(). Locking information above applies to that call (i.e. is
97inherited from ->setattr() - vmtruncate() is used when ATTR_SIZE had been
98passed).
99
100See Documentation/filesystems/directory-locking for more detailed discussion
101of the locking scheme for directory operations.
102
103--------------------------- super_operations ---------------------------
104prototypes:
105 struct inode *(*alloc_inode)(struct super_block *sb);
106 void (*destroy_inode)(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 void (*dirty_inode) (struct inode *);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100108 int (*write_inode) (struct inode *, struct writeback_control *wbc);
Al Viro336fb3b2010-06-08 00:37:12 -0400109 int (*drop_inode) (struct inode *);
110 void (*evict_inode) (struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 void (*put_super) (struct super_block *);
112 void (*write_super) (struct super_block *);
113 int (*sync_fs)(struct super_block *sb, int wait);
Takashi Satoc4be0c12009-01-09 16:40:58 -0800114 int (*freeze_fs) (struct super_block *);
115 int (*unfreeze_fs) (struct super_block *);
David Howells726c3342006-06-23 02:02:58 -0700116 int (*statfs) (struct dentry *, struct kstatfs *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int (*remount_fs) (struct super_block *, int *, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 void (*umount_begin) (struct super_block *);
119 int (*show_options)(struct seq_file *, struct vfsmount *);
120 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
121 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100122 int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124locking rules:
Al Viro336fb3b2010-06-08 00:37:12 -0400125 All may block [not true, see below]
Christoph Hellwig7e325d32009-06-19 20:22:37 +0200126 s_umount
127alloc_inode:
128destroy_inode:
129dirty_inode: (must not sleep)
130write_inode:
131drop_inode: !!!inode_lock!!!
Al Viro336fb3b2010-06-08 00:37:12 -0400132evict_inode:
Christoph Hellwig7e325d32009-06-19 20:22:37 +0200133put_super: write
134write_super: read
135sync_fs: read
136freeze_fs: read
137unfreeze_fs: read
Al Viro336fb3b2010-06-08 00:37:12 -0400138statfs: maybe(read) (see below)
139remount_fs: write
Christoph Hellwig7e325d32009-06-19 20:22:37 +0200140umount_begin: no
141show_options: no (namespace_sem)
142quota_read: no (see below)
143quota_write: no (see below)
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100144bdev_try_to_free_page: no (see below)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Al Viro336fb3b2010-06-08 00:37:12 -0400146->statfs() has s_umount (shared) when called by ustat(2) (native or
147compat), but that's an accident of bad API; s_umount is used to pin
148the superblock down when we only have dev_t given us by userland to
149identify the superblock. Everything else (statfs(), fstatfs(), etc.)
150doesn't hold it when calling ->statfs() - superblock is pinned down
151by resolving the pathname passed to syscall.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152->quota_read() and ->quota_write() functions are both guaranteed to
153be the only ones operating on the quota file by the quota code (via
154dqio_sem) (unless an admin really wants to screw up something and
155writes to quota files with quotas on). For other details about locking
156see also dquot_operations section.
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100157->bdev_try_to_free_page is called from the ->releasepage handler of
158the block device inode. See there for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160--------------------------- file_system_type ---------------------------
161prototypes:
Jonathan Corbet5d8b2eb2006-07-10 04:44:07 -0700162 int (*get_sb) (struct file_system_type *, int,
163 const char *, void *, struct vfsmount *);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100164 struct dentry *(*mount) (struct file_system_type *, int,
165 const char *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 void (*kill_sb) (struct super_block *);
167locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100168 may block
169get_sb yes
170mount yes
171kill_sb yes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
David Howells454e2392006-06-23 02:02:57 -0700173->get_sb() returns error or 0 with locked superblock attached to the vfsmount
174(exclusive on ->s_umount).
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100175->mount() returns ERR_PTR or the root dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176->kill_sb() takes a write-locked superblock, does all shutdown work on it,
177unlocks and drops the reference.
178
179--------------------------- address_space_operations --------------------------
180prototypes:
181 int (*writepage)(struct page *page, struct writeback_control *wbc);
182 int (*readpage)(struct file *, struct page *);
183 int (*sync_page)(struct page *);
184 int (*writepages)(struct address_space *, struct writeback_control *);
185 int (*set_page_dirty)(struct page *page);
186 int (*readpages)(struct file *filp, struct address_space *mapping,
187 struct list_head *pages, unsigned nr_pages);
Nick Piggin4e02ed42008-10-29 14:00:55 -0700188 int (*write_begin)(struct file *, struct address_space *mapping,
189 loff_t pos, unsigned len, unsigned flags,
190 struct page **pagep, void **fsdata);
191 int (*write_end)(struct file *, struct address_space *mapping,
192 loff_t pos, unsigned len, unsigned copied,
193 struct page *page, void *fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 sector_t (*bmap)(struct address_space *, sector_t);
195 int (*invalidatepage) (struct page *, unsigned long);
196 int (*releasepage) (struct page *, int);
Linus Torvalds6072d132010-12-01 13:35:19 -0500197 void (*freepage)(struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int (*direct_IO)(int, struct kiocb *, const struct iovec *iov,
199 loff_t offset, unsigned long nr_segs);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100200 int (*get_xip_mem)(struct address_space *, pgoff_t, int, void **,
201 unsigned long *);
202 int (*migratepage)(struct address_space *, struct page *, struct page *);
203 int (*launder_page)(struct page *);
204 int (*is_partially_uptodate)(struct page *, read_descriptor_t *, unsigned long);
205 int (*error_remove_page)(struct address_space *, struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207locking rules:
Linus Torvalds6072d132010-12-01 13:35:19 -0500208 All except set_page_dirty and freepage may block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100210 PageLocked(page) i_mutex
211writepage: yes, unlocks (see below)
212readpage: yes, unlocks
213sync_page: maybe
214writepages:
215set_page_dirty no
216readpages:
217write_begin: locks the page yes
218write_end: yes, unlocks yes
219bmap:
220invalidatepage: yes
221releasepage: yes
222freepage: yes
223direct_IO:
224get_xip_mem: maybe
225migratepage: yes (both)
226launder_page: yes
227is_partially_uptodate: yes
228error_remove_page: yes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Nick Piggin4e02ed42008-10-29 14:00:55 -0700230 ->write_begin(), ->write_end(), ->sync_page() and ->readpage()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231may be called from the request handler (/dev/loop).
232
233 ->readpage() unlocks the page, either synchronously or via I/O
234completion.
235
236 ->readpages() populates the pagecache with the passed pages and starts
237I/O against them. They come unlocked upon I/O completion.
238
239 ->writepage() is used for two purposes: for "memory cleansing" and for
240"sync". These are quite different operations and the behaviour may differ
241depending upon the mode.
242
243If writepage is called for sync (wbc->sync_mode != WBC_SYNC_NONE) then
244it *must* start I/O against the page, even if that would involve
245blocking on in-progress I/O.
246
247If writepage is called for memory cleansing (sync_mode ==
248WBC_SYNC_NONE) then its role is to get as much writeout underway as
249possible. So writepage should try to avoid blocking against
250currently-in-progress I/O.
251
252If the filesystem is not called for "sync" and it determines that it
253would need to block against in-progress I/O to be able to start new I/O
254against the page the filesystem should redirty the page with
255redirty_page_for_writepage(), then unlock the page and return zero.
256This may also be done to avoid internal deadlocks, but rarely.
257
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200258If the filesystem is called for sync then it must wait on any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259in-progress I/O and then start new I/O.
260
Nikita Danilov20546062005-05-01 08:58:37 -0700261The filesystem should unlock the page synchronously, before returning to the
262caller, unless ->writepage() returns special WRITEPAGE_ACTIVATE
263value. WRITEPAGE_ACTIVATE means that page cannot really be written out
264currently, and VM should stop calling ->writepage() on this page for some
265time. VM does this by moving page to the head of the active list, hence the
266name.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268Unless the filesystem is going to redirty_page_for_writepage(), unlock the page
269and return zero, writepage *must* run set_page_writeback() against the page,
270followed by unlocking it. Once set_page_writeback() has been run against the
271page, write I/O can be submitted and the write I/O completion handler must run
272end_page_writeback() once the I/O is complete. If no I/O is submitted, the
273filesystem must run end_page_writeback() against the page before returning from
274writepage.
275
276That is: after 2.5.12, pages which are under writeout are *not* locked. Note,
277if the filesystem needs the page to be locked during writeout, that is ok, too,
278the page is allowed to be unlocked at any point in time between the calls to
279set_page_writeback() and end_page_writeback().
280
281Note, failure to run either redirty_page_for_writepage() or the combination of
282set_page_writeback()/end_page_writeback() on a page submitted to writepage
283will leave the page itself marked clean but it will be tagged as dirty in the
284radix tree. This incoherency can lead to all sorts of hard-to-debug problems
285in the filesystem like having dirty inodes at umount and losing written data.
286
287 ->sync_page() locking rules are not well-defined - usually it is called
288with lock on page, but that is not guaranteed. Considering the currently
289existing instances of this method ->sync_page() itself doesn't look
290well-defined...
291
292 ->writepages() is used for periodic writeback and for syscall-initiated
293sync operations. The address_space should start I/O against at least
294*nr_to_write pages. *nr_to_write must be decremented for each page which is
295written. The address_space implementation may write more (or less) pages
296than *nr_to_write asks for, but it should try to be reasonably close. If
297nr_to_write is NULL, all dirty pages must be written.
298
299writepages should _only_ write pages which are present on
300mapping->io_pages.
301
302 ->set_page_dirty() is called from various places in the kernel
303when the target page is marked as needing writeback. It may be called
304under spinlock (it cannot block) and is sometimes called with the page
305not locked.
306
307 ->bmap() is currently used by legacy ioctl() (FIBMAP) provided by some
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100308filesystems and by the swapper. The latter will eventually go away. Please,
309keep it that way and don't breed new callers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 ->invalidatepage() is called when the filesystem must attempt to drop
312some or all of the buffers from the page when it is being truncated. It
313returns zero on success. If ->invalidatepage is zero, the kernel uses
314block_invalidatepage() instead.
315
316 ->releasepage() is called when the kernel is about to try to drop the
317buffers from the page in preparation for freeing it. It returns zero to
318indicate that the buffers are (or may be) freeable. If ->releasepage is zero,
319the kernel assumes that the fs has no private interest in the buffers.
320
Linus Torvalds6072d132010-12-01 13:35:19 -0500321 ->freepage() is called when the kernel is done dropping the page
322from the page cache.
323
Trond Myklebuste3db7692007-01-10 23:15:39 -0800324 ->launder_page() may be called prior to releasing a page if
325it is still found to be dirty. It returns zero if the page was successfully
326cleaned, or an error value if not. Note that in order to prevent the page
327getting mapped back in and redirtied, it needs to be kept locked
328across the entire operation.
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330----------------------- file_lock_operations ------------------------------
331prototypes:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
333 void (*fl_release_private)(struct file_lock *);
334
335
336locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100337 file_lock_lock may block
338fl_copy_lock: yes no
339fl_release_private: maybe no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341----------------------- lock_manager_operations ---------------------------
342prototypes:
343 int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
344 void (*fl_notify)(struct file_lock *); /* unblock callback */
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100345 int (*fl_grant)(struct file_lock *, struct file_lock *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 void (*fl_release_private)(struct file_lock *);
347 void (*fl_break)(struct file_lock *); /* break_lease callback */
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100348 int (*fl_mylease)(struct file_lock *, struct file_lock *);
349 int (*fl_change)(struct file_lock **, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100352 file_lock_lock may block
353fl_compare_owner: yes no
354fl_notify: yes no
355fl_grant: no no
356fl_release_private: maybe no
357fl_break: yes no
358fl_mylease: yes no
359fl_change yes no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361--------------------------- buffer_head -----------------------------------
362prototypes:
363 void (*b_end_io)(struct buffer_head *bh, int uptodate);
364
365locking rules:
366 called from interrupts. In other words, extreme care is needed here.
367bh is locked, but that's all warranties we have here. Currently only RAID1,
368highmem, fs/buffer.c, and fs/ntfs/aops.c are providing these. Block devices
369call this method upon the IO completion.
370
371--------------------------- block_device_operations -----------------------
372prototypes:
Christoph Hellwige1455d12010-10-06 10:46:53 +0200373 int (*open) (struct block_device *, fmode_t);
374 int (*release) (struct gendisk *, fmode_t);
375 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
376 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
377 int (*direct_access) (struct block_device *, sector_t, void **, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int (*media_changed) (struct gendisk *);
Christoph Hellwige1455d12010-10-06 10:46:53 +0200379 void (*unlock_native_capacity) (struct gendisk *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 int (*revalidate_disk) (struct gendisk *);
Christoph Hellwige1455d12010-10-06 10:46:53 +0200381 int (*getgeo)(struct block_device *, struct hd_geometry *);
382 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100385 bd_mutex
386open: yes
387release: yes
388ioctl: no
389compat_ioctl: no
390direct_access: no
391media_changed: no
392unlock_native_capacity: no
393revalidate_disk: no
394getgeo: no
395swap_slot_free_notify: no (see below)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Christoph Hellwige1455d12010-10-06 10:46:53 +0200397media_changed, unlock_native_capacity and revalidate_disk are called only from
398check_disk_change().
399
400swap_slot_free_notify is called with swap_lock and sometimes the page lock
401held.
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404--------------------------- file_operations -------------------------------
405prototypes:
406 loff_t (*llseek) (struct file *, loff_t, int);
407 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700409 ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
410 ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 int (*readdir) (struct file *, void *, filldir_t);
412 unsigned int (*poll) (struct file *, struct poll_table_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
414 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
415 int (*mmap) (struct file *, struct vm_area_struct *);
416 int (*open) (struct inode *, struct file *);
417 int (*flush) (struct file *);
418 int (*release) (struct inode *, struct file *);
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200419 int (*fsync) (struct file *, int datasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int (*aio_fsync) (struct kiocb *, int datasync);
421 int (*fasync) (int, struct file *, int);
422 int (*lock) (struct file *, int, struct file_lock *);
423 ssize_t (*readv) (struct file *, const struct iovec *, unsigned long,
424 loff_t *);
425 ssize_t (*writev) (struct file *, const struct iovec *, unsigned long,
426 loff_t *);
427 ssize_t (*sendfile) (struct file *, loff_t *, size_t, read_actor_t,
428 void __user *);
429 ssize_t (*sendpage) (struct file *, struct page *, int, size_t,
430 loff_t *, int);
431 unsigned long (*get_unmapped_area)(struct file *, unsigned long,
432 unsigned long, unsigned long, unsigned long);
433 int (*check_flags)(int);
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100434 int (*flock) (struct file *, int, struct file_lock *);
435 ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *,
436 size_t, unsigned int);
437 ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *,
438 size_t, unsigned int);
439 int (*setlease)(struct file *, long, struct file_lock **);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440};
441
442locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100443 All may block except for ->setlease.
444 No VFS locks held on entry except for ->fsync and ->setlease.
445
446->fsync() has i_mutex on inode.
447
448->setlease has the file_list_lock held and must not sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450->llseek() locking has moved from llseek to the individual llseek
451implementations. If your fs is not using generic_file_llseek, you
452need to acquire and release the appropriate locks in your ->llseek().
453For many filesystems, it is probably safe to acquire the inode
Jan Blunck866707f2010-05-26 14:44:54 -0700454mutex or just to use i_size_read() instead.
455Note: this does not protect the file->f_pos against concurrent modifications
456since this is something the userspace has to take care about.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100458->fasync() is responsible for maintaining the FASYNC bit in filp->f_flags.
459Most instances call fasync_helper(), which does that maintenance, so it's
460not normally something one needs to worry about. Return values > 0 will be
461mapped to zero in the VFS layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463->readdir() and ->ioctl() on directories must be changed. Ideally we would
464move ->readdir() to inode_operations and use a separate method for directory
465->ioctl() or kill the latter completely. One of the problems is that for
466anything that resembles union-mount we won't have a struct file for all
467components. And there are other reasons why the current interface is a mess...
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469->read on directories probably must go away - we should just enforce -EISDIR
470in sys_read() and friends.
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472--------------------------- dquot_operations -------------------------------
473prototypes:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int (*write_dquot) (struct dquot *);
475 int (*acquire_dquot) (struct dquot *);
476 int (*release_dquot) (struct dquot *);
477 int (*mark_dirty) (struct dquot *);
478 int (*write_info) (struct super_block *, int);
479
480These operations are intended to be more or less wrapping functions that ensure
481a proper locking wrt the filesystem and call the generic quota operations.
482
483What filesystem should expect from the generic quota functions:
484
485 FS recursion Held locks when called
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486write_dquot: yes dqonoff_sem or dqptr_sem
487acquire_dquot: yes dqonoff_sem or dqptr_sem
488release_dquot: yes dqonoff_sem or dqptr_sem
489mark_dirty: no -
490write_info: yes dqonoff_sem
491
492FS recursion means calling ->quota_read() and ->quota_write() from superblock
493operations.
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495More details about quota locking can be found in fs/dquot.c.
496
497--------------------------- vm_operations_struct -----------------------------
498prototypes:
499 void (*open)(struct vm_area_struct*);
500 void (*close)(struct vm_area_struct*);
Nick Piggind0217ac2007-07-19 01:47:03 -0700501 int (*fault)(struct vm_area_struct*, struct vm_fault *);
Nick Pigginc2ec1752009-03-31 15:23:21 -0700502 int (*page_mkwrite)(struct vm_area_struct *, struct vm_fault *);
Rik van Riel28b2ee22008-07-23 21:27:05 -0700503 int (*access)(struct vm_area_struct *, unsigned long, void*, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505locking rules:
Christoph Hellwigb83be6f2010-12-16 12:04:54 +0100506 mmap_sem PageLocked(page)
507open: yes
508close: yes
509fault: yes can return with page locked
510page_mkwrite: yes can return with page locked
511access: yes
Mark Fashehed2f2f92007-07-19 01:47:01 -0700512
Nick Pigginb827e492009-04-30 15:08:16 -0700513 ->fault() is called when a previously not present pte is about
514to be faulted in. The filesystem must find and return the page associated
515with the passed in "pgoff" in the vm_fault structure. If it is possible that
516the page may be truncated and/or invalidated, then the filesystem must lock
517the page, then ensure it is not already truncated (the page lock will block
518subsequent truncate), and then return with VM_FAULT_LOCKED, and the page
519locked. The VM will unlock the page.
520
521 ->page_mkwrite() is called when a previously read-only pte is
522about to become writeable. The filesystem again must ensure that there are
523no truncate/invalidate races, and then return with the page locked. If
524the page has been truncated, the filesystem should not look up a new page
525like the ->fault() handler, but simply return with VM_FAULT_NOPAGE, which
526will cause the VM to retry the fault.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Rik van Riel28b2ee22008-07-23 21:27:05 -0700528 ->access() is called when get_user_pages() fails in
529acces_process_vm(), typically used to debug a process through
530/proc/pid/mem or ptrace. This function is needed only for
531VM_IO | VM_PFNMAP VMAs.
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533================================================================================
534 Dubious stuff
535
536(if you break something or notice that it is broken and do not fix it yourself
537- at least put it here)