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.

398 lines
29 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2016-05-03
  4. # NAME
  5. mergerfs - another (FUSE based) union filesystem
  6. # SYNOPSIS
  7. mergerfs -o&lt;options&gt; &lt;srcmounts&gt; &lt;mountpoint&gt;
  8. # DESCRIPTION
  9. **mergerfs** is a union filesystem geared towards simplifing storage and management of files across numerous commodity storage devices. It is similar to **mhddfs**, **unionfs**, and **aufs**.
  10. # FEATURES
  11. * Runs in userspace (FUSE)
  12. * Configurable behaviors
  13. * Support for extended attributes (xattrs)
  14. * Support for file attributes (chattr)
  15. * Runtime configurable (via xattrs)
  16. * Safe to run as root
  17. * Opportunistic credential caching
  18. * Works with heterogeneous filesystem types
  19. * Handling of writes to full drives
  20. * Handles pool of readonly and read/write drives
  21. # OPTIONS
  22. ###options###
  23. * **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.
  24. * **direct_io**: causes FUSE to bypass an addition caching step which can increase write speeds at the detriment of read speed.
  25. * **minfreespace**: the minimum space value used for creation policies. Understands 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte respectively. (default: 4G)
  26. * **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)
  27. * **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**
  28. * **category.&lt;category&gt;=&lt;policy&gt;**: Sets policy of all FUSE functions in the provided category. Example: **category.create=mfs**
  29. * **fsname**: sets the name of the filesystem as seen in **mount**, **df**, etc. Defaults to a list of the source paths concatenated together with the longest common prefix removed.
  30. **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.
  31. ###srcmounts###
  32. The srcmounts (source mounts) argument is a colon (':') delimited list of paths to be included in the pool. It does not matter if the paths are on the same or different drives nor does it matter the filesystem. Used and available space will not be duplicated for paths on the same device and any features which aren't supported by the underlying filesystem (such as file attributes or extended attributes) will return the appropriate errors.
  33. To make it easier to include multiple source mounts mergerfs supports [globbing](http://linux.die.net/man/7/glob). **The globbing tokens MUST be escaped when using via the shell else the shell itself will expand it.**
  34. ```
  35. $ mergerfs -o defaults,allow_other /mnt/disk\*:/mnt/cdrom /media/drives
  36. ```
  37. The above line will use all mount points in /mnt prefixed with **disk** and the **cdrom**.
  38. To have the pool mounted at boot or otherwise accessable from related tools use **/etc/fstab**.
  39. ```
  40. # <file system> <mount point> <type> <options> <dump> <pass>
  41. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs defaults,allow_other 0 0
  42. ```
  43. **NOTE:** the globbing is done at mount or xattr update time (see below). If a new directory is added matching the glob after the fact it will not be automatically included.
  44. **NOTE:** for mounting via **fstab** to work you must have **mount.fuse** installed. For Ubuntu/Debian it is included in the **fuse** package.
  45. # FUNCTIONS / POLICIES / CATEGORIES
  46. The POSIX filesystem API has a number of functions. **creat**, **stat**, **chown**, etc. In mergerfs these functions are grouped into 3 categories: **action**, **create**, and **search**. Functions and categories can be assigned a policy which dictates how **mergerfs** behaves. Any policy can be assigned to a function or category though some are not very practical. For instance: **rand** (random) may be useful for file creation (create) but could lead to very odd behavior if used for `chmod` (though only if there were more than one copy of the file).
  47. Policies, when called to create, will ignore drives which are readonly or have less than **minfreespace**. This allows for read/write and readonly drives to be mixed together and keep drives which may remount as readonly on error from further affecting the pool.
  48. #### Function / Category classifications ####
  49. | Category | FUSE Functions |
  50. |----------|----------------|
  51. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  52. | create | create, mkdir, mknod, symlink |
  53. | search | access, getattr, getxattr, ioctl, listxattr, open, readlink |
  54. | N/A | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, release, statfs, write |
  55. Due to FUSE limitations **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) **getattr** will also be used.
  56. #### Policy descriptions ####
  57. | Policy | Description |
  58. |--------------|-------------|
  59. | all | Search category: acts like **ff**. Action category: apply to all found. Create category: for **mkdir**, **mknod**, and **symlink** it will apply to all found. **create** works like **ff**. It will exclude readonly drives and those with free space less than **minfreespace**. |
  60. | eplfs (existing path, least free space) | If the path exists on multiple drives use the one with the least free space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **lfs**. |
  61. | eplus (existing path, least used space) | If the path exists on multiple drives the the one with the least used space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **lus**. |
  62. | epmfs (existing path, most free space) | If the path exists on multiple drives use the one with the most free space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  63. | erofs | Exclusively return **-1** with **errno** set to **EROFS**. By setting **create** functions to this you can in effect turn the filesystem readonly. |
  64. | ff (first found) | Given the order of the drives, as defined at mount time or when configured via xattr interface, act on the first one found. For **create** category it will exclude readonly drives and those with free space less than **minfreespace** (unless there is no other option). |
  65. | lfs (least free space) | Pick the drive with the least available free space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  66. | lus (least used space) | Pick the drive with the least used space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  67. | mfs (most free space) | Pick the drive with the most available free space. For **create** category it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **ff**. |
  68. | newest (newest file) | Pick the file / directory with the largest mtime. For **create** category it will exclude readonly drives and those with free space less than **minfreespace** (unless there is no other option). |
  69. | rand (random) | Calls **all** and then randomizes. |
  70. #### Defaults ####
  71. | Category | Policy |
  72. |----------|--------|
  73. | action | all |
  74. | create | epmfs |
  75. | search | ff |
  76. #### rename & link ####
  77. [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.
  78. 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.
  79. * If using a **create** policy which tries to preserve directory paths (epmfs,eplfs)
  80. * Using the **rename** policy get the list of files to rename
  81. * For each file attempt rename:
  82. * If failure with ENOENT run **create** policy
  83. * If create policy returns the same drive as currently evaluating then clone the path
  84. * Re-attempt rename
  85. * If **any** of the renames succeed the higher level rename is considered a success
  86. * If **no** renames succeed the first error encountered will be returned
  87. * On success:
  88. * Remove the target from all drives with no source file
  89. * Remove the source from all drives which failed to rename
  90. * If using a **create** policy which does **not** try to preserve directory paths
  91. * Using the **rename** policy get the list of files to rename
  92. * Using the **getattr** policy get the target path
  93. * For each file attempt rename:
  94. * If the source drive != target drive:
  95. * Clone target path from target drive to source drive
  96. * Rename
  97. * If **any** of the renames succeed the higher level rename is considered a success
  98. * If **no** renames succeed the first error encountered will be returned
  99. * On success:
  100. * Remove the target from all drives with no source file
  101. * Remove the source from all drives which failed to rename
  102. The the removals are subject to normal entitlement checks.
  103. 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.
  104. **link** uses the same basic strategy.
  105. #### readdir ####
  106. [readdir](http://linux.die.net/man/3/readdir) is different from all other filesystem functions. While it could have it's own set of policies to tweak its behavior at this time it provides a simple union of files and directories found. Remember that any action or information queried about these files and directories come from the respective function. For instance: an **ls** is a **readdir** and for each file/directory returned **getattr** is called. Meaning the policy of **getattr** is responsible for choosing the file/directory which is the source of the metadata you see in an **ls**.
  107. #### statvfs ####
  108. [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 sources on the same drive will not result in double counting it's space.
  109. # BUILDING
  110. **NOTE:** Prebuilt packages can be found at: https://github.com/trapexit/mergerfs/releases
  111. First get the code from [github](http://github.com/trapexit/mergerfs).
  112. ```
  113. $ git clone https://github.com/trapexit/mergerfs.git
  114. $ # or
  115. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  116. ```
  117. #### Debian / Ubuntu
  118. ```
  119. $ sudo apt-get install g++ pkg-config git git-buildpackage pandoc debhelper libfuse-dev libattr1-dev python
  120. $ cd mergerfs
  121. $ make deb
  122. $ sudo dpkg -i ../mergerfs_version_arch.deb
  123. ```
  124. #### Fedora
  125. ```
  126. $ su -
  127. # dnf install rpm-build fuse-devel libattr-devel pandoc gcc-c++ git make which python
  128. # cd mergerfs
  129. # make rpm
  130. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<verion>.<arch>.rpm
  131. ```
  132. #### Generically
  133. Have git, python, pkg-config, pandoc, libfuse, libattr1 installed.
  134. ```
  135. $ cd mergerfs
  136. $ make
  137. $ make man
  138. $ sudo make install
  139. ```
  140. # RUNTIME
  141. #### .mergerfs pseudo file ####
  142. ```
  143. <mountpoint>/.mergerfs
  144. ```
  145. 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.
  146. Even if xattrs are disabled for mergerfs the [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls against this pseudo file will still work.
  147. Any changes made at runtime are **not** persisted. If you wish for values to persist they must be included as options wherever you configure the mounting of mergerfs (fstab).
  148. ##### Keys #####
  149. Use `xattr -l /mount/point/.mergerfs` to see all supported keys. Some are informational and therefore readonly.
  150. ###### user.mergerfs.srcmounts ######
  151. Used to query or modify the list of source mounts. When modifying there are several shortcuts to easy manipulation of the list.
  152. | Value | Description |
  153. |--------------|-------------|
  154. | [list] | set |
  155. | +<[list] | prepend |
  156. | +>[list] | append |
  157. | -[list] | remove all values provided |
  158. | -< | remove first in list |
  159. | -> | remove last in list |
  160. ###### minfreespace ######
  161. Input: interger with an optional multiplier suffix. **K**, **M**, or **G**.
  162. Output: value in bytes
  163. ###### moveonenospc ######
  164. Input: **true** and **false**
  165. Ouput: **true** or **false**
  166. ###### categories / funcs ######
  167. Input: short policy string as described elsewhere in this document
  168. Output: the policy string except for categories where its funcs have multiple types. In that case it will be a comma separated list
  169. ##### Example #####
  170. ```
  171. [trapexit:/tmp/mount] $ xattr -l .mergerfs
  172. user.mergerfs.srcmounts: /tmp/a:/tmp/b
  173. user.mergerfs.minfreespace: 4294967295
  174. user.mergerfs.moveonenospc: false
  175. ...
  176. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  177. ff
  178. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.category.search newest .mergerfs
  179. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  180. newest
  181. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts +/tmp/c .mergerfs
  182. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  183. /tmp/a:/tmp/b:/tmp/c
  184. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts =/tmp/c .mergerfs
  185. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  186. /tmp/c
  187. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts '+</tmp/a:/tmp/b' .mergerfs
  188. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  189. /tmp/a:/tmp/b:/tmp/c
  190. ```
  191. #### file / directory xattrs ####
  192. 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:
  193. * **user.mergerfs.basepath:** the base mount point for the file given the current getattr policy
  194. * **user.mergerfs.relpath:** the relative path of the file from the perspective of the mount point
  195. * **user.mergerfs.fullpath:** the full path of the original file given the getattr policy
  196. * **user.mergerfs.allpaths:** a NUL ('\0') separated list of full paths to all files found
  197. ```
  198. [trapexit:/tmp/mount] $ ls
  199. A B C
  200. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.fullpath A
  201. /mnt/a/full/path/to/A
  202. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.basepath A
  203. /mnt/a
  204. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.relpath A
  205. /full/path/to/A
  206. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.allpaths A | tr '\0' '\n'
  207. /mnt/a/full/path/to/A
  208. /mnt/b/full/path/to/A
  209. ```
  210. # TOOLING
  211. Find tooling to help with managing **mergerfs** at: https://github.com/trapexit/mergerfs-tools
  212. * mergerfs.fsck: Provides permissions and ownership auditing and the ability to fix them
  213. * mergerfs.dedup: Will help identify and optionally remove duplicate files
  214. * mergerfs.mktrash: Creates FreeDesktop.org Trash specification compatible directories on a mergerfs mount
  215. # TIPS / NOTES
  216. * https://github.com/trapexit/backup-and-recovery-howtos : A set of guides / howtos on creating a data storage system, backing it up, maintaining it, and recovering from failure.
  217. * 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 `mergerfs.fsck` to audit the drive for out of sync permissions.
  218. * Do *not* use `direct_io` if you expect applications (such as rtorrent) to [mmap](http://linux.die.net/man/2/mmap) files. It is not currently supported in FUSE w/ `direct_io` enabled.
  219. * Since POSIX gives you only error or success on calls its difficult to determine the proper behavior when applying the behavior to multiple targets. **mergerfs** will return an error only if all attempts of an action fail. Any success will lead to a success returned.
  220. * 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.
  221. * If write performance is valued more than read it may be useful to enable **direct_io**. Best to benchmark with and without and choose appropriately.
  222. * Remember: 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.
  223. * An example: [Kodi](http://kodi.tv) and [Plex](http://plex.tv) can use directory [mtime](http://linux.die.net/man/2/stat) to more efficiently determine whether 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.
  224. * 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).
  225. # KNOWN ISSUES / BUGS
  226. #### rtorrent fails with ENODEV (No such device)
  227. Be sure to turn off `direct_io`. rtorrent and some other applications use [mmap](http://linux.die.net/man/2/mmap) to read and write to files and offer no failback to traditional methods. FUSE does not currently support mmap while using `direct_io`. There will be a performance penalty on writes with `direct_io` off but it's the only way to get such applications to work. If the performance loss is too high for other apps you can mount mergerfs twice. Once with `direct_io` enabled and one without it.
  228. #### mmap performance is really bad
  229. There [appears to be a bug](https://lkml.org/lkml/2016/3/16/260) in caching which affects overall performance of mmap through FUSE in Linux 4.x kernels.
  230. #### Trashing files occasionally fails
  231. This is the same issue as with Samba. `rename` returns `EXDEV` (in our case that will really only happen with path preserving policies like `epmfs`) and the software doesn't handle the situtation well. This is unfortunately a common failure of software which moves files around. The standard indicates that an implementation `MAY` choose to support non-user home directory trashing of files (which is a `MUST`). The implementation `MAY` also support "top directory trashes" which many probably do.
  232. To create a `$topdir/.Trash` directory as defined in the standard use the [mergerfs-tools](https://github.com/trapexit/mergerfs-tools) tool `mergerfs.mktrash`.
  233. #### Samba: Moving files / directories fails
  234. Workaround: Copy the file/directory and then remove the original rather than move.
  235. 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.
  236. [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.
  237. 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.
  238. #### Supplemental user groups
  239. 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 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.
  240. The gid cache uses fixed storage to simplify the design and be compatible with older systems which may not have C++11 compilers. 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.
  241. #### mergerfs or libfuse crashing
  242. If suddenly the mergerfs mount point disappears and `Transport endpoint is not connected` is returned when attempting to perform actions within the mount directory **and** the version of libfuse (use `mergerfs -v` to find the version) is older than `2.9.4` its likely due to a bug in libfuse. Affected versions of libfuse can be found in Debian Wheezy, Ubuntu Precise and others.
  243. In order to fix this please install newer versions of libfuse. If using a Debian based distro (Debian,Ubuntu,Mint) you can likely just install newer versions of [libfuse](https://packages.debian.org/unstable/libfuse2) and [fuse](https://packages.debian.org/unstable/fuse) from the repo of a newer release.
  244. # FAQ
  245. #### Why use mergerfs over mhddfs?
  246. mhddfs is no longer maintained and has some known stability and security issues (see below).
  247. #### Why use mergerfs over aufs?
  248. While aufs can offer better peak performance mergerfs offers more configurability and is generally easier to use. mergerfs however doesn't offer the overlay features which tends to result in whiteout files being left around the underlying filesystems.
  249. #### Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  250. A single drive failure will lead to full pool failure without additional redundancy. mergerfs performs a similar behavior without the catastrophic failure and lack of recovery. Drives can fail and all other data will continue to be accessable.
  251. #### Can drives be written to directly? Outside of mergerfs while pooled?
  252. Yes. It will be represented immediately in the pool as the policies would describe.
  253. #### It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  254. [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.
  255. 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 anofther 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.
  256. 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.
  257. 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).
  258. > 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).
  259. 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).
  260. 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.
  261. # SUPPORT
  262. #### Issues with the software
  263. * github.com: https://github.com/trapexit/mergerfs/issues
  264. * email: trapexit@spawn.link
  265. #### Support development
  266. * Gratipay: https://gratipay.com/~trapexit
  267. * BitCoin: 12CdMhEPQVmjz3SSynkAEuD5q9JmhTDCZA
  268. # LINKS
  269. * http://github.com/trapexit/mergerfs
  270. * http://github.com/trapexit/mergerfs-tools
  271. * http://github.com/trapexit/backup-and-recovery-howtos