]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/man/man9/make_dev.9
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / share / man / man9 / make_dev.9
1 .\" Copyright (c) 1999 Chris Costello
2 .\" 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 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd May 6, 2007
28 .Os
29 .Dt MAKE_DEV 9
30 .Sh NAME
31 .Nm make_dev ,
32 .Nm make_dev_alias ,
33 .Nm destroy_dev ,
34 .Nm dev_depends
35 .Nd manage
36 .Vt cdev Ns 's
37 and DEVFS registration for devices
38 .Sh SYNOPSIS
39 .In sys/param.h
40 .In sys/conf.h
41 .Ft struct cdev *
42 .Fn make_dev "struct cdevsw *cdevsw" "int minor" "uid_t uid" "gid_t gid" "int perms" "const char *fmt" ...
43 .Ft struct cdev *
44 .Fn make_dev_alias "struct cdev *pdev" "const char *fmt" ...
45 .Ft void
46 .Fn destroy_dev "struct cdev *dev"
47 .Ft void
48 .Fn dev_depends "struct cdev *pdev" "struct cdev *cdev"
49 .Sh DESCRIPTION
50 The
51 .Fn make_dev
52 function creates a
53 .Fa cdev
54 structure for a new device.
55 If DEVFS is available, it is also notified of
56 the presence of the new device.
57 The device will be owned by
58 .Va uid ,
59 with the group ownership as
60 .Va gid .
61 The name is the expansion of 
62 .Va fmt 
63 and following arguments as
64 .Xr printf 9
65 would print it.
66 The name determines its path under
67 .Pa /dev
68 or other 
69 .Xr devfs 5 
70 mount point and may contain slash
71 .Ql /
72 characters to denote subdirectories.
73 The permissions of the file specified in
74 .Va perms
75 are defined in
76 .In sys/stat.h :
77 .Pp
78 .Bd -literal -offset indent -compact
79 #define S_IRWXU 0000700    /* RWX mask for owner */
80 #define S_IRUSR 0000400    /* R for owner */
81 #define S_IWUSR 0000200    /* W for owner */
82 #define S_IXUSR 0000100    /* X for owner */
83
84 #define S_IRWXG 0000070    /* RWX mask for group */
85 #define S_IRGRP 0000040    /* R for group */
86 #define S_IWGRP 0000020    /* W for group */
87 #define S_IXGRP 0000010    /* X for group */
88
89 #define S_IRWXO 0000007    /* RWX mask for other */
90 #define S_IROTH 0000004    /* R for other */
91 #define S_IWOTH 0000002    /* W for other */
92 #define S_IXOTH 0000001    /* X for other */
93
94 #define S_ISUID 0004000    /* set user id on execution */
95 #define S_ISGID 0002000    /* set group id on execution */
96 #define S_ISVTX 0001000    /* sticky bit */
97 #ifndef _POSIX_SOURCE
98 #define S_ISTXT 0001000
99 #endif
100 .Ed
101 .Pp
102 The
103 .Fn make_dev_alias
104 function takes the returned
105 .Ft cdev
106 from
107 .Fn make_dev
108 and makes another (aliased) name for this device.
109 It is an error to call
110 .Fn make_dev_alias
111 prior to calling
112 .Fn make_dev .
113 .Pp
114 The
115 .Fa cdev
116 returned by
117 .Fn make_dev
118 and
119 .Fn make_dev_alias
120 has two fields,
121 .Fa si_drv1
122 and
123 .Fa si_drv2 ,
124 that are available to store state.
125 Both fields are of type
126 .Ft void * .
127 These are designed to replace the
128 .Fa minor
129 argument to
130 .Fn make_dev .
131 .Pp
132 The
133 .Fn destroy_dev
134 function takes the returned
135 .Fa cdev
136 from
137 .Fn make_dev
138 and destroys the registration for that device.
139 Do not call
140 .Fn destroy_dev
141 on devices that were created with
142 .Fn make_dev_alias .
143 .Pp
144 The
145 .Fn dev_depends
146 function establishes a parent-child relationship between two devices.
147 The net effect is that a
148 .Fn destroy_dev
149 of the parent device will also result in the destruction of the
150 child device(s),
151 if any exist.
152 A device may simultaneously be a parent and a child,
153 so it is possible to build a complete hierarchy.
154 .Sh SEE ALSO
155 .Xr devfs 5
156 .Sh HISTORY
157 The
158 .Fn make_dev
159 and
160 .Fn destroy_dev
161 functions first appeared in
162 .Fx 4.0 .
163 The function
164 .Fn make_dev_alias
165 first appeared in
166 .Fx 4.1 .
167 The function
168 .Fn dev_depends
169 first appeared in
170 .Fx 5.0 .