2 * Parts Copyright (c) 1995 Terrence R. Lambert
3 * Copyright (c) 1995 Julian R. Elischer
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Terrence R. Lambert.
17 * 4. The name Terrence R. Lambert may not be used to endorse or promote
18 * products derived from this software without specific prior written
21 * THIS SOFTWARE IS PROVIDED BY Julian R. Elischer ``AS IS'' AND ANY
22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE TERRENCE R. LAMBERT BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * $FreeBSD: src/sys/kern/kern_conf.c,v 1.73.2.3 2003/03/10 02:18:25 imp Exp $
36 #include <sys/param.h>
37 #include <sys/kernel.h>
38 #include <sys/sysctl.h>
39 #include <sys/systm.h>
40 #include <sys/module.h>
42 #include <sys/vnode.h>
43 #include <sys/queue.h>
44 #include <sys/device.h>
46 #include <machine/stdarg.h>
48 #include <sys/sysref2.h>
50 #include <sys/devfs.h>
52 int dev_ref_debug
= 0;
53 SYSCTL_INT(_debug
, OID_AUTO
, dev_refs
, CTLFLAG_RW
, &dev_ref_debug
, 0,
54 "Toggle device reference debug output");
57 * cdev_t and u_dev_t primitives. Note that the major number is always
58 * extracted from si_umajor, not from si_devsw, because si_devsw is replaced
59 * when a device is destroyed.
66 return(dev
->si_umajor
);
74 return(dev
->si_uminor
);
78 * Compatibility function with old udev_t format to convert the
79 * non-consecutive minor space into a consecutive minor space.
91 return ((y
& 0xff) | (y
>> 8));
95 * Convert a device pointer to an old style device number. Return NOUDEV
96 * if the device is invalid or if the device (maj,min) cannot be converted
97 * to an old style udev_t.
105 return (udev_t
)dev
->si_inode
;
109 * Convert a device number to a device pointer. The device is referenced
110 * ad-hoc, meaning that the caller should call reference_dev() if it wishes
111 * to keep ahold of the returned structure long term.
113 * The returned device is associated with the currently installed cdevsw
114 * for the requested major number. NULL is returned if the major number
115 * has not been registered.
118 udev2dev(udev_t x
, int b
)
120 if (x
== NOUDEV
|| b
!= 0)
123 return devfs_find_device_by_udev(x
);
127 dev_is_good(cdev_t dev
)
129 if (dev
!= NULL
&& dev
->si_ops
!= &dead_dev_ops
)
135 * Various user device number extraction and conversion routines
142 return(dev
& 0xffff00ff);
150 return((dev
& 0xff00) >> 8);
154 makeudev(int x
, int y
)
156 if ((x
& 0xffffff00) || (y
& 0x0000ff00))
158 return ((x
<< 8) | y
);
162 * Create an internal or external device.
164 * This routine creates and returns an unreferenced ad-hoc entry for the
165 * device which will remain intact until the device is destroyed. If the
166 * caller intends to store the device pointer it must call reference_dev()
167 * to retain a real reference to the device.
169 * If an entry already exists, this function will set (or override)
170 * its cred requirements and name (XXX DEVFS interface).
173 make_dev(struct dev_ops
*ops
, int minor
, uid_t uid
, gid_t gid
,
174 int perms
, const char *fmt
, ...)
180 * compile the cdevsw and install the device
182 compile_dev_ops(ops
);
184 devfs_dev
= devfs_new_cdev(ops
, minor
, NULL
);
186 kvsnrprintf(devfs_dev
->si_name
, sizeof(devfs_dev
->si_name
),
190 devfs_debug(DEVFS_DEBUG_INFO
,
191 "make_dev called for %s\n",
193 devfs_create_dev(devfs_dev
, uid
, gid
, perms
);
199 * make_dev_covering has equivalent functionality to make_dev, except that it
200 * also takes the dev_ops of the underlying device. Hence this function should
201 * only be used by systems and drivers which create devices covering others
204 make_dev_covering(struct dev_ops
*ops
, struct dev_ops
*bops
, int minor
,
205 uid_t uid
, gid_t gid
, int perms
, const char *fmt
, ...)
211 * compile the cdevsw and install the device
213 compile_dev_ops(ops
);
215 devfs_dev
= devfs_new_cdev(ops
, minor
, bops
);
217 kvsnrprintf(devfs_dev
->si_name
, sizeof(devfs_dev
->si_name
),
221 devfs_debug(DEVFS_DEBUG_INFO
,
222 "make_dev called for %s\n",
224 devfs_create_dev(devfs_dev
, uid
, gid
, perms
);
232 make_only_devfs_dev(struct dev_ops
*ops
, int minor
, uid_t uid
, gid_t gid
,
233 int perms
, const char *fmt
, ...)
239 * compile the cdevsw and install the device
241 compile_dev_ops(ops
);
242 devfs_dev
= devfs_new_cdev(ops
, minor
, NULL
);
245 * Set additional fields (XXX DEVFS interface goes here)
248 kvsnrprintf(devfs_dev
->si_name
, sizeof(devfs_dev
->si_name
),
252 devfs_create_dev(devfs_dev
, uid
, gid
, perms
);
258 make_only_dev(struct dev_ops
*ops
, int minor
, uid_t uid
, gid_t gid
,
259 int perms
, const char *fmt
, ...)
265 * compile the cdevsw and install the device
267 compile_dev_ops(ops
);
268 devfs_dev
= devfs_new_cdev(ops
, minor
, NULL
);
269 devfs_dev
->si_perms
= perms
;
270 devfs_dev
->si_uid
= uid
;
271 devfs_dev
->si_gid
= gid
;
274 * Set additional fields (XXX DEVFS interface goes here)
277 kvsnrprintf(devfs_dev
->si_name
, sizeof(devfs_dev
->si_name
),
281 reference_dev(devfs_dev
);
287 make_only_dev_covering(struct dev_ops
*ops
, struct dev_ops
*bops
, int minor
,
288 uid_t uid
, gid_t gid
, int perms
, const char *fmt
, ...)
294 * compile the cdevsw and install the device
296 compile_dev_ops(ops
);
297 devfs_dev
= devfs_new_cdev(ops
, minor
, bops
);
298 devfs_dev
->si_perms
= perms
;
299 devfs_dev
->si_uid
= uid
;
300 devfs_dev
->si_gid
= gid
;
303 * Set additional fields (XXX DEVFS interface goes here)
306 kvsnrprintf(devfs_dev
->si_name
, sizeof(devfs_dev
->si_name
),
310 reference_dev(devfs_dev
);
316 destroy_only_dev(cdev_t dev
)
324 * destroy_dev() removes the adhoc association for a device and revectors
325 * its ops to &dead_dev_ops.
327 * This routine releases the reference count associated with the ADHOC
328 * entry, plus releases the reference count held by the caller. What this
329 * means is that you should not call destroy_dev(make_dev(...)), because
330 * make_dev() does not bump the reference count (beyond what it needs to
331 * create the ad-hoc association). Any procedure that intends to destroy
332 * a device must have its own reference to it first.
335 destroy_dev(cdev_t dev
)
338 devfs_debug(DEVFS_DEBUG_DEBUG
,
339 "destroy_dev called for %s\n",
341 devfs_destroy_dev(dev
);
346 * Make sure all asynchronous disk and devfs related operations have
349 * Typically called prior to mountroot to ensure that all disks have
350 * been completely probed and on module unload to ensure that ops
351 * structures have been dereferenced.
363 make_dev_alias(cdev_t target
, const char *fmt
, ...)
369 kvasnrprintf(&name
, PATH_MAX
, 32, fmt
, ap
);
372 devfs_make_alias(name
, target
);
379 destroy_dev_alias(cdev_t target
, const char *fmt
, ...)
385 kvasnrprintf(&name
, PATH_MAX
, 32, fmt
, ap
);
388 devfs_destroy_alias(name
, target
);
394 extern struct dev_ops default_dev_ops
;
397 make_autoclone_dev(struct dev_ops
*ops
, struct devfs_bitmap
*bitmap
,
398 d_clone_t
*nhandler
, uid_t uid
, gid_t gid
, int perms
, const char *fmt
, ...)
405 kvasnrprintf(&name
, PATH_MAX
, 32, fmt
, ap
);
409 devfs_clone_bitmap_init(bitmap
);
411 devfs_clone_handler_add(name
, nhandler
);
412 dev
= make_dev_covering(&default_dev_ops
, ops
, 0xffff00ff,
413 uid
, gid
, perms
, "%s", name
);
419 destroy_autoclone_dev(cdev_t dev
, struct devfs_bitmap
*bitmap
)
424 devfs_clone_handler_del(dev
->si_name
);
427 devfs_clone_bitmap_uninit(bitmap
);
434 * Add a reference to a device. Callers generally add their own references
435 * when they are going to store a device node in a variable for long periods
436 * of time, to prevent a disassociation from free()ing the node.
438 * Also note that a caller that intends to call destroy_dev() must first
439 * obtain a reference on the device. The ad-hoc reference you get with
440 * make_dev() and friends is NOT sufficient to be able to call destroy_dev().
443 reference_dev(cdev_t dev
)
445 //kprintf("reference_dev\n");
448 sysref_get(&dev
->si_sysref
);
449 if (dev_ref_debug
& 2) {
450 kprintf("reference dev %p %s(minor=%08x) refs=%d\n",
451 dev
, devtoname(dev
), dev
->si_uminor
,
452 dev
->si_sysref
.refcnt
);
459 * release a reference on a device. The device will be terminated when the
460 * last reference has been released.
462 * NOTE: we must use si_umajor to figure out the original major number,
463 * because si_ops could already be pointing at dead_dev_ops.
466 release_dev(cdev_t dev
)
468 //kprintf("release_dev\n");
472 sysref_put(&dev
->si_sysref
);
476 devtoname(cdev_t dev
)
485 if (dev
->si_name
[0] == '#' || dev
->si_name
[0] == '\0') {
487 len
= sizeof(dev
->si_name
);
488 if ((dname
= dev_dname(dev
)) != NULL
)
489 ksnprintf(p
, len
, "#%s/", dname
);
491 ksnprintf(p
, len
, "#%d/", major(dev
));
495 if (mynor
< 0 || mynor
> 255)
496 ksnprintf(p
, len
, "%#x", (u_int
)mynor
);
498 ksnprintf(p
, len
, "%d", mynor
);
500 return (dev
->si_name
);