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.

161 lines
7.2 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2015-02-05
  4. # NAME
  5. mergerfs - another FUSE union filesystem
  6. # SYNOPSIS
  7. mergerfs -ocreate=epmfs,search=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. | create | epmfs |
  17. ###srcpoints###
  18. 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).
  19. ```
  20. $ mergerfs /mnt/disk*:/mnt/cdrom /media/drives
  21. ```
  22. The above line will use all points in /mnt prefixed with *disk* and the directory *cdrom*.
  23. In /etc/fstab it'd look like the following:
  24. ```
  25. # <file system> <mount point> <type> <options> <dump> <pass>
  26. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs allow_other 0 0
  27. ```
  28. **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.
  29. # POLICIES
  30. Filesystem calls are broken up into 2 categories: search 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**.
  31. #### Functional classifications ####
  32. | Class | FUSE calls |
  33. |-------|------------|
  34. | search | access, getattr, getxattr, listxattr, open, readlink, chmod, link, removexattr, rmdir, setxattr, truncate, unlink, utimens |
  35. | create | create, mkdir, mknod |
  36. | none | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, rename, statfs, symlink, write, release |
  37. #### Policy descriptions ####
  38. | Policy | Description |
  39. |--------------|-------------|
  40. | ff (first found) | Given the order of the paths act on the first one found (regardless if stat would return EACCES). |
  41. | 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). |
  42. | newest (newest file) | If multiple files exist return the one with the most recent mtime. |
  43. | 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. |
  44. | 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. |
  45. | rand (random) | Pick an existing destination at random. |
  46. #### readdir ####
  47. [readdir](http://linux.die.net/man/3/readdir) is very different from most functions in this realm. It certainly could have it's own set of policies to tweak its behavior. At this time it provides a simple `first found` merging of directories and file found. That is: only the first file or directory found for a directory is returned.
  48. It could be extended to offer the ability to see all files found. Perhaps concatinating `#` and a number to the name. But to really be useful you'd need to be able to access them which would complicate file lookup.
  49. #### statvfs ####
  50. [statvfs](http://linux.die.net/man/2/statvfs) 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.
  51. **NOTE:** Since we can not (easily) replicate the atomicity of an `mkdir` or `mknod` without side effects those calls will first do a scan to see if the file exists and then attempts a create. This means there is a slight race condition. Worse case you'd end up with the directory or file on more than one mount.
  52. # BUILDING
  53. * Need to install FUSE development libraries (libfuse-dev).
  54. * Optionally need libattr1 (libattr1-dev).
  55. ```
  56. [trapexit:~/dev/mergerfs] $ make help
  57. usage: make
  58. make XATTR_AVAILABLE=0 - to build program without xattrs functionality (auto discovered otherwise)
  59. ```
  60. # Runtime Settings
  61. #### /.mergerfs pseudo file ####
  62. ```
  63. <mountpoint>/.mergerfs
  64. ```
  65. 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.
  66. Even if xattrs are disabled the [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls will still work.
  67. The keys are:
  68. * user.mergerfs.srcmounts
  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.create: epmfs
  75. user.mergerfs.search: ff
  76. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.search .mergerfs
  77. ff
  78. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.search ffwp .mergerfs
  79. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.search .mergerfs
  80. ffwp
  81. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts +/tmp/c .mergerfs
  82. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  83. /tmp/a:/tmp/b:/tmp/c
  84. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts =/tmp/c .mergerfs
  85. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  86. /tmp/c
  87. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts '+</tmp/a:/tmp/b' .mergerfs
  88. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  89. /tmp/a:/tmp/b:/tmp/c
  90. ```
  91. 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.
  92. | Instruction | Description |
  93. |--------------|-------------|
  94. | +[list] | append |
  95. | +<[list] | prepend |
  96. | +>[list] | append |
  97. | -[list] | remove all values provided |
  98. | -< | remove first in list |
  99. | -> | remove last in list |
  100. | =[list] | set |
  101. | [list] | set |
  102. #### mergerfs file xattrs ####
  103. 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:
  104. * user.mergerfs.basepath : gives you the base mount point for the file given the current search policy
  105. * user.mergerfs.fullpath : gives you the full path of the original file given the search policy
  106. ```
  107. [trapexit:/tmp/mount] $ ls
  108. A B C
  109. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.fullpath A
  110. /mnt/a/full/path/to/A
  111. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.basepath A
  112. /mnt/a
  113. ```