readv2: Note preadv2(..., RWF_NOWAIT) bug in BUGS section
[man-pages.git] / man2 / mknod.2
blob1de3cd027a240a13a5061d7450ae0fc852c5abfd
1 .\" This manpage is Copyright (C) 1992 Drew Eckhardt;
2 .\"             and Copyright (C) 1993 Michael Haardt
3 .\"             and Copyright (C) 1993,1994 Ian Jackson
4 .\"             and Copyright (C) 2006, 2014, Michael Kerrisk
5 .\"
6 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
7 .\" You may distribute it under the terms of the GNU General
8 .\" Public License. It comes with NO WARRANTY.
9 .\" %%%LICENSE_END
10 .\"
11 .\" Modified 1996-08-18 by urs
12 .\" Modified 2003-04-23 by Michael Kerrisk
13 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
14 .\"
15 .TH MKNOD 2 2021-03-22 "Linux" "Linux Programmer's Manual"
16 .SH NAME
17 mknod, mknodat \- create a special or ordinary file
18 .SH SYNOPSIS
19 .nf
20 .B #include <sys/stat.h>
21 .PP
22 .BI "int mknod(const char *" pathname ", mode_t " mode ", dev_t " dev );
23 .PP
24 .BR "#include <fcntl.h>           " "/* Definition of AT_* constants */"
25 .B #include <sys/stat.h>
26 .PP
27 .BI "int mknodat(int " dirfd ", const char *" pathname ", mode_t " mode \
28 ", dev_t " dev );
29 .fi
30 .PP
31 .RS -4
32 Feature Test Macro Requirements for glibc (see
33 .BR feature_test_macros (7)):
34 .RE
35 .PP
36 .BR mknod ():
37 .nf
38     _XOPEN_SOURCE >= 500
39 .\"    || _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED
40         || /* Since glibc 2.19: */ _DEFAULT_SOURCE
41         || /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
42 .fi
43 .SH DESCRIPTION
44 The system call
45 .BR mknod ()
46 creates a filesystem node (file, device special file, or
47 named pipe) named
48 .IR pathname ,
49 with attributes specified by
50 .I mode
51 and
52 .IR dev .
53 .PP
54 The
55 .I mode
56 argument specifies both the file mode to use and the type of node
57 to be created.
58 It should be a combination (using bitwise OR) of one of the file types
59 listed below and zero or more of the file mode bits listed in
60 .BR inode (7).
61 .PP
62 The file mode is modified by the process's
63 .I umask
64 in the usual way: in the absence of a default ACL, the permissions of the
65 created node are
66 .RI ( mode " & \(ti" umask ).
67 .PP
68 The file type must be one of
69 .BR S_IFREG ,
70 .BR S_IFCHR ,
71 .BR S_IFBLK ,
72 .BR S_IFIFO ,
74 .B S_IFSOCK
75 .\" (S_IFSOCK since Linux 1.2.4)
76 to specify a regular file (which will be created empty), character
77 special file, block special file, FIFO (named pipe), or UNIX domain socket,
78 respectively.
79 (Zero file type is equivalent to type
80 .BR S_IFREG .)
81 .PP
82 If the file type is
83 .B S_IFCHR
85 .BR S_IFBLK ,
86 then
87 .I dev
88 specifies the major and minor numbers of the newly created device
89 special file
90 .RB ( makedev (3)
91 may be useful to build the value for
92 .IR dev );
93 otherwise it is ignored.
94 .PP
96 .I pathname
97 already exists, or is a symbolic link, this call fails with an
98 .B EEXIST
99 error.
101 The newly created node will be owned by the effective user ID of the
102 process.
103 If the directory containing the node has the set-group-ID
104 bit set, or if the filesystem is mounted with BSD group semantics, the
105 new node will inherit the group ownership from its parent directory;
106 otherwise it will be owned by the effective group ID of the process.
109 .SS mknodat()
111 .BR mknodat ()
112 system call operates in exactly the same way as
113 .BR mknod (),
114 except for the differences described here.
116 If the pathname given in
117 .I pathname
118 is relative, then it is interpreted relative to the directory
119 referred to by the file descriptor
120 .I dirfd
121 (rather than relative to the current working directory of
122 the calling process, as is done by
123 .BR mknod ()
124 for a relative pathname).
127 .I pathname
128 is relative and
129 .I dirfd
130 is the special value
131 .BR AT_FDCWD ,
132 then
133 .I pathname
134 is interpreted relative to the current working
135 directory of the calling process (like
136 .BR mknod ()).
139 .I pathname
140 is absolute, then
141 .I dirfd
142 is ignored.
145 .BR openat (2)
146 for an explanation of the need for
147 .BR mknodat ().
148 .SH RETURN VALUE
149 .BR mknod ()
151 .BR mknodat ()
152 return zero on success.
153 On error, \-1 is returned and
154 .I errno
155 is set to indicate the error.
156 .SH ERRORS
158 .B EACCES
159 The parent directory does not allow write permission to the process,
160 or one of the directories in the path prefix of
161 .I pathname
162 did not allow search permission.
163 (See also
164 .BR path_resolution (7).)
166 .B EDQUOT
167 The user's quota of disk blocks or inodes on the filesystem has been
168 exhausted.
170 .B EEXIST
171 .I pathname
172 already exists.
173 This includes the case where
174 .I pathname
175 is a symbolic link, dangling or not.
177 .B EFAULT
178 .IR pathname " points outside your accessible address space."
180 .B EINVAL
181 .I mode
182 requested creation of something other than a regular file, device
183 special file, FIFO or socket.
185 .B ELOOP
186 Too many symbolic links were encountered in resolving
187 .IR pathname .
189 .B ENAMETOOLONG
190 .IR pathname " was too long."
192 .B ENOENT
193 A directory component in
194 .I pathname
195 does not exist or is a dangling symbolic link.
197 .B ENOMEM
198 Insufficient kernel memory was available.
200 .B ENOSPC
201 The device containing
202 .I pathname
203 has no room for the new node.
205 .B ENOTDIR
206 A component used as a directory in
207 .I pathname
208 is not, in fact, a directory.
210 .B EPERM
211 .I mode
212 requested creation of something other than a regular file,
213 FIFO (named pipe), or UNIX domain socket, and the caller
214 is not privileged (Linux: does not have the
215 .B CAP_MKNOD
216 capability);
217 .\" For UNIX domain sockets and regular files, EPERM is returned only in
218 .\" Linux 2.2 and earlier; in Linux 2.4 and later, unprivileged can
219 .\" use mknod() to make these files.
220 also returned if the filesystem containing
221 .I pathname
222 does not support the type of node requested.
224 .B EROFS
225 .I pathname
226 refers to a file on a read-only filesystem.
228 The following additional errors can occur for
229 .BR mknodat ():
231 .B EBADF
232 .I dirfd
233 is not a valid file descriptor.
235 .B ENOTDIR
236 .I pathname
237 is relative and
238 .I dirfd
239 is a file descriptor referring to a file other than a directory.
240 .SH VERSIONS
241 .BR mknodat ()
242 was added to Linux in kernel 2.6.16;
243 library support was added to glibc in version 2.4.
244 .SH CONFORMING TO
245 .BR mknod ():
246 SVr4, 4.4BSD, POSIX.1-2001 (but see below), POSIX.1-2008.
247 .\" The Linux version differs from the SVr4 version in that it
248 .\" does not require root permission to create pipes, also in that no
249 .\" EMULTIHOP, ENOLINK, or EINTR error is documented.
251 .BR mknodat ():
252 POSIX.1-2008.
253 .SH NOTES
254 POSIX.1-2001 says: "The only portable use of
255 .BR mknod ()
256 is to create a FIFO-special file.
258 .I mode
259 is not
260 .B S_IFIFO
262 .I dev
263 is not 0, the behavior of
264 .BR mknod ()
265 is unspecified."
266 However, nowadays one should never use
267 .BR mknod ()
268 for this purpose; one should use
269 .BR mkfifo (3),
270 a function especially defined for this purpose.
272 Under Linux,
273 .BR mknod ()
274 cannot be used to create directories.
275 One should make directories with
276 .BR mkdir (2).
277 .\" and one should make UNIX domain sockets with socket(2) and bind(2).
279 There are many infelicities in the protocol underlying NFS.
280 Some of these affect
281 .BR mknod ()
283 .BR mknodat ().
284 .SH SEE ALSO
285 .BR mknod (1),
286 .BR chmod (2),
287 .BR chown (2),
288 .BR fcntl (2),
289 .BR mkdir (2),
290 .BR mount (2),
291 .BR socket (2),
292 .BR stat (2),
293 .BR umask (2),
294 .BR unlink (2),
295 .BR makedev (3),
296 .BR mkfifo (3),
297 .BR acl (5),
298 .BR path_resolution (7)