porting 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. Changes since 2.5.0:
  2. ---
  3. [recommended]
  4. New helpers: sb_bread(), sb_getblk(), sb_find_get_block(), set_bh(),
  5. sb_set_blocksize() and sb_min_blocksize().
  6. Use them.
  7. (sb_find_get_block() replaces 2.4's get_hash_table())
  8. ---
  9. [recommended]
  10. New methods: ->alloc_inode() and ->destroy_inode().
  11. Remove inode->u.foo_inode_i
  12. Declare
  13. struct foo_inode_info {
  14. /* fs-private stuff */
  15. struct inode vfs_inode;
  16. };
  17. static inline struct foo_inode_info *FOO_I(struct inode *inode)
  18. {
  19. return list_entry(inode, struct foo_inode_info, vfs_inode);
  20. }
  21. Use FOO_I(inode) instead of &inode->u.foo_inode_i;
  22. Add foo_alloc_inode() and foo_destroy_inode() - the former should allocate
  23. foo_inode_info and return the address of ->vfs_inode, the latter should free
  24. FOO_I(inode) (see in-tree filesystems for examples).
  25. Make them ->alloc_inode and ->destroy_inode in your super_operations.
  26. Keep in mind that now you need explicit initialization of private data
  27. typically between calling iget_locked() and unlocking the inode.
  28. At some point that will become mandatory.
  29. ---
  30. [mandatory]
  31. Change of file_system_type method (->read_super to ->get_sb)
  32. ->read_super() is no more. Ditto for DECLARE_FSTYPE and DECLARE_FSTYPE_DEV.
  33. Turn your foo_read_super() into a function that would return 0 in case of
  34. success and negative number in case of error (-EINVAL unless you have more
  35. informative error value to report). Call it foo_fill_super(). Now declare
  36. int foo_get_sb(struct file_system_type *fs_type,
  37. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  38. {
  39. return get_sb_bdev(fs_type, flags, dev_name, data, foo_fill_super,
  40. mnt);
  41. }
  42. (or similar with s/bdev/nodev/ or s/bdev/single/, depending on the kind of
  43. filesystem).
  44. Replace DECLARE_FSTYPE... with explicit initializer and have ->get_sb set as
  45. foo_get_sb.
  46. ---
  47. [mandatory]
  48. Locking change: ->s_vfs_rename_sem is taken only by cross-directory renames.
  49. Most likely there is no need to change anything, but if you relied on
  50. global exclusion between renames for some internal purpose - you need to
  51. change your internal locking. Otherwise exclusion warranties remain the
  52. same (i.e. parents and victim are locked, etc.).
  53. ---
  54. [informational]
  55. Now we have the exclusion between ->lookup() and directory removal (by
  56. ->rmdir() and ->rename()). If you used to need that exclusion and do
  57. it by internal locking (most of filesystems couldn't care less) - you
  58. can relax your locking.
  59. ---
  60. [mandatory]
  61. ->lookup(), ->truncate(), ->create(), ->unlink(), ->mknod(), ->mkdir(),
  62. ->rmdir(), ->link(), ->lseek(), ->symlink(), ->rename()
  63. and ->readdir() are called without BKL now. Grab it on entry, drop upon return
  64. - that will guarantee the same locking you used to have. If your method or its
  65. parts do not need BKL - better yet, now you can shift lock_kernel() and
  66. unlock_kernel() so that they would protect exactly what needs to be
  67. protected.
  68. ---
  69. [mandatory]
  70. BKL is also moved from around sb operations. ->write_super() Is now called
  71. without BKL held. BKL should have been shifted into individual fs sb_op
  72. functions. If you don't need it, remove it.
  73. ---
  74. [informational]
  75. check for ->link() target not being a directory is done by callers. Feel
  76. free to drop it...
  77. ---
  78. [informational]
  79. ->link() callers hold ->i_mutex on the object we are linking to. Some of your
  80. problems might be over...
  81. ---
  82. [mandatory]
  83. new file_system_type method - kill_sb(superblock). If you are converting
  84. an existing filesystem, set it according to ->fs_flags:
  85. FS_REQUIRES_DEV - kill_block_super
  86. FS_LITTER - kill_litter_super
  87. neither - kill_anon_super
  88. FS_LITTER is gone - just remove it from fs_flags.
  89. ---
  90. [mandatory]
  91. FS_SINGLE is gone (actually, that had happened back when ->get_sb()
  92. went in - and hadn't been documented ;-/). Just remove it from fs_flags
  93. (and see ->get_sb() entry for other actions).
  94. ---
  95. [mandatory]
  96. ->setattr() is called without BKL now. Caller _always_ holds ->i_mutex, so
  97. watch for ->i_mutex-grabbing code that might be used by your ->setattr().
  98. Callers of notify_change() need ->i_mutex now.
  99. ---
  100. [recommended]
  101. New super_block field "struct export_operations *s_export_op" for
  102. explicit support for exporting, e.g. via NFS. The structure is fully
  103. documented at its declaration in include/linux/fs.h, and in
  104. Documentation/filesystems/nfs/Exporting.
  105. Briefly it allows for the definition of decode_fh and encode_fh operations
  106. to encode and decode filehandles, and allows the filesystem to use
  107. a standard helper function for decode_fh, and provide file-system specific
  108. support for this helper, particularly get_parent.
  109. It is planned that this will be required for exporting once the code
  110. settles down a bit.
  111. [mandatory]
  112. s_export_op is now required for exporting a filesystem.
  113. isofs, ext2, ext3, resierfs, fat
  114. can be used as examples of very different filesystems.
  115. ---
  116. [mandatory]
  117. iget4() and the read_inode2 callback have been superseded by iget5_locked()
  118. which has the following prototype,
  119. struct inode *iget5_locked(struct super_block *sb, unsigned long ino,
  120. int (*test)(struct inode *, void *),
  121. int (*set)(struct inode *, void *),
  122. void *data);
  123. 'test' is an additional function that can be used when the inode
  124. number is not sufficient to identify the actual file object. 'set'
  125. should be a non-blocking function that initializes those parts of a
  126. newly created inode to allow the test function to succeed. 'data' is
  127. passed as an opaque value to both test and set functions.
  128. When the inode has been created by iget5_locked(), it will be returned with the
  129. I_NEW flag set and will still be locked. The filesystem then needs to finalize
  130. the initialization. Once the inode is initialized it must be unlocked by
  131. calling unlock_new_inode().
  132. The filesystem is responsible for setting (and possibly testing) i_ino
  133. when appropriate. There is also a simpler iget_locked function that
  134. just takes the superblock and inode number as arguments and does the
  135. test and set for you.
  136. e.g.
  137. inode = iget_locked(sb, ino);
  138. if (inode->i_state & I_NEW) {
  139. err = read_inode_from_disk(inode);
  140. if (err < 0) {
  141. iget_failed(inode);
  142. return err;
  143. }
  144. unlock_new_inode(inode);
  145. }
  146. Note that if the process of setting up a new inode fails, then iget_failed()
  147. should be called on the inode to render it dead, and an appropriate error
  148. should be passed back to the caller.
  149. ---
  150. [recommended]
  151. ->getattr() finally getting used. See instances in nfs, minix, etc.
  152. ---
  153. [mandatory]
  154. ->revalidate() is gone. If your filesystem had it - provide ->getattr()
  155. and let it call whatever you had as ->revlidate() + (for symlinks that
  156. had ->revalidate()) add calls in ->follow_link()/->readlink().
  157. ---
  158. [mandatory]
  159. ->d_parent changes are not protected by BKL anymore. Read access is safe
  160. if at least one of the following is true:
  161. * filesystem has no cross-directory rename()
  162. * we know that parent had been locked (e.g. we are looking at
  163. ->d_parent of ->lookup() argument).
  164. * we are called from ->rename().
  165. * the child's ->d_lock is held
  166. Audit your code and add locking if needed. Notice that any place that is
  167. not protected by the conditions above is risky even in the old tree - you
  168. had been relying on BKL and that's prone to screwups. Old tree had quite
  169. a few holes of that kind - unprotected access to ->d_parent leading to
  170. anything from oops to silent memory corruption.
  171. ---
  172. [mandatory]
  173. FS_NOMOUNT is gone. If you use it - just set MS_NOUSER in flags
  174. (see rootfs for one kind of solution and bdev/socket/pipe for another).
  175. ---
  176. [recommended]
  177. Use bdev_read_only(bdev) instead of is_read_only(kdev). The latter
  178. is still alive, but only because of the mess in drivers/s390/block/dasd.c.
  179. As soon as it gets fixed is_read_only() will die.
  180. ---
  181. [mandatory]
  182. ->permission() is called without BKL now. Grab it on entry, drop upon
  183. return - that will guarantee the same locking you used to have. If
  184. your method or its parts do not need BKL - better yet, now you can
  185. shift lock_kernel() and unlock_kernel() so that they would protect
  186. exactly what needs to be protected.
  187. ---
  188. [mandatory]
  189. ->statfs() is now called without BKL held. BKL should have been
  190. shifted into individual fs sb_op functions where it's not clear that
  191. it's safe to remove it. If you don't need it, remove it.
  192. ---
  193. [mandatory]
  194. is_read_only() is gone; use bdev_read_only() instead.
  195. ---
  196. [mandatory]
  197. destroy_buffers() is gone; use invalidate_bdev().
  198. ---
  199. [mandatory]
  200. fsync_dev() is gone; use fsync_bdev(). NOTE: lvm breakage is
  201. deliberate; as soon as struct block_device * is propagated in a reasonable
  202. way by that code fixing will become trivial; until then nothing can be
  203. done.
  204. [mandatory]
  205. block truncatation on error exit from ->write_begin, and ->direct_IO
  206. moved from generic methods (block_write_begin, cont_write_begin,
  207. nobh_write_begin, blockdev_direct_IO*) to callers. Take a look at
  208. ext2_write_failed and callers for an example.
  209. [mandatory]
  210. ->truncate is going away. The whole truncate sequence needs to be
  211. implemented in ->setattr, which is now mandatory for filesystems
  212. implementing on-disk size changes. Start with a copy of the old inode_setattr
  213. and vmtruncate, and the reorder the vmtruncate + foofs_vmtruncate sequence to
  214. be in order of zeroing blocks using block_truncate_page or similar helpers,
  215. size update and on finally on-disk truncation which should not fail.
  216. inode_change_ok now includes the size checks for ATTR_SIZE and must be called
  217. in the beginning of ->setattr unconditionally.
  218. [mandatory]
  219. ->clear_inode() and ->delete_inode() are gone; ->evict_inode() should
  220. be used instead. It gets called whenever the inode is evicted, whether it has
  221. remaining links or not. Caller does *not* evict the pagecache or inode-associated
  222. metadata buffers; getting rid of those is responsibility of method, as it had
  223. been for ->delete_inode().
  224. ->drop_inode() returns int now; it's called on final iput() with
  225. inode->i_lock held and it returns true if filesystems wants the inode to be
  226. dropped. As before, generic_drop_inode() is still the default and it's been
  227. updated appropriately. generic_delete_inode() is also alive and it consists
  228. simply of return 1. Note that all actual eviction work is done by caller after
  229. ->drop_inode() returns.
  230. clear_inode() is gone; use end_writeback() instead. As before, it must
  231. be called exactly once on each call of ->evict_inode() (as it used to be for
  232. each call of ->delete_inode()). Unlike before, if you are using inode-associated
  233. metadata buffers (i.e. mark_buffer_dirty_inode()), it's your responsibility to
  234. call invalidate_inode_buffers() before end_writeback().
  235. No async writeback (and thus no calls of ->write_inode()) will happen
  236. after end_writeback() returns, so actions that should not overlap with ->write_inode()
  237. (e.g. freeing on-disk inode if i_nlink is 0) ought to be done after that call.
  238. NOTE: checking i_nlink in the beginning of ->write_inode() and bailing out
  239. if it's zero is not *and* *never* *had* *been* enough. Final unlink() and iput()
  240. may happen while the inode is in the middle of ->write_inode(); e.g. if you blindly
  241. free the on-disk inode, you may end up doing that while ->write_inode() is writing
  242. to it.
  243. ---
  244. [mandatory]
  245. .d_delete() now only advises the dcache as to whether or not to cache
  246. unreferenced dentries, and is now only called when the dentry refcount goes to
  247. 0. Even on 0 refcount transition, it must be able to tolerate being called 0,
  248. 1, or more times (eg. constant, idempotent).
  249. ---
  250. [mandatory]
  251. .d_compare() calling convention and locking rules are significantly
  252. changed. Read updated documentation in Documentation/filesystems/vfs.txt (and
  253. look at examples of other filesystems) for guidance.
  254. ---
  255. [mandatory]
  256. .d_hash() calling convention and locking rules are significantly
  257. changed. Read updated documentation in Documentation/filesystems/vfs.txt (and
  258. look at examples of other filesystems) for guidance.
  259. ---
  260. [mandatory]
  261. dcache_lock is gone, replaced by fine grained locks. See fs/dcache.c
  262. for details of what locks to replace dcache_lock with in order to protect
  263. particular things. Most of the time, a filesystem only needs ->d_lock, which
  264. protects *all* the dcache state of a given dentry.
  265. --
  266. [mandatory]
  267. Filesystems must RCU-free their inodes, if they can have been accessed
  268. via rcu-walk path walk (basically, if the file can have had a path name in the
  269. vfs namespace).
  270. Even though i_dentry and i_rcu share storage in a union, we will
  271. initialize the former in inode_init_always(), so just leave it alone in
  272. the callback. It used to be necessary to clean it there, but not anymore
  273. (starting at 3.2).
  274. --
  275. [recommended]
  276. vfs now tries to do path walking in "rcu-walk mode", which avoids
  277. atomic operations and scalability hazards on dentries and inodes (see
  278. Documentation/filesystems/path-lookup.txt). d_hash and d_compare changes
  279. (above) are examples of the changes required to support this. For more complex
  280. filesystem callbacks, the vfs drops out of rcu-walk mode before the fs call, so
  281. no changes are required to the filesystem. However, this is costly and loses
  282. the benefits of rcu-walk mode. We will begin to add filesystem callbacks that
  283. are rcu-walk aware, shown below. Filesystems should take advantage of this
  284. where possible.
  285. --
  286. [mandatory]
  287. d_revalidate is a callback that is made on every path element (if
  288. the filesystem provides it), which requires dropping out of rcu-walk mode. This
  289. may now be called in rcu-walk mode (nd->flags & LOOKUP_RCU). -ECHILD should be
  290. returned if the filesystem cannot handle rcu-walk. See
  291. Documentation/filesystems/vfs.txt for more details.
  292. permission and check_acl are inode permission checks that are called
  293. on many or all directory inodes on the way down a path walk (to check for
  294. exec permission). These must now be rcu-walk aware (flags & IPERM_FLAG_RCU).
  295. See Documentation/filesystems/vfs.txt for more details.
  296. --
  297. [mandatory]
  298. In ->fallocate() you must check the mode option passed in. If your
  299. filesystem does not support hole punching (deallocating space in the middle of a
  300. file) you must return -EOPNOTSUPP if FALLOC_FL_PUNCH_HOLE is set in mode.
  301. Currently you can only have FALLOC_FL_PUNCH_HOLE with FALLOC_FL_KEEP_SIZE set,
  302. so the i_size should not change when hole punching, even when puching the end of
  303. a file off.
  304. --
  305. [mandatory]
  306. ->get_sb() is gone. Switch to use of ->mount(). Typically it's just
  307. a matter of switching from calling get_sb_... to mount_... and changing the
  308. function type. If you were doing it manually, just switch from setting ->mnt_root
  309. to some pointer to returning that pointer. On errors return ERR_PTR(...).
  310. --
  311. [mandatory]
  312. ->permission() and generic_permission()have lost flags
  313. argument; instead of passing IPERM_FLAG_RCU we add MAY_NOT_BLOCK into mask.
  314. generic_permission() has also lost the check_acl argument; ACL checking
  315. has been taken to VFS and filesystems need to provide a non-NULL ->i_op->get_acl
  316. to read an ACL from disk.
  317. --
  318. [mandatory]
  319. If you implement your own ->llseek() you must handle SEEK_HOLE and
  320. SEEK_DATA. You can hanle this by returning -EINVAL, but it would be nicer to
  321. support it in some way. The generic handler assumes that the entire file is
  322. data and there is a virtual hole at the end of the file. So if the provided
  323. offset is less than i_size and SEEK_DATA is specified, return the same offset.
  324. If the above is true for the offset and you are given SEEK_HOLE, return the end
  325. of the file. If the offset is i_size or greater return -ENXIO in either case.
  326. [mandatory]
  327. If you have your own ->fsync() you must make sure to call
  328. filemap_write_and_wait_range() so that all dirty pages are synced out properly.
  329. You must also keep in mind that ->fsync() is not called with i_mutex held
  330. anymore, so if you require i_mutex locking you must make sure to take it and
  331. release it yourself.
  332. --
  333. [mandatory]
  334. d_alloc_root() is gone, along with a lot of bugs caused by code
  335. misusing it. Replacement: d_make_root(inode). The difference is,
  336. d_make_root() drops the reference to inode if dentry allocation fails.
  337. --
  338. [mandatory]
  339. vfs_readdir() is gone; switch to iterate_dir() instead