You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

159 lines
6.7 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % June 9, 2014
  4. # NAME
  5. mergerfs - another FUSE union filesystem
  6. # SYNOPSIS
  7. mergerfs -ocreate=epmfs,search=ff,action=ff &lt;srcpoints&gt; &lt;mountpoint&gt;
  8. # DESCRIPTION
  9. mergerfs is similar to mhddfs, unionfs, and aufs. Like mhddfs in that it too uses FUSE. Like aufs in that it provides multiple policies for how to handle behavior.
  10. Why create mergerfs when those exist? mhddfs isn't really maintained or flexible. There are also issues with running as root. aufs is more flexible but contains some hard to debug inconsistencies in behavior. Neither support file attributes ([chattr](http://linux.die.net/man/1/chattr)).
  11. # OPTIONS
  12. ###options###
  13. | Option | Default |
  14. |--------|--------|
  15. | search | ff |
  16. | action | ff |
  17. | create | epmfs |
  18. ###srcpoints###
  19. The source points argument is a colon (':') delimited list of paths. To make it simplier to include multiple source points without having to modify your [fstab](http://linux.die.net/man/5/fstab) we also support [globbing](http://linux.die.net/man/7/glob).
  20. ```
  21. $ mergerfs /mnt/disk*:/mnt/cdrom /media/drives
  22. ```
  23. The above line will use all points in /mnt prefixed with *disk* and the directory *cdrom*.
  24. In /etc/fstab it'd look like the following:
  25. ```
  26. # <file system> <mount point> <type> <options> <dump> <pass>
  27. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs allow_other 0 0
  28. ```
  29. **NOTE:** the globbing is done at mount time. If a new directory is added matching the glob after the fact it will not be included.
  30. # POLICIES
  31. Filesystem calls are broken up into 3 categories: search, action, and create. There are also some calls which have no policy attached due to state being kept between calls. These categories can be assigned a policy which dictates how [mergerfs](http://github.com/trapexit/mergerfs) behaves. Any policy can be assigned to a category though some aren't terribly practical. For instance: rand (Random) may be useful for **create** but could lead to very odd behavior if used for **search** or **action**.
  32. #### Functional classifications ####
  33. | Class | FUSE calls |
  34. |-------|------------|
  35. | search | access, getattr, getxattr, listxattr, open, readlink |
  36. | action | chmod, link, removexattr, rmdir, setxattr, truncate, unlink, utimens |
  37. | create | create, mkdir, mknod |
  38. | none | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, rename, statfs, symlink, write, release |
  39. #### Policy descriptions ####
  40. | Policy | Description |
  41. |--------------|-------------|
  42. | ff (first found) | Given the order of the paths act on the first one found (regardless if stat would return EACCES). |
  43. | ffwp (first found w/ permissions) | Given the order of the paths act on the first one found which you have access (stat does not error with EACCES). |
  44. | newest (newest file) | If multiple files exist return the one with the most recent mtime. |
  45. | mfs (most free space) | Assuming the path is found to exist (ENOENT would not be returned) use the drive with the most free space available. |
  46. | epmfs (existing path, most free space) | If the path exists in multiple locations use the one with the most free space. Otherwise fall back to mfs. |
  47. | rand (random) | Pick an existing destination at random. |
  48. #### statvfs ####
  49. It normalizes the source drives based on the fragment size and sums the number of adjusted blocks and inodes. This means you will see the combined space of all sources. Total, used, and free. The sources however are dedupped based on the drive so multiple points on the same drive will not result in double counting it's space.
  50. **NOTE:** create is really a search for existence and then create. The 'search' policy applies to the first part. If the [dirname](http://linux.die.net/man/3/dirname) of the full path is not found to exist [ENOENT](http://linux.die.net/man/3/errno) is returned.
  51. # BUILDING
  52. * Need to install FUSE development libraries (libfuse-dev).
  53. * Optionally need libattr1 (libattr1-dev).
  54. ```
  55. [trapexit:~/dev/mergerfs] $ make help
  56. usage: make
  57. make XATTR_AVAILABLE=0 - to build program without xattrs functionality (auto discovered otherwise)
  58. ```
  59. # Runtime Settings
  60. #### /.mergerfs pseudo file ####
  61. ```
  62. <mountpoint>/.mergerfs
  63. ```
  64. There is a pseudo file available at the mountpoint which allows for the runtime modification of certain mergerfs options. The file will not show up in readdirs but can be stat'ed and manipulated via [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls.
  65. Even if xattrs are disabled the [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls will still work.
  66. The keys are:
  67. * user.mergerfs.srcmounts
  68. * user.mergerfs.action
  69. * user.mergerfs.create
  70. * user.mergerfs.search
  71. ```
  72. [trapexit:/tmp/mount] $ xattr -l .mergerfs
  73. user.mergerfs.srcmounts: /tmp/a:/tmp/b
  74. user.mergerfs.action: ff
  75. user.mergerfs.create: epmfs
  76. user.mergerfs.search: ff
  77. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.action .mergerfs
  78. ff
  79. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.action ffwp .mergerfs
  80. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.action .mergerfs
  81. ffwp
  82. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts +/tmp/c .mergerfs
  83. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  84. /tmp/a:/tmp/b:/tmp/c
  85. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts =/tmp/c .mergerfs
  86. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  87. /tmp/c
  88. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts '+</tmp/a:/tmp/b' .mergerfs
  89. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  90. /tmp/a:/tmp/b:/tmp/c
  91. ```
  92. For **user.mergerfs.srcmounts** there are several instructions available for manipulating the list. The value provided is just as the value used at mount time. A colon (':') delimited list of full path globs.
  93. | Instruction | Description |
  94. |--------------|-------------|
  95. | +[list] | append |
  96. | +<[list] | prepend |
  97. | +>[list] | append |
  98. | -[list] | remove all values provided |
  99. | -< | remove first in list |
  100. | -> | remove last in list |
  101. | =[list] | set |
  102. | [list] | set |
  103. #### mergerfs file xattrs ####
  104. While they won't show up when using [listxattr](http://linux.die.net/man/2/listxattr) mergerfs offers a number of special xattrs to query information about the files served. To access the values you will need to issue a [getxattr](http://linux.die.net/man/2/getxattr) for one of the following:
  105. * user.mergerfs.basepath : gives you the base mount point for the file given the current search policy
  106. * user.mergerfs.fullpath : gives you the full path of the original file given the search policy
  107. ```
  108. [trapexit:/tmp/mount] $ ls
  109. A B C
  110. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.fullpath A
  111. /mnt/a/full/path/to/A
  112. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.basepath A
  113. /mnt/a
  114. ```