dax.rst 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. =======================
  2. Direct Access for files
  3. =======================
  4. Motivation
  5. ----------
  6. The page cache is usually used to buffer reads and writes to files.
  7. It is also used to provide the pages which are mapped into userspace
  8. by a call to mmap.
  9. For block devices that are memory-like, the page cache pages would be
  10. unnecessary copies of the original storage. The `DAX` code removes the
  11. extra copy by performing reads and writes directly to the storage device.
  12. For file mappings, the storage device is mapped directly into userspace.
  13. Usage
  14. -----
  15. If you have a block device which supports `DAX`, you can make a filesystem
  16. on it as usual. The `DAX` code currently only supports files with a block
  17. size equal to your kernel's `PAGE_SIZE`, so you may need to specify a block
  18. size when creating the filesystem.
  19. Currently 5 filesystems support `DAX`: ext2, ext4, xfs, virtiofs and erofs.
  20. Enabling `DAX` on them is different.
  21. Enabling DAX on ext2 and erofs
  22. ------------------------------
  23. When mounting the filesystem, use the ``-o dax`` option on the command line or
  24. add 'dax' to the options in ``/etc/fstab``. This works to enable `DAX` on all files
  25. within the filesystem. It is equivalent to the ``-o dax=always`` behavior below.
  26. Enabling DAX on xfs and ext4
  27. ----------------------------
  28. Summary
  29. -------
  30. 1. There exists an in-kernel file access mode flag `S_DAX` that corresponds to
  31. the statx flag `STATX_ATTR_DAX`. See the manpage for statx(2) for details
  32. about this access mode.
  33. 2. There exists a persistent flag `FS_XFLAG_DAX` that can be applied to regular
  34. files and directories. This advisory flag can be set or cleared at any
  35. time, but doing so does not immediately affect the `S_DAX` state.
  36. 3. If the persistent `FS_XFLAG_DAX` flag is set on a directory, this flag will
  37. be inherited by all regular files and subdirectories that are subsequently
  38. created in this directory. Files and subdirectories that exist at the time
  39. this flag is set or cleared on the parent directory are not modified by
  40. this modification of the parent directory.
  41. 4. There exist dax mount options which can override `FS_XFLAG_DAX` in the
  42. setting of the `S_DAX` flag. Given underlying storage which supports `DAX` the
  43. following hold:
  44. ``-o dax=inode`` means "follow `FS_XFLAG_DAX`" and is the default.
  45. ``-o dax=never`` means "never set `S_DAX`, ignore `FS_XFLAG_DAX`."
  46. ``-o dax=always`` means "always set `S_DAX` ignore `FS_XFLAG_DAX`."
  47. ``-o dax`` is a legacy option which is an alias for ``dax=always``.
  48. .. warning::
  49. The option ``-o dax`` may be removed in the future so ``-o dax=always`` is
  50. the preferred method for specifying this behavior.
  51. .. note::
  52. Modifications to and the inheritance behavior of `FS_XFLAG_DAX` remain
  53. the same even when the filesystem is mounted with a dax option. However,
  54. in-core inode state (`S_DAX`) will be overridden until the filesystem is
  55. remounted with dax=inode and the inode is evicted from kernel memory.
  56. 5. The `S_DAX` policy can be changed via:
  57. a) Setting the parent directory `FS_XFLAG_DAX` as needed before files are
  58. created
  59. b) Setting the appropriate dax="foo" mount option
  60. c) Changing the `FS_XFLAG_DAX` flag on existing regular files and
  61. directories. This has runtime constraints and limitations that are
  62. described in 6) below.
  63. 6. When changing the `S_DAX` policy via toggling the persistent `FS_XFLAG_DAX`
  64. flag, the change to existing regular files won't take effect until the
  65. files are closed by all processes.
  66. Details
  67. -------
  68. There are 2 per-file dax flags. One is a persistent inode setting (`FS_XFLAG_DAX`)
  69. and the other is a volatile flag indicating the active state of the feature
  70. (`S_DAX`).
  71. `FS_XFLAG_DAX` is preserved within the filesystem. This persistent config
  72. setting can be set, cleared and/or queried using the `FS_IOC_FS`[`GS`]`ETXATTR` ioctl
  73. (see ioctl_xfs_fsgetxattr(2)) or an utility such as 'xfs_io'.
  74. New files and directories automatically inherit `FS_XFLAG_DAX` from
  75. their parent directory **when created**. Therefore, setting `FS_XFLAG_DAX` at
  76. directory creation time can be used to set a default behavior for an entire
  77. sub-tree.
  78. To clarify inheritance, here are 3 examples:
  79. Example A:
  80. .. code-block:: shell
  81. mkdir -p a/b/c
  82. xfs_io -c 'chattr +x' a
  83. mkdir a/b/c/d
  84. mkdir a/e
  85. ------[outcome]------
  86. dax: a,e
  87. no dax: b,c,d
  88. Example B:
  89. .. code-block:: shell
  90. mkdir a
  91. xfs_io -c 'chattr +x' a
  92. mkdir -p a/b/c/d
  93. ------[outcome]------
  94. dax: a,b,c,d
  95. no dax:
  96. Example C:
  97. .. code-block:: shell
  98. mkdir -p a/b/c
  99. xfs_io -c 'chattr +x' c
  100. mkdir a/b/c/d
  101. ------[outcome]------
  102. dax: c,d
  103. no dax: a,b
  104. The current enabled state (`S_DAX`) is set when a file inode is instantiated in
  105. memory by the kernel. It is set based on the underlying media support, the
  106. value of `FS_XFLAG_DAX` and the filesystem's dax mount option.
  107. statx can be used to query `S_DAX`.
  108. .. note::
  109. That only regular files will ever have `S_DAX` set and therefore statx
  110. will never indicate that `S_DAX` is set on directories.
  111. Setting the `FS_XFLAG_DAX` flag (specifically or through inheritance) occurs even
  112. if the underlying media does not support dax and/or the filesystem is
  113. overridden with a mount option.
  114. Enabling DAX on virtiofs
  115. ----------------------------
  116. The semantic of DAX on virtiofs is basically equal to that on ext4 and xfs,
  117. except that when '-o dax=inode' is specified, virtiofs client derives the hint
  118. whether DAX shall be enabled or not from virtiofs server through FUSE protocol,
  119. rather than the persistent `FS_XFLAG_DAX` flag. That is, whether DAX shall be
  120. enabled or not is completely determined by virtiofs server, while virtiofs
  121. server itself may deploy various algorithm making this decision, e.g. depending
  122. on the persistent `FS_XFLAG_DAX` flag on the host.
  123. It is still supported to set or clear persistent `FS_XFLAG_DAX` flag inside
  124. guest, but it is not guaranteed that DAX will be enabled or disabled for
  125. corresponding file then. Users inside guest still need to call statx(2) and
  126. check the statx flag `STATX_ATTR_DAX` to see if DAX is enabled for this file.
  127. Implementation Tips for Block Driver Writers
  128. --------------------------------------------
  129. To support `DAX` in your block driver, implement the 'direct_access'
  130. block device operation. It is used to translate the sector number
  131. (expressed in units of 512-byte sectors) to a page frame number (pfn)
  132. that identifies the physical page for the memory. It also returns a
  133. kernel virtual address that can be used to access the memory.
  134. The direct_access method takes a 'size' parameter that indicates the
  135. number of bytes being requested. The function should return the number
  136. of bytes that can be contiguously accessed at that offset. It may also
  137. return a negative errno if an error occurs.
  138. In order to support this method, the storage must be byte-accessible by
  139. the CPU at all times. If your device uses paging techniques to expose
  140. a large amount of memory through a smaller window, then you cannot
  141. implement direct_access. Equally, if your device can occasionally
  142. stall the CPU for an extended period, you should also not attempt to
  143. implement direct_access.
  144. These block devices may be used for inspiration:
  145. - brd: RAM backed block device driver
  146. - dcssblk: s390 dcss block device driver
  147. - pmem: NVDIMM persistent memory driver
  148. Implementation Tips for Filesystem Writers
  149. ------------------------------------------
  150. Filesystem support consists of:
  151. * Adding support to mark inodes as being `DAX` by setting the `S_DAX` flag in
  152. i_flags
  153. * Implementing ->read_iter and ->write_iter operations which use
  154. :c:func:`dax_iomap_rw()` when inode has `S_DAX` flag set
  155. * Implementing an mmap file operation for `DAX` files which sets the
  156. `VM_MIXEDMAP` and `VM_HUGEPAGE` flags on the `VMA`, and setting the vm_ops to
  157. include handlers for fault, pmd_fault, page_mkwrite, pfn_mkwrite. These
  158. handlers should probably call :c:func:`dax_iomap_fault()` passing the
  159. appropriate fault size and iomap operations.
  160. * Calling :c:func:`iomap_zero_range()` passing appropriate iomap operations
  161. instead of :c:func:`block_truncate_page()` for `DAX` files
  162. * Ensuring that there is sufficient locking between reads, writes,
  163. truncates and page faults
  164. The iomap handlers for allocating blocks must make sure that allocated blocks
  165. are zeroed out and converted to written extents before being returned to avoid
  166. exposure of uninitialized data through mmap.
  167. These filesystems may be used for inspiration:
  168. .. seealso::
  169. ext2: see Documentation/filesystems/ext2.rst
  170. .. seealso::
  171. xfs: see Documentation/admin-guide/xfs.rst
  172. .. seealso::
  173. ext4: see Documentation/filesystems/ext4/
  174. Handling Media Errors
  175. ---------------------
  176. The libnvdimm subsystem stores a record of known media error locations for
  177. each pmem block device (in gendisk->badblocks). If we fault at such location,
  178. or one with a latent error not yet discovered, the application can expect
  179. to receive a `SIGBUS`. Libnvdimm also allows clearing of these errors by simply
  180. writing the affected sectors (through the pmem driver, and if the underlying
  181. NVDIMM supports the clear_poison DSM defined by ACPI).
  182. Since `DAX` IO normally doesn't go through the ``driver/bio`` path, applications or
  183. sysadmins have an option to restore the lost data from a prior ``backup/inbuilt``
  184. redundancy in the following ways:
  185. 1. Delete the affected file, and restore from a backup (sysadmin route):
  186. This will free the filesystem blocks that were being used by the file,
  187. and the next time they're allocated, they will be zeroed first, which
  188. happens through the driver, and will clear bad sectors.
  189. 2. Truncate or hole-punch the part of the file that has a bad-block (at least
  190. an entire aligned sector has to be hole-punched, but not necessarily an
  191. entire filesystem block).
  192. These are the two basic paths that allow `DAX` filesystems to continue operating
  193. in the presence of media errors. More robust error recovery mechanisms can be
  194. built on top of this in the future, for example, involving redundancy/mirroring
  195. provided at the block layer through DM, or additionally, at the filesystem
  196. level. These would have to rely on the above two tenets, that error clearing
  197. can happen either by sending an IO through the driver, or zeroing (also through
  198. the driver).
  199. Shortcomings
  200. ------------
  201. Even if the kernel or its modules are stored on a filesystem that supports
  202. `DAX` on a block device that supports `DAX`, they will still be copied into RAM.
  203. The DAX code does not work correctly on architectures which have virtually
  204. mapped caches such as ARM, MIPS and SPARC.
  205. Calling :c:func:`get_user_pages()` on a range of user memory that has been
  206. mmapped from a `DAX` file will fail when there are no 'struct page' to describe
  207. those pages. This problem has been addressed in some device drivers
  208. by adding optional struct page support for pages under the control of
  209. the driver (see `CONFIG_NVDIMM_PFN` in ``drivers/nvdimm`` for an example of
  210. how to do this). In the non struct page cases `O_DIRECT` reads/writes to
  211. those memory ranges from a non-`DAX` file will fail
  212. .. note::
  213. `O_DIRECT` reads/writes _of a `DAX` file do work, it is the memory that
  214. is being accessed that is key here). Other things that will not work in
  215. the non struct page case include RDMA, :c:func:`sendfile()` and
  216. :c:func:`splice()`.