dax.txt 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Direct Access for files
  2. -----------------------
  3. Motivation
  4. ----------
  5. The page cache is usually used to buffer reads and writes to files.
  6. It is also used to provide the pages which are mapped into userspace
  7. by a call to mmap.
  8. For block devices that are memory-like, the page cache pages would be
  9. unnecessary copies of the original storage. The DAX code removes the
  10. extra copy by performing reads and writes directly to the storage device.
  11. For file mappings, the storage device is mapped directly into userspace.
  12. Usage
  13. -----
  14. If you have a block device which supports DAX, you can make a filesystem
  15. on it as usual. The DAX code currently only supports files with a block
  16. size equal to your kernel's PAGE_SIZE, so you may need to specify a block
  17. size when creating the filesystem. When mounting it, use the "-o dax"
  18. option on the command line or add 'dax' to the options in /etc/fstab.
  19. Implementation Tips for Block Driver Writers
  20. --------------------------------------------
  21. To support DAX in your block driver, implement the 'direct_access'
  22. block device operation. It is used to translate the sector number
  23. (expressed in units of 512-byte sectors) to a page frame number (pfn)
  24. that identifies the physical page for the memory. It also returns a
  25. kernel virtual address that can be used to access the memory.
  26. The direct_access method takes a 'size' parameter that indicates the
  27. number of bytes being requested. The function should return the number
  28. of bytes that can be contiguously accessed at that offset. It may also
  29. return a negative errno if an error occurs.
  30. In order to support this method, the storage must be byte-accessible by
  31. the CPU at all times. If your device uses paging techniques to expose
  32. a large amount of memory through a smaller window, then you cannot
  33. implement direct_access. Equally, if your device can occasionally
  34. stall the CPU for an extended period, you should also not attempt to
  35. implement direct_access.
  36. These block devices may be used for inspiration:
  37. - axonram: Axon DDR2 device driver
  38. - brd: RAM backed block device driver
  39. - dcssblk: s390 dcss block device driver
  40. - pmem: NVDIMM persistent memory driver
  41. Implementation Tips for Filesystem Writers
  42. ------------------------------------------
  43. Filesystem support consists of
  44. - adding support to mark inodes as being DAX by setting the S_DAX flag in
  45. i_flags
  46. - implementing ->read_iter and ->write_iter operations which use dax_iomap_rw()
  47. when inode has S_DAX flag set
  48. - implementing an mmap file operation for DAX files which sets the
  49. VM_MIXEDMAP and VM_HUGEPAGE flags on the VMA, and setting the vm_ops to
  50. include handlers for fault, pmd_fault, page_mkwrite, pfn_mkwrite. These
  51. handlers should probably call dax_iomap_fault() passing the appropriate
  52. fault size and iomap operations.
  53. - calling iomap_zero_range() passing appropriate iomap operations instead of
  54. block_truncate_page() for DAX files
  55. - ensuring that there is sufficient locking between reads, writes,
  56. truncates and page faults
  57. The iomap handlers for allocating blocks must make sure that allocated blocks
  58. are zeroed out and converted to written extents before being returned to avoid
  59. exposure of uninitialized data through mmap.
  60. These filesystems may be used for inspiration:
  61. - ext2: see Documentation/filesystems/ext2.txt
  62. - ext4: see Documentation/filesystems/ext4.txt
  63. - xfs: see Documentation/filesystems/xfs.txt
  64. Handling Media Errors
  65. ---------------------
  66. The libnvdimm subsystem stores a record of known media error locations for
  67. each pmem block device (in gendisk->badblocks). If we fault at such location,
  68. or one with a latent error not yet discovered, the application can expect
  69. to receive a SIGBUS. Libnvdimm also allows clearing of these errors by simply
  70. writing the affected sectors (through the pmem driver, and if the underlying
  71. NVDIMM supports the clear_poison DSM defined by ACPI).
  72. Since DAX IO normally doesn't go through the driver/bio path, applications or
  73. sysadmins have an option to restore the lost data from a prior backup/inbuilt
  74. redundancy in the following ways:
  75. 1. Delete the affected file, and restore from a backup (sysadmin route):
  76. This will free the file system blocks that were being used by the file,
  77. and the next time they're allocated, they will be zeroed first, which
  78. happens through the driver, and will clear bad sectors.
  79. 2. Truncate or hole-punch the part of the file that has a bad-block (at least
  80. an entire aligned sector has to be hole-punched, but not necessarily an
  81. entire filesystem block).
  82. These are the two basic paths that allow DAX filesystems to continue operating
  83. in the presence of media errors. More robust error recovery mechanisms can be
  84. built on top of this in the future, for example, involving redundancy/mirroring
  85. provided at the block layer through DM, or additionally, at the filesystem
  86. level. These would have to rely on the above two tenets, that error clearing
  87. can happen either by sending an IO through the driver, or zeroing (also through
  88. the driver).
  89. Shortcomings
  90. ------------
  91. Even if the kernel or its modules are stored on a filesystem that supports
  92. DAX on a block device that supports DAX, they will still be copied into RAM.
  93. The DAX code does not work correctly on architectures which have virtually
  94. mapped caches such as ARM, MIPS and SPARC.
  95. Calling get_user_pages() on a range of user memory that has been mmaped
  96. from a DAX file will fail when there are no 'struct page' to describe
  97. those pages. This problem has been addressed in some device drivers
  98. by adding optional struct page support for pages under the control of
  99. the driver (see CONFIG_NVDIMM_PFN in drivers/nvdimm for an example of
  100. how to do this). In the non struct page cases O_DIRECT reads/writes to
  101. those memory ranges from a non-DAX file will fail (note that O_DIRECT
  102. reads/writes _of a DAX file_ do work, it is the memory that is being
  103. accessed that is key here). Other things that will not work in the
  104. non struct page case include RDMA, sendfile() and splice().