Merge commit 'dc97a43d4a70c8773a619f11b95b07a787f6f5b7' into merges
[unleashed.git] / share / man / man2 / mknod.2
blob9d2378a66ad66982edf4b7a9eae607d67901d21b
1 '\" te
2 .\" Copright (c) 2014, Joyent, Inc.
3 .\"  Copyright 1989 AT&T.  Copyright (c) 2004 Sun Microsystems, Inc.  All Rights Reserved.  Portions Copyright (c) 1992, X/Open Company Limited.  All Rights Reserved.
4 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
5 .\" http://www.opengroup.org/bookstore/.
6 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
7 .\"  This notice shall appear on any product containing this material.
8 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
9 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
10 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
11 .TH MKNOD 2 "Feb 19, 2004"
12 .SH NAME
13 mknod, mknodat \- make a directory, a special file, or a regular file
14 .SH SYNOPSIS
15 .LP
16 .nf
17 #include <sys/stat.h>
19 \fBint\fR \fBmknod\fR(\fBconst char *\fR\fIpath\fR, \fBmode_t\fR \fImode\fR, \fBdev_t\fR \fIdev\fR);
20 .fi
21 .LP
22 .nf
23 \fBint\fR \fBmknodat(\fBint\fR \fIfd\fR, \fBconst char *\fR\fIpath\fR, \fBmode_t\fR \fImode\fR, \fBdev_t\fR \fIdev\fR);
24 .fi
26 .SH DESCRIPTION
27 .LP
28 The \fBmknod()\fR and \fBmknodat()\fR function creates a new file named by the
29 path name pointed to by \fIpath\fR. The file type and permissions of the new
30 file are initialized from \fImode\fR.
31 .sp
32 .LP
33 The file type is specified in \fImode\fR by the \fBS_IFMT\fR bits, which must
34 be set to one of the following values:
35 .sp
36 .ne 2
37 .na
38 \fB\fBS_IFIFO\fR\fR
39 .ad
40 .RS 11n
41 fifo special
42 .RE
44 .sp
45 .ne 2
46 .na
47 \fB\fBS_IFCHR\fR\fR
48 .ad
49 .RS 11n
50 character special
51 .RE
53 .sp
54 .ne 2
55 .na
56 \fB\fBS_IFDIR\fR\fR
57 .ad
58 .RS 11n
59 directory
60 .RE
62 .sp
63 .ne 2
64 .na
65 \fB\fBS_IFBLK\fR\fR
66 .ad
67 .RS 11n
68 block special
69 .RE
71 .sp
72 .ne 2
73 .na
74 \fB\fBS_IFREG\fR\fR
75 .ad
76 .RS 11n
77 ordinary file
78 .RE
80 .sp
81 .LP
82 The file access permissions are specified in \fImode\fR by the 0007777 bits,
83 and may be constructed by a bitwise \fBOR\fR operation of the following values:
84 .sp
86 .sp
87 .TS
88 l l l
89 l l l .
90 \fBS_ISUID\fR   04000   Set user ID on execution.
91 \fBS_ISGID\fR   020#0   T{
92 Set group ID on execution if # is \fB7\fR, \fB5\fR, \fB3\fR, or \fB1\fR. Enable mandatory file/record locking if # is \fB6\fR, \fB4\fR, \fB2\fR, or \fB0\fR
94 \fBS_ISVTX\fR   01000   T{
95 On directories, restricted deletion flag; on regular files on a UFS file system, do not cache flag.
97 \fBS_IRWXU\fR   00700   Read, write, execute by owner.
98 \fBS_IRUSR\fR   00400   Read by owner.
99 \fBS_IWUSR\fR   00200   Write by owner.
100 \fBS_IXUSR\fR   00100   T{
101 Execute (search if a directory) by owner.
103 \fBS_IRWXG\fR   00070   Read, write, execute by group.
104 \fBS_IRGRP\fR   00040   Read by group.
105 \fBS_IWGRP\fR   00020   Write by group.
106 \fBS_IXGRP\fR   00010   Execute by group.
107 \fBS_IRWXO\fR   00007   Read, write, execute (search) by others.
108 \fBS_IROTH\fR   00004   Read by others.
109 \fBS_IWOTH\fR   00002   Write by others
110 \fBS_IXOTH\fR   00001   Execute by others.
115 The owner \fBID\fR of the file is set to the effective user \fBID\fR of the
116 process. The group \fBID\fR of the file is set to the effective group \fBID\fR
117 of the process.  However, if the \fBS_ISGID\fR bit is set in the parent
118 directory, then the group \fBID\fR of the file is inherited from the parent.
119 If the group \fBID\fR of the new file does not match the effective group
120 \fBID\fR or one of the supplementary group IDs, the \fBS_ISGID\fR bit is
121 cleared.
124 The access permission bits of \fImode\fR are modified by the process's file
125 mode creation mask: all bits set in the process's file mode creation mask are
126 cleared (see \fBumask\fR(2)). If \fImode\fR indicates a block or character
127 special file, \fIdev\fR is a configuration-dependent specification of a
128 character or block I/O device. If \fImode\fR does not indicate a block special
129 or character special device, \fIdev\fR is ignored. See \fBmakedev\fR(3C).
132 If \fIpath\fR is a symbolic link, it is not followed.
135 The \fBmknodat()\fR function is similar to \fBmknod()\fR; however, when
136 \fIpath\fR is a relative path, it is resolved starting at the directory
137 represented by the file descriptor \fIfd\fR. To start at the current working
138 directory, \fIfd\fR may be set to the special value \fBAT_FDCWD\fR.
139 .SH RETURN VALUES
141 Upon successful completion, \fBmknod()\fR and \fBmknodat()\fR return \fB0\fR.
142 Otherwise, they return \fB\(mi1\fR, the new file is not created, and \fBerrno\fR
143 is set to indicate the error.
144 .SH ERRORS
146 The \fBmknod()\fR and \fBmknodat()\fR functions will fail if:
148 .ne 2
150 \fB\fBEACCES\fR\fR
152 .RS 16n
153 A component of the path prefix denies search permission, or write permission is
154 denied on the parent directory.
158 .ne 2
160 \fB\fBEDQUOT\fR\fR
162 .RS 16n
163 The directory where the new file entry is being placed cannot be extended
164 because the user's quota of disk blocks on that file system has been exhausted,
165 or the user's quota of inodes on the file system where the file is being
166 created has been exhausted.
170 .ne 2
172 \fB\fBEEXIST\fR\fR
174 .RS 16n
175 The named file exists.
179 .ne 2
181 \fB\fBEFAULT\fR\fR
183 .RS 16n
184 The \fIpath\fR argument points to an illegal address.
188 .ne 2
190 \fB\fBEINTR\fR\fR
192 .RS 16n
193 A signal was caught during the execution of the \fBmknod()\fR function.
197 .ne 2
199 \fB\fBEINVAL\fR\fR
201 .RS 16n
202 An invalid argument exists.
206 .ne 2
208 \fB\fBEIO\fR\fR
210 .RS 16n
211 An I/O error occurred while accessing the file system.
215 .ne 2
217 \fB\fBELOOP\fR\fR
219 .RS 16n
220 Too many symbolic links were encountered in translating \fIpath\fR.
224 .ne 2
226 \fB\fBENAMETOOLONG\fR\fR
228 .RS 16n
229 The length of the \fIpath\fR argument exceeds {\fB\fR\fBPATH_MAX\fR}, or the
230 length of a \fIpath\fR component exceeds {\fB\fR\fBNAME_MAX\fR} while
231 \fB\fR\fB_POSIX_NO_TRUNC\fR is in effect.
235 .ne 2
237 \fB\fBENOENT\fR\fR
239 .RS 16n
240 A component of the path prefix specified by \fIpath\fR does not name an
241 existing directory or \fIpath\fR is an empty string.
245 .ne 2
247 \fB\fBENOLINK\fR\fR
249 .RS 16n
250 The \fIpath\fR argument points to a remote machine and the link to that machine
251 is no longer active.
255 .ne 2
257 \fB\fBENOSPC\fR\fR
259 .RS 16n
260 The directory that would contain the new file cannot be extended or the file
261 system is out of file allocation resources.
265 .ne 2
267 \fB\fBENOTDIR\fR\fR
269 .RS 16n
270 A component of the path prefix is not a directory. In addition, when calling
271 \fBmknodat()\fR, if \fIpath\fR is a relative path and \fIfd\fR is a valid file
272 descriptor which does not refer to a directory.
276 .ne 2
278 \fB\fBEPERM\fR\fR
280 .RS 16n
281 Not all privileges are asserted in the effective set of the calling process.
285 .ne 2
287 \fB\fBEROFS\fR\fR
289 .RS 16n
290 The directory in which the file is to be created is located on a read-only file
291 system.
296 The \fBmknodat()\fR function will fail if:
298 .ne 2
300 .B EBADF
302 .RS 16n
303 The \fIpath\fR argument is a relative path and \fIfd\fR is not a valid open file
304 descriptor or the special value \fBAT_FDCWD\fR.
309 The \fBmknod()\fR function may fail if:
311 .ne 2
313 \fB\fBENAMETOOLONG\fR\fR
315 .RS 16n
316 Pathname resolution of a symbolic link produced an intermediate result whose
317 length exceeds {\fBPATH_MAX\fR}.
320 .SH USAGE
322 Applications should use the \fBmkdir\fR(2) function to create a directory
323 because appropriate permissions are not required and because \fBmknod()\fR
324 might not establish directory entries for the directory itself (\fB\&.\fR) and
325 the parent directory (\fB\&.\|.\fR). The \fBmknod()\fR function can be invoked
326 only by a privileged user for file types other than FIFO special. The
327 \fBmkfifo\fR(3C) function should be used to create FIFOs.
330 Doors are created using \fBdoor_create\fR(3C) and can be attached to the file
331 system using \fBfattach\fR(3C). Symbolic links can be created using
332 \fBsymlink\fR(2). An endpoint for communication can be created using
333 \fBsocket\fR(3SOCKET).
334 .SH ATTRIBUTES
336 See \fBattributes\fR(5) for descriptions of the following attributes:
341 box;
342 c | c
343 l | l .
344 ATTRIBUTE TYPE  ATTRIBUTE VALUE
346 Interface Stability     Standard
348 MT-Level        Async-Signal-Safe
351 .SH SEE ALSO
353 \fBchmod\fR(2), \fBcreat\fR(2), \fBexec\fR(2), \fBmkdir\fR(2), \fBopen\fR(2),
354 \fBstat\fR(2), \fBsymlink\fR(2), \fBumask\fR(2), \fBdoor_create\fR(3C),
355 \fBfattach\fR(3C), \fBmakedev\fR(3C), \fBmkfifo\fR(3C), \fBsocket\fR(3SOCKET),
356 \fBstat.h\fR(3HEAD), \fBattributes\fR(5), \fBprivileges\fR(5),
357 \fBstandards\fR(5)