vfs.rst 60 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541
  1. .. SPDX-License-Identifier: GPL-2.0
  2. =========================================
  3. Overview of the Linux Virtual File System
  4. =========================================
  5. Original author: Richard Gooch <rgooch@atnf.csiro.au>
  6. - Copyright (C) 1999 Richard Gooch
  7. - Copyright (C) 2005 Pekka Enberg
  8. Introduction
  9. ============
  10. The Virtual File System (also known as the Virtual Filesystem Switch) is
  11. the software layer in the kernel that provides the filesystem interface
  12. to userspace programs. It also provides an abstraction within the
  13. kernel which allows different filesystem implementations to coexist.
  14. VFS system calls open(2), stat(2), read(2), write(2), chmod(2) and so on
  15. are called from a process context. Filesystem locking is described in
  16. the document Documentation/filesystems/locking.rst.
  17. Directory Entry Cache (dcache)
  18. ------------------------------
  19. The VFS implements the open(2), stat(2), chmod(2), and similar system
  20. calls. The pathname argument that is passed to them is used by the VFS
  21. to search through the directory entry cache (also known as the dentry
  22. cache or dcache). This provides a very fast look-up mechanism to
  23. translate a pathname (filename) into a specific dentry. Dentries live
  24. in RAM and are never saved to disc: they exist only for performance.
  25. The dentry cache is meant to be a view into your entire filespace. As
  26. most computers cannot fit all dentries in the RAM at the same time, some
  27. bits of the cache are missing. In order to resolve your pathname into a
  28. dentry, the VFS may have to resort to creating dentries along the way,
  29. and then loading the inode. This is done by looking up the inode.
  30. The Inode Object
  31. ----------------
  32. An individual dentry usually has a pointer to an inode. Inodes are
  33. filesystem objects such as regular files, directories, FIFOs and other
  34. beasts. They live either on the disc (for block device filesystems) or
  35. in the memory (for pseudo filesystems). Inodes that live on the disc
  36. are copied into the memory when required and changes to the inode are
  37. written back to disc. A single inode can be pointed to by multiple
  38. dentries (hard links, for example, do this).
  39. To look up an inode requires that the VFS calls the lookup() method of
  40. the parent directory inode. This method is installed by the specific
  41. filesystem implementation that the inode lives in. Once the VFS has the
  42. required dentry (and hence the inode), we can do all those boring things
  43. like open(2) the file, or stat(2) it to peek at the inode data. The
  44. stat(2) operation is fairly simple: once the VFS has the dentry, it
  45. peeks at the inode data and passes some of it back to userspace.
  46. The File Object
  47. ---------------
  48. Opening a file requires another operation: allocation of a file
  49. structure (this is the kernel-side implementation of file descriptors).
  50. The freshly allocated file structure is initialized with a pointer to
  51. the dentry and a set of file operation member functions. These are
  52. taken from the inode data. The open() file method is then called so the
  53. specific filesystem implementation can do its work. You can see that
  54. this is another switch performed by the VFS. The file structure is
  55. placed into the file descriptor table for the process.
  56. Reading, writing and closing files (and other assorted VFS operations)
  57. is done by using the userspace file descriptor to grab the appropriate
  58. file structure, and then calling the required file structure method to
  59. do whatever is required. For as long as the file is open, it keeps the
  60. dentry in use, which in turn means that the VFS inode is still in use.
  61. Registering and Mounting a Filesystem
  62. =====================================
  63. To register and unregister a filesystem, use the following API
  64. functions:
  65. .. code-block:: c
  66. #include <linux/fs.h>
  67. extern int register_filesystem(struct file_system_type *);
  68. extern int unregister_filesystem(struct file_system_type *);
  69. The passed struct file_system_type describes your filesystem. When a
  70. request is made to mount a filesystem onto a directory in your
  71. namespace, the VFS will call the appropriate mount() method for the
  72. specific filesystem. New vfsmount referring to the tree returned by
  73. ->mount() will be attached to the mountpoint, so that when pathname
  74. resolution reaches the mountpoint it will jump into the root of that
  75. vfsmount.
  76. You can see all filesystems that are registered to the kernel in the
  77. file /proc/filesystems.
  78. struct file_system_type
  79. -----------------------
  80. This describes the filesystem. The following
  81. members are defined:
  82. .. code-block:: c
  83. struct file_system_type {
  84. const char *name;
  85. int fs_flags;
  86. int (*init_fs_context)(struct fs_context *);
  87. const struct fs_parameter_spec *parameters;
  88. struct dentry *(*mount) (struct file_system_type *, int,
  89. const char *, void *);
  90. void (*kill_sb) (struct super_block *);
  91. struct module *owner;
  92. struct file_system_type * next;
  93. struct hlist_head fs_supers;
  94. struct lock_class_key s_lock_key;
  95. struct lock_class_key s_umount_key;
  96. struct lock_class_key s_vfs_rename_key;
  97. struct lock_class_key s_writers_key[SB_FREEZE_LEVELS];
  98. struct lock_class_key i_lock_key;
  99. struct lock_class_key i_mutex_key;
  100. struct lock_class_key invalidate_lock_key;
  101. struct lock_class_key i_mutex_dir_key;
  102. };
  103. ``name``
  104. the name of the filesystem type, such as "ext2", "iso9660",
  105. "msdos" and so on
  106. ``fs_flags``
  107. various flags (i.e. FS_REQUIRES_DEV, FS_NO_DCACHE, etc.)
  108. ``init_fs_context``
  109. Initializes 'struct fs_context' ->ops and ->fs_private fields with
  110. filesystem-specific data.
  111. ``parameters``
  112. Pointer to the array of filesystem parameters descriptors
  113. 'struct fs_parameter_spec'.
  114. More info in Documentation/filesystems/mount_api.rst.
  115. ``mount``
  116. the method to call when a new instance of this filesystem should
  117. be mounted
  118. ``kill_sb``
  119. the method to call when an instance of this filesystem should be
  120. shut down
  121. ``owner``
  122. for internal VFS use: you should initialize this to THIS_MODULE
  123. in most cases.
  124. ``next``
  125. for internal VFS use: you should initialize this to NULL
  126. ``fs_supers``
  127. for internal VFS use: hlist of filesystem instances (superblocks)
  128. s_lock_key, s_umount_key, s_vfs_rename_key, s_writers_key,
  129. i_lock_key, i_mutex_key, invalidate_lock_key, i_mutex_dir_key: lockdep-specific
  130. The mount() method has the following arguments:
  131. ``struct file_system_type *fs_type``
  132. describes the filesystem, partly initialized by the specific
  133. filesystem code
  134. ``int flags``
  135. mount flags
  136. ``const char *dev_name``
  137. the device name we are mounting.
  138. ``void *data``
  139. arbitrary mount options, usually comes as an ASCII string (see
  140. "Mount Options" section)
  141. The mount() method must return the root dentry of the tree requested by
  142. caller. An active reference to its superblock must be grabbed and the
  143. superblock must be locked. On failure it should return ERR_PTR(error).
  144. The arguments match those of mount(2) and their interpretation depends
  145. on filesystem type. E.g. for block filesystems, dev_name is interpreted
  146. as block device name, that device is opened and if it contains a
  147. suitable filesystem image the method creates and initializes struct
  148. super_block accordingly, returning its root dentry to caller.
  149. ->mount() may choose to return a subtree of existing filesystem - it
  150. doesn't have to create a new one. The main result from the caller's
  151. point of view is a reference to dentry at the root of (sub)tree to be
  152. attached; creation of new superblock is a common side effect.
  153. The most interesting member of the superblock structure that the mount()
  154. method fills in is the "s_op" field. This is a pointer to a "struct
  155. super_operations" which describes the next level of the filesystem
  156. implementation.
  157. Usually, a filesystem uses one of the generic mount() implementations
  158. and provides a fill_super() callback instead. The generic variants are:
  159. ``mount_bdev``
  160. mount a filesystem residing on a block device
  161. ``mount_nodev``
  162. mount a filesystem that is not backed by a device
  163. ``mount_single``
  164. mount a filesystem which shares the instance between all mounts
  165. A fill_super() callback implementation has the following arguments:
  166. ``struct super_block *sb``
  167. the superblock structure. The callback must initialize this
  168. properly.
  169. ``void *data``
  170. arbitrary mount options, usually comes as an ASCII string (see
  171. "Mount Options" section)
  172. ``int silent``
  173. whether or not to be silent on error
  174. The Superblock Object
  175. =====================
  176. A superblock object represents a mounted filesystem.
  177. struct super_operations
  178. -----------------------
  179. This describes how the VFS can manipulate the superblock of your
  180. filesystem. The following members are defined:
  181. .. code-block:: c
  182. struct super_operations {
  183. struct inode *(*alloc_inode)(struct super_block *sb);
  184. void (*destroy_inode)(struct inode *);
  185. void (*free_inode)(struct inode *);
  186. void (*dirty_inode) (struct inode *, int flags);
  187. int (*write_inode) (struct inode *, struct writeback_control *wbc);
  188. int (*drop_inode) (struct inode *);
  189. void (*evict_inode) (struct inode *);
  190. void (*put_super) (struct super_block *);
  191. int (*sync_fs)(struct super_block *sb, int wait);
  192. int (*freeze_super) (struct super_block *sb,
  193. enum freeze_holder who);
  194. int (*freeze_fs) (struct super_block *);
  195. int (*thaw_super) (struct super_block *sb,
  196. enum freeze_wholder who);
  197. int (*unfreeze_fs) (struct super_block *);
  198. int (*statfs) (struct dentry *, struct kstatfs *);
  199. int (*remount_fs) (struct super_block *, int *, char *);
  200. void (*umount_begin) (struct super_block *);
  201. int (*show_options)(struct seq_file *, struct dentry *);
  202. int (*show_devname)(struct seq_file *, struct dentry *);
  203. int (*show_path)(struct seq_file *, struct dentry *);
  204. int (*show_stats)(struct seq_file *, struct dentry *);
  205. ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
  206. ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
  207. struct dquot **(*get_dquots)(struct inode *);
  208. long (*nr_cached_objects)(struct super_block *,
  209. struct shrink_control *);
  210. long (*free_cached_objects)(struct super_block *,
  211. struct shrink_control *);
  212. };
  213. All methods are called without any locks being held, unless otherwise
  214. noted. This means that most methods can block safely. All methods are
  215. only called from a process context (i.e. not from an interrupt handler
  216. or bottom half).
  217. ``alloc_inode``
  218. this method is called by alloc_inode() to allocate memory for
  219. struct inode and initialize it. If this function is not
  220. defined, a simple 'struct inode' is allocated. Normally
  221. alloc_inode will be used to allocate a larger structure which
  222. contains a 'struct inode' embedded within it.
  223. ``destroy_inode``
  224. this method is called by destroy_inode() to release resources
  225. allocated for struct inode. It is only required if
  226. ->alloc_inode was defined and simply undoes anything done by
  227. ->alloc_inode.
  228. ``free_inode``
  229. this method is called from RCU callback. If you use call_rcu()
  230. in ->destroy_inode to free 'struct inode' memory, then it's
  231. better to release memory in this method.
  232. ``dirty_inode``
  233. this method is called by the VFS when an inode is marked dirty.
  234. This is specifically for the inode itself being marked dirty,
  235. not its data. If the update needs to be persisted by fdatasync(),
  236. then I_DIRTY_DATASYNC will be set in the flags argument.
  237. I_DIRTY_TIME will be set in the flags in case lazytime is enabled
  238. and struct inode has times updated since the last ->dirty_inode
  239. call.
  240. ``write_inode``
  241. this method is called when the VFS needs to write an inode to
  242. disc. The second parameter indicates whether the write should
  243. be synchronous or not, not all filesystems check this flag.
  244. ``drop_inode``
  245. called when the last access to the inode is dropped, with the
  246. inode->i_lock spinlock held.
  247. This method should be either NULL (normal UNIX filesystem
  248. semantics) or "generic_delete_inode" (for filesystems that do
  249. not want to cache inodes - causing "delete_inode" to always be
  250. called regardless of the value of i_nlink)
  251. The "generic_delete_inode()" behavior is equivalent to the old
  252. practice of using "force_delete" in the put_inode() case, but
  253. does not have the races that the "force_delete()" approach had.
  254. ``evict_inode``
  255. called when the VFS wants to evict an inode. Caller does
  256. *not* evict the pagecache or inode-associated metadata buffers;
  257. the method has to use truncate_inode_pages_final() to get rid
  258. of those. Caller makes sure async writeback cannot be running for
  259. the inode while (or after) ->evict_inode() is called. Optional.
  260. ``put_super``
  261. called when the VFS wishes to free the superblock
  262. (i.e. unmount). This is called with the superblock lock held
  263. ``sync_fs``
  264. called when VFS is writing out all dirty data associated with a
  265. superblock. The second parameter indicates whether the method
  266. should wait until the write out has been completed. Optional.
  267. ``freeze_super``
  268. Called instead of ->freeze_fs callback if provided.
  269. Main difference is that ->freeze_super is called without taking
  270. down_write(&sb->s_umount). If filesystem implements it and wants
  271. ->freeze_fs to be called too, then it has to call ->freeze_fs
  272. explicitly from this callback. Optional.
  273. ``freeze_fs``
  274. called when VFS is locking a filesystem and forcing it into a
  275. consistent state. This method is currently used by the Logical
  276. Volume Manager (LVM) and ioctl(FIFREEZE). Optional.
  277. ``thaw_super``
  278. called when VFS is unlocking a filesystem and making it writable
  279. again after ->freeze_super. Optional.
  280. ``unfreeze_fs``
  281. called when VFS is unlocking a filesystem and making it writable
  282. again after ->freeze_fs. Optional.
  283. ``statfs``
  284. called when the VFS needs to get filesystem statistics.
  285. ``remount_fs``
  286. called when the filesystem is remounted. This is called with
  287. the kernel lock held
  288. ``umount_begin``
  289. called when the VFS is unmounting a filesystem.
  290. ``show_options``
  291. called by the VFS to show mount options for /proc/<pid>/mounts
  292. and /proc/<pid>/mountinfo.
  293. (see "Mount Options" section)
  294. ``show_devname``
  295. Optional. Called by the VFS to show device name for
  296. /proc/<pid>/{mounts,mountinfo,mountstats}. If not provided then
  297. '(struct mount).mnt_devname' will be used.
  298. ``show_path``
  299. Optional. Called by the VFS (for /proc/<pid>/mountinfo) to show
  300. the mount root dentry path relative to the filesystem root.
  301. ``show_stats``
  302. Optional. Called by the VFS (for /proc/<pid>/mountstats) to show
  303. filesystem-specific mount statistics.
  304. ``quota_read``
  305. called by the VFS to read from filesystem quota file.
  306. ``quota_write``
  307. called by the VFS to write to filesystem quota file.
  308. ``get_dquots``
  309. called by quota to get 'struct dquot' array for a particular inode.
  310. Optional.
  311. ``nr_cached_objects``
  312. called by the sb cache shrinking function for the filesystem to
  313. return the number of freeable cached objects it contains.
  314. Optional.
  315. ``free_cache_objects``
  316. called by the sb cache shrinking function for the filesystem to
  317. scan the number of objects indicated to try to free them.
  318. Optional, but any filesystem implementing this method needs to
  319. also implement ->nr_cached_objects for it to be called
  320. correctly.
  321. We can't do anything with any errors that the filesystem might
  322. encountered, hence the void return type. This will never be
  323. called if the VM is trying to reclaim under GFP_NOFS conditions,
  324. hence this method does not need to handle that situation itself.
  325. Implementations must include conditional reschedule calls inside
  326. any scanning loop that is done. This allows the VFS to
  327. determine appropriate scan batch sizes without having to worry
  328. about whether implementations will cause holdoff problems due to
  329. large scan batch sizes.
  330. Whoever sets up the inode is responsible for filling in the "i_op"
  331. field. This is a pointer to a "struct inode_operations" which describes
  332. the methods that can be performed on individual inodes.
  333. struct xattr_handler
  334. ---------------------
  335. On filesystems that support extended attributes (xattrs), the s_xattr
  336. superblock field points to a NULL-terminated array of xattr handlers.
  337. Extended attributes are name:value pairs.
  338. ``name``
  339. Indicates that the handler matches attributes with the specified
  340. name (such as "system.posix_acl_access"); the prefix field must
  341. be NULL.
  342. ``prefix``
  343. Indicates that the handler matches all attributes with the
  344. specified name prefix (such as "user."); the name field must be
  345. NULL.
  346. ``list``
  347. Determine if attributes matching this xattr handler should be
  348. listed for a particular dentry. Used by some listxattr
  349. implementations like generic_listxattr.
  350. ``get``
  351. Called by the VFS to get the value of a particular extended
  352. attribute. This method is called by the getxattr(2) system
  353. call.
  354. ``set``
  355. Called by the VFS to set the value of a particular extended
  356. attribute. When the new value is NULL, called to remove a
  357. particular extended attribute. This method is called by the
  358. setxattr(2) and removexattr(2) system calls.
  359. When none of the xattr handlers of a filesystem match the specified
  360. attribute name or when a filesystem doesn't support extended attributes,
  361. the various ``*xattr(2)`` system calls return -EOPNOTSUPP.
  362. The Inode Object
  363. ================
  364. An inode object represents an object within the filesystem.
  365. struct inode_operations
  366. -----------------------
  367. This describes how the VFS can manipulate an inode in your filesystem.
  368. As of kernel 2.6.22, the following members are defined:
  369. .. code-block:: c
  370. struct inode_operations {
  371. int (*create) (struct mnt_idmap *, struct inode *,struct dentry *, umode_t, bool);
  372. struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int);
  373. int (*link) (struct dentry *,struct inode *,struct dentry *);
  374. int (*unlink) (struct inode *,struct dentry *);
  375. int (*symlink) (struct mnt_idmap *, struct inode *,struct dentry *,const char *);
  376. int (*mkdir) (struct mnt_idmap *, struct inode *,struct dentry *,umode_t);
  377. int (*rmdir) (struct inode *,struct dentry *);
  378. int (*mknod) (struct mnt_idmap *, struct inode *,struct dentry *,umode_t,dev_t);
  379. int (*rename) (struct mnt_idmap *, struct inode *, struct dentry *,
  380. struct inode *, struct dentry *, unsigned int);
  381. int (*readlink) (struct dentry *, char __user *,int);
  382. const char *(*get_link) (struct dentry *, struct inode *,
  383. struct delayed_call *);
  384. int (*permission) (struct mnt_idmap *, struct inode *, int);
  385. struct posix_acl * (*get_inode_acl)(struct inode *, int, bool);
  386. int (*setattr) (struct mnt_idmap *, struct dentry *, struct iattr *);
  387. int (*getattr) (struct mnt_idmap *, const struct path *, struct kstat *, u32, unsigned int);
  388. ssize_t (*listxattr) (struct dentry *, char *, size_t);
  389. void (*update_time)(struct inode *, struct timespec *, int);
  390. int (*atomic_open)(struct inode *, struct dentry *, struct file *,
  391. unsigned open_flag, umode_t create_mode);
  392. int (*tmpfile) (struct mnt_idmap *, struct inode *, struct file *, umode_t);
  393. struct posix_acl * (*get_acl)(struct mnt_idmap *, struct dentry *, int);
  394. int (*set_acl)(struct mnt_idmap *, struct dentry *, struct posix_acl *, int);
  395. int (*fileattr_set)(struct mnt_idmap *idmap,
  396. struct dentry *dentry, struct fileattr *fa);
  397. int (*fileattr_get)(struct dentry *dentry, struct fileattr *fa);
  398. struct offset_ctx *(*get_offset_ctx)(struct inode *inode);
  399. };
  400. Again, all methods are called without any locks being held, unless
  401. otherwise noted.
  402. ``create``
  403. called by the open(2) and creat(2) system calls. Only required
  404. if you want to support regular files. The dentry you get should
  405. not have an inode (i.e. it should be a negative dentry). Here
  406. you will probably call d_instantiate() with the dentry and the
  407. newly created inode
  408. ``lookup``
  409. called when the VFS needs to look up an inode in a parent
  410. directory. The name to look for is found in the dentry. This
  411. method must call d_add() to insert the found inode into the
  412. dentry. The "i_count" field in the inode structure should be
  413. incremented. If the named inode does not exist a NULL inode
  414. should be inserted into the dentry (this is called a negative
  415. dentry). Returning an error code from this routine must only be
  416. done on a real error, otherwise creating inodes with system
  417. calls like create(2), mknod(2), mkdir(2) and so on will fail.
  418. If you wish to overload the dentry methods then you should
  419. initialise the "d_dop" field in the dentry; this is a pointer to
  420. a struct "dentry_operations". This method is called with the
  421. directory inode semaphore held
  422. ``link``
  423. called by the link(2) system call. Only required if you want to
  424. support hard links. You will probably need to call
  425. d_instantiate() just as you would in the create() method
  426. ``unlink``
  427. called by the unlink(2) system call. Only required if you want
  428. to support deleting inodes
  429. ``symlink``
  430. called by the symlink(2) system call. Only required if you want
  431. to support symlinks. You will probably need to call
  432. d_instantiate() just as you would in the create() method
  433. ``mkdir``
  434. called by the mkdir(2) system call. Only required if you want
  435. to support creating subdirectories. You will probably need to
  436. call d_instantiate() just as you would in the create() method
  437. ``rmdir``
  438. called by the rmdir(2) system call. Only required if you want
  439. to support deleting subdirectories
  440. ``mknod``
  441. called by the mknod(2) system call to create a device (char,
  442. block) inode or a named pipe (FIFO) or socket. Only required if
  443. you want to support creating these types of inodes. You will
  444. probably need to call d_instantiate() just as you would in the
  445. create() method
  446. ``rename``
  447. called by the rename(2) system call to rename the object to have
  448. the parent and name given by the second inode and dentry.
  449. The filesystem must return -EINVAL for any unsupported or
  450. unknown flags. Currently the following flags are implemented:
  451. (1) RENAME_NOREPLACE: this flag indicates that if the target of
  452. the rename exists the rename should fail with -EEXIST instead of
  453. replacing the target. The VFS already checks for existence, so
  454. for local filesystems the RENAME_NOREPLACE implementation is
  455. equivalent to plain rename.
  456. (2) RENAME_EXCHANGE: exchange source and target. Both must
  457. exist; this is checked by the VFS. Unlike plain rename, source
  458. and target may be of different type.
  459. ``get_link``
  460. called by the VFS to follow a symbolic link to the inode it
  461. points to. Only required if you want to support symbolic links.
  462. This method returns the symlink body to traverse (and possibly
  463. resets the current position with nd_jump_link()). If the body
  464. won't go away until the inode is gone, nothing else is needed;
  465. if it needs to be otherwise pinned, arrange for its release by
  466. having get_link(..., ..., done) do set_delayed_call(done,
  467. destructor, argument). In that case destructor(argument) will
  468. be called once VFS is done with the body you've returned. May
  469. be called in RCU mode; that is indicated by NULL dentry
  470. argument. If request can't be handled without leaving RCU mode,
  471. have it return ERR_PTR(-ECHILD).
  472. If the filesystem stores the symlink target in ->i_link, the
  473. VFS may use it directly without calling ->get_link(); however,
  474. ->get_link() must still be provided. ->i_link must not be
  475. freed until after an RCU grace period. Writing to ->i_link
  476. post-iget() time requires a 'release' memory barrier.
  477. ``readlink``
  478. this is now just an override for use by readlink(2) for the
  479. cases when ->get_link uses nd_jump_link() or object is not in
  480. fact a symlink. Normally filesystems should only implement
  481. ->get_link for symlinks and readlink(2) will automatically use
  482. that.
  483. ``permission``
  484. called by the VFS to check for access rights on a POSIX-like
  485. filesystem.
  486. May be called in rcu-walk mode (mask & MAY_NOT_BLOCK). If in
  487. rcu-walk mode, the filesystem must check the permission without
  488. blocking or storing to the inode.
  489. If a situation is encountered that rcu-walk cannot handle,
  490. return
  491. -ECHILD and it will be called again in ref-walk mode.
  492. ``setattr``
  493. called by the VFS to set attributes for a file. This method is
  494. called by chmod(2) and related system calls.
  495. ``getattr``
  496. called by the VFS to get attributes of a file. This method is
  497. called by stat(2) and related system calls.
  498. ``listxattr``
  499. called by the VFS to list all extended attributes for a given
  500. file. This method is called by the listxattr(2) system call.
  501. ``update_time``
  502. called by the VFS to update a specific time or the i_version of
  503. an inode. If this is not defined the VFS will update the inode
  504. itself and call mark_inode_dirty_sync.
  505. ``atomic_open``
  506. called on the last component of an open. Using this optional
  507. method the filesystem can look up, possibly create and open the
  508. file in one atomic operation. If it wants to leave actual
  509. opening to the caller (e.g. if the file turned out to be a
  510. symlink, device, or just something filesystem won't do atomic
  511. open for), it may signal this by returning finish_no_open(file,
  512. dentry). This method is only called if the last component is
  513. negative or needs lookup. Cached positive dentries are still
  514. handled by f_op->open(). If the file was created, FMODE_CREATED
  515. flag should be set in file->f_mode. In case of O_EXCL the
  516. method must only succeed if the file didn't exist and hence
  517. FMODE_CREATED shall always be set on success.
  518. ``tmpfile``
  519. called in the end of O_TMPFILE open(). Optional, equivalent to
  520. atomically creating, opening and unlinking a file in given
  521. directory. On success needs to return with the file already
  522. open; this can be done by calling finish_open_simple() right at
  523. the end.
  524. ``fileattr_get``
  525. called on ioctl(FS_IOC_GETFLAGS) and ioctl(FS_IOC_FSGETXATTR) to
  526. retrieve miscellaneous file flags and attributes. Also called
  527. before the relevant SET operation to check what is being changed
  528. (in this case with i_rwsem locked exclusive). If unset, then
  529. fall back to f_op->ioctl().
  530. ``fileattr_set``
  531. called on ioctl(FS_IOC_SETFLAGS) and ioctl(FS_IOC_FSSETXATTR) to
  532. change miscellaneous file flags and attributes. Callers hold
  533. i_rwsem exclusive. If unset, then fall back to f_op->ioctl().
  534. ``get_offset_ctx``
  535. called to get the offset context for a directory inode. A
  536. filesystem must define this operation to use
  537. simple_offset_dir_operations.
  538. The Address Space Object
  539. ========================
  540. The address space object is used to group and manage pages in the page
  541. cache. It can be used to keep track of the pages in a file (or anything
  542. else) and also track the mapping of sections of the file into process
  543. address spaces.
  544. There are a number of distinct yet related services that an
  545. address-space can provide. These include communicating memory pressure,
  546. page lookup by address, and keeping track of pages tagged as Dirty or
  547. Writeback.
  548. The first can be used independently to the others. The VM can try to
  549. either write dirty pages in order to clean them, or release clean pages
  550. in order to reuse them. To do this it can call the ->writepage method
  551. on dirty pages, and ->release_folio on clean folios with the private
  552. flag set. Clean pages without PagePrivate and with no external references
  553. will be released without notice being given to the address_space.
  554. To achieve this functionality, pages need to be placed on an LRU with
  555. lru_cache_add and mark_page_active needs to be called whenever the page
  556. is used.
  557. Pages are normally kept in a radix tree index by ->index. This tree
  558. maintains information about the PG_Dirty and PG_Writeback status of each
  559. page, so that pages with either of these flags can be found quickly.
  560. The Dirty tag is primarily used by mpage_writepages - the default
  561. ->writepages method. It uses the tag to find dirty pages to call
  562. ->writepage on. If mpage_writepages is not used (i.e. the address
  563. provides its own ->writepages) , the PAGECACHE_TAG_DIRTY tag is almost
  564. unused. write_inode_now and sync_inode do use it (through
  565. __sync_single_inode) to check if ->writepages has been successful in
  566. writing out the whole address_space.
  567. The Writeback tag is used by filemap*wait* and sync_page* functions, via
  568. filemap_fdatawait_range, to wait for all writeback to complete.
  569. An address_space handler may attach extra information to a page,
  570. typically using the 'private' field in the 'struct page'. If such
  571. information is attached, the PG_Private flag should be set. This will
  572. cause various VM routines to make extra calls into the address_space
  573. handler to deal with that data.
  574. An address space acts as an intermediate between storage and
  575. application. Data is read into the address space a whole page at a
  576. time, and provided to the application either by copying of the page, or
  577. by memory-mapping the page. Data is written into the address space by
  578. the application, and then written-back to storage typically in whole
  579. pages, however the address_space has finer control of write sizes.
  580. The read process essentially only requires 'read_folio'. The write
  581. process is more complicated and uses write_begin/write_end or
  582. dirty_folio to write data into the address_space, and writepage and
  583. writepages to writeback data to storage.
  584. Adding and removing pages to/from an address_space is protected by the
  585. inode's i_mutex.
  586. When data is written to a page, the PG_Dirty flag should be set. It
  587. typically remains set until writepage asks for it to be written. This
  588. should clear PG_Dirty and set PG_Writeback. It can be actually written
  589. at any point after PG_Dirty is clear. Once it is known to be safe,
  590. PG_Writeback is cleared.
  591. Writeback makes use of a writeback_control structure to direct the
  592. operations. This gives the writepage and writepages operations some
  593. information about the nature of and reason for the writeback request,
  594. and the constraints under which it is being done. It is also used to
  595. return information back to the caller about the result of a writepage or
  596. writepages request.
  597. Handling errors during writeback
  598. --------------------------------
  599. Most applications that do buffered I/O will periodically call a file
  600. synchronization call (fsync, fdatasync, msync or sync_file_range) to
  601. ensure that data written has made it to the backing store. When there
  602. is an error during writeback, they expect that error to be reported when
  603. a file sync request is made. After an error has been reported on one
  604. request, subsequent requests on the same file descriptor should return
  605. 0, unless further writeback errors have occurred since the previous file
  606. synchronization.
  607. Ideally, the kernel would report errors only on file descriptions on
  608. which writes were done that subsequently failed to be written back. The
  609. generic pagecache infrastructure does not track the file descriptions
  610. that have dirtied each individual page however, so determining which
  611. file descriptors should get back an error is not possible.
  612. Instead, the generic writeback error tracking infrastructure in the
  613. kernel settles for reporting errors to fsync on all file descriptions
  614. that were open at the time that the error occurred. In a situation with
  615. multiple writers, all of them will get back an error on a subsequent
  616. fsync, even if all of the writes done through that particular file
  617. descriptor succeeded (or even if there were no writes on that file
  618. descriptor at all).
  619. Filesystems that wish to use this infrastructure should call
  620. mapping_set_error to record the error in the address_space when it
  621. occurs. Then, after writing back data from the pagecache in their
  622. file->fsync operation, they should call file_check_and_advance_wb_err to
  623. ensure that the struct file's error cursor has advanced to the correct
  624. point in the stream of errors emitted by the backing device(s).
  625. struct address_space_operations
  626. -------------------------------
  627. This describes how the VFS can manipulate mapping of a file to page
  628. cache in your filesystem. The following members are defined:
  629. .. code-block:: c
  630. struct address_space_operations {
  631. int (*writepage)(struct page *page, struct writeback_control *wbc);
  632. int (*read_folio)(struct file *, struct folio *);
  633. int (*writepages)(struct address_space *, struct writeback_control *);
  634. bool (*dirty_folio)(struct address_space *, struct folio *);
  635. void (*readahead)(struct readahead_control *);
  636. int (*write_begin)(struct file *, struct address_space *mapping,
  637. loff_t pos, unsigned len,
  638. struct page **pagep, void **fsdata);
  639. int (*write_end)(struct file *, struct address_space *mapping,
  640. loff_t pos, unsigned len, unsigned copied,
  641. struct folio *folio, void *fsdata);
  642. sector_t (*bmap)(struct address_space *, sector_t);
  643. void (*invalidate_folio) (struct folio *, size_t start, size_t len);
  644. bool (*release_folio)(struct folio *, gfp_t);
  645. void (*free_folio)(struct folio *);
  646. ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *iter);
  647. int (*migrate_folio)(struct mapping *, struct folio *dst,
  648. struct folio *src, enum migrate_mode);
  649. int (*launder_folio) (struct folio *);
  650. bool (*is_partially_uptodate) (struct folio *, size_t from,
  651. size_t count);
  652. void (*is_dirty_writeback)(struct folio *, bool *, bool *);
  653. int (*error_remove_folio)(struct mapping *mapping, struct folio *);
  654. int (*swap_activate)(struct swap_info_struct *sis, struct file *f, sector_t *span)
  655. int (*swap_deactivate)(struct file *);
  656. int (*swap_rw)(struct kiocb *iocb, struct iov_iter *iter);
  657. };
  658. ``writepage``
  659. called by the VM to write a dirty page to backing store. This
  660. may happen for data integrity reasons (i.e. 'sync'), or to free
  661. up memory (flush). The difference can be seen in
  662. wbc->sync_mode. The PG_Dirty flag has been cleared and
  663. PageLocked is true. writepage should start writeout, should set
  664. PG_Writeback, and should make sure the page is unlocked, either
  665. synchronously or asynchronously when the write operation
  666. completes.
  667. If wbc->sync_mode is WB_SYNC_NONE, ->writepage doesn't have to
  668. try too hard if there are problems, and may choose to write out
  669. other pages from the mapping if that is easier (e.g. due to
  670. internal dependencies). If it chooses not to start writeout, it
  671. should return AOP_WRITEPAGE_ACTIVATE so that the VM will not
  672. keep calling ->writepage on that page.
  673. See the file "Locking" for more details.
  674. ``read_folio``
  675. Called by the page cache to read a folio from the backing store.
  676. The 'file' argument supplies authentication information to network
  677. filesystems, and is generally not used by block based filesystems.
  678. It may be NULL if the caller does not have an open file (eg if
  679. the kernel is performing a read for itself rather than on behalf
  680. of a userspace process with an open file).
  681. If the mapping does not support large folios, the folio will
  682. contain a single page. The folio will be locked when read_folio
  683. is called. If the read completes successfully, the folio should
  684. be marked uptodate. The filesystem should unlock the folio
  685. once the read has completed, whether it was successful or not.
  686. The filesystem does not need to modify the refcount on the folio;
  687. the page cache holds a reference count and that will not be
  688. released until the folio is unlocked.
  689. Filesystems may implement ->read_folio() synchronously.
  690. In normal operation, folios are read through the ->readahead()
  691. method. Only if this fails, or if the caller needs to wait for
  692. the read to complete will the page cache call ->read_folio().
  693. Filesystems should not attempt to perform their own readahead
  694. in the ->read_folio() operation.
  695. If the filesystem cannot perform the read at this time, it can
  696. unlock the folio, do whatever action it needs to ensure that the
  697. read will succeed in the future and return AOP_TRUNCATED_PAGE.
  698. In this case, the caller should look up the folio, lock it,
  699. and call ->read_folio again.
  700. Callers may invoke the ->read_folio() method directly, but using
  701. read_mapping_folio() will take care of locking, waiting for the
  702. read to complete and handle cases such as AOP_TRUNCATED_PAGE.
  703. ``writepages``
  704. called by the VM to write out pages associated with the
  705. address_space object. If wbc->sync_mode is WB_SYNC_ALL, then
  706. the writeback_control will specify a range of pages that must be
  707. written out. If it is WB_SYNC_NONE, then a nr_to_write is
  708. given and that many pages should be written if possible. If no
  709. ->writepages is given, then mpage_writepages is used instead.
  710. This will choose pages from the address space that are tagged as
  711. DIRTY and will pass them to ->writepage.
  712. ``dirty_folio``
  713. called by the VM to mark a folio as dirty. This is particularly
  714. needed if an address space attaches private data to a folio, and
  715. that data needs to be updated when a folio is dirtied. This is
  716. called, for example, when a memory mapped page gets modified.
  717. If defined, it should set the folio dirty flag, and the
  718. PAGECACHE_TAG_DIRTY search mark in i_pages.
  719. ``readahead``
  720. Called by the VM to read pages associated with the address_space
  721. object. The pages are consecutive in the page cache and are
  722. locked. The implementation should decrement the page refcount
  723. after starting I/O on each page. Usually the page will be
  724. unlocked by the I/O completion handler. The set of pages are
  725. divided into some sync pages followed by some async pages,
  726. rac->ra->async_size gives the number of async pages. The
  727. filesystem should attempt to read all sync pages but may decide
  728. to stop once it reaches the async pages. If it does decide to
  729. stop attempting I/O, it can simply return. The caller will
  730. remove the remaining pages from the address space, unlock them
  731. and decrement the page refcount. Set PageUptodate if the I/O
  732. completes successfully.
  733. ``write_begin``
  734. Called by the generic buffered write code to ask the filesystem
  735. to prepare to write len bytes at the given offset in the file.
  736. The address_space should check that the write will be able to
  737. complete, by allocating space if necessary and doing any other
  738. internal housekeeping. If the write will update parts of any
  739. basic-blocks on storage, then those blocks should be pre-read
  740. (if they haven't been read already) so that the updated blocks
  741. can be written out properly.
  742. The filesystem must return the locked pagecache folio for the
  743. specified offset, in ``*foliop``, for the caller to write into.
  744. It must be able to cope with short writes (where the length
  745. passed to write_begin is greater than the number of bytes copied
  746. into the folio).
  747. A void * may be returned in fsdata, which then gets passed into
  748. write_end.
  749. Returns 0 on success; < 0 on failure (which is the error code),
  750. in which case write_end is not called.
  751. ``write_end``
  752. After a successful write_begin, and data copy, write_end must be
  753. called. len is the original len passed to write_begin, and
  754. copied is the amount that was able to be copied.
  755. The filesystem must take care of unlocking the folio,
  756. decrementing its refcount, and updating i_size.
  757. Returns < 0 on failure, otherwise the number of bytes (<=
  758. 'copied') that were able to be copied into pagecache.
  759. ``bmap``
  760. called by the VFS to map a logical block offset within object to
  761. physical block number. This method is used by the FIBMAP ioctl
  762. and for working with swap-files. To be able to swap to a file,
  763. the file must have a stable mapping to a block device. The swap
  764. system does not go through the filesystem but instead uses bmap
  765. to find out where the blocks in the file are and uses those
  766. addresses directly.
  767. ``invalidate_folio``
  768. If a folio has private data, then invalidate_folio will be
  769. called when part or all of the folio is to be removed from the
  770. address space. This generally corresponds to either a
  771. truncation, punch hole or a complete invalidation of the address
  772. space (in the latter case 'offset' will always be 0 and 'length'
  773. will be folio_size()). Any private data associated with the folio
  774. should be updated to reflect this truncation. If offset is 0
  775. and length is folio_size(), then the private data should be
  776. released, because the folio must be able to be completely
  777. discarded. This may be done by calling the ->release_folio
  778. function, but in this case the release MUST succeed.
  779. ``release_folio``
  780. release_folio is called on folios with private data to tell the
  781. filesystem that the folio is about to be freed. ->release_folio
  782. should remove any private data from the folio and clear the
  783. private flag. If release_folio() fails, it should return false.
  784. release_folio() is used in two distinct though related cases.
  785. The first is when the VM wants to free a clean folio with no
  786. active users. If ->release_folio succeeds, the folio will be
  787. removed from the address_space and be freed.
  788. The second case is when a request has been made to invalidate
  789. some or all folios in an address_space. This can happen
  790. through the fadvise(POSIX_FADV_DONTNEED) system call or by the
  791. filesystem explicitly requesting it as nfs and 9p do (when they
  792. believe the cache may be out of date with storage) by calling
  793. invalidate_inode_pages2(). If the filesystem makes such a call,
  794. and needs to be certain that all folios are invalidated, then
  795. its release_folio will need to ensure this. Possibly it can
  796. clear the uptodate flag if it cannot free private data yet.
  797. ``free_folio``
  798. free_folio is called once the folio is no longer visible in the
  799. page cache in order to allow the cleanup of any private data.
  800. Since it may be called by the memory reclaimer, it should not
  801. assume that the original address_space mapping still exists, and
  802. it should not block.
  803. ``direct_IO``
  804. called by the generic read/write routines to perform direct_IO -
  805. that is IO requests which bypass the page cache and transfer
  806. data directly between the storage and the application's address
  807. space.
  808. ``migrate_folio``
  809. This is used to compact the physical memory usage. If the VM
  810. wants to relocate a folio (maybe from a memory device that is
  811. signalling imminent failure) it will pass a new folio and an old
  812. folio to this function. migrate_folio should transfer any private
  813. data across and update any references that it has to the folio.
  814. ``launder_folio``
  815. Called before freeing a folio - it writes back the dirty folio.
  816. To prevent redirtying the folio, it is kept locked during the
  817. whole operation.
  818. ``is_partially_uptodate``
  819. Called by the VM when reading a file through the pagecache when
  820. the underlying blocksize is smaller than the size of the folio.
  821. If the required block is up to date then the read can complete
  822. without needing I/O to bring the whole page up to date.
  823. ``is_dirty_writeback``
  824. Called by the VM when attempting to reclaim a folio. The VM uses
  825. dirty and writeback information to determine if it needs to
  826. stall to allow flushers a chance to complete some IO.
  827. Ordinarily it can use folio_test_dirty and folio_test_writeback but
  828. some filesystems have more complex state (unstable folios in NFS
  829. prevent reclaim) or do not set those flags due to locking
  830. problems. This callback allows a filesystem to indicate to the
  831. VM if a folio should be treated as dirty or writeback for the
  832. purposes of stalling.
  833. ``error_remove_folio``
  834. normally set to generic_error_remove_folio if truncation is ok
  835. for this address space. Used for memory failure handling.
  836. Setting this implies you deal with pages going away under you,
  837. unless you have them locked or reference counts increased.
  838. ``swap_activate``
  839. Called to prepare the given file for swap. It should perform
  840. any validation and preparation necessary to ensure that writes
  841. can be performed with minimal memory allocation. It should call
  842. add_swap_extent(), or the helper iomap_swapfile_activate(), and
  843. return the number of extents added. If IO should be submitted
  844. through ->swap_rw(), it should set SWP_FS_OPS, otherwise IO will
  845. be submitted directly to the block device ``sis->bdev``.
  846. ``swap_deactivate``
  847. Called during swapoff on files where swap_activate was
  848. successful.
  849. ``swap_rw``
  850. Called to read or write swap pages when SWP_FS_OPS is set.
  851. The File Object
  852. ===============
  853. A file object represents a file opened by a process. This is also known
  854. as an "open file description" in POSIX parlance.
  855. struct file_operations
  856. ----------------------
  857. This describes how the VFS can manipulate an open file. As of kernel
  858. 4.18, the following members are defined:
  859. .. code-block:: c
  860. struct file_operations {
  861. struct module *owner;
  862. loff_t (*llseek) (struct file *, loff_t, int);
  863. ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
  864. ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
  865. ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
  866. ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
  867. int (*iopoll)(struct kiocb *kiocb, bool spin);
  868. int (*iterate_shared) (struct file *, struct dir_context *);
  869. __poll_t (*poll) (struct file *, struct poll_table_struct *);
  870. long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
  871. long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
  872. int (*mmap) (struct file *, struct vm_area_struct *);
  873. int (*open) (struct inode *, struct file *);
  874. int (*flush) (struct file *, fl_owner_t id);
  875. int (*release) (struct inode *, struct file *);
  876. int (*fsync) (struct file *, loff_t, loff_t, int datasync);
  877. int (*fasync) (int, struct file *, int);
  878. int (*lock) (struct file *, int, struct file_lock *);
  879. unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  880. int (*check_flags)(int);
  881. int (*flock) (struct file *, int, struct file_lock *);
  882. ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
  883. ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
  884. int (*setlease)(struct file *, long, struct file_lock **, void **);
  885. long (*fallocate)(struct file *file, int mode, loff_t offset,
  886. loff_t len);
  887. void (*show_fdinfo)(struct seq_file *m, struct file *f);
  888. #ifndef CONFIG_MMU
  889. unsigned (*mmap_capabilities)(struct file *);
  890. #endif
  891. ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int);
  892. loff_t (*remap_file_range)(struct file *file_in, loff_t pos_in,
  893. struct file *file_out, loff_t pos_out,
  894. loff_t len, unsigned int remap_flags);
  895. int (*fadvise)(struct file *, loff_t, loff_t, int);
  896. };
  897. Again, all methods are called without any locks being held, unless
  898. otherwise noted.
  899. ``llseek``
  900. called when the VFS needs to move the file position index
  901. ``read``
  902. called by read(2) and related system calls
  903. ``read_iter``
  904. possibly asynchronous read with iov_iter as destination
  905. ``write``
  906. called by write(2) and related system calls
  907. ``write_iter``
  908. possibly asynchronous write with iov_iter as source
  909. ``iopoll``
  910. called when aio wants to poll for completions on HIPRI iocbs
  911. ``iterate_shared``
  912. called when the VFS needs to read the directory contents
  913. ``poll``
  914. called by the VFS when a process wants to check if there is
  915. activity on this file and (optionally) go to sleep until there
  916. is activity. Called by the select(2) and poll(2) system calls
  917. ``unlocked_ioctl``
  918. called by the ioctl(2) system call.
  919. ``compat_ioctl``
  920. called by the ioctl(2) system call when 32 bit system calls are
  921. used on 64 bit kernels.
  922. ``mmap``
  923. called by the mmap(2) system call
  924. ``open``
  925. called by the VFS when an inode should be opened. When the VFS
  926. opens a file, it creates a new "struct file". It then calls the
  927. open method for the newly allocated file structure. You might
  928. think that the open method really belongs in "struct
  929. inode_operations", and you may be right. I think it's done the
  930. way it is because it makes filesystems simpler to implement.
  931. The open() method is a good place to initialize the
  932. "private_data" member in the file structure if you want to point
  933. to a device structure
  934. ``flush``
  935. called by the close(2) system call to flush a file
  936. ``release``
  937. called when the last reference to an open file is closed
  938. ``fsync``
  939. called by the fsync(2) system call. Also see the section above
  940. entitled "Handling errors during writeback".
  941. ``fasync``
  942. called by the fcntl(2) system call when asynchronous
  943. (non-blocking) mode is enabled for a file
  944. ``lock``
  945. called by the fcntl(2) system call for F_GETLK, F_SETLK, and
  946. F_SETLKW commands
  947. ``get_unmapped_area``
  948. called by the mmap(2) system call
  949. ``check_flags``
  950. called by the fcntl(2) system call for F_SETFL command
  951. ``flock``
  952. called by the flock(2) system call
  953. ``splice_write``
  954. called by the VFS to splice data from a pipe to a file. This
  955. method is used by the splice(2) system call
  956. ``splice_read``
  957. called by the VFS to splice data from file to a pipe. This
  958. method is used by the splice(2) system call
  959. ``setlease``
  960. called by the VFS to set or release a file lock lease. setlease
  961. implementations should call generic_setlease to record or remove
  962. the lease in the inode after setting it.
  963. ``fallocate``
  964. called by the VFS to preallocate blocks or punch a hole.
  965. ``copy_file_range``
  966. called by the copy_file_range(2) system call.
  967. ``remap_file_range``
  968. called by the ioctl(2) system call for FICLONERANGE and FICLONE
  969. and FIDEDUPERANGE commands to remap file ranges. An
  970. implementation should remap len bytes at pos_in of the source
  971. file into the dest file at pos_out. Implementations must handle
  972. callers passing in len == 0; this means "remap to the end of the
  973. source file". The return value should the number of bytes
  974. remapped, or the usual negative error code if errors occurred
  975. before any bytes were remapped. The remap_flags parameter
  976. accepts REMAP_FILE_* flags. If REMAP_FILE_DEDUP is set then the
  977. implementation must only remap if the requested file ranges have
  978. identical contents. If REMAP_FILE_CAN_SHORTEN is set, the caller is
  979. ok with the implementation shortening the request length to
  980. satisfy alignment or EOF requirements (or any other reason).
  981. ``fadvise``
  982. possibly called by the fadvise64() system call.
  983. Note that the file operations are implemented by the specific
  984. filesystem in which the inode resides. When opening a device node
  985. (character or block special) most filesystems will call special
  986. support routines in the VFS which will locate the required device
  987. driver information. These support routines replace the filesystem file
  988. operations with those for the device driver, and then proceed to call
  989. the new open() method for the file. This is how opening a device file
  990. in the filesystem eventually ends up calling the device driver open()
  991. method.
  992. Directory Entry Cache (dcache)
  993. ==============================
  994. struct dentry_operations
  995. ------------------------
  996. This describes how a filesystem can overload the standard dentry
  997. operations. Dentries and the dcache are the domain of the VFS and the
  998. individual filesystem implementations. Device drivers have no business
  999. here. These methods may be set to NULL, as they are either optional or
  1000. the VFS uses a default. As of kernel 2.6.22, the following members are
  1001. defined:
  1002. .. code-block:: c
  1003. struct dentry_operations {
  1004. int (*d_revalidate)(struct dentry *, unsigned int);
  1005. int (*d_weak_revalidate)(struct dentry *, unsigned int);
  1006. int (*d_hash)(const struct dentry *, struct qstr *);
  1007. int (*d_compare)(const struct dentry *,
  1008. unsigned int, const char *, const struct qstr *);
  1009. int (*d_delete)(const struct dentry *);
  1010. int (*d_init)(struct dentry *);
  1011. void (*d_release)(struct dentry *);
  1012. void (*d_iput)(struct dentry *, struct inode *);
  1013. char *(*d_dname)(struct dentry *, char *, int);
  1014. struct vfsmount *(*d_automount)(struct path *);
  1015. int (*d_manage)(const struct path *, bool);
  1016. struct dentry *(*d_real)(struct dentry *, enum d_real_type type);
  1017. };
  1018. ``d_revalidate``
  1019. called when the VFS needs to revalidate a dentry. This is
  1020. called whenever a name look-up finds a dentry in the dcache.
  1021. Most local filesystems leave this as NULL, because all their
  1022. dentries in the dcache are valid. Network filesystems are
  1023. different since things can change on the server without the
  1024. client necessarily being aware of it.
  1025. This function should return a positive value if the dentry is
  1026. still valid, and zero or a negative error code if it isn't.
  1027. d_revalidate may be called in rcu-walk mode (flags &
  1028. LOOKUP_RCU). If in rcu-walk mode, the filesystem must
  1029. revalidate the dentry without blocking or storing to the dentry,
  1030. d_parent and d_inode should not be used without care (because
  1031. they can change and, in d_inode case, even become NULL under
  1032. us).
  1033. If a situation is encountered that rcu-walk cannot handle,
  1034. return
  1035. -ECHILD and it will be called again in ref-walk mode.
  1036. ``d_weak_revalidate``
  1037. called when the VFS needs to revalidate a "jumped" dentry. This
  1038. is called when a path-walk ends at dentry that was not acquired
  1039. by doing a lookup in the parent directory. This includes "/",
  1040. "." and "..", as well as procfs-style symlinks and mountpoint
  1041. traversal.
  1042. In this case, we are less concerned with whether the dentry is
  1043. still fully correct, but rather that the inode is still valid.
  1044. As with d_revalidate, most local filesystems will set this to
  1045. NULL since their dcache entries are always valid.
  1046. This function has the same return code semantics as
  1047. d_revalidate.
  1048. d_weak_revalidate is only called after leaving rcu-walk mode.
  1049. ``d_hash``
  1050. called when the VFS adds a dentry to the hash table. The first
  1051. dentry passed to d_hash is the parent directory that the name is
  1052. to be hashed into.
  1053. Same locking and synchronisation rules as d_compare regarding
  1054. what is safe to dereference etc.
  1055. ``d_compare``
  1056. called to compare a dentry name with a given name. The first
  1057. dentry is the parent of the dentry to be compared, the second is
  1058. the child dentry. len and name string are properties of the
  1059. dentry to be compared. qstr is the name to compare it with.
  1060. Must be constant and idempotent, and should not take locks if
  1061. possible, and should not or store into the dentry. Should not
  1062. dereference pointers outside the dentry without lots of care
  1063. (eg. d_parent, d_inode, d_name should not be used).
  1064. However, our vfsmount is pinned, and RCU held, so the dentries
  1065. and inodes won't disappear, neither will our sb or filesystem
  1066. module. ->d_sb may be used.
  1067. It is a tricky calling convention because it needs to be called
  1068. under "rcu-walk", ie. without any locks or references on things.
  1069. ``d_delete``
  1070. called when the last reference to a dentry is dropped and the
  1071. dcache is deciding whether or not to cache it. Return 1 to
  1072. delete immediately, or 0 to cache the dentry. Default is NULL
  1073. which means to always cache a reachable dentry. d_delete must
  1074. be constant and idempotent.
  1075. ``d_init``
  1076. called when a dentry is allocated
  1077. ``d_release``
  1078. called when a dentry is really deallocated
  1079. ``d_iput``
  1080. called when a dentry loses its inode (just prior to its being
  1081. deallocated). The default when this is NULL is that the VFS
  1082. calls iput(). If you define this method, you must call iput()
  1083. yourself
  1084. ``d_dname``
  1085. called when the pathname of a dentry should be generated.
  1086. Useful for some pseudo filesystems (sockfs, pipefs, ...) to
  1087. delay pathname generation. (Instead of doing it when dentry is
  1088. created, it's done only when the path is needed.). Real
  1089. filesystems probably dont want to use it, because their dentries
  1090. are present in global dcache hash, so their hash should be an
  1091. invariant. As no lock is held, d_dname() should not try to
  1092. modify the dentry itself, unless appropriate SMP safety is used.
  1093. CAUTION : d_path() logic is quite tricky. The correct way to
  1094. return for example "Hello" is to put it at the end of the
  1095. buffer, and returns a pointer to the first char.
  1096. dynamic_dname() helper function is provided to take care of
  1097. this.
  1098. Example :
  1099. .. code-block:: c
  1100. static char *pipefs_dname(struct dentry *dent, char *buffer, int buflen)
  1101. {
  1102. return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
  1103. dentry->d_inode->i_ino);
  1104. }
  1105. ``d_automount``
  1106. called when an automount dentry is to be traversed (optional).
  1107. This should create a new VFS mount record and return the record
  1108. to the caller. The caller is supplied with a path parameter
  1109. giving the automount directory to describe the automount target
  1110. and the parent VFS mount record to provide inheritable mount
  1111. parameters. NULL should be returned if someone else managed to
  1112. make the automount first. If the vfsmount creation failed, then
  1113. an error code should be returned. If -EISDIR is returned, then
  1114. the directory will be treated as an ordinary directory and
  1115. returned to pathwalk to continue walking.
  1116. If a vfsmount is returned, the caller will attempt to mount it
  1117. on the mountpoint and will remove the vfsmount from its
  1118. expiration list in the case of failure. The vfsmount should be
  1119. returned with 2 refs on it to prevent automatic expiration - the
  1120. caller will clean up the additional ref.
  1121. This function is only used if DCACHE_NEED_AUTOMOUNT is set on
  1122. the dentry. This is set by __d_instantiate() if S_AUTOMOUNT is
  1123. set on the inode being added.
  1124. ``d_manage``
  1125. called to allow the filesystem to manage the transition from a
  1126. dentry (optional). This allows autofs, for example, to hold up
  1127. clients waiting to explore behind a 'mountpoint' while letting
  1128. the daemon go past and construct the subtree there. 0 should be
  1129. returned to let the calling process continue. -EISDIR can be
  1130. returned to tell pathwalk to use this directory as an ordinary
  1131. directory and to ignore anything mounted on it and not to check
  1132. the automount flag. Any other error code will abort pathwalk
  1133. completely.
  1134. If the 'rcu_walk' parameter is true, then the caller is doing a
  1135. pathwalk in RCU-walk mode. Sleeping is not permitted in this
  1136. mode, and the caller can be asked to leave it and call again by
  1137. returning -ECHILD. -EISDIR may also be returned to tell
  1138. pathwalk to ignore d_automount or any mounts.
  1139. This function is only used if DCACHE_MANAGE_TRANSIT is set on
  1140. the dentry being transited from.
  1141. ``d_real``
  1142. overlay/union type filesystems implement this method to return one
  1143. of the underlying dentries of a regular file hidden by the overlay.
  1144. The 'type' argument takes the values D_REAL_DATA or D_REAL_METADATA
  1145. for returning the real underlying dentry that refers to the inode
  1146. hosting the file's data or metadata respectively.
  1147. For non-regular files, the 'dentry' argument is returned.
  1148. Each dentry has a pointer to its parent dentry, as well as a hash list
  1149. of child dentries. Child dentries are basically like files in a
  1150. directory.
  1151. Directory Entry Cache API
  1152. --------------------------
  1153. There are a number of functions defined which permit a filesystem to
  1154. manipulate dentries:
  1155. ``dget``
  1156. open a new handle for an existing dentry (this just increments
  1157. the usage count)
  1158. ``dput``
  1159. close a handle for a dentry (decrements the usage count). If
  1160. the usage count drops to 0, and the dentry is still in its
  1161. parent's hash, the "d_delete" method is called to check whether
  1162. it should be cached. If it should not be cached, or if the
  1163. dentry is not hashed, it is deleted. Otherwise cached dentries
  1164. are put into an LRU list to be reclaimed on memory shortage.
  1165. ``d_drop``
  1166. this unhashes a dentry from its parents hash list. A subsequent
  1167. call to dput() will deallocate the dentry if its usage count
  1168. drops to 0
  1169. ``d_delete``
  1170. delete a dentry. If there are no other open references to the
  1171. dentry then the dentry is turned into a negative dentry (the
  1172. d_iput() method is called). If there are other references, then
  1173. d_drop() is called instead
  1174. ``d_add``
  1175. add a dentry to its parents hash list and then calls
  1176. d_instantiate()
  1177. ``d_instantiate``
  1178. add a dentry to the alias hash list for the inode and updates
  1179. the "d_inode" member. The "i_count" member in the inode
  1180. structure should be set/incremented. If the inode pointer is
  1181. NULL, the dentry is called a "negative dentry". This function
  1182. is commonly called when an inode is created for an existing
  1183. negative dentry
  1184. ``d_lookup``
  1185. look up a dentry given its parent and path name component It
  1186. looks up the child of that given name from the dcache hash
  1187. table. If it is found, the reference count is incremented and
  1188. the dentry is returned. The caller must use dput() to free the
  1189. dentry when it finishes using it.
  1190. Mount Options
  1191. =============
  1192. Parsing options
  1193. ---------------
  1194. On mount and remount the filesystem is passed a string containing a
  1195. comma separated list of mount options. The options can have either of
  1196. these forms:
  1197. option
  1198. option=value
  1199. The <linux/parser.h> header defines an API that helps parse these
  1200. options. There are plenty of examples on how to use it in existing
  1201. filesystems.
  1202. Showing options
  1203. ---------------
  1204. If a filesystem accepts mount options, it must define show_options() to
  1205. show all the currently active options. The rules are:
  1206. - options MUST be shown which are not default or their values differ
  1207. from the default
  1208. - options MAY be shown which are enabled by default or have their
  1209. default value
  1210. Options used only internally between a mount helper and the kernel (such
  1211. as file descriptors), or which only have an effect during the mounting
  1212. (such as ones controlling the creation of a journal) are exempt from the
  1213. above rules.
  1214. The underlying reason for the above rules is to make sure, that a mount
  1215. can be accurately replicated (e.g. umounting and mounting again) based
  1216. on the information found in /proc/mounts.
  1217. Resources
  1218. =========
  1219. (Note some of these resources are not up-to-date with the latest kernel
  1220. version.)
  1221. Creating Linux virtual filesystems. 2002
  1222. <https://lwn.net/Articles/13325/>
  1223. The Linux Virtual File-system Layer by Neil Brown. 1999
  1224. <http://www.cse.unsw.edu.au/~neilb/oss/linux-commentary/vfs.html>
  1225. A tour of the Linux VFS by Michael K. Johnson. 1996
  1226. <https://www.tldp.org/LDP/khg/HyperNews/get/fs/vfstour.html>
  1227. A small trail through the Linux kernel by Andries Brouwer. 2001
  1228. <https://www.win.tue.nl/~aeb/linux/vfs/trail.html>