]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libc/sys/mknod.2
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libc / sys / mknod.2
1 .\" Copyright (c) 1980, 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 .\" 4. 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 .\"     @(#)mknod.2     8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD$
30 .\"
31 .Dd June 4, 1993
32 .Dt MKNOD 2
33 .Os
34 .Sh NAME
35 .Nm mknod
36 .Nd make a special file node
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In unistd.h
41 .Ft int
42 .Fn mknod "const char *path" "mode_t mode" "dev_t dev"
43 .Sh DESCRIPTION
44 The file system node
45 .Fa path
46 is created with the file type and access permissions specified in
47 .Fa mode .
48 The access permissions are modified by the process's umask value.
49 .Pp
50 If
51 .Fa mode
52 indicates a block or character special file,
53 .Fa dev
54 is a configuration dependent specification denoting a particular device
55 on the system.
56 Otherwise,
57 .Fa dev
58 is ignored.
59 .Pp
60 The
61 .Fn mknod
62 system call
63 requires super-user privileges.
64 .Sh RETURN VALUES
65 .Rv -std mknod
66 .Sh ERRORS
67 The
68 .Fn mknod
69 system call
70 will fail and the file will be not created if:
71 .Bl -tag -width Er
72 .It Bq Er ENOTDIR
73 A component of the path prefix is not a directory.
74 .It Bq Er ENAMETOOLONG
75 A component of a pathname exceeded 255 characters,
76 or an entire path name exceeded 1023 characters.
77 .It Bq Er ENOENT
78 A component of the path prefix does not exist.
79 .It Bq Er EACCES
80 Search permission is denied for a component of the path prefix.
81 .It Bq Er ELOOP
82 Too many symbolic links were encountered in translating the pathname.
83 .It Bq Er EPERM
84 The process's effective user ID is not super-user.
85 .It Bq Er EIO
86 An I/O error occurred while making the directory entry or allocating the inode.
87 .It Bq Er ENOSPC
88 The directory in which the entry for the new node is being placed
89 cannot be extended because there is no space left on the file
90 system containing the directory.
91 .It Bq Er ENOSPC
92 There are no free inodes on the file system on which the
93 node is being created.
94 .It Bq Er EDQUOT
95 The directory in which the entry for the new node
96 is being placed cannot be extended because the
97 user's quota of disk blocks on the file system
98 containing the directory has been exhausted.
99 .It Bq Er EDQUOT
100 The user's quota of inodes on the file system on
101 which the node is being created has been exhausted.
102 .It Bq Er EROFS
103 The named file resides on a read-only file system.
104 .It Bq Er EEXIST
105 The named file exists.
106 .It Bq Er EFAULT
107 The
108 .Fa path
109 argument
110 points outside the process's allocated address space.
111 .It Bq Er EINVAL
112 Creating anything else than a block or character special
113 file (or a
114 .Em whiteout )
115 is not supported.
116 .El
117 .Sh SEE ALSO
118 .Xr chmod 2 ,
119 .Xr mkfifo 2 ,
120 .Xr stat 2 ,
121 .Xr umask 2
122 .Sh HISTORY
123 The
124 .Fn mknod
125 function appeared in
126 .At v6 .