]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/mkfifo.2
libc: simplify MDASM/NOASM checks
[FreeBSD/FreeBSD.git] / lib / libc / sys / mkfifo.2
1 .\" Copyright (c) 1990, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd March 30, 2020
29 .Dt MKFIFO 2
30 .Os
31 .Sh NAME
32 .Nm mkfifo ,
33 .Nm mkfifoat
34 .Nd make a fifo file
35 .Sh LIBRARY
36 .Lb libc
37 .Sh SYNOPSIS
38 .In sys/types.h
39 .In sys/stat.h
40 .Ft int
41 .Fn mkfifo "const char *path" "mode_t mode"
42 .Ft int
43 .Fn mkfifoat "int fd" "const char *path" "mode_t mode"
44 .Sh DESCRIPTION
45 The
46 .Fn mkfifo
47 system call
48 creates a new fifo file with name
49 .Fa path .
50 The access permissions are
51 specified by
52 .Fa mode
53 and restricted by the
54 .Xr umask 2
55 of the calling process.
56 .Pp
57 The fifo's owner ID is set to the process's effective user ID.
58 The fifo's group ID is set to that of the parent directory in
59 which it is created.
60 .Pp
61 The
62 .Fn mkfifoat
63 system call is equivalent to
64 .Fn mkfifo
65 except in the case where
66 .Fa path
67 specifies a relative path.
68 In this case the newly created FIFO is created relative to the
69 directory associated with the file descriptor
70 .Fa fd
71 instead of the current working directory.
72 If
73 .Fn mkfifoat
74 is passed the special value
75 .Dv AT_FDCWD
76 in the
77 .Fa fd
78 parameter, the current working directory is used and the behavior is
79 identical to a call to
80 .Fn mkfifo .
81 .Sh RETURN VALUES
82 .Rv -std mkfifo
83 .Sh ERRORS
84 The
85 .Fn mkfifo
86 system call
87 will fail and no fifo will be created if:
88 .Bl -tag -width Er
89 .It Bq Er ENOTSUP
90 The kernel has not been configured to support fifo's.
91 .It Bq Er ENOTDIR
92 A component of the path prefix is not a directory.
93 .It Bq Er ENAMETOOLONG
94 A component of a pathname exceeded 255 characters,
95 or an entire path name exceeded 1023 characters.
96 .It Bq Er ENOENT
97 A component of the path prefix does not exist.
98 .It Bq Er EACCES
99 A component of the path prefix denies search permission, or write permission
100 is denied on the parent directory of the fifo to be created.
101 .It Bq Er ELOOP
102 Too many symbolic links were encountered in translating the pathname.
103 .It Bq Er EROFS
104 The named file would reside on a read-only file system.
105 .It Bq Er EEXIST
106 The named file exists.
107 .It Bq Er EPERM
108 The parent directory of the named file has its immutable flag set, see the
109 .Xr chflags 2
110 manual page for more information.
111 .It Bq Er ENOSPC
112 The directory in which the entry for the new fifo is being placed
113 cannot be extended because there is no space left on the file
114 system containing the directory.
115 .It Bq Er ENOSPC
116 There are no free inodes on the file system on which the
117 fifo is being created.
118 .It Bq Er EDQUOT
119 The directory in which the entry for the new fifo
120 is being placed cannot be extended because the
121 user's quota of disk blocks on the file system
122 containing the directory has been exhausted.
123 .It Bq Er EDQUOT
124 The user's quota of inodes on the file system on
125 which the fifo is being created has been exhausted.
126 .It Bq Er EIO
127 An
128 .Tn I/O
129 error occurred while making the directory entry or allocating the inode.
130 .It Bq Er EINTEGRITY
131 Corrupted data was detected while reading from the file system.
132 .It Bq Er EFAULT
133 The
134 .Fa path
135 argument
136 points outside the process's allocated address space.
137 .El
138 .Pp
139 In addition to the errors returned by the
140 .Fn mkfifo ,
141 the
142 .Fn mkfifoat
143 may fail if:
144 .Bl -tag -width Er
145 .It Bq Er EBADF
146 The
147 .Fa path
148 argument does not specify an absolute path and the
149 .Fa fd
150 argument is neither
151 .Dv AT_FDCWD
152 nor a valid file descriptor open for searching.
153 .It Bq Er ENOTDIR
154 The
155 .Fa path
156 argument is not an absolute path and
157 .Fa fd
158 is neither
159 .Dv AT_FDCWD
160 nor a file descriptor associated with a directory.
161 .El
162 .Sh SEE ALSO
163 .Xr chflags 2 ,
164 .Xr chmod 2 ,
165 .Xr mknod 2 ,
166 .Xr stat 2 ,
167 .Xr umask 2
168 .Sh STANDARDS
169 The
170 .Fn mkfifo
171 system call is expected to conform to
172 .St -p1003.1-90 .
173 The
174 .Fn mkfifoat
175 system call follows The Open Group Extended API Set 2 specification.
176 .Sh HISTORY
177 The
178 .Fn mkfifoat
179 system call appeared in
180 .Fx 8.0 .