xref: /dflybsd-src/sys/vfs/devfs/devfs_core.c (revision d6f1548688ce6fc623d8ec7fca44865ddde2a5d7)
1 /*
2  * Copyright (c) 2009 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Alex Hornung <ahornung@gmail.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/mount.h>
38 #include <sys/vnode.h>
39 #include <sys/types.h>
40 #include <sys/lock.h>
41 #include <sys/msgport.h>
42 #include <sys/msgport2.h>
43 #include <sys/spinlock2.h>
44 #include <sys/sysctl.h>
45 #include <sys/ucred.h>
46 #include <sys/param.h>
47 #include <sys/sysref2.h>
48 #include <sys/systm.h>
49 #include <sys/devfs.h>
50 #include <sys/devfs_rules.h>
51 #include <sys/hotplug.h>
52 #include <sys/udev.h>
53 
54 MALLOC_DEFINE(M_DEVFS, "devfs", "Device File System (devfs) allocations");
55 DEVFS_DECLARE_CLONE_BITMAP(ops_id);
56 /*
57  * SYSREF Integration - reference counting, allocation,
58  * sysid and syslink integration.
59  */
60 static void devfs_cdev_terminate(cdev_t dev);
61 static void devfs_cdev_lock(cdev_t dev);
62 static void devfs_cdev_unlock(cdev_t dev);
63 static struct sysref_class     cdev_sysref_class = {
64 	.name =         "cdev",
65 	.mtype =        M_DEVFS,
66 	.proto =        SYSREF_PROTO_DEV,
67 	.offset =       offsetof(struct cdev, si_sysref),
68 	.objsize =      sizeof(struct cdev),
69 	.mag_capacity = 32,
70 	.flags =        0,
71 	.ops =  {
72 		.terminate = (sysref_terminate_func_t)devfs_cdev_terminate,
73 		.lock = (sysref_lock_func_t)devfs_cdev_lock,
74 		.unlock = (sysref_unlock_func_t)devfs_cdev_unlock
75 	}
76 };
77 
78 static struct objcache	*devfs_node_cache;
79 static struct objcache 	*devfs_msg_cache;
80 static struct objcache	*devfs_dev_cache;
81 
82 static struct objcache_malloc_args devfs_node_malloc_args = {
83 	sizeof(struct devfs_node), M_DEVFS };
84 struct objcache_malloc_args devfs_msg_malloc_args = {
85 	sizeof(struct devfs_msg), M_DEVFS };
86 struct objcache_malloc_args devfs_dev_malloc_args = {
87 	sizeof(struct cdev), M_DEVFS };
88 
89 static struct devfs_dev_head devfs_dev_list =
90 		TAILQ_HEAD_INITIALIZER(devfs_dev_list);
91 static struct devfs_mnt_head devfs_mnt_list =
92 		TAILQ_HEAD_INITIALIZER(devfs_mnt_list);
93 static struct devfs_chandler_head devfs_chandler_list =
94 		TAILQ_HEAD_INITIALIZER(devfs_chandler_list);
95 static struct devfs_alias_head devfs_alias_list =
96 		TAILQ_HEAD_INITIALIZER(devfs_alias_list);
97 static struct devfs_dev_ops_head devfs_dev_ops_list =
98 		TAILQ_HEAD_INITIALIZER(devfs_dev_ops_list);
99 
100 struct lock 		devfs_lock;
101 static struct lwkt_port devfs_dispose_port;
102 static struct lwkt_port devfs_msg_port;
103 static struct thread 	*td_core;
104 
105 static struct spinlock  ino_lock;
106 static ino_t 	d_ino;
107 static int	devfs_debug_enable;
108 static int	devfs_run;
109 
110 static ino_t devfs_fetch_ino(void);
111 static int devfs_create_all_dev_worker(struct devfs_node *);
112 static int devfs_create_dev_worker(cdev_t, uid_t, gid_t, int);
113 static int devfs_destroy_dev_worker(cdev_t);
114 static int devfs_destroy_subnames_worker(char *);
115 static int devfs_destroy_dev_by_ops_worker(struct dev_ops *, int);
116 static int devfs_propagate_dev(cdev_t, int);
117 static int devfs_unlink_dev(cdev_t dev);
118 static void devfs_msg_exec(devfs_msg_t msg);
119 
120 static int devfs_chandler_add_worker(const char *, d_clone_t *);
121 static int devfs_chandler_del_worker(const char *);
122 
123 static void devfs_msg_autofree_reply(lwkt_port_t, lwkt_msg_t);
124 static void devfs_msg_core(void *);
125 
126 static int devfs_find_device_by_name_worker(devfs_msg_t);
127 static int devfs_find_device_by_udev_worker(devfs_msg_t);
128 
129 static int devfs_apply_reset_rules_caller(char *, int);
130 
131 static int devfs_scan_callback_worker(devfs_scan_t *, void *);
132 
133 static struct devfs_node *devfs_resolve_or_create_dir(struct devfs_node *,
134 		char *, size_t, int);
135 
136 static int devfs_make_alias_worker(struct devfs_alias *);
137 static int devfs_alias_remove(cdev_t);
138 static int devfs_alias_reap(void);
139 static int devfs_alias_propagate(struct devfs_alias *);
140 static int devfs_alias_apply(struct devfs_node *, struct devfs_alias *);
141 static int devfs_alias_check_create(struct devfs_node *);
142 
143 static int devfs_clr_subnames_flag_worker(char *, uint32_t);
144 static int devfs_destroy_subnames_without_flag_worker(char *, uint32_t);
145 
146 static void *devfs_reaperp_callback(struct devfs_node *, void *);
147 static void *devfs_gc_dirs_callback(struct devfs_node *, void *);
148 static void *devfs_gc_links_callback(struct devfs_node *, struct devfs_node *);
149 static void *
150 devfs_inode_to_vnode_worker_callback(struct devfs_node *, ino_t *);
151 
152 /* hotplug */
153 void (*devfs_node_added)(struct hotplug_device*) = NULL;
154 void (*devfs_node_removed)(struct hotplug_device*) = NULL;
155 
156 /*
157  * devfs_debug() is a SYSCTL and TUNABLE controlled debug output function
158  * using kvprintf
159  */
160 int
161 devfs_debug(int level, char *fmt, ...)
162 {
163 	__va_list ap;
164 
165 	__va_start(ap, fmt);
166 	if (level <= devfs_debug_enable)
167 		kvprintf(fmt, ap);
168 	__va_end(ap);
169 
170 	return 0;
171 }
172 
173 /*
174  * devfs_allocp() Allocates a new devfs node with the specified
175  * parameters. The node is also automatically linked into the topology
176  * if a parent is specified. It also calls the rule and alias stuff to
177  * be applied on the new node
178  */
179 struct devfs_node *
180 devfs_allocp(devfs_nodetype devfsnodetype, char *name,
181 	     struct devfs_node *parent, struct mount *mp, cdev_t dev)
182 {
183 	struct devfs_node *node = NULL;
184 	size_t namlen = strlen(name);
185 
186 	node = objcache_get(devfs_node_cache, M_WAITOK);
187 	bzero(node, sizeof(*node));
188 
189 	atomic_add_long(&(DEVFS_MNTDATA(mp)->leak_count), 1);
190 
191 	node->d_dev = NULL;
192 	node->nchildren = 1;
193 	node->mp = mp;
194 	node->d_dir.d_ino = devfs_fetch_ino();
195 
196 	/*
197 	 * Cookie jar for children. Leave 0 and 1 for '.' and '..' entries
198 	 * respectively.
199 	 */
200 	node->cookie_jar = 2;
201 
202 	/*
203 	 * Access Control members
204 	 */
205 	node->mode = DEVFS_DEFAULT_MODE;
206 	node->uid = DEVFS_DEFAULT_UID;
207 	node->gid = DEVFS_DEFAULT_GID;
208 
209 	switch (devfsnodetype) {
210 	case Proot:
211 		/*
212 		 * Ensure that we don't recycle the root vnode by marking it as
213 		 * linked into the topology.
214 		 */
215 		node->flags |= DEVFS_NODE_LINKED;
216 	case Pdir:
217 		TAILQ_INIT(DEVFS_DENODE_HEAD(node));
218 		node->d_dir.d_type = DT_DIR;
219 		node->nchildren = 2;
220 		break;
221 
222 	case Plink:
223 		node->d_dir.d_type = DT_LNK;
224 		break;
225 
226 	case Preg:
227 		node->d_dir.d_type = DT_REG;
228 		break;
229 
230 	case Pdev:
231 		if (dev != NULL) {
232 			node->d_dir.d_type = DT_CHR;
233 			node->d_dev = dev;
234 
235 			node->mode = dev->si_perms;
236 			node->uid = dev->si_uid;
237 			node->gid = dev->si_gid;
238 
239 			devfs_alias_check_create(node);
240 		}
241 		break;
242 
243 	default:
244 		panic("devfs_allocp: unknown node type");
245 	}
246 
247 	node->v_node = NULL;
248 	node->node_type = devfsnodetype;
249 
250 	/* Initialize the dirent structure of each devfs vnode */
251 	node->d_dir.d_namlen = namlen;
252 	node->d_dir.d_name = kmalloc(namlen+1, M_DEVFS, M_WAITOK);
253 	memcpy(node->d_dir.d_name, name, namlen);
254 	node->d_dir.d_name[namlen] = '\0';
255 
256 	/* Initialize the parent node element */
257 	node->parent = parent;
258 
259 	/* Apply rules */
260 	devfs_rule_check_apply(node, NULL);
261 
262 	/* Initialize *time members */
263 	nanotime(&node->atime);
264 	node->mtime = node->ctime = node->atime;
265 
266 	/*
267 	 * Associate with parent as last step, clean out namecache
268 	 * reference.
269 	 */
270 	if ((parent != NULL) &&
271 	    ((parent->node_type == Proot) || (parent->node_type == Pdir))) {
272 		parent->nchildren++;
273 		node->cookie = parent->cookie_jar++;
274 		node->flags |= DEVFS_NODE_LINKED;
275 		TAILQ_INSERT_TAIL(DEVFS_DENODE_HEAD(parent), node, link);
276 
277 		/* This forces negative namecache lookups to clear */
278 		++mp->mnt_namecache_gen;
279 	}
280 
281 	++DEVFS_MNTDATA(mp)->file_count;
282 
283 	return node;
284 }
285 
286 /*
287  * devfs_allocv() allocates a new vnode based on a devfs node.
288  */
289 int
290 devfs_allocv(struct vnode **vpp, struct devfs_node *node)
291 {
292 	struct vnode *vp;
293 	int error = 0;
294 
295 	KKASSERT(node);
296 
297 try_again:
298 	while ((vp = node->v_node) != NULL) {
299 		error = vget(vp, LK_EXCLUSIVE);
300 		if (error != ENOENT) {
301 			*vpp = vp;
302 			goto out;
303 		}
304 	}
305 
306 	if ((error = getnewvnode(VT_DEVFS, node->mp, vpp, 0, 0)) != 0)
307 		goto out;
308 
309 	vp = *vpp;
310 
311 	if (node->v_node != NULL) {
312 		vp->v_type = VBAD;
313 		vx_put(vp);
314 		goto try_again;
315 	}
316 
317 	vp->v_data = node;
318 	node->v_node = vp;
319 
320 	switch (node->node_type) {
321 	case Proot:
322 		vsetflags(vp, VROOT);
323 		/* fall through */
324 	case Pdir:
325 		vp->v_type = VDIR;
326 		break;
327 
328 	case Plink:
329 		vp->v_type = VLNK;
330 		break;
331 
332 	case Preg:
333 		vp->v_type = VREG;
334 		break;
335 
336 	case Pdev:
337 		vp->v_type = VCHR;
338 		KKASSERT(node->d_dev);
339 
340 		vp->v_uminor = node->d_dev->si_uminor;
341 		vp->v_umajor = 0;
342 
343 		v_associate_rdev(vp, node->d_dev);
344 		vp->v_ops = &node->mp->mnt_vn_spec_ops;
345 		break;
346 
347 	default:
348 		panic("devfs_allocv: unknown node type");
349 	}
350 
351 out:
352 	return error;
353 }
354 
355 /*
356  * devfs_allocvp allocates both a devfs node (with the given settings) and a vnode
357  * based on the newly created devfs node.
358  */
359 int
360 devfs_allocvp(struct mount *mp, struct vnode **vpp, devfs_nodetype devfsnodetype,
361 		char *name, struct devfs_node *parent, cdev_t dev)
362 {
363 	struct devfs_node *node;
364 
365 	node = devfs_allocp(devfsnodetype, name, parent, mp, dev);
366 
367 	if (node != NULL)
368 		devfs_allocv(vpp, node);
369 	else
370 		*vpp = NULL;
371 
372 	return 0;
373 }
374 
375 /*
376  * Destroy the devfs_node.  The node must be unlinked from the topology.
377  *
378  * This function will also destroy any vnode association with the node
379  * and device.
380  *
381  * The cdev_t itself remains intact.
382  */
383 int
384 devfs_freep(struct devfs_node *node)
385 {
386 	struct vnode *vp;
387 
388 	KKASSERT(node);
389 	KKASSERT(((node->flags & DEVFS_NODE_LINKED) == 0) ||
390 		 (node->node_type == Proot));
391 	KKASSERT((node->flags & DEVFS_DESTROYED) == 0);
392 
393 	atomic_subtract_long(&(DEVFS_MNTDATA(node->mp)->leak_count), 1);
394 	if (node->symlink_name)	{
395 		kfree(node->symlink_name, M_DEVFS);
396 		node->symlink_name = NULL;
397 	}
398 
399 	/*
400 	 * Remove the node from the orphan list if it is still on it.
401 	 */
402 	if (node->flags & DEVFS_ORPHANED)
403 		devfs_tracer_del_orphan(node);
404 
405 	/*
406 	 * Disassociate the vnode from the node.  This also prevents the
407 	 * vnode's reclaim code from double-freeing the node.
408 	 *
409 	 * The vget is needed to safely modify the vp.  It also serves
410 	 * to cycle the refs and terminate the vnode if it happens to
411 	 * be inactive, otherwise namecache references may not get cleared.
412 	 */
413 	while ((vp = node->v_node) != NULL) {
414 		if (vget(vp, LK_EXCLUSIVE | LK_RETRY) != 0)
415 			break;
416 		v_release_rdev(vp);
417 		vp->v_data = NULL;
418 		node->v_node = NULL;
419 		cache_inval_vp(vp, CINV_DESTROY);
420 		vput(vp);
421 	}
422 	if (node->d_dir.d_name) {
423 		kfree(node->d_dir.d_name, M_DEVFS);
424 		node->d_dir.d_name = NULL;
425 	}
426 	node->flags |= DEVFS_DESTROYED;
427 
428 	--DEVFS_MNTDATA(node->mp)->file_count;
429 
430 	objcache_put(devfs_node_cache, node);
431 
432 	return 0;
433 }
434 
435 /*
436  * Unlink the devfs node from the topology and add it to the orphan list.
437  * The node will later be destroyed by freep.
438  *
439  * Any vnode association, including the v_rdev and v_data, remains intact
440  * until the freep.
441  */
442 int
443 devfs_unlinkp(struct devfs_node *node)
444 {
445 	struct devfs_node *parent;
446 	struct hotplug_device *hpdev;
447 	KKASSERT(node);
448 
449 	/*
450 	 * Add the node to the orphan list, so it is referenced somewhere, to
451 	 * so we don't leak it.
452 	 */
453 	devfs_tracer_add_orphan(node);
454 
455 	parent = node->parent;
456 
457 	/*
458 	 * If the parent is known we can unlink the node out of the topology
459 	 */
460 	if (parent)	{
461 		TAILQ_REMOVE(DEVFS_DENODE_HEAD(parent), node, link);
462 		parent->nchildren--;
463 		node->flags &= ~DEVFS_NODE_LINKED;
464 	}
465 	/* hotplug handler */
466 	if(devfs_node_removed) {
467 		hpdev = kmalloc(sizeof(struct hotplug_device), M_TEMP, M_WAITOK);
468 		hpdev->dev = node->d_dev;
469 		if(hpdev->dev)
470 			hpdev->name = node->d_dev->si_name;
471 		devfs_node_removed(hpdev);
472 		kfree(hpdev, M_TEMP);
473 	}
474 	node->parent = NULL;
475 	return 0;
476 }
477 
478 void *
479 devfs_iterate_topology(struct devfs_node *node,
480 		devfs_iterate_callback_t *callback, void *arg1)
481 {
482 	struct devfs_node *node1, *node2;
483 	void *ret = NULL;
484 
485 	if ((node->node_type == Proot) || (node->node_type == Pdir)) {
486 		if (node->nchildren > 2) {
487 			TAILQ_FOREACH_MUTABLE(node1, DEVFS_DENODE_HEAD(node),
488 							link, node2) {
489 				if ((ret = devfs_iterate_topology(node1, callback, arg1)))
490 					return ret;
491 			}
492 		}
493 	}
494 
495 	ret = callback(node, arg1);
496 	return ret;
497 }
498 
499 /*
500  * devfs_reaperp() is a recursive function that iterates through all the
501  * topology, unlinking and freeing all devfs nodes.
502  */
503 static void *
504 devfs_reaperp_callback(struct devfs_node *node, void *unused)
505 {
506 	devfs_unlinkp(node);
507 	devfs_freep(node);
508 
509 	return NULL;
510 }
511 
512 static void *
513 devfs_gc_dirs_callback(struct devfs_node *node, void *unused)
514 {
515 	if (node->node_type == Pdir) {
516 		if ((node->nchildren == 2) &&
517 		    !(node->flags & DEVFS_USER_CREATED)) {
518 			devfs_unlinkp(node);
519 			devfs_freep(node);
520 		}
521 	}
522 
523 	return NULL;
524 }
525 
526 static void *
527 devfs_gc_links_callback(struct devfs_node *node, struct devfs_node *target)
528 {
529 	if ((node->node_type == Plink) && (node->link_target == target)) {
530 		devfs_unlinkp(node);
531 		devfs_freep(node);
532 	}
533 
534 	return NULL;
535 }
536 
537 /*
538  * devfs_gc() is devfs garbage collector. It takes care of unlinking and
539  * freeing a node, but also removes empty directories and links that link
540  * via devfs auto-link mechanism to the node being deleted.
541  */
542 int
543 devfs_gc(struct devfs_node *node)
544 {
545 	struct devfs_node *root_node = DEVFS_MNTDATA(node->mp)->root_node;
546 
547 	if (node->nlinks > 0)
548 		devfs_iterate_topology(root_node,
549 				(devfs_iterate_callback_t *)devfs_gc_links_callback, node);
550 
551 	devfs_unlinkp(node);
552 	devfs_iterate_topology(root_node,
553 			(devfs_iterate_callback_t *)devfs_gc_dirs_callback, NULL);
554 
555 	devfs_freep(node);
556 
557 	return 0;
558 }
559 
560 /*
561  * devfs_create_dev() is the asynchronous entry point for device creation.
562  * It just sends a message with the relevant details to the devfs core.
563  *
564  * This function will reference the passed device.  The reference is owned
565  * by devfs and represents all of the device's node associations.
566  */
567 int
568 devfs_create_dev(cdev_t dev, uid_t uid, gid_t gid, int perms)
569 {
570 	reference_dev(dev);
571 	devfs_msg_send_dev(DEVFS_DEVICE_CREATE, dev, uid, gid, perms);
572 
573 	return 0;
574 }
575 
576 /*
577  * devfs_destroy_dev() is the asynchronous entry point for device destruction.
578  * It just sends a message with the relevant details to the devfs core.
579  */
580 int
581 devfs_destroy_dev(cdev_t dev)
582 {
583 	devfs_msg_send_dev(DEVFS_DEVICE_DESTROY, dev, 0, 0, 0);
584 	return 0;
585 }
586 
587 /*
588  * devfs_mount_add() is the synchronous entry point for adding a new devfs
589  * mount.  It sends a synchronous message with the relevant details to the
590  * devfs core.
591  */
592 int
593 devfs_mount_add(struct devfs_mnt_data *mnt)
594 {
595 	devfs_msg_t msg;
596 
597 	msg = devfs_msg_get();
598 	msg->mdv_mnt = mnt;
599 	msg = devfs_msg_send_sync(DEVFS_MOUNT_ADD, msg);
600 	devfs_msg_put(msg);
601 
602 	return 0;
603 }
604 
605 /*
606  * devfs_mount_del() is the synchronous entry point for removing a devfs mount.
607  * It sends a synchronous message with the relevant details to the devfs core.
608  */
609 int
610 devfs_mount_del(struct devfs_mnt_data *mnt)
611 {
612 	devfs_msg_t msg;
613 
614 	msg = devfs_msg_get();
615 	msg->mdv_mnt = mnt;
616 	msg = devfs_msg_send_sync(DEVFS_MOUNT_DEL, msg);
617 	devfs_msg_put(msg);
618 
619 	return 0;
620 }
621 
622 /*
623  * devfs_destroy_subnames() is the synchronous entry point for device
624  * destruction by subname. It just sends a message with the relevant details to
625  * the devfs core.
626  */
627 int
628 devfs_destroy_subnames(char *name)
629 {
630 	devfs_msg_t msg;
631 
632 	msg = devfs_msg_get();
633 	msg->mdv_load = name;
634 	msg = devfs_msg_send_sync(DEVFS_DESTROY_SUBNAMES, msg);
635 	devfs_msg_put(msg);
636 	return 0;
637 }
638 
639 int
640 devfs_clr_subnames_flag(char *name, uint32_t flag)
641 {
642 	devfs_msg_t msg;
643 
644 	msg = devfs_msg_get();
645 	msg->mdv_flags.name = name;
646 	msg->mdv_flags.flag = flag;
647 	msg = devfs_msg_send_sync(DEVFS_CLR_SUBNAMES_FLAG, msg);
648 	devfs_msg_put(msg);
649 
650 	return 0;
651 }
652 
653 int
654 devfs_destroy_subnames_without_flag(char *name, uint32_t flag)
655 {
656 	devfs_msg_t msg;
657 
658 	msg = devfs_msg_get();
659 	msg->mdv_flags.name = name;
660 	msg->mdv_flags.flag = flag;
661 	msg = devfs_msg_send_sync(DEVFS_DESTROY_SUBNAMES_WO_FLAG, msg);
662 	devfs_msg_put(msg);
663 
664 	return 0;
665 }
666 
667 /*
668  * devfs_create_all_dev is the asynchronous entry point to trigger device
669  * node creation.  It just sends a message with the relevant details to
670  * the devfs core.
671  */
672 int
673 devfs_create_all_dev(struct devfs_node *root)
674 {
675 	devfs_msg_send_generic(DEVFS_CREATE_ALL_DEV, root);
676 	return 0;
677 }
678 
679 /*
680  * devfs_destroy_dev_by_ops is the asynchronous entry point to destroy all
681  * devices with a specific set of dev_ops and minor.  It just sends a
682  * message with the relevant details to the devfs core.
683  */
684 int
685 devfs_destroy_dev_by_ops(struct dev_ops *ops, int minor)
686 {
687 	devfs_msg_send_ops(DEVFS_DESTROY_DEV_BY_OPS, ops, minor);
688 	return 0;
689 }
690 
691 /*
692  * devfs_clone_handler_add is the synchronous entry point to add a new
693  * clone handler.  It just sends a message with the relevant details to
694  * the devfs core.
695  */
696 int
697 devfs_clone_handler_add(const char *name, d_clone_t *nhandler)
698 {
699 	devfs_msg_t msg;
700 
701 	msg = devfs_msg_get();
702 	msg->mdv_chandler.name = name;
703 	msg->mdv_chandler.nhandler = nhandler;
704 	msg = devfs_msg_send_sync(DEVFS_CHANDLER_ADD, msg);
705 	devfs_msg_put(msg);
706 	return 0;
707 }
708 
709 /*
710  * devfs_clone_handler_del is the synchronous entry point to remove a
711  * clone handler.  It just sends a message with the relevant details to
712  * the devfs core.
713  */
714 int
715 devfs_clone_handler_del(const char *name)
716 {
717 	devfs_msg_t msg;
718 
719 	msg = devfs_msg_get();
720 	msg->mdv_chandler.name = name;
721 	msg->mdv_chandler.nhandler = NULL;
722 	msg = devfs_msg_send_sync(DEVFS_CHANDLER_DEL, msg);
723 	devfs_msg_put(msg);
724 	return 0;
725 }
726 
727 /*
728  * devfs_find_device_by_name is the synchronous entry point to find a
729  * device given its name.  It sends a synchronous message with the
730  * relevant details to the devfs core and returns the answer.
731  */
732 cdev_t
733 devfs_find_device_by_name(const char *fmt, ...)
734 {
735 	cdev_t found = NULL;
736 	devfs_msg_t msg;
737 	char *target;
738 	__va_list ap;
739 
740 	if (fmt == NULL)
741 		return NULL;
742 
743 	__va_start(ap, fmt);
744 	kvasnrprintf(&target, PATH_MAX, 10, fmt, ap);
745 	__va_end(ap);
746 
747 	msg = devfs_msg_get();
748 	msg->mdv_name = target;
749 	msg = devfs_msg_send_sync(DEVFS_FIND_DEVICE_BY_NAME, msg);
750 	found = msg->mdv_cdev;
751 	devfs_msg_put(msg);
752 	kvasfree(&target);
753 
754 	return found;
755 }
756 
757 /*
758  * devfs_find_device_by_udev is the synchronous entry point to find a
759  * device given its udev number.  It sends a synchronous message with
760  * the relevant details to the devfs core and returns the answer.
761  */
762 cdev_t
763 devfs_find_device_by_udev(udev_t udev)
764 {
765 	cdev_t found = NULL;
766 	devfs_msg_t msg;
767 
768 	msg = devfs_msg_get();
769 	msg->mdv_udev = udev;
770 	msg = devfs_msg_send_sync(DEVFS_FIND_DEVICE_BY_UDEV, msg);
771 	found = msg->mdv_cdev;
772 	devfs_msg_put(msg);
773 
774 	devfs_debug(DEVFS_DEBUG_DEBUG,
775 		    "devfs_find_device_by_udev found? %s  -end:3-\n",
776 		    ((found) ? found->si_name:"NO"));
777 	return found;
778 }
779 
780 struct vnode *
781 devfs_inode_to_vnode(struct mount *mp, ino_t target)
782 {
783 	struct vnode *vp = NULL;
784 	devfs_msg_t msg;
785 
786 	if (mp == NULL)
787 		return NULL;
788 
789 	msg = devfs_msg_get();
790 	msg->mdv_ino.mp = mp;
791 	msg->mdv_ino.ino = target;
792 	msg = devfs_msg_send_sync(DEVFS_INODE_TO_VNODE, msg);
793 	vp = msg->mdv_ino.vp;
794 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
795 	devfs_msg_put(msg);
796 
797 	return vp;
798 }
799 
800 /*
801  * devfs_make_alias is the asynchronous entry point to register an alias
802  * for a device.  It just sends a message with the relevant details to the
803  * devfs core.
804  */
805 int
806 devfs_make_alias(const char *name, cdev_t dev_target)
807 {
808 	struct devfs_alias *alias;
809 	size_t len;
810 
811 	len = strlen(name);
812 
813 	alias = kmalloc(sizeof(struct devfs_alias), M_DEVFS, M_WAITOK);
814 	alias->name = kstrdup(name, M_DEVFS);
815 	alias->namlen = len;
816 	alias->dev_target = dev_target;
817 
818 	devfs_msg_send_generic(DEVFS_MAKE_ALIAS, alias);
819 	return 0;
820 }
821 
822 /*
823  * devfs_apply_rules is the asynchronous entry point to trigger application
824  * of all rules.  It just sends a message with the relevant details to the
825  * devfs core.
826  */
827 int
828 devfs_apply_rules(char *mntto)
829 {
830 	char *new_name;
831 
832 	new_name = kstrdup(mntto, M_DEVFS);
833 	devfs_msg_send_name(DEVFS_APPLY_RULES, new_name);
834 
835 	return 0;
836 }
837 
838 /*
839  * devfs_reset_rules is the asynchronous entry point to trigger reset of all
840  * rules. It just sends a message with the relevant details to the devfs core.
841  */
842 int
843 devfs_reset_rules(char *mntto)
844 {
845 	char *new_name;
846 
847 	new_name = kstrdup(mntto, M_DEVFS);
848 	devfs_msg_send_name(DEVFS_RESET_RULES, new_name);
849 
850 	return 0;
851 }
852 
853 
854 /*
855  * devfs_scan_callback is the asynchronous entry point to call a callback
856  * on all cdevs.
857  * It just sends a message with the relevant details to the devfs core.
858  */
859 int
860 devfs_scan_callback(devfs_scan_t *callback, void *arg)
861 {
862 	devfs_msg_t msg;
863 
864 	KKASSERT(sizeof(callback) == sizeof(void *));
865 
866 	msg = devfs_msg_get();
867 	msg->mdv_load = callback;
868 	msg->mdv_load2 = arg;
869 	msg = devfs_msg_send_sync(DEVFS_SCAN_CALLBACK, msg);
870 	devfs_msg_put(msg);
871 
872 	return 0;
873 }
874 
875 
876 /*
877  * Acts as a message drain. Any message that is replied to here gets destroyed
878  * and the memory freed.
879  */
880 static void
881 devfs_msg_autofree_reply(lwkt_port_t port, lwkt_msg_t msg)
882 {
883 	devfs_msg_put((devfs_msg_t)msg);
884 }
885 
886 /*
887  * devfs_msg_get allocates a new devfs msg and returns it.
888  */
889 devfs_msg_t
890 devfs_msg_get(void)
891 {
892 	return objcache_get(devfs_msg_cache, M_WAITOK);
893 }
894 
895 /*
896  * devfs_msg_put deallocates a given devfs msg.
897  */
898 int
899 devfs_msg_put(devfs_msg_t msg)
900 {
901 	objcache_put(devfs_msg_cache, msg);
902 	return 0;
903 }
904 
905 /*
906  * devfs_msg_send is the generic asynchronous message sending facility
907  * for devfs. By default the reply port is the automatic disposal port.
908  *
909  * If the current thread is the devfs_msg_port thread we execute the
910  * operation synchronously.
911  */
912 void
913 devfs_msg_send(uint32_t cmd, devfs_msg_t devfs_msg)
914 {
915 	lwkt_port_t port = &devfs_msg_port;
916 
917 	lwkt_initmsg(&devfs_msg->hdr, &devfs_dispose_port, 0);
918 
919 	devfs_msg->hdr.u.ms_result = cmd;
920 
921 	if (port->mpu_td == curthread) {
922 		devfs_msg_exec(devfs_msg);
923 		lwkt_replymsg(&devfs_msg->hdr, 0);
924 	} else {
925 		lwkt_sendmsg(port, (lwkt_msg_t)devfs_msg);
926 	}
927 }
928 
929 /*
930  * devfs_msg_send_sync is the generic synchronous message sending
931  * facility for devfs. It initializes a local reply port and waits
932  * for the core's answer. This answer is then returned.
933  */
934 devfs_msg_t
935 devfs_msg_send_sync(uint32_t cmd, devfs_msg_t devfs_msg)
936 {
937 	struct lwkt_port rep_port;
938 	devfs_msg_t	msg_incoming;
939 	lwkt_port_t port = &devfs_msg_port;
940 
941 	lwkt_initport_thread(&rep_port, curthread);
942 	lwkt_initmsg(&devfs_msg->hdr, &rep_port, 0);
943 
944 	devfs_msg->hdr.u.ms_result = cmd;
945 
946 	lwkt_sendmsg(port, (lwkt_msg_t)devfs_msg);
947 	msg_incoming = lwkt_waitport(&rep_port, 0);
948 
949 	return msg_incoming;
950 }
951 
952 /*
953  * sends a message with a generic argument.
954  */
955 void
956 devfs_msg_send_generic(uint32_t cmd, void *load)
957 {
958 	devfs_msg_t devfs_msg = devfs_msg_get();
959 
960 	devfs_msg->mdv_load = load;
961 	devfs_msg_send(cmd, devfs_msg);
962 }
963 
964 /*
965  * sends a message with a name argument.
966  */
967 void
968 devfs_msg_send_name(uint32_t cmd, char *name)
969 {
970 	devfs_msg_t devfs_msg = devfs_msg_get();
971 
972 	devfs_msg->mdv_name = name;
973 	devfs_msg_send(cmd, devfs_msg);
974 }
975 
976 /*
977  * sends a message with a mount argument.
978  */
979 void
980 devfs_msg_send_mount(uint32_t cmd, struct devfs_mnt_data *mnt)
981 {
982 	devfs_msg_t devfs_msg = devfs_msg_get();
983 
984 	devfs_msg->mdv_mnt = mnt;
985 	devfs_msg_send(cmd, devfs_msg);
986 }
987 
988 /*
989  * sends a message with an ops argument.
990  */
991 void
992 devfs_msg_send_ops(uint32_t cmd, struct dev_ops *ops, int minor)
993 {
994 	devfs_msg_t devfs_msg = devfs_msg_get();
995 
996 	devfs_msg->mdv_ops.ops = ops;
997 	devfs_msg->mdv_ops.minor = minor;
998 	devfs_msg_send(cmd, devfs_msg);
999 }
1000 
1001 /*
1002  * sends a message with a clone handler argument.
1003  */
1004 void
1005 devfs_msg_send_chandler(uint32_t cmd, char *name, d_clone_t handler)
1006 {
1007 	devfs_msg_t devfs_msg = devfs_msg_get();
1008 
1009 	devfs_msg->mdv_chandler.name = name;
1010 	devfs_msg->mdv_chandler.nhandler = handler;
1011 	devfs_msg_send(cmd, devfs_msg);
1012 }
1013 
1014 /*
1015  * sends a message with a device argument.
1016  */
1017 void
1018 devfs_msg_send_dev(uint32_t cmd, cdev_t dev, uid_t uid, gid_t gid, int perms)
1019 {
1020 	devfs_msg_t devfs_msg = devfs_msg_get();
1021 
1022 	devfs_msg->mdv_dev.dev = dev;
1023 	devfs_msg->mdv_dev.uid = uid;
1024 	devfs_msg->mdv_dev.gid = gid;
1025 	devfs_msg->mdv_dev.perms = perms;
1026 
1027 	devfs_msg_send(cmd, devfs_msg);
1028 }
1029 
1030 /*
1031  * sends a message with a link argument.
1032  */
1033 void
1034 devfs_msg_send_link(uint32_t cmd, char *name, char *target, struct mount *mp)
1035 {
1036 	devfs_msg_t devfs_msg = devfs_msg_get();
1037 
1038 	devfs_msg->mdv_link.name = name;
1039 	devfs_msg->mdv_link.target = target;
1040 	devfs_msg->mdv_link.mp = mp;
1041 	devfs_msg_send(cmd, devfs_msg);
1042 }
1043 
1044 /*
1045  * devfs_msg_core is the main devfs thread. It handles all incoming messages
1046  * and calls the relevant worker functions. By using messages it's assured
1047  * that events occur in the correct order.
1048  */
1049 static void
1050 devfs_msg_core(void *arg)
1051 {
1052 	devfs_msg_t msg;
1053 
1054 	devfs_run = 1;
1055 	lwkt_initport_thread(&devfs_msg_port, curthread);
1056 	wakeup(td_core);
1057 
1058 	while (devfs_run) {
1059 		msg = (devfs_msg_t)lwkt_waitport(&devfs_msg_port, 0);
1060 		devfs_debug(DEVFS_DEBUG_DEBUG,
1061 				"devfs_msg_core, new msg: %x\n",
1062 				(unsigned int)msg->hdr.u.ms_result);
1063 		devfs_msg_exec(msg);
1064 		lwkt_replymsg(&msg->hdr, 0);
1065 	}
1066 	wakeup(td_core);
1067 	lwkt_exit();
1068 }
1069 
1070 static void
1071 devfs_msg_exec(devfs_msg_t msg)
1072 {
1073 	struct devfs_mnt_data *mnt;
1074 	struct devfs_node *node;
1075 	cdev_t	dev;
1076 
1077 	/*
1078 	 * Acquire the devfs lock to ensure safety of all called functions
1079 	 */
1080 	lockmgr(&devfs_lock, LK_EXCLUSIVE);
1081 
1082 	switch (msg->hdr.u.ms_result) {
1083 	case DEVFS_DEVICE_CREATE:
1084 		dev = msg->mdv_dev.dev;
1085 		devfs_create_dev_worker(dev,
1086 					msg->mdv_dev.uid,
1087 					msg->mdv_dev.gid,
1088 					msg->mdv_dev.perms);
1089 		break;
1090 	case DEVFS_DEVICE_DESTROY:
1091 		dev = msg->mdv_dev.dev;
1092 		devfs_destroy_dev_worker(dev);
1093 		break;
1094 	case DEVFS_DESTROY_SUBNAMES:
1095 		devfs_destroy_subnames_worker(msg->mdv_load);
1096 		break;
1097 	case DEVFS_DESTROY_DEV_BY_OPS:
1098 		devfs_destroy_dev_by_ops_worker(msg->mdv_ops.ops,
1099 						msg->mdv_ops.minor);
1100 		break;
1101 	case DEVFS_CREATE_ALL_DEV:
1102 		node = (struct devfs_node *)msg->mdv_load;
1103 		devfs_create_all_dev_worker(node);
1104 		break;
1105 	case DEVFS_MOUNT_ADD:
1106 		mnt = msg->mdv_mnt;
1107 		TAILQ_INSERT_TAIL(&devfs_mnt_list, mnt, link);
1108 		devfs_create_all_dev_worker(mnt->root_node);
1109 		break;
1110 	case DEVFS_MOUNT_DEL:
1111 		mnt = msg->mdv_mnt;
1112 		TAILQ_REMOVE(&devfs_mnt_list, mnt, link);
1113 		devfs_iterate_topology(mnt->root_node, devfs_reaperp_callback,
1114 				       NULL);
1115 		if (mnt->leak_count) {
1116 			devfs_debug(DEVFS_DEBUG_SHOW,
1117 				    "Leaked %ld devfs_node elements!\n",
1118 				    mnt->leak_count);
1119 		}
1120 		break;
1121 	case DEVFS_CHANDLER_ADD:
1122 		devfs_chandler_add_worker(msg->mdv_chandler.name,
1123 				msg->mdv_chandler.nhandler);
1124 		break;
1125 	case DEVFS_CHANDLER_DEL:
1126 		devfs_chandler_del_worker(msg->mdv_chandler.name);
1127 		break;
1128 	case DEVFS_FIND_DEVICE_BY_NAME:
1129 		devfs_find_device_by_name_worker(msg);
1130 		break;
1131 	case DEVFS_FIND_DEVICE_BY_UDEV:
1132 		devfs_find_device_by_udev_worker(msg);
1133 		break;
1134 	case DEVFS_MAKE_ALIAS:
1135 		devfs_make_alias_worker((struct devfs_alias *)msg->mdv_load);
1136 		break;
1137 	case DEVFS_APPLY_RULES:
1138 		devfs_apply_reset_rules_caller(msg->mdv_name, 1);
1139 		break;
1140 	case DEVFS_RESET_RULES:
1141 		devfs_apply_reset_rules_caller(msg->mdv_name, 0);
1142 		break;
1143 	case DEVFS_SCAN_CALLBACK:
1144 		devfs_scan_callback_worker((devfs_scan_t *)msg->mdv_load,
1145 			msg->mdv_load2);
1146 		break;
1147 	case DEVFS_CLR_SUBNAMES_FLAG:
1148 		devfs_clr_subnames_flag_worker(msg->mdv_flags.name,
1149 				msg->mdv_flags.flag);
1150 		break;
1151 	case DEVFS_DESTROY_SUBNAMES_WO_FLAG:
1152 		devfs_destroy_subnames_without_flag_worker(msg->mdv_flags.name,
1153 				msg->mdv_flags.flag);
1154 		break;
1155 	case DEVFS_INODE_TO_VNODE:
1156 		msg->mdv_ino.vp = devfs_iterate_topology(
1157 			DEVFS_MNTDATA(msg->mdv_ino.mp)->root_node,
1158 			(devfs_iterate_callback_t *)devfs_inode_to_vnode_worker_callback,
1159 			&msg->mdv_ino.ino);
1160 		break;
1161 	case DEVFS_TERMINATE_CORE:
1162 		devfs_run = 0;
1163 		break;
1164 	case DEVFS_SYNC:
1165 		break;
1166 	default:
1167 		devfs_debug(DEVFS_DEBUG_WARNING,
1168 			    "devfs_msg_core: unknown message "
1169 			    "received at core\n");
1170 		break;
1171 	}
1172 	lockmgr(&devfs_lock, LK_RELEASE);
1173 }
1174 
1175 /*
1176  * Worker function to insert a new dev into the dev list and initialize its
1177  * permissions. It also calls devfs_propagate_dev which in turn propagates
1178  * the change to all mount points.
1179  *
1180  * The passed dev is already referenced.  This reference is eaten by this
1181  * function and represents the dev's linkage into devfs_dev_list.
1182  */
1183 static int
1184 devfs_create_dev_worker(cdev_t dev, uid_t uid, gid_t gid, int perms)
1185 {
1186 	KKASSERT(dev);
1187 
1188 	dev->si_uid = uid;
1189 	dev->si_gid = gid;
1190 	dev->si_perms = perms;
1191 
1192 	devfs_link_dev(dev);
1193 	devfs_propagate_dev(dev, 1);
1194 
1195 	udev_event_attach(dev, NULL, 0);
1196 
1197 	return 0;
1198 }
1199 
1200 /*
1201  * Worker function to delete a dev from the dev list and free the cdev.
1202  * It also calls devfs_propagate_dev which in turn propagates the change
1203  * to all mount points.
1204  */
1205 static int
1206 devfs_destroy_dev_worker(cdev_t dev)
1207 {
1208 	int error;
1209 
1210 	KKASSERT(dev);
1211 	KKASSERT((lockstatus(&devfs_lock, curthread)) == LK_EXCLUSIVE);
1212 
1213 	error = devfs_unlink_dev(dev);
1214 	devfs_propagate_dev(dev, 0);
1215 
1216 	udev_event_detach(dev, NULL, 0);
1217 
1218 	if (error == 0)
1219 		release_dev(dev);	/* link ref */
1220 	release_dev(dev);
1221 	release_dev(dev);
1222 
1223 	return 0;
1224 }
1225 
1226 /*
1227  * Worker function to destroy all devices with a certain basename.
1228  * Calls devfs_destroy_dev_worker for the actual destruction.
1229  */
1230 static int
1231 devfs_destroy_subnames_worker(char *name)
1232 {
1233 	cdev_t dev, dev1;
1234 	size_t len = strlen(name);
1235 
1236 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1237 		if ((!strncmp(dev->si_name, name, len)) &&
1238 				(dev->si_name[len] != '\0')) {
1239 			devfs_destroy_dev_worker(dev);
1240 		}
1241 	}
1242 	return 0;
1243 }
1244 
1245 static int
1246 devfs_clr_subnames_flag_worker(char *name, uint32_t flag)
1247 {
1248 	cdev_t dev, dev1;
1249 	size_t len = strlen(name);
1250 
1251 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1252 		if ((!strncmp(dev->si_name, name, len)) &&
1253 				(dev->si_name[len] != '\0')) {
1254 			dev->si_flags &= ~flag;
1255 		}
1256 	}
1257 
1258 	return 0;
1259 }
1260 
1261 static int
1262 devfs_destroy_subnames_without_flag_worker(char *name, uint32_t flag)
1263 {
1264 	cdev_t dev, dev1;
1265 	size_t len = strlen(name);
1266 
1267 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1268 		if ((!strncmp(dev->si_name, name, len)) &&
1269 				(dev->si_name[len] != '\0')) {
1270 			if (!(dev->si_flags & flag)) {
1271 				devfs_destroy_dev_worker(dev);
1272 			}
1273 		}
1274 	}
1275 
1276 	return 0;
1277 }
1278 
1279 /*
1280  * Worker function that creates all device nodes on top of a devfs
1281  * root node.
1282  */
1283 static int
1284 devfs_create_all_dev_worker(struct devfs_node *root)
1285 {
1286 	cdev_t dev;
1287 
1288 	KKASSERT(root);
1289 
1290 	TAILQ_FOREACH(dev, &devfs_dev_list, link) {
1291 		devfs_create_device_node(root, dev, NULL, NULL);
1292 	}
1293 
1294 	return 0;
1295 }
1296 
1297 /*
1298  * Worker function that destroys all devices that match a specific
1299  * dev_ops and/or minor. If minor is less than 0, it is not matched
1300  * against. It also propagates all changes.
1301  */
1302 static int
1303 devfs_destroy_dev_by_ops_worker(struct dev_ops *ops, int minor)
1304 {
1305 	cdev_t dev, dev1;
1306 
1307 	KKASSERT(ops);
1308 
1309 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1310 		if (dev->si_ops != ops)
1311 			continue;
1312 		if ((minor < 0) || (dev->si_uminor == minor)) {
1313 			devfs_destroy_dev_worker(dev);
1314 		}
1315 	}
1316 
1317 	return 0;
1318 }
1319 
1320 /*
1321  * Worker function that registers a new clone handler in devfs.
1322  */
1323 static int
1324 devfs_chandler_add_worker(const char *name, d_clone_t *nhandler)
1325 {
1326 	struct devfs_clone_handler *chandler = NULL;
1327 	u_char len = strlen(name);
1328 
1329 	if (len == 0)
1330 		return 1;
1331 
1332 	TAILQ_FOREACH(chandler, &devfs_chandler_list, link) {
1333 		if (chandler->namlen != len)
1334 			continue;
1335 
1336 		if (!memcmp(chandler->name, name, len)) {
1337 			/* Clonable basename already exists */
1338 			return 1;
1339 		}
1340 	}
1341 
1342 	chandler = kmalloc(sizeof(*chandler), M_DEVFS, M_WAITOK | M_ZERO);
1343 	chandler->name = kstrdup(name, M_DEVFS);
1344 	chandler->namlen = len;
1345 	chandler->nhandler = nhandler;
1346 
1347 	TAILQ_INSERT_TAIL(&devfs_chandler_list, chandler, link);
1348 	return 0;
1349 }
1350 
1351 /*
1352  * Worker function that removes a given clone handler from the
1353  * clone handler list.
1354  */
1355 static int
1356 devfs_chandler_del_worker(const char *name)
1357 {
1358 	struct devfs_clone_handler *chandler, *chandler2;
1359 	u_char len = strlen(name);
1360 
1361 	if (len == 0)
1362 		return 1;
1363 
1364 	TAILQ_FOREACH_MUTABLE(chandler, &devfs_chandler_list, link, chandler2) {
1365 		if (chandler->namlen != len)
1366 			continue;
1367 		if (memcmp(chandler->name, name, len))
1368 			continue;
1369 
1370 		TAILQ_REMOVE(&devfs_chandler_list, chandler, link);
1371 		kfree(chandler->name, M_DEVFS);
1372 		kfree(chandler, M_DEVFS);
1373 		break;
1374 	}
1375 
1376 	return 0;
1377 }
1378 
1379 /*
1380  * Worker function that finds a given device name and changes
1381  * the message received accordingly so that when replied to,
1382  * the answer is returned to the caller.
1383  */
1384 static int
1385 devfs_find_device_by_name_worker(devfs_msg_t devfs_msg)
1386 {
1387 	struct devfs_alias *alias;
1388 	cdev_t dev;
1389 	cdev_t found = NULL;
1390 
1391 	TAILQ_FOREACH(dev, &devfs_dev_list, link) {
1392 		if (strcmp(devfs_msg->mdv_name, dev->si_name) == 0) {
1393 			found = dev;
1394 			break;
1395 		}
1396 	}
1397 	if (found == NULL) {
1398 		TAILQ_FOREACH(alias, &devfs_alias_list, link) {
1399 			if (strcmp(devfs_msg->mdv_name, alias->name) == 0) {
1400 				found = alias->dev_target;
1401 				break;
1402 			}
1403 		}
1404 	}
1405 	devfs_msg->mdv_cdev = found;
1406 
1407 	return 0;
1408 }
1409 
1410 /*
1411  * Worker function that finds a given device udev and changes
1412  * the message received accordingly so that when replied to,
1413  * the answer is returned to the caller.
1414  */
1415 static int
1416 devfs_find_device_by_udev_worker(devfs_msg_t devfs_msg)
1417 {
1418 	cdev_t dev, dev1;
1419 	cdev_t found = NULL;
1420 
1421 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1422 		if (((udev_t)dev->si_inode) == devfs_msg->mdv_udev) {
1423 			found = dev;
1424 			break;
1425 		}
1426 	}
1427 	devfs_msg->mdv_cdev = found;
1428 
1429 	return 0;
1430 }
1431 
1432 /*
1433  * Worker function that inserts a given alias into the
1434  * alias list, and propagates the alias to all mount
1435  * points.
1436  */
1437 static int
1438 devfs_make_alias_worker(struct devfs_alias *alias)
1439 {
1440 	struct devfs_alias *alias2;
1441 	size_t len = strlen(alias->name);
1442 	int found = 0;
1443 
1444 	TAILQ_FOREACH(alias2, &devfs_alias_list, link) {
1445 		if (len != alias2->namlen)
1446 			continue;
1447 
1448 		if (!memcmp(alias->name, alias2->name, len)) {
1449 			found = 1;
1450 			break;
1451 		}
1452 	}
1453 
1454 	if (!found) {
1455 		/*
1456 		 * The alias doesn't exist yet, so we add it to the alias list
1457 		 */
1458 		TAILQ_INSERT_TAIL(&devfs_alias_list, alias, link);
1459 		devfs_alias_propagate(alias);
1460 		udev_event_attach(alias->dev_target, alias->name, 1);
1461 	} else {
1462 		devfs_debug(DEVFS_DEBUG_WARNING,
1463 			    "Warning: duplicate devfs_make_alias for %s\n",
1464 			    alias->name);
1465 		kfree(alias->name, M_DEVFS);
1466 		kfree(alias, M_DEVFS);
1467 	}
1468 
1469 	return 0;
1470 }
1471 
1472 /*
1473  * Function that removes and frees all aliases.
1474  */
1475 static int
1476 devfs_alias_reap(void)
1477 {
1478 	struct devfs_alias *alias, *alias2;
1479 
1480 	TAILQ_FOREACH_MUTABLE(alias, &devfs_alias_list, link, alias2) {
1481 		TAILQ_REMOVE(&devfs_alias_list, alias, link);
1482 		kfree(alias, M_DEVFS);
1483 	}
1484 	return 0;
1485 }
1486 
1487 /*
1488  * Function that removes an alias matching a specific cdev and frees
1489  * it accordingly.
1490  */
1491 static int
1492 devfs_alias_remove(cdev_t dev)
1493 {
1494 	struct devfs_alias *alias, *alias2;
1495 
1496 	TAILQ_FOREACH_MUTABLE(alias, &devfs_alias_list, link, alias2) {
1497 		if (alias->dev_target == dev) {
1498 			TAILQ_REMOVE(&devfs_alias_list, alias, link);
1499 			udev_event_detach(alias->dev_target, alias->name, 1);
1500 			kfree(alias, M_DEVFS);
1501 		}
1502 	}
1503 	return 0;
1504 }
1505 
1506 /*
1507  * This function propagates a new alias to all mount points.
1508  */
1509 static int
1510 devfs_alias_propagate(struct devfs_alias *alias)
1511 {
1512 	struct devfs_mnt_data *mnt;
1513 
1514 	TAILQ_FOREACH(mnt, &devfs_mnt_list, link) {
1515 		devfs_alias_apply(mnt->root_node, alias);
1516 	}
1517 	return 0;
1518 }
1519 
1520 /*
1521  * This function is a recursive function iterating through
1522  * all device nodes in the topology and, if applicable,
1523  * creating the relevant alias for a device node.
1524  */
1525 static int
1526 devfs_alias_apply(struct devfs_node *node, struct devfs_alias *alias)
1527 {
1528 	struct devfs_node *node1, *node2;
1529 
1530 	KKASSERT(alias != NULL);
1531 
1532 	if ((node->node_type == Proot) || (node->node_type == Pdir)) {
1533 		if (node->nchildren > 2) {
1534 			TAILQ_FOREACH_MUTABLE(node1, DEVFS_DENODE_HEAD(node), link, node2) {
1535 				devfs_alias_apply(node1, alias);
1536 			}
1537 		}
1538 	} else {
1539 		if (node->d_dev == alias->dev_target)
1540 			devfs_alias_create(alias->name, node, 0);
1541 	}
1542 	return 0;
1543 }
1544 
1545 /*
1546  * This function checks if any alias possibly is applicable
1547  * to the given node. If so, the alias is created.
1548  */
1549 static int
1550 devfs_alias_check_create(struct devfs_node *node)
1551 {
1552 	struct devfs_alias *alias;
1553 
1554 	TAILQ_FOREACH(alias, &devfs_alias_list, link) {
1555 		if (node->d_dev == alias->dev_target)
1556 			devfs_alias_create(alias->name, node, 0);
1557 	}
1558 	return 0;
1559 }
1560 
1561 /*
1562  * This function creates an alias with a given name
1563  * linking to a given devfs node. It also increments
1564  * the link count on the target node.
1565  */
1566 int
1567 devfs_alias_create(char *name_orig, struct devfs_node *target, int rule_based)
1568 {
1569 	struct mount *mp = target->mp;
1570 	struct devfs_node *parent = DEVFS_MNTDATA(mp)->root_node;
1571 	struct devfs_node *linknode;
1572 	struct hotplug_device *hpdev;
1573 	char *create_path = NULL;
1574 	char *name;
1575 	char *name_buf;
1576 	int result = 0;
1577 
1578 	KKASSERT((lockstatus(&devfs_lock, curthread)) == LK_EXCLUSIVE);
1579 
1580 	name_buf = kmalloc(PATH_MAX, M_TEMP, M_WAITOK);
1581 	devfs_resolve_name_path(name_orig, name_buf, &create_path, &name);
1582 
1583 	if (create_path)
1584 		parent = devfs_resolve_or_create_path(parent, create_path, 1);
1585 
1586 
1587 	if (devfs_find_device_node_by_name(parent, name)) {
1588 		devfs_debug(DEVFS_DEBUG_WARNING,
1589 			    "Node already exists: %s "
1590 			    "(devfs_make_alias_worker)!\n",
1591 			    name);
1592 		result = 1;
1593 		goto done;
1594 	}
1595 
1596 	linknode = devfs_allocp(Plink, name, parent, mp, NULL);
1597 	if (linknode == NULL) {
1598 		result = 1;
1599 		goto done;
1600 	}
1601 
1602 	linknode->link_target = target;
1603 	target->nlinks++;
1604 
1605 	if (rule_based)
1606 		linknode->flags |= DEVFS_RULE_CREATED;
1607 
1608 done:
1609 	/* hotplug handler */
1610 	if(devfs_node_added) {
1611 		hpdev = kmalloc(sizeof(struct hotplug_device), M_TEMP, M_WAITOK);
1612 		hpdev->dev = target->d_dev;
1613 		hpdev->name = name_orig;
1614 		devfs_node_added(hpdev);
1615 		kfree(hpdev, M_TEMP);
1616 	}
1617 	kfree(name_buf, M_TEMP);
1618 	return (result);
1619 }
1620 
1621 /*
1622  * This function is called by the core and handles mount point
1623  * strings. It either calls the relevant worker (devfs_apply_
1624  * reset_rules_worker) on all mountpoints or only a specific
1625  * one.
1626  */
1627 static int
1628 devfs_apply_reset_rules_caller(char *mountto, int apply)
1629 {
1630 	struct devfs_mnt_data *mnt;
1631 
1632 	if (mountto[0] == '*') {
1633 		TAILQ_FOREACH(mnt, &devfs_mnt_list, link) {
1634 			devfs_iterate_topology(mnt->root_node,
1635 					(apply)?(devfs_rule_check_apply):(devfs_rule_reset_node),
1636 					NULL);
1637 		}
1638 	} else {
1639 		TAILQ_FOREACH(mnt, &devfs_mnt_list, link) {
1640 			if (!strcmp(mnt->mp->mnt_stat.f_mntonname, mountto)) {
1641 				devfs_iterate_topology(mnt->root_node,
1642 					(apply)?(devfs_rule_check_apply):(devfs_rule_reset_node),
1643 					NULL);
1644 				break;
1645 			}
1646 		}
1647 	}
1648 
1649 	kfree(mountto, M_DEVFS);
1650 	return 0;
1651 }
1652 
1653 /*
1654  * This function calls a given callback function for
1655  * every dev node in the devfs dev list.
1656  */
1657 static int
1658 devfs_scan_callback_worker(devfs_scan_t *callback, void *arg)
1659 {
1660 	cdev_t dev, dev1;
1661 
1662 	TAILQ_FOREACH_MUTABLE(dev, &devfs_dev_list, link, dev1) {
1663 		callback(dev, arg);
1664 	}
1665 
1666 	return 0;
1667 }
1668 
1669 /*
1670  * This function tries to resolve a given directory, or if not
1671  * found and creation requested, creates the given directory.
1672  */
1673 static struct devfs_node *
1674 devfs_resolve_or_create_dir(struct devfs_node *parent, char *dir_name,
1675 			    size_t name_len, int create)
1676 {
1677 	struct devfs_node *node, *found = NULL;
1678 
1679 	TAILQ_FOREACH(node, DEVFS_DENODE_HEAD(parent), link) {
1680 		if (name_len != node->d_dir.d_namlen)
1681 			continue;
1682 
1683 		if (!memcmp(dir_name, node->d_dir.d_name, name_len)) {
1684 			found = node;
1685 			break;
1686 		}
1687 	}
1688 
1689 	if ((found == NULL) && (create)) {
1690 		found = devfs_allocp(Pdir, dir_name, parent, parent->mp, NULL);
1691 	}
1692 
1693 	return found;
1694 }
1695 
1696 /*
1697  * This function tries to resolve a complete path. If creation is requested,
1698  * if a given part of the path cannot be resolved (because it doesn't exist),
1699  * it is created.
1700  */
1701 struct devfs_node *
1702 devfs_resolve_or_create_path(struct devfs_node *parent, char *path, int create)
1703 {
1704 	struct devfs_node *node = parent;
1705 	char *buf;
1706 	size_t idx = 0;
1707 
1708 	if (path == NULL)
1709 		return parent;
1710 
1711 	buf = kmalloc(PATH_MAX, M_TEMP, M_WAITOK);
1712 
1713 	while (*path && idx < PATH_MAX - 1) {
1714 		if (*path != '/') {
1715 			buf[idx++] = *path;
1716 		} else {
1717 			buf[idx] = '\0';
1718 			node = devfs_resolve_or_create_dir(node, buf, idx, create);
1719 			if (node == NULL) {
1720 				kfree(buf, M_TEMP);
1721 				return NULL;
1722 			}
1723 			idx = 0;
1724 		}
1725 		++path;
1726 	}
1727 	buf[idx] = '\0';
1728 	node = devfs_resolve_or_create_dir(node, buf, idx, create);
1729 	kfree (buf, M_TEMP);
1730 	return (node);
1731 }
1732 
1733 /*
1734  * Takes a full path and strips it into a directory path and a name.
1735  * For a/b/c/foo, it returns foo in namep and a/b/c in pathp. It
1736  * requires a working buffer with enough size to keep the whole
1737  * fullpath.
1738  */
1739 int
1740 devfs_resolve_name_path(char *fullpath, char *buf, char **pathp, char **namep)
1741 {
1742 	char *name = NULL;
1743 	char *path = NULL;
1744 	size_t len = strlen(fullpath) + 1;
1745 	int i;
1746 
1747 	KKASSERT((fullpath != NULL) && (buf != NULL));
1748 	KKASSERT((pathp != NULL) && (namep != NULL));
1749 
1750 	memcpy(buf, fullpath, len);
1751 
1752 	for (i = len-1; i>= 0; i--) {
1753 		if (buf[i] == '/') {
1754 			buf[i] = '\0';
1755 			name = &(buf[i+1]);
1756 			path = buf;
1757 			break;
1758 		}
1759 	}
1760 
1761 	*pathp = path;
1762 
1763 	if (name) {
1764 		*namep = name;
1765 	} else {
1766 		*namep = buf;
1767 	}
1768 
1769 	return 0;
1770 }
1771 
1772 /*
1773  * This function creates a new devfs node for a given device.  It can
1774  * handle a complete path as device name, and accordingly creates
1775  * the path and the final device node.
1776  *
1777  * The reference count on the passed dev remains unchanged.
1778  */
1779 struct devfs_node *
1780 devfs_create_device_node(struct devfs_node *root, cdev_t dev,
1781 			 char *dev_name, char *path_fmt, ...)
1782 {
1783 	struct devfs_node *parent, *node = NULL;
1784 	struct hotplug_device *hpdev;
1785 	char *path = NULL;
1786 	char *name;
1787 	char *name_buf;
1788 	__va_list ap;
1789 	int i, found;
1790 	char *create_path = NULL;
1791 	char *names = "pqrsPQRS";
1792 
1793 	name_buf = kmalloc(PATH_MAX, M_TEMP, M_WAITOK);
1794 
1795 	if (path_fmt != NULL) {
1796 		__va_start(ap, path_fmt);
1797 		kvasnrprintf(&path, PATH_MAX, 10, path_fmt, ap);
1798 		__va_end(ap);
1799 	}
1800 
1801 	parent = devfs_resolve_or_create_path(root, path, 1);
1802 	KKASSERT(parent);
1803 
1804 	devfs_resolve_name_path(
1805 			((dev_name == NULL) && (dev))?(dev->si_name):(dev_name),
1806 			name_buf, &create_path, &name);
1807 
1808 	if (create_path)
1809 		parent = devfs_resolve_or_create_path(parent, create_path, 1);
1810 
1811 
1812 	if (devfs_find_device_node_by_name(parent, name)) {
1813 		devfs_debug(DEVFS_DEBUG_WARNING, "devfs_create_device_node: "
1814 			"DEVICE %s ALREADY EXISTS!!! Ignoring creation request.\n", name);
1815 		goto out;
1816 	}
1817 
1818 	node = devfs_allocp(Pdev, name, parent, parent->mp, dev);
1819 	nanotime(&parent->mtime);
1820 
1821 	/*
1822 	 * Ugly unix98 pty magic, to hide pty master (ptm) devices and their
1823 	 * directory
1824 	 */
1825 	if ((dev) && (strlen(dev->si_name) >= 4) &&
1826 			(!memcmp(dev->si_name, "ptm/", 4))) {
1827 		node->parent->flags |= DEVFS_HIDDEN;
1828 		node->flags |= DEVFS_HIDDEN;
1829 	}
1830 
1831 	/*
1832 	 * Ugly pty magic, to tag pty devices as such and hide them if needed.
1833 	 */
1834 	if ((strlen(name) >= 3) && (!memcmp(name, "pty", 3)))
1835 		node->flags |= (DEVFS_PTY | DEVFS_INVISIBLE);
1836 
1837 	if ((strlen(name) >= 3) && (!memcmp(name, "tty", 3))) {
1838 		found = 0;
1839 		for (i = 0; i < strlen(names); i++) {
1840 			if (name[3] == names[i]) {
1841 				found = 1;
1842 				break;
1843 			}
1844 		}
1845 		if (found)
1846 			node->flags |= (DEVFS_PTY | DEVFS_INVISIBLE);
1847 	}
1848 	/* hotplug handler */
1849 	if(devfs_node_added) {
1850 		hpdev = kmalloc(sizeof(struct hotplug_device), M_TEMP, M_WAITOK);
1851 		hpdev->dev = node->d_dev;
1852 		hpdev->name = node->d_dev->si_name;
1853 		devfs_node_added(hpdev);
1854 		kfree(hpdev, M_TEMP);
1855 	}
1856 
1857 out:
1858 	kfree(name_buf, M_TEMP);
1859 	kvasfree(&path);
1860 	return node;
1861 }
1862 
1863 /*
1864  * This function finds a given device node in the topology with a given
1865  * cdev.
1866  */
1867 void *
1868 devfs_find_device_node_callback(struct devfs_node *node, cdev_t target)
1869 {
1870 	if ((node->node_type == Pdev) && (node->d_dev == target)) {
1871 		return node;
1872 	}
1873 
1874 	return NULL;
1875 }
1876 
1877 /*
1878  * This function finds a device node in the given parent directory by its
1879  * name and returns it.
1880  */
1881 struct devfs_node *
1882 devfs_find_device_node_by_name(struct devfs_node *parent, char *target)
1883 {
1884 	struct devfs_node *node, *found = NULL;
1885 	size_t len = strlen(target);
1886 
1887 	TAILQ_FOREACH(node, DEVFS_DENODE_HEAD(parent), link) {
1888 		if (len != node->d_dir.d_namlen)
1889 			continue;
1890 
1891 		if (!memcmp(node->d_dir.d_name, target, len)) {
1892 			found = node;
1893 			break;
1894 		}
1895 	}
1896 
1897 	return found;
1898 }
1899 
1900 static void *
1901 devfs_inode_to_vnode_worker_callback(struct devfs_node *node, ino_t *inop)
1902 {
1903 	struct vnode *vp = NULL;
1904 	ino_t target = *inop;
1905 
1906 	if (node->d_dir.d_ino == target) {
1907 		if (node->v_node) {
1908 			vp = node->v_node;
1909 			vget(vp, LK_EXCLUSIVE | LK_RETRY);
1910 			vn_unlock(vp);
1911 		} else {
1912 			devfs_allocv(&vp, node);
1913 			vn_unlock(vp);
1914 		}
1915 	}
1916 
1917 	return vp;
1918 }
1919 
1920 /*
1921  * This function takes a cdev and removes its devfs node in the
1922  * given topology.  The cdev remains intact.
1923  */
1924 int
1925 devfs_destroy_device_node(struct devfs_node *root, cdev_t target)
1926 {
1927 	struct devfs_node *node, *parent;
1928 	char *name;
1929 	char *name_buf;
1930 	char *create_path = NULL;
1931 
1932 	KKASSERT(target);
1933 
1934 	name_buf = kmalloc(PATH_MAX, M_TEMP, M_WAITOK);
1935 	ksnprintf(name_buf, PATH_MAX, "%s", target->si_name);
1936 
1937 	devfs_resolve_name_path(target->si_name, name_buf, &create_path, &name);
1938 
1939 	if (create_path)
1940 		parent = devfs_resolve_or_create_path(root, create_path, 0);
1941 	else
1942 		parent = root;
1943 
1944 	if (parent == NULL) {
1945 		kfree(name_buf, M_TEMP);
1946 		return 1;
1947 	}
1948 
1949 	node = devfs_find_device_node_by_name(parent, name);
1950 
1951 	if (node) {
1952 		nanotime(&node->parent->mtime);
1953 		devfs_gc(node);
1954 	}
1955 
1956 	kfree(name_buf, M_TEMP);
1957 
1958 	return 0;
1959 }
1960 
1961 /*
1962  * Just set perms and ownership for given node.
1963  */
1964 int
1965 devfs_set_perms(struct devfs_node *node, uid_t uid, gid_t gid,
1966 		u_short mode, u_long flags)
1967 {
1968 	node->mode = mode;
1969 	node->uid = uid;
1970 	node->gid = gid;
1971 
1972 	return 0;
1973 }
1974 
1975 /*
1976  * Propagates a device attach/detach to all mount
1977  * points. Also takes care of automatic alias removal
1978  * for a deleted cdev.
1979  */
1980 static int
1981 devfs_propagate_dev(cdev_t dev, int attach)
1982 {
1983 	struct devfs_mnt_data *mnt;
1984 
1985 	TAILQ_FOREACH(mnt, &devfs_mnt_list, link) {
1986 		if (attach) {
1987 			/* Device is being attached */
1988 			devfs_create_device_node(mnt->root_node, dev,
1989 						 NULL, NULL );
1990 		} else {
1991 			/* Device is being detached */
1992 			devfs_alias_remove(dev);
1993 			devfs_destroy_device_node(mnt->root_node, dev);
1994 		}
1995 	}
1996 	return 0;
1997 }
1998 
1999 /*
2000  * devfs_clone either returns a basename from a complete name by
2001  * returning the length of the name without trailing digits, or,
2002  * if clone != 0, calls the device's clone handler to get a new
2003  * device, which in turn is returned in devp.
2004  */
2005 cdev_t
2006 devfs_clone(cdev_t dev, const char *name, size_t len, int mode,
2007 		struct ucred *cred)
2008 {
2009 	int error;
2010 	struct devfs_clone_handler *chandler;
2011 	struct dev_clone_args ap;
2012 
2013 	TAILQ_FOREACH(chandler, &devfs_chandler_list, link) {
2014 		if (chandler->namlen != len)
2015 			continue;
2016 		if ((!memcmp(chandler->name, name, len)) && (chandler->nhandler)) {
2017 			lockmgr(&devfs_lock, LK_RELEASE);
2018 			devfs_config();
2019 			lockmgr(&devfs_lock, LK_EXCLUSIVE);
2020 
2021 			ap.a_head.a_dev = dev;
2022 			ap.a_dev = NULL;
2023 			ap.a_name = name;
2024 			ap.a_namelen = len;
2025 			ap.a_mode = mode;
2026 			ap.a_cred = cred;
2027 			error = (chandler->nhandler)(&ap);
2028 			if (error)
2029 				continue;
2030 
2031 			return ap.a_dev;
2032 		}
2033 	}
2034 
2035 	return NULL;
2036 }
2037 
2038 
2039 /*
2040  * Registers a new orphan in the orphan list.
2041  */
2042 void
2043 devfs_tracer_add_orphan(struct devfs_node *node)
2044 {
2045 	struct devfs_orphan *orphan;
2046 
2047 	KKASSERT(node);
2048 	orphan = kmalloc(sizeof(struct devfs_orphan), M_DEVFS, M_WAITOK);
2049 	orphan->node = node;
2050 
2051 	KKASSERT((node->flags & DEVFS_ORPHANED) == 0);
2052 	node->flags |= DEVFS_ORPHANED;
2053 	TAILQ_INSERT_TAIL(DEVFS_ORPHANLIST(node->mp), orphan, link);
2054 }
2055 
2056 /*
2057  * Removes an orphan from the orphan list.
2058  */
2059 void
2060 devfs_tracer_del_orphan(struct devfs_node *node)
2061 {
2062 	struct devfs_orphan *orphan;
2063 
2064 	KKASSERT(node);
2065 
2066 	TAILQ_FOREACH(orphan, DEVFS_ORPHANLIST(node->mp), link)	{
2067 		if (orphan->node == node) {
2068 			node->flags &= ~DEVFS_ORPHANED;
2069 			TAILQ_REMOVE(DEVFS_ORPHANLIST(node->mp), orphan, link);
2070 			kfree(orphan, M_DEVFS);
2071 			break;
2072 		}
2073 	}
2074 }
2075 
2076 /*
2077  * Counts the orphans in the orphan list, and if cleanup
2078  * is specified, also frees the orphan and removes it from
2079  * the list.
2080  */
2081 size_t
2082 devfs_tracer_orphan_count(struct mount *mp, int cleanup)
2083 {
2084 	struct devfs_orphan *orphan, *orphan2;
2085 	size_t count = 0;
2086 
2087 	TAILQ_FOREACH_MUTABLE(orphan, DEVFS_ORPHANLIST(mp), link, orphan2)	{
2088 		count++;
2089 		/*
2090 		 * If we are instructed to clean up, we do so.
2091 		 */
2092 		if (cleanup) {
2093 			TAILQ_REMOVE(DEVFS_ORPHANLIST(mp), orphan, link);
2094 			orphan->node->flags &= ~DEVFS_ORPHANED;
2095 			devfs_freep(orphan->node);
2096 			kfree(orphan, M_DEVFS);
2097 		}
2098 	}
2099 
2100 	return count;
2101 }
2102 
2103 /*
2104  * Fetch an ino_t from the global d_ino by increasing it
2105  * while spinlocked.
2106  */
2107 static ino_t
2108 devfs_fetch_ino(void)
2109 {
2110 	ino_t	ret;
2111 
2112 	spin_lock_wr(&ino_lock);
2113 	ret = d_ino++;
2114 	spin_unlock_wr(&ino_lock);
2115 
2116 	return ret;
2117 }
2118 
2119 /*
2120  * Allocates a new cdev and initializes it's most basic
2121  * fields.
2122  */
2123 cdev_t
2124 devfs_new_cdev(struct dev_ops *ops, int minor, struct dev_ops *bops)
2125 {
2126 	cdev_t dev = sysref_alloc(&cdev_sysref_class);
2127 
2128 	sysref_activate(&dev->si_sysref);
2129 	reference_dev(dev);
2130 	bzero(dev, offsetof(struct cdev, si_sysref));
2131 
2132 	dev->si_uid = 0;
2133 	dev->si_gid = 0;
2134 	dev->si_perms = 0;
2135 	dev->si_drv1 = NULL;
2136 	dev->si_drv2 = NULL;
2137 	dev->si_lastread = 0;		/* time_second */
2138 	dev->si_lastwrite = 0;		/* time_second */
2139 
2140 	dev->si_ops = ops;
2141 	dev->si_flags = 0;
2142 	dev->si_umajor = 0;
2143 	dev->si_uminor = minor;
2144 	dev->si_bops = bops;
2145 	/* If there is a backing device, we reference its ops */
2146 	dev->si_inode = makeudev(
2147 		    devfs_reference_ops((bops)?(bops):(ops)),
2148 		    minor );
2149 
2150 	return dev;
2151 }
2152 
2153 static void
2154 devfs_cdev_terminate(cdev_t dev)
2155 {
2156 	int locked = 0;
2157 
2158 	/* Check if it is locked already. if not, we acquire the devfs lock */
2159 	if (!(lockstatus(&devfs_lock, curthread)) == LK_EXCLUSIVE) {
2160 		lockmgr(&devfs_lock, LK_EXCLUSIVE);
2161 		locked = 1;
2162 	}
2163 
2164 	/* Propagate destruction, just in case */
2165 	devfs_propagate_dev(dev, 0);
2166 
2167 	/* If we acquired the lock, we also get rid of it */
2168 	if (locked)
2169 		lockmgr(&devfs_lock, LK_RELEASE);
2170 
2171 	/* If there is a backing device, we release the backing device's ops */
2172 	devfs_release_ops((dev->si_bops)?(dev->si_bops):(dev->si_ops));
2173 
2174 	/* Finally destroy the device */
2175 	sysref_put(&dev->si_sysref);
2176 }
2177 
2178 /*
2179  * Dummies for now (individual locks for MPSAFE)
2180  */
2181 static void
2182 devfs_cdev_lock(cdev_t dev)
2183 {
2184 }
2185 
2186 static void
2187 devfs_cdev_unlock(cdev_t dev)
2188 {
2189 }
2190 
2191 /*
2192  * Links a given cdev into the dev list.
2193  */
2194 int
2195 devfs_link_dev(cdev_t dev)
2196 {
2197 	KKASSERT((dev->si_flags & SI_DEVFS_LINKED) == 0);
2198 	dev->si_flags |= SI_DEVFS_LINKED;
2199 	TAILQ_INSERT_TAIL(&devfs_dev_list, dev, link);
2200 
2201 	return 0;
2202 }
2203 
2204 /*
2205  * Removes a given cdev from the dev list.  The caller is responsible for
2206  * releasing the reference on the device associated with the linkage.
2207  *
2208  * Returns EALREADY if the dev has already been unlinked.
2209  */
2210 static int
2211 devfs_unlink_dev(cdev_t dev)
2212 {
2213 	if ((dev->si_flags & SI_DEVFS_LINKED)) {
2214 		TAILQ_REMOVE(&devfs_dev_list, dev, link);
2215 		dev->si_flags &= ~SI_DEVFS_LINKED;
2216 		return (0);
2217 	}
2218 	return (EALREADY);
2219 }
2220 
2221 int
2222 devfs_node_is_accessible(struct devfs_node *node)
2223 {
2224 	if ((node) && (!(node->flags & DEVFS_HIDDEN)))
2225 		return 1;
2226 	else
2227 		return 0;
2228 }
2229 
2230 int
2231 devfs_reference_ops(struct dev_ops *ops)
2232 {
2233 	int unit;
2234 	struct devfs_dev_ops *found = NULL;
2235 	struct devfs_dev_ops *devops;
2236 
2237 	TAILQ_FOREACH(devops, &devfs_dev_ops_list, link) {
2238 		if (devops->ops == ops) {
2239 			found = devops;
2240 			break;
2241 		}
2242 	}
2243 
2244 	if (!found) {
2245 		found = kmalloc(sizeof(struct devfs_dev_ops), M_DEVFS, M_WAITOK);
2246 		found->ops = ops;
2247 		found->ref_count = 0;
2248 		TAILQ_INSERT_TAIL(&devfs_dev_ops_list, found, link);
2249 	}
2250 
2251 	KKASSERT(found);
2252 
2253 	if (found->ref_count == 0) {
2254 		found->id = devfs_clone_bitmap_get(&DEVFS_CLONE_BITMAP(ops_id), 255);
2255 		if (found->id == -1) {
2256 			/* Ran out of unique ids */
2257 			devfs_debug(DEVFS_DEBUG_WARNING,
2258 					"devfs_reference_ops: WARNING: ran out of unique ids\n");
2259 		}
2260 	}
2261 	unit = found->id;
2262 	++found->ref_count;
2263 
2264 	return unit;
2265 }
2266 
2267 void
2268 devfs_release_ops(struct dev_ops *ops)
2269 {
2270 	struct devfs_dev_ops *found = NULL;
2271 	struct devfs_dev_ops *devops;
2272 
2273 	TAILQ_FOREACH(devops, &devfs_dev_ops_list, link) {
2274 		if (devops->ops == ops) {
2275 			found = devops;
2276 			break;
2277 		}
2278 	}
2279 
2280 	KKASSERT(found);
2281 
2282 	--found->ref_count;
2283 
2284 	if (found->ref_count == 0) {
2285 		TAILQ_REMOVE(&devfs_dev_ops_list, found, link);
2286 		devfs_clone_bitmap_put(&DEVFS_CLONE_BITMAP(ops_id), found->id);
2287 		kfree(found, M_DEVFS);
2288 	}
2289 }
2290 
2291 void
2292 devfs_config(void)
2293 {
2294 	devfs_msg_t msg;
2295 
2296 	msg = devfs_msg_get();
2297 	msg = devfs_msg_send_sync(DEVFS_SYNC, msg);
2298 	devfs_msg_put(msg);
2299 }
2300 
2301 /*
2302  * Called on init of devfs; creates the objcaches and
2303  * spawns off the devfs core thread. Also initializes
2304  * locks.
2305  */
2306 static void
2307 devfs_init(void)
2308 {
2309 	devfs_debug(DEVFS_DEBUG_DEBUG, "devfs_init() called\n");
2310 	/* Create objcaches for nodes, msgs and devs */
2311 	devfs_node_cache = objcache_create("devfs-node-cache", 0, 0,
2312 					   NULL, NULL, NULL,
2313 					   objcache_malloc_alloc,
2314 					   objcache_malloc_free,
2315 					   &devfs_node_malloc_args );
2316 
2317 	devfs_msg_cache = objcache_create("devfs-msg-cache", 0, 0,
2318 					  NULL, NULL, NULL,
2319 					  objcache_malloc_alloc,
2320 					  objcache_malloc_free,
2321 					  &devfs_msg_malloc_args );
2322 
2323 	devfs_dev_cache = objcache_create("devfs-dev-cache", 0, 0,
2324 					  NULL, NULL, NULL,
2325 					  objcache_malloc_alloc,
2326 					  objcache_malloc_free,
2327 					  &devfs_dev_malloc_args );
2328 
2329 	devfs_clone_bitmap_init(&DEVFS_CLONE_BITMAP(ops_id));
2330 
2331 	/* Initialize the reply-only port which acts as a message drain */
2332 	lwkt_initport_replyonly(&devfs_dispose_port, devfs_msg_autofree_reply);
2333 
2334 	/* Initialize *THE* devfs lock */
2335 	lockinit(&devfs_lock, "devfs_core lock", 0, 0);
2336 
2337 
2338 	lwkt_create(devfs_msg_core, /*args*/NULL, &td_core, NULL,
2339 		    0, 0, "devfs_msg_core");
2340 
2341 	tsleep(td_core/*devfs_id*/, 0, "devfsc", 0);
2342 
2343 	devfs_debug(DEVFS_DEBUG_DEBUG, "devfs_init finished\n");
2344 }
2345 
2346 /*
2347  * Called on unload of devfs; takes care of destroying the core
2348  * and the objcaches. Also removes aliases that are no longer needed.
2349  */
2350 static void
2351 devfs_uninit(void)
2352 {
2353 	devfs_debug(DEVFS_DEBUG_DEBUG, "devfs_uninit() called\n");
2354 
2355 	devfs_msg_send(DEVFS_TERMINATE_CORE, NULL);
2356 
2357 	tsleep(td_core/*devfs_id*/, 0, "devfsc", 0);
2358 	tsleep(td_core/*devfs_id*/, 0, "devfsc", 10000);
2359 
2360 	devfs_clone_bitmap_uninit(&DEVFS_CLONE_BITMAP(ops_id));
2361 
2362 	/* Destroy the objcaches */
2363 	objcache_destroy(devfs_msg_cache);
2364 	objcache_destroy(devfs_node_cache);
2365 	objcache_destroy(devfs_dev_cache);
2366 
2367 	devfs_alias_reap();
2368 }
2369 
2370 /*
2371  * This is a sysctl handler to assist userland devname(3) to
2372  * find the device name for a given udev.
2373  */
2374 static int
2375 devfs_sysctl_devname_helper(SYSCTL_HANDLER_ARGS)
2376 {
2377 	udev_t 	udev;
2378 	cdev_t	found;
2379 	int		error;
2380 
2381 
2382 	if ((error = SYSCTL_IN(req, &udev, sizeof(udev_t))))
2383 		return (error);
2384 
2385 	devfs_debug(DEVFS_DEBUG_DEBUG, "devfs sysctl, received udev: %d\n", udev);
2386 
2387 	if (udev == NOUDEV)
2388 		return(EINVAL);
2389 
2390 	if ((found = devfs_find_device_by_udev(udev)) == NULL)
2391 		return(ENOENT);
2392 
2393 	return(SYSCTL_OUT(req, found->si_name, strlen(found->si_name) + 1));
2394 }
2395 
2396 
2397 SYSCTL_PROC(_kern, OID_AUTO, devname, CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_ANYBODY,
2398 			NULL, 0, devfs_sysctl_devname_helper, "", "helper for devname(3)");
2399 
2400 SYSCTL_NODE(_vfs, OID_AUTO, devfs, CTLFLAG_RW, 0, "devfs");
2401 TUNABLE_INT("vfs.devfs.debug", &devfs_debug_enable);
2402 SYSCTL_INT(_vfs_devfs, OID_AUTO, debug, CTLFLAG_RW, &devfs_debug_enable,
2403 		0, "Enable DevFS debugging");
2404 
2405 SYSINIT(vfs_devfs_register, SI_SUB_PRE_DRIVERS, SI_ORDER_FIRST,
2406 		devfs_init, NULL);
2407 SYSUNINIT(vfs_devfs_register, SI_SUB_PRE_DRIVERS, SI_ORDER_ANY,
2408 		devfs_uninit, NULL);
2409