Merge remote-tracking branch 'origin/vendor/BINUTILS227'
[dragonfly.git] / share / man / man5 / dirfs.5
1 .\"
2 .\" Copyright (c) 2013 Antonio Huete Jimenez <tuxillo@quantumachine.net>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. The name of the author may not be used to endorse or promote products
14 .\"    derived from this software without specific prior written permission
15 .\"
16 .\" THIS DOCUMENTATION IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\"
27 .\"
28 .Dd September 5, 2013
29 .Dt DIRFS 5
30 .Os
31 .Sh NAME
32 .Nm dirfs
33 .Nd "pseudo-filesystem for vkernel"
34 .Sh SYNOPSIS
35 To compile this driver into the vkernel,
36 place the following line in your
37 vkernel configuration file:
38 .Bd -ragged -offset indent
39 .Cd "options DIRFS"
40 .Ed
41 .Pp
42 Actually this driver does not provide a loadable module.
43 .Pp
44 In
45 .Xr fstab 5 :
46 .Bd -literal -compact
47 /usr/src     /mnt dirfs rw 0 0
48 .Ed
49 .Sh DESCRIPTION
50 .Nm
51 was born from the idea of providing an easy way for
52 .Xr vkernel 7
53 to access host's directories without any sort of configuration as it would be
54 needed by NFS for example.
55 .Pp
56 It runs directly in the vkernel's
57 .Xr VFS 9
58 code, as any other regular filesystem but it uses syscalls to retrieve the
59 information needed for every operation requested.
60 .Pp
61 It should be noted that when the vkernel is run by a regular user, the
62 operations
63 .Nm
64 can perform on the mounted host directory are bound to the permissions of
65 the aforementioned user.
66 .Pp
67 Multiple
68 .Nm
69 mounts are allowed.
70 .Sh EXAMPLES
71 To mount a
72 .Nm
73 memory file system:
74 .Pp
75 .Dl "mount -t dirfs /usr/src /mnt"
76 .Sh SEE ALSO
77 .Xr fstab 5 ,
78 .Xr mount_dirfs 8 ,
79 .Sh HISTORY
80 The
81 .Nm
82 driver first appeared in
83 .Dx 3.5 .
84 .Sh AUTHORS
85 .An -nosplit
86 The
87 .Nm
88 vkernel implementation was written from the scratch by
89 .An Antonio Huete Jimenez Aq Mt tuxillo@quantumachine.net
90 .Pp
91 Numerous fixes and pointers by
92 .An Matthew Dillon Aq Mt dillon@apollo.backplane.com
93 .Pp
94 This manual page was written by
95 .An Antonio Huete Jimenez Aq Mt tuxillo@quantumachine.net
96 .Sh BUGS
97 Currently there is no locking on file descriptors between the host
98 and the vkernel.
99 This means that there might be problems with concurrent accesses to the same
100 file.
101 .Pp
102 There is no support for hardlinks in
103 .Nm
104 yet.