]> git.cameronkatri.com Git - apple_cmds.git/blob - diskdev_cmds/mount_fdesc.tproj/mount_fdesc.8
diskdev_cmds: Fix BINDIRs
[apple_cmds.git] / diskdev_cmds / mount_fdesc.tproj / mount_fdesc.8
1 .\"
2 .\" Copyright (c) 1992, 1993, 1994
3 .\" The Regents of the University of California. All rights reserved.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software donated to Berkeley by
7 .\" Jan-Simon Pendry.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
17 .\" 3. All advertising materials mentioning features or use of this software
18 .\" must display the following acknowledgement:
19 .\" This product includes software developed by the University of
20 .\" California, Berkeley and its contributors.
21 .\" 4. Neither the name of the University nor the names of its contributors
22 .\" may be used to endorse or promote products derived from this software
23 .\" without specific prior written permission.
24 .\"
25 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" SUCH DAMAGE.
36 .\"
37 .\" @(#)mount_fdesc.8 8.2 (Berkeley) 3/27/94
38 .\"
39 .\"
40 .Dd March 27, 1994
41 .Dt MOUNT_FDESC 8
42 .Os BSD 4.4
43 .Sh NAME
44 .Nm mount_fdesc
45 .Nd mount the file-descriptor file system
46 .Sh SYNOPSIS
47 .Nm mount_fdesc
48 .Op Fl o Ar options
49 .Ar fdesc
50 .Ar mount_point
51 .Sh DESCRIPTION
52 The
53 .Nm mount_fdesc
54 command attaches an instance of the per-process file descriptor
55 namespace to the global filesystem namespace.
56 The conventional mount point is
57 .Pa /dev
58 and the filesystem should be union mounted in order to augment,
59 rather than replace, the existing entries in
60 .Pa /dev .
61 This command is normally executed by
62 .Xr mount 8
63 at boot time.
64 .Pp
65 The options are as follows:
66 .Bl -tag -width indent
67 .It Fl o
68 Options are specified with a
69 .Fl o
70 flag followed by a comma separated string of options.
71 See the
72 .Xr mount 8
73 man page for possible options and their meanings.
74 .El
75 .Pp
76 The contents of the mount point are
77 .Pa fd ,
78 .Pa stderr ,
79 .Pa stdin ,
80 .Pa stdout
81 and
82 .Pa tty .
83 .Pp
84 .Pa fd
85 is a directory whose contents
86 appear as a list of numbered files
87 which correspond to the open files of the process reading the
88 directory.
89 The files
90 .Pa /dev/fd/0
91 through
92 .Pa /dev/fd/#
93 refer to file descriptors which can be accessed through the file
94 system.
95 If the file descriptor is open and the mode the file is being opened
96 with is a subset of the mode of the existing descriptor, the call:
97 .Bd -literal -offset indent
98 fd = open("/dev/fd/0", mode);
99 .Ed
100 .Pp
101 and the call:
102 .Bd -literal -offset indent
103 fd = fcntl(0, F_DUPFD, 0);
104 .Ed
105 .Pp
106 are equivalent.
107 .Pp
108 The files
109 .Pa /dev/stdin ,
110 .Pa /dev/stdout
111 and
112 .Pa /dev/stderr
113 appear as symlinks to the relevant entry in the
114 .Pa /dev/fd
115 sub-directory.
116 Opening them is equivalent to the following calls:
117 .Bd -literal -offset indent
118 fd = fcntl(STDIN_FILENO, F_DUPFD, 0);
119 fd = fcntl(STDOUT_FILENO, F_DUPFD, 0);
120 fd = fcntl(STDERR_FILENO, F_DUPFD, 0);
121 .Ed
122 .Pp
123 Flags to the
124 .Xr open 2
125 call other than
126 .Dv O_RDONLY ,
127 .Dv O_WRONLY
128 and
129 .Dv O_RDWR
130 are ignored.
131 .Pp
132 The
133 .Pa /dev/tty
134 entry is an indirect reference to the current process's controlling terminal.
135 It appears as a named pipe (FIFO) but behaves in exactly the same way as
136 the real controlling terminal device.
137 .Sh FILES
138 .Bl -tag -width /dev/stderr -compact
139 .It Pa /dev/fd/#
140 .It Pa /dev/stdin
141 .It Pa /dev/stdout
142 .It Pa /dev/stderr
143 .It Pa /dev/tty
144 .El
145 .Sh SEE ALSO
146 .Xr mount 2 ,
147 .Xr unmount 2 ,
148 .Xr tty 4 ,
149 .Xr fstab 5 ,
150 .Xr mount 8
151 .Sh CAVEATS
152 No
153 .Pa .
154 and
155 .Pa ..
156 entries appear when listing the contents of the
157 .Pa /dev/fd
158 directory.
159 This makes sense in the context of this filesystem, but is inconsistent
160 with usual filesystem conventions.
161 However, it is still possible to refer to both
162 .Pa .
163 and
164 .Pa ..
165 in a pathname.
166 .Pp
167 This filesystem may not be NFS-exported.
168 .Sh HISTORY
169 The
170 .Nm mount_fdesc
171 utility first appeared in 4.4BSD.