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.

363 lines
24 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2016-01-12
  4. # NAME
  5. mergerfs - another FUSE union filesystem
  6. # SYNOPSIS
  7. mergerfs -o&lt;options&gt; &lt;srcmounts&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 **mergerfs** when those exist? **mhddfs** has not been updated in some time nor very flexible. There are also security issues when with running as root. **aufs** is more flexible than **mhddfs** but kernel based and difficult to debug when problems arise. Neither support file attributes ([chattr](http://linux.die.net/man/1/chattr)).
  11. # FEATURES
  12. * Runs in userspace (FUSE)
  13. * Configurable behaviors
  14. * Supports extended attributes (xattrs)
  15. * Supports file attributes (chattr)
  16. * Dynamically configurable (via xattrs)
  17. * Safe to run as root
  18. * Opportunistic credential caching
  19. * Works with heterogeneous filesystem types
  20. # OPTIONS
  21. ###options###
  22. * **defaults**: a shortcut for FUSE's **atomic_o_trunc**, **auto_cache**, **big_writes**, **default_permissions**, **splice_move**, **splice_read**, and **splice_write**. These options seem to provide the best performance.
  23. * **direct_io**: causes FUSE to bypass an addition caching step which can increase write speeds at the detriment of read speed.
  24. * **minfreespace**: the minimum space value used for the **lfs**, **fwfs**, and **epmfs** policies. Understands 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte respectively. (default: 4G)
  25. * **moveonenospc**: when enabled (set to **true**) if a **write** fails with **ENOSPC** a scan of all drives will be done looking for the drive with most free space which is at least the size of the file plus the amount which failed to write. An attempt to move the file to that drive will occur (keeping all metadata possible) and if successful the original is unlinked and the write retried. (default: false)
  26. * **func.&lt;func&gt;=&lt;policy&gt;**: sets the specific FUSE function's policy. See below for the list of value types. Example: **func.getattr=newest**
  27. * **category.&lt;category&gt;=&lt;policy&gt;**: Sets policy of all FUSE functions in the provided category. Example: **category.create=mfs**
  28. **NOTE:** Options are evaluated in the order listed so if the options are **func.rmdir=rand,category.action=ff** the **action** category setting will override the **rmdir** setting.
  29. ###srcmounts###
  30. The source mounts argument is a colon (':') delimited list of paths. To make it simpler to include multiple source mounts without having to modify your [fstab](http://linux.die.net/man/5/fstab) we also support [globbing](http://linux.die.net/man/7/glob). **The globbing tokens MUST be escaped when using via the shell else the shell itself will probably expand it.**
  31. ```
  32. $ mergerfs /mnt/disk\*:/mnt/cdrom /media/drives
  33. ```
  34. The above line will use all mount points in /mnt prefixed with *disk* and the directory *cdrom*.
  35. In /etc/fstab it'd look like the following:
  36. ```
  37. # <file system> <mount point> <type> <options> <dump> <pass>
  38. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs defaults,allow_other 0 0
  39. ```
  40. **NOTE:** the globbing is done at mount or xattr update time. If a new directory is added matching the glob after the fact it will not be included.
  41. # POLICIES
  42. Filesystem calls are broken up into 3 categories: **action**, **create**, **search**. 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** 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**.
  43. #### Functional classifications ####
  44. | Category | FUSE Functions |
  45. |----------|----------------|
  46. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  47. | create | create, mkdir, mknod, symlink |
  48. | search | access, getattr, getxattr, ioctl, listxattr, open, readlink |
  49. | N/A | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, release, statfs, write |
  50. **ioctl** behaves differently if its acting on a directory. It'll use the **getattr** policy to find and open the directory before issuing the **ioctl**. In other cases where something may be searched (to confirm a directory exists across all source mounts) then **getattr** will be used.
  51. #### Policy descriptions ####
  52. | Policy | Description |
  53. |--------------|-------------|
  54. | ff (first found) | Given the order of the drives act on the first one found (regardless if stat would return EACCES). |
  55. | ffwp (first found w/ permissions) | Given the order of the drives act on the first one found which you have access (stat does not error with EACCES). |
  56. | newest (newest file) | If multiple files exist return the one with the most recent mtime. |
  57. | mfs (most free space) | Use the drive with the most free space available. |
  58. | epmfs (existing path, most free space) | If the path exists on multiple drives use the one with the most free space and is greater than **minfreespace**. If no drive has at least **minfreespace** then fallback to **mfs**. |
  59. | fwfs (first with free space) | Pick the first drive which has at least **minfreespace**. |
  60. | lfs (least free space) | Pick the drive with least available space but more than **minfreespace**. |
  61. | rand (random) | Pick an existing drive at random. |
  62. | all | Applies action to all found. For searches it will behave like first found **ff**. |
  63. | enosys, einval, enotsup, exdev, erofs | Exclusively return `-1` with `errno` set to the respective value. Useful for debugging other applications' behavior to errors. |
  64. #### Defaults ####
  65. | Category | Policy |
  66. |----------|--------|
  67. | action | all |
  68. | create | epmfs |
  69. | search | ff |
  70. #### rename ####
  71. [rename](http://man7.org/linux/man-pages/man2/rename.2.html) is a tricky function in a merged system. Normally if a rename can't be done atomically due to the source and destination paths existing on different mount points it will return `-1` with `errno = EXDEV`. The atomic rename is most critical for replacing files in place atomically (such as securing writing to a temp file and then replacing a target). The problem is that by merging multiple paths you can have N instances of the source and destinations on different drives. This can lead to several undesirable situtations with or without errors and it's not entirely obvious what to do when an error occurs.
  72. Originally mergerfs would return EXDEV whenever a rename was requested which was cross directory in any way. This made the code simple and was technically complient with POSIX requirements. However, many applications fail to handle EXDEV at all and treat it as a normal error or they only partially support EXDEV (don't respond the same as `mv` would). Such apps include: gvfsd-fuse v1.20.3 and prior, Finder / CIFS/SMB client in Apple OSX 10.9+, NZBGet, Samba's recycling bin feature.
  73. * If using a policy which tries to preserve directories (epmfs)
  74. * Using the `rename` policy get the list of files to rename
  75. * For each file attempt rename:
  76. * If failure with ENOENT run `create` policy
  77. * If create policy returns the same drive as currently evaluating then clone the path
  78. * Re-attempt rename
  79. * If **any** of the renames succeed the higher level rename is considered a success
  80. * If **no** renames succeed the first error encountered will be returned
  81. * On success:
  82. * Remove the target from all drives with no source file
  83. * Remove the source from all drives which failed to rename
  84. * If using a policy which does **not** try to preserve directories
  85. * Using the `rename` policy get the list of files to rename
  86. * Using the `getattr` policy get the target path
  87. * For each file attempt rename:
  88. * If the source drive != target drive:
  89. * Clone target path from target drive to source drive
  90. * Rename
  91. * If **any** of the renames succeed the higher level rename is considered a success
  92. * If **no** renames succeed the first error encountered will be returned
  93. * On success:
  94. * Remove the target from all drives with no source file
  95. * Remove the source from all drives which failed to rename
  96. The the removals are subject to normal entitlement checks.
  97. The above behavior will help minimize the likelihood of EXDEV being returned but it will still be possible. To remove the possibility all together mergerfs would need to perform the as `mv` does when it receives EXDEV normally.
  98. #### readdir ####
  99. [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. Given how FUSE works though the data representing the returned entry comes from **getattr**.
  100. It could be extended to offer the ability to see all files found. Perhaps concatenating **#** 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.
  101. #### statvfs ####
  102. [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 mount points on the same drive will not result in double counting it's space. It is possible due to a race condition that the same drive could be double counted but it's rather unlikely.
  103. # BUILDING
  104. **NOTE:** Prebuilt packages can be found at: https://github.com/trapexit/mergerfs/releases
  105. First get the code from [github](http://github.com/trapexit/mergerfs).
  106. ```
  107. $ git clone https://github.com/trapexit/mergerfs.git
  108. $ # or
  109. $ wget https://github.com/trapexit/mergerfs/archive/master.zip
  110. ```
  111. #### Debian / Ubuntu
  112. ```
  113. $ sudo apt-get install g++ pkg-config git git-buildpackage pandoc debhelper libfuse-dev libattr1-dev
  114. $ cd mergerfs
  115. $ make deb
  116. $ sudo dpkg -i ../mergerfs_version_arch.deb
  117. ```
  118. #### Fedora
  119. ```
  120. $ su -
  121. # dnf install rpm-build fuse-devel libattr-devel pandoc gcc-c++ git make which
  122. # cd mergerfs
  123. # make rpm
  124. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<verion>.<arch>.rpm
  125. ```
  126. #### Generically
  127. Have pkg-config, pandoc, libfuse, libattr1 installed.
  128. ```
  129. $ cd mergerfs
  130. $ make
  131. $ make man
  132. $ sudo make install
  133. ```
  134. # RUNTIME
  135. #### .mergerfs pseudo file ####
  136. ```
  137. <mountpoint>/.mergerfs
  138. ```
  139. There is a pseudo file available at the mount point which allows for the runtime modification of certain **mergerfs** options. The file will not show up in **readdir** but can be **stat**'ed and manipulated via [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls.
  140. Even if xattrs are disabled the [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls will still work.
  141. ##### Keys #####
  142. Use `xattr -l /mount/point/.mergerfs` to see all supported keys.
  143. ##### Example #####
  144. ```
  145. [trapexit:/tmp/mount] $ xattr -l .mergerfs
  146. user.mergerfs.srcmounts: /tmp/a:/tmp/b
  147. user.mergerfs.minfreespace: 4294967295
  148. user.mergerfs.moveonenospc: false
  149. user.mergerfs.policies: all,einval,enosys,enotsup,epmfs,erofs,exdev,ff,ffwp,fwfs,lfs,mfs,newest,rand
  150. user.mergerfs.version: x.y.z
  151. user.mergerfs.category.action: all
  152. user.mergerfs.category.create: epmfs
  153. user.mergerfs.category.search: ff
  154. user.mergerfs.func.access: ff
  155. user.mergerfs.func.chmod: all
  156. user.mergerfs.func.chown: all
  157. user.mergerfs.func.create: epmfs
  158. user.mergerfs.func.getattr: ff
  159. user.mergerfs.func.getxattr: ff
  160. user.mergerfs.func.link: all
  161. user.mergerfs.func.listxattr: ff
  162. user.mergerfs.func.mkdir: epmfs
  163. user.mergerfs.func.mknod: epmfs
  164. user.mergerfs.func.open: ff
  165. user.mergerfs.func.readlink: ff
  166. user.mergerfs.func.removexattr: all
  167. user.mergerfs.func.rename: all
  168. user.mergerfs.func.rmdir: all
  169. user.mergerfs.func.setxattr: all
  170. user.mergerfs.func.symlink: epmfs
  171. user.mergerfs.func.truncate: all
  172. user.mergerfs.func.unlink: all
  173. user.mergerfs.func.utimens: all
  174. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  175. ff
  176. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.category.search ffwp .mergerfs
  177. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  178. ffwp
  179. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts +/tmp/c .mergerfs
  180. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  181. /tmp/a:/tmp/b:/tmp/c
  182. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts =/tmp/c .mergerfs
  183. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  184. /tmp/c
  185. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts '+</tmp/a:/tmp/b' .mergerfs
  186. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  187. /tmp/a:/tmp/b:/tmp/c
  188. ```
  189. ##### user.mergerfs.srcmounts #####
  190. 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.
  191. | Instruction | Description |
  192. |--------------|-------------|
  193. | [list] | set |
  194. | +<[list] | prepend |
  195. | +>[list] | append |
  196. | -[list] | remove all values provided |
  197. | -< | remove first in list |
  198. | -> | remove last in list |
  199. ##### minfreespace #####
  200. Input: interger with an optional suffix. **K**, **M**, or **G**.
  201. Output: value in bytes
  202. ##### moveonenospc #####
  203. Input: **true** and **false**
  204. Ouput: **true** or **false**
  205. ##### categories / funcs #####
  206. Input: short policy string as described elsewhere in this document
  207. Output: the policy string except for categories where its funcs have multiple types. In that case it will be a comma separated list.
  208. #### mergerfs file xattrs ####
  209. 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:
  210. * **user.mergerfs.basepath:** the base mount point for the file given the current search policy
  211. * **user.mergerfs.relpath:** the relative path of the file from the perspective of the mount point
  212. * **user.mergerfs.fullpath:** the full path of the original file given the search policy
  213. * **user.mergerfs.allpaths:** a NUL ('\0') separated list of full paths to all files found
  214. ```
  215. [trapexit:/tmp/mount] $ ls
  216. A B C
  217. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.fullpath A
  218. /mnt/a/full/path/to/A
  219. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.basepath A
  220. /mnt/a
  221. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.relpath A
  222. /full/path/to/A
  223. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.allpaths A | tr '\0' '\n'
  224. /mnt/a/full/path/to/A
  225. /mnt/b/full/path/to/A
  226. ```
  227. # TOOLING
  228. Find extra tooling to help with managing `mergerfs` at: https://github.com/trapexit/mergerfs-tools
  229. * fsck.mergerfs: Provides permissions and ownership auditing and the ability to fix them
  230. # TIPS / NOTES
  231. * If you don't see some directories / files you expect in a merged point be sure the user has permission to all the underlying directories. If `/drive0/a` has is owned by `root:root` with ACLs set to `0700` and `/drive1/a` is `root:root` and `0755` you'll see only `/drive1/a`. Use `fsck.mergerfs` to audit the drive for out of sync permissions.
  232. * Since POSIX gives you only error or success on calls its difficult to determine the proper behavior when applying the behavior to multiple targets. Generally if something succeeds when reading it returns the data it can. If something fails when making an action we continue on and return the last error.
  233. * The recommended options are **defaults,allow_other**. The **allow_other** is to allow users who are not the one which executed mergerfs access to the mountpoint. **defaults** is described above and should offer the best performance. It's possible that if you're running on an older platform the **splice** features aren't available and could error. In that case simply use the other options manually.
  234. * If write performance is valued more than read it may be useful to enable **direct_io**.
  235. * Remember that some policies mixed with some functions may result in strange behaviors. Not that some of these behaviors and race conditions couldn't happen outside **mergerfs** but that they are far more likely to occur on account of attempt to merge together multiple sources of data which could be out of sync due to the different policies.
  236. * An example: [Kodi](http://kodi.tv) and [Plex](http://plex.tv) can apparently use directory [mtime](http://linux.die.net/man/2/stat) to more efficiently determine whether or not to scan for new content rather than simply performing a full scan. If using the current default **getattr** policy of **ff** its possible **Kodi** will miss an update on account of it returning the first directory found's **stat** info and its a later directory on another mount which had the **mtime** recently updated. To fix this you will want to set **func.getattr=newest**. Remember though that this is just **stat**. If the file is later **open**'ed or **unlink**'ed and the policy is different for those then a completely different file or directory could be acted on.
  237. * Due to previously mentioned issues its generally best to set **category** wide policies rather than individual **func**'s. This will help limit the confusion of tools such as [rsync](http://linux.die.net/man/1/rsync).
  238. # Known Issues / Bugs
  239. #### Samba
  240. * Moving files or directories between some directories on a SMB share fail with IO errors.
  241. Workaround: Copy the file/directory and then remove the original rather than move.
  242. This isn't an issue with Samba but some SMB clients. GVFS-fuse v1.20.3 and prior (found in Ubuntu 14.04 among others) failed to handle certain error codes correctly. Particularly **STATUS_NOT_SAME_DEVICE** which comes from the **EXDEV** which is returned by **rename** when the call is crossing mount points. When a program gets an **EXDEV** it needs to explicitly take an alternate action to accomplish it's goal. In the case of **mv** or similar it tries **rename** and on **EXDEV** falls back to a manual copying of data between the two locations and unlinking the source. In these older versions of GVFS-fuse if it received **EXDEV** it would translate that into **EIO**. This would cause **mv** or most any application attempting to move files around on that SMB share to fail with a IO error.
  243. [GVFS-fuse v1.22.0](https://bugzilla.gnome.org/show_bug.cgi?id=734568) and above fixed this issue but a large number of systems use the older release. On Ubuntu the version can be checked by issuing `apt-cache showpkg gvfs-fuse`. Most distros released in 2015 seem to have the updated release and will work fine but older systems may not. Upgrading gvfs-fuse or the distro in general will address the problem.
  244. In Apple's MacOSX 10.9 they replaced Samba (client and server) with their own product. It appears their new client does not handle **EXDEV** either and responds similar to older release of gvfs on Linux.
  245. #### Supplemental groups
  246. * Due to the overhead of [getgroups/setgroups](http://linux.die.net/man/2/setgroups) mergerfs utilizes a cache. This cache is opportunistic and per thread. Each thread will query the supplemental groups for a user when that particular thread needs to change credentials and will keep that data for the lifetime of the mount or thread. This means that if a user is added to a group it may not be picked up without the restart of mergerfs. However, since the high level FUSE API's (at least the standard version) thread pool dynamically grows and shrinks it's possible that over time a thread will be killed and later a new thread with no cache will start and query the new data.
  247. The gid cache uses fixed storage to simplify the design and be compatible with older systems which may not have C++11 compilers (as the original design required). There is enough storage for 256 users' supplemental groups. Each user is allowed upto 32 supplemental groups. Linux >= 2.6.3 allows upto 65535 groups per user but most other *nixs allow far less. NFS allowing only 16. The system does handle overflow gracefully. If the user has more than 32 supplemental groups only the first 32 will be used. If more than 256 users are using the system when an uncached user is found it will evict an existing user's cache at random. So long as there aren't more than 256 active users this should be fine. If either value is too low for your needs you will have to modify `gidcache.hpp` to increase the values. Note that doing so will increase the memory needed by each thread.
  248. # FAQ
  249. *It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?*
  250. [mhddfs](https://github.com/trapexit/mhddfs) tries to handle being run as **root** by calling [getuid()](https://github.com/trapexit/mhddfs/blob/cae96e6251dd91e2bdc24800b4a18a74044f6672/src/main.c#L319) and if it returns **0** then it will [chown](http://linux.die.net/man/1/chown) the file. Not only is that a race condition but it doesn't handle many other situations. Rather than attempting to simulate POSIX ACL behaviors the proper behavior is to use [seteuid](http://linux.die.net/man/2/seteuid) and [setegid](http://linux.die.net/man/2/setegid), become the user making the original call and perform the action as them. This is how [mergerfs](https://github.com/trapexit/mergerfs) handles things.
  251. If you are familiar with POSIX standards you'll know that this behavior poses a problem. **seteuid** and **setegid** affect the whole process and **libfuse** is multithreaded by default. We'd need to lock access to **seteuid** and **setegid** with a mutex so that the several threads aren't stepping on one another and files end up with weird permissions and ownership. This however wouldn't scale well. With lots of calls the contention on that mutex would be extremely high. Thankfully on Linux and OSX we have a better solution.
  252. OSX has a [non-portable pthread extension](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man2/pthread_setugid_np.2.html) for per-thread user and group impersonation.
  253. Linux does not support [pthread_setugid_np](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man2/pthread_setugid_np.2.html) but user and group IDs are a per-thread attribute though documentation on that fact or how to manipulate them is not well distributed. From the **4.00** release of the Linux man-pages project for [setuid](http://man7.org/linux/man-pages/man2/setuid.2.html)
  254. > At the kernel level, user IDs and group IDs are a per-thread attribute. However, POSIX requires that all threads in a process share the same credentials. The NPTL threading implementation handles the POSIX requirements by providing wrapper functions for the various system calls that change process UIDs and GIDs. These wrapper functions (including the one for setuid()) employ a signal-based technique to ensure that when one thread changes credentials, all of the other threads in the process also change their credentials. For details, see nptl(7).
  255. Turns out the setreuid syscalls apply only to the thread. GLIBC hides this away using RT signals to inform all threads to change credentials. Taking after **Samba** mergerfs uses **syscall(SYS_setreuid,...)** to set the callers credentials for that thread only. Jumping back to **root** as necessary should escalated privileges be needed (for instance: to clone paths).
  256. For non-Linux systems mergerfs uses a read-write lock and changes credentials only when necessary. If multiple threads are to be user X then only the first one will need to change the processes credentials. So long as the other threads need to be user X they will take a readlock allow multiple threads to share the credentials. Once a request comes in to run as user Y that thread will attempt a write lock and change to Y's credentials when it can. If the ability to give writers priority is supported then that flag will be used so threads trying to change credentials don't starve. This isn't the best solution but should work reasonably well. As new platforms are supported if they offer per thread credentials those APIs will be adopted.
  257. # SUPPORT
  258. #### Issues with the software
  259. * github.com: https://github.com/trapexit/mergerfs/issues
  260. * email: trapexit@spawn.link
  261. #### Support development
  262. * Gratipay: https://gratipay.com/~trapexit
  263. * BitCoin: 12CdMhEPQVmjz3SSynkAEuD5q9JmhTDCZA