xref: /freebsd/sys/fs/devfs/devfs_vnops.c (revision 10b59a9b4add0320d52c15ce057dd697261e7dfc)
1 /*-
2  * Copyright (c) 2000-2004
3  *	Poul-Henning Kamp.  All rights reserved.
4  * Copyright (c) 1989, 1992-1993, 1995
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software donated to Berkeley by
8  * Jan-Simon Pendry.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	@(#)kernfs_vnops.c	8.15 (Berkeley) 5/21/95
32  * From: FreeBSD: src/sys/miscfs/kernfs/kernfs_vnops.c 1.43
33  *
34  * $FreeBSD$
35  */
36 
37 /*
38  * TODO:
39  *	mkdir: want it ?
40  */
41 
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/conf.h>
45 #include <sys/dirent.h>
46 #include <sys/fcntl.h>
47 #include <sys/file.h>
48 #include <sys/filedesc.h>
49 #include <sys/filio.h>
50 #include <sys/jail.h>
51 #include <sys/kernel.h>
52 #include <sys/lock.h>
53 #include <sys/malloc.h>
54 #include <sys/mount.h>
55 #include <sys/namei.h>
56 #include <sys/priv.h>
57 #include <sys/proc.h>
58 #include <sys/stat.h>
59 #include <sys/sx.h>
60 #include <sys/time.h>
61 #include <sys/ttycom.h>
62 #include <sys/unistd.h>
63 #include <sys/vnode.h>
64 
65 static struct vop_vector devfs_vnodeops;
66 static struct vop_vector devfs_specops;
67 static struct fileops devfs_ops_f;
68 
69 #include <fs/devfs/devfs.h>
70 #include <fs/devfs/devfs_int.h>
71 
72 #include <security/mac/mac_framework.h>
73 
74 static MALLOC_DEFINE(M_CDEVPDATA, "DEVFSP", "Metainfo for cdev-fp data");
75 
76 struct mtx	devfs_de_interlock;
77 MTX_SYSINIT(devfs_de_interlock, &devfs_de_interlock, "devfs interlock", MTX_DEF);
78 struct sx	clone_drain_lock;
79 SX_SYSINIT(clone_drain_lock, &clone_drain_lock, "clone events drain lock");
80 struct mtx	cdevpriv_mtx;
81 MTX_SYSINIT(cdevpriv_mtx, &cdevpriv_mtx, "cdevpriv lock", MTX_DEF);
82 
83 static int
84 devfs_fp_check(struct file *fp, struct cdev **devp, struct cdevsw **dswp,
85     int *ref)
86 {
87 
88 	*dswp = devvn_refthread(fp->f_vnode, devp, ref);
89 	if (*devp != fp->f_data) {
90 		if (*dswp != NULL)
91 			dev_relthread(*devp, *ref);
92 		return (ENXIO);
93 	}
94 	KASSERT((*devp)->si_refcount > 0,
95 	    ("devfs: un-referenced struct cdev *(%s)", devtoname(*devp)));
96 	if (*dswp == NULL)
97 		return (ENXIO);
98 	curthread->td_fpop = fp;
99 	return (0);
100 }
101 
102 int
103 devfs_get_cdevpriv(void **datap)
104 {
105 	struct file *fp;
106 	struct cdev_privdata *p;
107 	int error;
108 
109 	fp = curthread->td_fpop;
110 	if (fp == NULL)
111 		return (EBADF);
112 	p = fp->f_cdevpriv;
113 	if (p != NULL) {
114 		error = 0;
115 		*datap = p->cdpd_data;
116 	} else
117 		error = ENOENT;
118 	return (error);
119 }
120 
121 int
122 devfs_set_cdevpriv(void *priv, cdevpriv_dtr_t priv_dtr)
123 {
124 	struct file *fp;
125 	struct cdev_priv *cdp;
126 	struct cdev_privdata *p;
127 	int error;
128 
129 	fp = curthread->td_fpop;
130 	if (fp == NULL)
131 		return (ENOENT);
132 	cdp = cdev2priv((struct cdev *)fp->f_data);
133 	p = malloc(sizeof(struct cdev_privdata), M_CDEVPDATA, M_WAITOK);
134 	p->cdpd_data = priv;
135 	p->cdpd_dtr = priv_dtr;
136 	p->cdpd_fp = fp;
137 	mtx_lock(&cdevpriv_mtx);
138 	if (fp->f_cdevpriv == NULL) {
139 		LIST_INSERT_HEAD(&cdp->cdp_fdpriv, p, cdpd_list);
140 		fp->f_cdevpriv = p;
141 		mtx_unlock(&cdevpriv_mtx);
142 		error = 0;
143 	} else {
144 		mtx_unlock(&cdevpriv_mtx);
145 		free(p, M_CDEVPDATA);
146 		error = EBUSY;
147 	}
148 	return (error);
149 }
150 
151 void
152 devfs_destroy_cdevpriv(struct cdev_privdata *p)
153 {
154 
155 	mtx_assert(&cdevpriv_mtx, MA_OWNED);
156 	p->cdpd_fp->f_cdevpriv = NULL;
157 	LIST_REMOVE(p, cdpd_list);
158 	mtx_unlock(&cdevpriv_mtx);
159 	(p->cdpd_dtr)(p->cdpd_data);
160 	free(p, M_CDEVPDATA);
161 }
162 
163 void
164 devfs_fpdrop(struct file *fp)
165 {
166 	struct cdev_privdata *p;
167 
168 	mtx_lock(&cdevpriv_mtx);
169 	if ((p = fp->f_cdevpriv) == NULL) {
170 		mtx_unlock(&cdevpriv_mtx);
171 		return;
172 	}
173 	devfs_destroy_cdevpriv(p);
174 }
175 
176 void
177 devfs_clear_cdevpriv(void)
178 {
179 	struct file *fp;
180 
181 	fp = curthread->td_fpop;
182 	if (fp == NULL)
183 		return;
184 	devfs_fpdrop(fp);
185 }
186 
187 /*
188  * On success devfs_populate_vp() returns with dmp->dm_lock held.
189  */
190 static int
191 devfs_populate_vp(struct vnode *vp)
192 {
193 	struct devfs_dirent *de;
194 	struct devfs_mount *dmp;
195 	int locked;
196 
197 	ASSERT_VOP_LOCKED(vp, "devfs_populate_vp");
198 
199 	dmp = VFSTODEVFS(vp->v_mount);
200 	locked = VOP_ISLOCKED(vp);
201 
202 	sx_xlock(&dmp->dm_lock);
203 	DEVFS_DMP_HOLD(dmp);
204 
205 	/* Can't call devfs_populate() with the vnode lock held. */
206 	VOP_UNLOCK(vp, 0);
207 	devfs_populate(dmp);
208 
209 	sx_xunlock(&dmp->dm_lock);
210 	vn_lock(vp, locked | LK_RETRY);
211 	sx_xlock(&dmp->dm_lock);
212 	if (DEVFS_DMP_DROP(dmp)) {
213 		sx_xunlock(&dmp->dm_lock);
214 		devfs_unmount_final(dmp);
215 		return (EBADF);
216 	}
217 	if ((vp->v_iflag & VI_DOOMED) != 0) {
218 		sx_xunlock(&dmp->dm_lock);
219 		return (EBADF);
220 	}
221 	de = vp->v_data;
222 	KASSERT(de != NULL,
223 	    ("devfs_populate_vp: vp->v_data == NULL but vnode not doomed"));
224 	if ((de->de_flags & DE_DOOMED) != 0) {
225 		sx_xunlock(&dmp->dm_lock);
226 		return (EBADF);
227 	}
228 
229 	return (0);
230 }
231 
232 static int
233 devfs_vptocnp(struct vop_vptocnp_args *ap)
234 {
235 	struct vnode *vp = ap->a_vp;
236 	struct vnode **dvp = ap->a_vpp;
237 	struct devfs_mount *dmp;
238 	char *buf = ap->a_buf;
239 	int *buflen = ap->a_buflen;
240 	struct devfs_dirent *dd, *de;
241 	int i, error;
242 
243 	dmp = VFSTODEVFS(vp->v_mount);
244 
245 	error = devfs_populate_vp(vp);
246 	if (error != 0)
247 		return (error);
248 
249 	i = *buflen;
250 	dd = vp->v_data;
251 
252 	if (vp->v_type == VCHR) {
253 		i -= strlen(dd->de_cdp->cdp_c.si_name);
254 		if (i < 0) {
255 			error = ENOMEM;
256 			goto finished;
257 		}
258 		bcopy(dd->de_cdp->cdp_c.si_name, buf + i,
259 		    strlen(dd->de_cdp->cdp_c.si_name));
260 		de = dd->de_dir;
261 	} else if (vp->v_type == VDIR) {
262 		if (dd == dmp->dm_rootdir) {
263 			*dvp = vp;
264 			vhold(*dvp);
265 			goto finished;
266 		}
267 		i -= dd->de_dirent->d_namlen;
268 		if (i < 0) {
269 			error = ENOMEM;
270 			goto finished;
271 		}
272 		bcopy(dd->de_dirent->d_name, buf + i,
273 		    dd->de_dirent->d_namlen);
274 		de = dd;
275 	} else {
276 		error = ENOENT;
277 		goto finished;
278 	}
279 	*buflen = i;
280 	de = devfs_parent_dirent(de);
281 	if (de == NULL) {
282 		error = ENOENT;
283 		goto finished;
284 	}
285 	mtx_lock(&devfs_de_interlock);
286 	*dvp = de->de_vnode;
287 	if (*dvp != NULL) {
288 		VI_LOCK(*dvp);
289 		mtx_unlock(&devfs_de_interlock);
290 		vholdl(*dvp);
291 		VI_UNLOCK(*dvp);
292 	} else {
293 		mtx_unlock(&devfs_de_interlock);
294 		error = ENOENT;
295 	}
296 finished:
297 	sx_xunlock(&dmp->dm_lock);
298 	return (error);
299 }
300 
301 /*
302  * Construct the fully qualified path name relative to the mountpoint.
303  * If a NULL cnp is provided, no '/' is appended to the resulting path.
304  */
305 char *
306 devfs_fqpn(char *buf, struct devfs_mount *dmp, struct devfs_dirent *dd,
307     struct componentname *cnp)
308 {
309 	int i;
310 	struct devfs_dirent *de;
311 
312 	sx_assert(&dmp->dm_lock, SA_LOCKED);
313 
314 	i = SPECNAMELEN;
315 	buf[i] = '\0';
316 	if (cnp != NULL)
317 		i -= cnp->cn_namelen;
318 	if (i < 0)
319 		 return (NULL);
320 	if (cnp != NULL)
321 		bcopy(cnp->cn_nameptr, buf + i, cnp->cn_namelen);
322 	de = dd;
323 	while (de != dmp->dm_rootdir) {
324 		if (cnp != NULL || i < SPECNAMELEN) {
325 			i--;
326 			if (i < 0)
327 				 return (NULL);
328 			buf[i] = '/';
329 		}
330 		i -= de->de_dirent->d_namlen;
331 		if (i < 0)
332 			 return (NULL);
333 		bcopy(de->de_dirent->d_name, buf + i,
334 		    de->de_dirent->d_namlen);
335 		de = devfs_parent_dirent(de);
336 		if (de == NULL)
337 			return (NULL);
338 	}
339 	return (buf + i);
340 }
341 
342 static int
343 devfs_allocv_drop_refs(int drop_dm_lock, struct devfs_mount *dmp,
344 	struct devfs_dirent *de)
345 {
346 	int not_found;
347 
348 	not_found = 0;
349 	if (de->de_flags & DE_DOOMED)
350 		not_found = 1;
351 	if (DEVFS_DE_DROP(de)) {
352 		KASSERT(not_found == 1, ("DEVFS de dropped but not doomed"));
353 		devfs_dirent_free(de);
354 	}
355 	if (DEVFS_DMP_DROP(dmp)) {
356 		KASSERT(not_found == 1,
357 			("DEVFS mount struct freed before dirent"));
358 		not_found = 2;
359 		sx_xunlock(&dmp->dm_lock);
360 		devfs_unmount_final(dmp);
361 	}
362 	if (not_found == 1 || (drop_dm_lock && not_found != 2))
363 		sx_unlock(&dmp->dm_lock);
364 	return (not_found);
365 }
366 
367 static void
368 devfs_insmntque_dtr(struct vnode *vp, void *arg)
369 {
370 	struct devfs_dirent *de;
371 
372 	de = (struct devfs_dirent *)arg;
373 	mtx_lock(&devfs_de_interlock);
374 	vp->v_data = NULL;
375 	de->de_vnode = NULL;
376 	mtx_unlock(&devfs_de_interlock);
377 	vgone(vp);
378 	vput(vp);
379 }
380 
381 /*
382  * devfs_allocv shall be entered with dmp->dm_lock held, and it drops
383  * it on return.
384  */
385 int
386 devfs_allocv(struct devfs_dirent *de, struct mount *mp, int lockmode,
387     struct vnode **vpp)
388 {
389 	int error;
390 	struct vnode *vp;
391 	struct cdev *dev;
392 	struct devfs_mount *dmp;
393 	struct cdevsw *dsw;
394 
395 	dmp = VFSTODEVFS(mp);
396 	if (de->de_flags & DE_DOOMED) {
397 		sx_xunlock(&dmp->dm_lock);
398 		return (ENOENT);
399 	}
400 loop:
401 	DEVFS_DE_HOLD(de);
402 	DEVFS_DMP_HOLD(dmp);
403 	mtx_lock(&devfs_de_interlock);
404 	vp = de->de_vnode;
405 	if (vp != NULL) {
406 		VI_LOCK(vp);
407 		mtx_unlock(&devfs_de_interlock);
408 		sx_xunlock(&dmp->dm_lock);
409 		vget(vp, lockmode | LK_INTERLOCK | LK_RETRY, curthread);
410 		sx_xlock(&dmp->dm_lock);
411 		if (devfs_allocv_drop_refs(0, dmp, de)) {
412 			vput(vp);
413 			return (ENOENT);
414 		}
415 		else if ((vp->v_iflag & VI_DOOMED) != 0) {
416 			mtx_lock(&devfs_de_interlock);
417 			if (de->de_vnode == vp) {
418 				de->de_vnode = NULL;
419 				vp->v_data = NULL;
420 			}
421 			mtx_unlock(&devfs_de_interlock);
422 			vput(vp);
423 			goto loop;
424 		}
425 		sx_xunlock(&dmp->dm_lock);
426 		*vpp = vp;
427 		return (0);
428 	}
429 	mtx_unlock(&devfs_de_interlock);
430 	if (de->de_dirent->d_type == DT_CHR) {
431 		if (!(de->de_cdp->cdp_flags & CDP_ACTIVE)) {
432 			devfs_allocv_drop_refs(1, dmp, de);
433 			return (ENOENT);
434 		}
435 		dev = &de->de_cdp->cdp_c;
436 	} else {
437 		dev = NULL;
438 	}
439 	error = getnewvnode("devfs", mp, &devfs_vnodeops, &vp);
440 	if (error != 0) {
441 		devfs_allocv_drop_refs(1, dmp, de);
442 		printf("devfs_allocv: failed to allocate new vnode\n");
443 		return (error);
444 	}
445 
446 	if (de->de_dirent->d_type == DT_CHR) {
447 		vp->v_type = VCHR;
448 		VI_LOCK(vp);
449 		dev_lock();
450 		dev_refl(dev);
451 		/* XXX: v_rdev should be protect by vnode lock */
452 		vp->v_rdev = dev;
453 		KASSERT(vp->v_usecount == 1,
454 		    ("%s %d (%d)\n", __func__, __LINE__, vp->v_usecount));
455 		dev->si_usecount += vp->v_usecount;
456 		/* Special casing of ttys for deadfs.  Probably redundant. */
457 		dsw = dev->si_devsw;
458 		if (dsw != NULL && (dsw->d_flags & D_TTY) != 0)
459 			vp->v_vflag |= VV_ISTTY;
460 		dev_unlock();
461 		VI_UNLOCK(vp);
462 		if ((dev->si_flags & SI_ETERNAL) != 0)
463 			vp->v_vflag |= VV_ETERNALDEV;
464 		vp->v_op = &devfs_specops;
465 	} else if (de->de_dirent->d_type == DT_DIR) {
466 		vp->v_type = VDIR;
467 	} else if (de->de_dirent->d_type == DT_LNK) {
468 		vp->v_type = VLNK;
469 	} else {
470 		vp->v_type = VBAD;
471 	}
472 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY | LK_NOWITNESS);
473 	VN_LOCK_ASHARE(vp);
474 	mtx_lock(&devfs_de_interlock);
475 	vp->v_data = de;
476 	de->de_vnode = vp;
477 	mtx_unlock(&devfs_de_interlock);
478 	error = insmntque1(vp, mp, devfs_insmntque_dtr, de);
479 	if (error != 0) {
480 		(void) devfs_allocv_drop_refs(1, dmp, de);
481 		return (error);
482 	}
483 	if (devfs_allocv_drop_refs(0, dmp, de)) {
484 		vput(vp);
485 		return (ENOENT);
486 	}
487 #ifdef MAC
488 	mac_devfs_vnode_associate(mp, de, vp);
489 #endif
490 	sx_xunlock(&dmp->dm_lock);
491 	*vpp = vp;
492 	return (0);
493 }
494 
495 static int
496 devfs_access(struct vop_access_args *ap)
497 {
498 	struct vnode *vp = ap->a_vp;
499 	struct devfs_dirent *de;
500 	int error;
501 
502 	de = vp->v_data;
503 	if (vp->v_type == VDIR)
504 		de = de->de_dir;
505 
506 	error = vaccess(vp->v_type, de->de_mode, de->de_uid, de->de_gid,
507 	    ap->a_accmode, ap->a_cred, NULL);
508 	if (error == 0)
509 		return (0);
510 	if (error != EACCES)
511 		return (error);
512 	/* We do, however, allow access to the controlling terminal */
513 	if (!(ap->a_td->td_proc->p_flag & P_CONTROLT))
514 		return (error);
515 	if (ap->a_td->td_proc->p_session->s_ttydp == de->de_cdp)
516 		return (0);
517 	return (error);
518 }
519 
520 /* ARGSUSED */
521 static int
522 devfs_close(struct vop_close_args *ap)
523 {
524 	struct vnode *vp = ap->a_vp, *oldvp;
525 	struct thread *td = ap->a_td;
526 	struct cdev *dev = vp->v_rdev;
527 	struct cdevsw *dsw;
528 	int vp_locked, error, ref;
529 
530 	/*
531 	 * XXX: Don't call d_close() if we were called because of
532 	 * XXX: insmntque1() failure.
533 	 */
534 	if (vp->v_data == NULL)
535 		return (0);
536 
537 	/*
538 	 * Hack: a tty device that is a controlling terminal
539 	 * has a reference from the session structure.
540 	 * We cannot easily tell that a character device is
541 	 * a controlling terminal, unless it is the closing
542 	 * process' controlling terminal.  In that case,
543 	 * if the reference count is 2 (this last descriptor
544 	 * plus the session), release the reference from the session.
545 	 */
546 	oldvp = NULL;
547 	sx_xlock(&proctree_lock);
548 	if (td && vp == td->td_proc->p_session->s_ttyvp) {
549 		SESS_LOCK(td->td_proc->p_session);
550 		VI_LOCK(vp);
551 		if (count_dev(dev) == 2 && (vp->v_iflag & VI_DOOMED) == 0) {
552 			td->td_proc->p_session->s_ttyvp = NULL;
553 			td->td_proc->p_session->s_ttydp = NULL;
554 			oldvp = vp;
555 		}
556 		VI_UNLOCK(vp);
557 		SESS_UNLOCK(td->td_proc->p_session);
558 	}
559 	sx_xunlock(&proctree_lock);
560 	if (oldvp != NULL)
561 		vrele(oldvp);
562 	/*
563 	 * We do not want to really close the device if it
564 	 * is still in use unless we are trying to close it
565 	 * forcibly. Since every use (buffer, vnode, swap, cmap)
566 	 * holds a reference to the vnode, and because we mark
567 	 * any other vnodes that alias this device, when the
568 	 * sum of the reference counts on all the aliased
569 	 * vnodes descends to one, we are on last close.
570 	 */
571 	dsw = dev_refthread(dev, &ref);
572 	if (dsw == NULL)
573 		return (ENXIO);
574 	VI_LOCK(vp);
575 	if (vp->v_iflag & VI_DOOMED) {
576 		/* Forced close. */
577 	} else if (dsw->d_flags & D_TRACKCLOSE) {
578 		/* Keep device updated on status. */
579 	} else if (count_dev(dev) > 1) {
580 		VI_UNLOCK(vp);
581 		dev_relthread(dev, ref);
582 		return (0);
583 	}
584 	vholdl(vp);
585 	VI_UNLOCK(vp);
586 	vp_locked = VOP_ISLOCKED(vp);
587 	VOP_UNLOCK(vp, 0);
588 	KASSERT(dev->si_refcount > 0,
589 	    ("devfs_close() on un-referenced struct cdev *(%s)", devtoname(dev)));
590 	error = dsw->d_close(dev, ap->a_fflag, S_IFCHR, td);
591 	dev_relthread(dev, ref);
592 	vn_lock(vp, vp_locked | LK_RETRY);
593 	vdrop(vp);
594 	return (error);
595 }
596 
597 static int
598 devfs_close_f(struct file *fp, struct thread *td)
599 {
600 	int error;
601 	struct file *fpop;
602 
603 	fpop = td->td_fpop;
604 	td->td_fpop = fp;
605 	error = vnops.fo_close(fp, td);
606 	td->td_fpop = fpop;
607 
608 	/*
609 	 * The f_cdevpriv cannot be assigned non-NULL value while we
610 	 * are destroying the file.
611 	 */
612 	if (fp->f_cdevpriv != NULL)
613 		devfs_fpdrop(fp);
614 	return (error);
615 }
616 
617 static int
618 devfs_fsync(struct vop_fsync_args *ap)
619 {
620 	int error;
621 	struct bufobj *bo;
622 	struct devfs_dirent *de;
623 
624 	if (!vn_isdisk(ap->a_vp, &error)) {
625 		bo = &ap->a_vp->v_bufobj;
626 		de = ap->a_vp->v_data;
627 		if (error == ENXIO && bo->bo_dirty.bv_cnt > 0) {
628 			printf("Device %s went missing before all of the data "
629 			    "could be written to it; expect data loss.\n",
630 			    de->de_dirent->d_name);
631 
632 			error = vop_stdfsync(ap);
633 			if (bo->bo_dirty.bv_cnt != 0 || error != 0)
634 				panic("devfs_fsync: vop_stdfsync failed.");
635 		}
636 
637 		return (0);
638 	}
639 
640 	return (vop_stdfsync(ap));
641 }
642 
643 static int
644 devfs_getattr(struct vop_getattr_args *ap)
645 {
646 	struct vnode *vp = ap->a_vp;
647 	struct vattr *vap = ap->a_vap;
648 	int error;
649 	struct devfs_dirent *de;
650 	struct devfs_mount *dmp;
651 	struct cdev *dev;
652 
653 	error = devfs_populate_vp(vp);
654 	if (error != 0)
655 		return (error);
656 
657 	dmp = VFSTODEVFS(vp->v_mount);
658 	sx_xunlock(&dmp->dm_lock);
659 
660 	de = vp->v_data;
661 	KASSERT(de != NULL, ("Null dirent in devfs_getattr vp=%p", vp));
662 	if (vp->v_type == VDIR) {
663 		de = de->de_dir;
664 		KASSERT(de != NULL,
665 		    ("Null dir dirent in devfs_getattr vp=%p", vp));
666 	}
667 	vap->va_uid = de->de_uid;
668 	vap->va_gid = de->de_gid;
669 	vap->va_mode = de->de_mode;
670 	if (vp->v_type == VLNK)
671 		vap->va_size = strlen(de->de_symlink);
672 	else if (vp->v_type == VDIR)
673 		vap->va_size = vap->va_bytes = DEV_BSIZE;
674 	else
675 		vap->va_size = 0;
676 	if (vp->v_type != VDIR)
677 		vap->va_bytes = 0;
678 	vap->va_blocksize = DEV_BSIZE;
679 	vap->va_type = vp->v_type;
680 
681 #define fix(aa)							\
682 	do {							\
683 		if ((aa).tv_sec <= 3600) {			\
684 			(aa).tv_sec = boottime.tv_sec;		\
685 			(aa).tv_nsec = boottime.tv_usec * 1000; \
686 		}						\
687 	} while (0)
688 
689 	if (vp->v_type != VCHR)  {
690 		fix(de->de_atime);
691 		vap->va_atime = de->de_atime;
692 		fix(de->de_mtime);
693 		vap->va_mtime = de->de_mtime;
694 		fix(de->de_ctime);
695 		vap->va_ctime = de->de_ctime;
696 	} else {
697 		dev = vp->v_rdev;
698 		fix(dev->si_atime);
699 		vap->va_atime = dev->si_atime;
700 		fix(dev->si_mtime);
701 		vap->va_mtime = dev->si_mtime;
702 		fix(dev->si_ctime);
703 		vap->va_ctime = dev->si_ctime;
704 
705 		vap->va_rdev = cdev2priv(dev)->cdp_inode;
706 	}
707 	vap->va_gen = 0;
708 	vap->va_flags = 0;
709 	vap->va_filerev = 0;
710 	vap->va_nlink = de->de_links;
711 	vap->va_fileid = de->de_inode;
712 
713 	return (error);
714 }
715 
716 /* ARGSUSED */
717 static int
718 devfs_ioctl_f(struct file *fp, u_long com, void *data, struct ucred *cred, struct thread *td)
719 {
720 	struct cdev *dev;
721 	struct cdevsw *dsw;
722 	struct vnode *vp;
723 	struct vnode *vpold;
724 	int error, i, ref;
725 	const char *p;
726 	struct fiodgname_arg *fgn;
727 	struct file *fpop;
728 
729 	fpop = td->td_fpop;
730 	error = devfs_fp_check(fp, &dev, &dsw, &ref);
731 	if (error)
732 		return (error);
733 
734 	if (com == FIODTYPE) {
735 		*(int *)data = dsw->d_flags & D_TYPEMASK;
736 		td->td_fpop = fpop;
737 		dev_relthread(dev, ref);
738 		return (0);
739 	} else if (com == FIODGNAME) {
740 		fgn = data;
741 		p = devtoname(dev);
742 		i = strlen(p) + 1;
743 		if (i > fgn->len)
744 			error = EINVAL;
745 		else
746 			error = copyout(p, fgn->buf, i);
747 		td->td_fpop = fpop;
748 		dev_relthread(dev, ref);
749 		return (error);
750 	}
751 	error = dsw->d_ioctl(dev, com, data, fp->f_flag, td);
752 	td->td_fpop = NULL;
753 	dev_relthread(dev, ref);
754 	if (error == ENOIOCTL)
755 		error = ENOTTY;
756 	if (error == 0 && com == TIOCSCTTY) {
757 		vp = fp->f_vnode;
758 
759 		/* Do nothing if reassigning same control tty */
760 		sx_slock(&proctree_lock);
761 		if (td->td_proc->p_session->s_ttyvp == vp) {
762 			sx_sunlock(&proctree_lock);
763 			return (0);
764 		}
765 
766 		vpold = td->td_proc->p_session->s_ttyvp;
767 		VREF(vp);
768 		SESS_LOCK(td->td_proc->p_session);
769 		td->td_proc->p_session->s_ttyvp = vp;
770 		td->td_proc->p_session->s_ttydp = cdev2priv(dev);
771 		SESS_UNLOCK(td->td_proc->p_session);
772 
773 		sx_sunlock(&proctree_lock);
774 
775 		/* Get rid of reference to old control tty */
776 		if (vpold)
777 			vrele(vpold);
778 	}
779 	return (error);
780 }
781 
782 /* ARGSUSED */
783 static int
784 devfs_kqfilter_f(struct file *fp, struct knote *kn)
785 {
786 	struct cdev *dev;
787 	struct cdevsw *dsw;
788 	int error, ref;
789 	struct file *fpop;
790 	struct thread *td;
791 
792 	td = curthread;
793 	fpop = td->td_fpop;
794 	error = devfs_fp_check(fp, &dev, &dsw, &ref);
795 	if (error)
796 		return (error);
797 	error = dsw->d_kqfilter(dev, kn);
798 	td->td_fpop = fpop;
799 	dev_relthread(dev, ref);
800 	return (error);
801 }
802 
803 static inline int
804 devfs_prison_check(struct devfs_dirent *de, struct thread *td)
805 {
806 	struct cdev_priv *cdp;
807 	struct ucred *dcr;
808 	int error;
809 
810 	cdp = de->de_cdp;
811 	if (cdp == NULL)
812 		return (0);
813 	dcr = cdp->cdp_c.si_cred;
814 	if (dcr == NULL)
815 		return (0);
816 
817 	error = prison_check(td->td_ucred, dcr);
818 	if (error == 0)
819 		return (0);
820 	/* We do, however, allow access to the controlling terminal */
821 	if (!(td->td_proc->p_flag & P_CONTROLT))
822 		return (error);
823 	if (td->td_proc->p_session->s_ttydp == cdp)
824 		return (0);
825 	return (error);
826 }
827 
828 static int
829 devfs_lookupx(struct vop_lookup_args *ap, int *dm_unlock)
830 {
831 	struct componentname *cnp;
832 	struct vnode *dvp, **vpp;
833 	struct thread *td;
834 	struct devfs_dirent *de, *dd;
835 	struct devfs_dirent **dde;
836 	struct devfs_mount *dmp;
837 	struct cdev *cdev;
838 	int error, flags, nameiop, dvplocked;
839 	char specname[SPECNAMELEN + 1], *pname;
840 
841 	cnp = ap->a_cnp;
842 	vpp = ap->a_vpp;
843 	dvp = ap->a_dvp;
844 	pname = cnp->cn_nameptr;
845 	td = cnp->cn_thread;
846 	flags = cnp->cn_flags;
847 	nameiop = cnp->cn_nameiop;
848 	dmp = VFSTODEVFS(dvp->v_mount);
849 	dd = dvp->v_data;
850 	*vpp = NULLVP;
851 
852 	if ((flags & ISLASTCN) && nameiop == RENAME)
853 		return (EOPNOTSUPP);
854 
855 	if (dvp->v_type != VDIR)
856 		return (ENOTDIR);
857 
858 	if ((flags & ISDOTDOT) && (dvp->v_vflag & VV_ROOT))
859 		return (EIO);
860 
861 	error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, td);
862 	if (error)
863 		return (error);
864 
865 	if (cnp->cn_namelen == 1 && *pname == '.') {
866 		if ((flags & ISLASTCN) && nameiop != LOOKUP)
867 			return (EINVAL);
868 		*vpp = dvp;
869 		VREF(dvp);
870 		return (0);
871 	}
872 
873 	if (flags & ISDOTDOT) {
874 		if ((flags & ISLASTCN) && nameiop != LOOKUP)
875 			return (EINVAL);
876 		de = devfs_parent_dirent(dd);
877 		if (de == NULL)
878 			return (ENOENT);
879 		dvplocked = VOP_ISLOCKED(dvp);
880 		VOP_UNLOCK(dvp, 0);
881 		error = devfs_allocv(de, dvp->v_mount,
882 		    cnp->cn_lkflags & LK_TYPE_MASK, vpp);
883 		*dm_unlock = 0;
884 		vn_lock(dvp, dvplocked | LK_RETRY);
885 		return (error);
886 	}
887 
888 	dd = dvp->v_data;
889 	de = devfs_find(dd, cnp->cn_nameptr, cnp->cn_namelen, 0);
890 	while (de == NULL) {	/* While(...) so we can use break */
891 
892 		if (nameiop == DELETE)
893 			return (ENOENT);
894 
895 		/*
896 		 * OK, we didn't have an entry for the name we were asked for
897 		 * so we try to see if anybody can create it on demand.
898 		 */
899 		pname = devfs_fqpn(specname, dmp, dd, cnp);
900 		if (pname == NULL)
901 			break;
902 
903 		cdev = NULL;
904 		DEVFS_DMP_HOLD(dmp);
905 		sx_xunlock(&dmp->dm_lock);
906 		sx_slock(&clone_drain_lock);
907 		EVENTHANDLER_INVOKE(dev_clone,
908 		    td->td_ucred, pname, strlen(pname), &cdev);
909 		sx_sunlock(&clone_drain_lock);
910 
911 		if (cdev == NULL)
912 			sx_xlock(&dmp->dm_lock);
913 		else if (devfs_populate_vp(dvp) != 0) {
914 			*dm_unlock = 0;
915 			sx_xlock(&dmp->dm_lock);
916 			if (DEVFS_DMP_DROP(dmp)) {
917 				sx_xunlock(&dmp->dm_lock);
918 				devfs_unmount_final(dmp);
919 			} else
920 				sx_xunlock(&dmp->dm_lock);
921 			dev_rel(cdev);
922 			return (ENOENT);
923 		}
924 		if (DEVFS_DMP_DROP(dmp)) {
925 			*dm_unlock = 0;
926 			sx_xunlock(&dmp->dm_lock);
927 			devfs_unmount_final(dmp);
928 			if (cdev != NULL)
929 				dev_rel(cdev);
930 			return (ENOENT);
931 		}
932 
933 		if (cdev == NULL)
934 			break;
935 
936 		dev_lock();
937 		dde = &cdev2priv(cdev)->cdp_dirents[dmp->dm_idx];
938 		if (dde != NULL && *dde != NULL)
939 			de = *dde;
940 		dev_unlock();
941 		dev_rel(cdev);
942 		break;
943 	}
944 
945 	if (de == NULL || de->de_flags & DE_WHITEOUT) {
946 		if ((nameiop == CREATE || nameiop == RENAME) &&
947 		    (flags & (LOCKPARENT | WANTPARENT)) && (flags & ISLASTCN)) {
948 			cnp->cn_flags |= SAVENAME;
949 			return (EJUSTRETURN);
950 		}
951 		return (ENOENT);
952 	}
953 
954 	if (devfs_prison_check(de, td))
955 		return (ENOENT);
956 
957 	if ((cnp->cn_nameiop == DELETE) && (flags & ISLASTCN)) {
958 		error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred, td);
959 		if (error)
960 			return (error);
961 		if (*vpp == dvp) {
962 			VREF(dvp);
963 			*vpp = dvp;
964 			return (0);
965 		}
966 	}
967 	error = devfs_allocv(de, dvp->v_mount, cnp->cn_lkflags & LK_TYPE_MASK,
968 	    vpp);
969 	*dm_unlock = 0;
970 	return (error);
971 }
972 
973 static int
974 devfs_lookup(struct vop_lookup_args *ap)
975 {
976 	int j;
977 	struct devfs_mount *dmp;
978 	int dm_unlock;
979 
980 	if (devfs_populate_vp(ap->a_dvp) != 0)
981 		return (ENOTDIR);
982 
983 	dmp = VFSTODEVFS(ap->a_dvp->v_mount);
984 	dm_unlock = 1;
985 	j = devfs_lookupx(ap, &dm_unlock);
986 	if (dm_unlock == 1)
987 		sx_xunlock(&dmp->dm_lock);
988 	return (j);
989 }
990 
991 static int
992 devfs_mknod(struct vop_mknod_args *ap)
993 {
994 	struct componentname *cnp;
995 	struct vnode *dvp, **vpp;
996 	struct devfs_dirent *dd, *de;
997 	struct devfs_mount *dmp;
998 	int error;
999 
1000 	/*
1001 	 * The only type of node we should be creating here is a
1002 	 * character device, for anything else return EOPNOTSUPP.
1003 	 */
1004 	if (ap->a_vap->va_type != VCHR)
1005 		return (EOPNOTSUPP);
1006 	dvp = ap->a_dvp;
1007 	dmp = VFSTODEVFS(dvp->v_mount);
1008 
1009 	cnp = ap->a_cnp;
1010 	vpp = ap->a_vpp;
1011 	dd = dvp->v_data;
1012 
1013 	error = ENOENT;
1014 	sx_xlock(&dmp->dm_lock);
1015 	TAILQ_FOREACH(de, &dd->de_dlist, de_list) {
1016 		if (cnp->cn_namelen != de->de_dirent->d_namlen)
1017 			continue;
1018 		if (bcmp(cnp->cn_nameptr, de->de_dirent->d_name,
1019 		    de->de_dirent->d_namlen) != 0)
1020 			continue;
1021 		if (de->de_flags & DE_WHITEOUT)
1022 			break;
1023 		goto notfound;
1024 	}
1025 	if (de == NULL)
1026 		goto notfound;
1027 	de->de_flags &= ~DE_WHITEOUT;
1028 	error = devfs_allocv(de, dvp->v_mount, LK_EXCLUSIVE, vpp);
1029 	return (error);
1030 notfound:
1031 	sx_xunlock(&dmp->dm_lock);
1032 	return (error);
1033 }
1034 
1035 /* ARGSUSED */
1036 static int
1037 devfs_open(struct vop_open_args *ap)
1038 {
1039 	struct thread *td = ap->a_td;
1040 	struct vnode *vp = ap->a_vp;
1041 	struct cdev *dev = vp->v_rdev;
1042 	struct file *fp = ap->a_fp;
1043 	int error, ref, vlocked;
1044 	struct cdevsw *dsw;
1045 	struct file *fpop;
1046 
1047 	if (vp->v_type == VBLK)
1048 		return (ENXIO);
1049 
1050 	if (dev == NULL)
1051 		return (ENXIO);
1052 
1053 	/* Make this field valid before any I/O in d_open. */
1054 	if (dev->si_iosize_max == 0)
1055 		dev->si_iosize_max = DFLTPHYS;
1056 
1057 	dsw = dev_refthread(dev, &ref);
1058 	if (dsw == NULL)
1059 		return (ENXIO);
1060 	if (fp == NULL && dsw->d_fdopen != NULL) {
1061 		dev_relthread(dev, ref);
1062 		return (ENXIO);
1063 	}
1064 
1065 	vlocked = VOP_ISLOCKED(vp);
1066 	VOP_UNLOCK(vp, 0);
1067 
1068 	fpop = td->td_fpop;
1069 	td->td_fpop = fp;
1070 	if (fp != NULL) {
1071 		fp->f_data = dev;
1072 		fp->f_vnode = vp;
1073 	}
1074 	if (dsw->d_fdopen != NULL)
1075 		error = dsw->d_fdopen(dev, ap->a_mode, td, fp);
1076 	else
1077 		error = dsw->d_open(dev, ap->a_mode, S_IFCHR, td);
1078 	td->td_fpop = fpop;
1079 
1080 	vn_lock(vp, vlocked | LK_RETRY);
1081 	dev_relthread(dev, ref);
1082 	if (error)
1083 		return (error);
1084 
1085 #if 0	/* /dev/console */
1086 	KASSERT(fp != NULL, ("Could not vnode bypass device on NULL fp"));
1087 #else
1088 	if (fp == NULL)
1089 		return (error);
1090 #endif
1091 	if (fp->f_ops == &badfileops)
1092 		finit(fp, fp->f_flag, DTYPE_VNODE, dev, &devfs_ops_f);
1093 	return (error);
1094 }
1095 
1096 static int
1097 devfs_pathconf(struct vop_pathconf_args *ap)
1098 {
1099 
1100 	switch (ap->a_name) {
1101 	case _PC_MAC_PRESENT:
1102 #ifdef MAC
1103 		/*
1104 		 * If MAC is enabled, devfs automatically supports
1105 		 * trivial non-persistant label storage.
1106 		 */
1107 		*ap->a_retval = 1;
1108 #else
1109 		*ap->a_retval = 0;
1110 #endif
1111 		return (0);
1112 	default:
1113 		return (vop_stdpathconf(ap));
1114 	}
1115 	/* NOTREACHED */
1116 }
1117 
1118 /* ARGSUSED */
1119 static int
1120 devfs_poll_f(struct file *fp, int events, struct ucred *cred, struct thread *td)
1121 {
1122 	struct cdev *dev;
1123 	struct cdevsw *dsw;
1124 	int error, ref;
1125 	struct file *fpop;
1126 
1127 	fpop = td->td_fpop;
1128 	error = devfs_fp_check(fp, &dev, &dsw, &ref);
1129 	if (error)
1130 		return (poll_no_poll(events));
1131 	error = dsw->d_poll(dev, events, td);
1132 	td->td_fpop = fpop;
1133 	dev_relthread(dev, ref);
1134 	return(error);
1135 }
1136 
1137 /*
1138  * Print out the contents of a special device vnode.
1139  */
1140 static int
1141 devfs_print(struct vop_print_args *ap)
1142 {
1143 
1144 	printf("\tdev %s\n", devtoname(ap->a_vp->v_rdev));
1145 	return (0);
1146 }
1147 
1148 /* ARGSUSED */
1149 static int
1150 devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
1151 {
1152 	struct cdev *dev;
1153 	int ioflag, error, ref, resid;
1154 	struct cdevsw *dsw;
1155 	struct file *fpop;
1156 
1157 	fpop = td->td_fpop;
1158 	error = devfs_fp_check(fp, &dev, &dsw, &ref);
1159 	if (error)
1160 		return (error);
1161 	resid = uio->uio_resid;
1162 	ioflag = fp->f_flag & (O_NONBLOCK | O_DIRECT);
1163 	if (ioflag & O_DIRECT)
1164 		ioflag |= IO_DIRECT;
1165 
1166 	if ((flags & FOF_OFFSET) == 0)
1167 		uio->uio_offset = fp->f_offset;
1168 
1169 	error = dsw->d_read(dev, uio, ioflag);
1170 	if (uio->uio_resid != resid || (error == 0 && resid != 0))
1171 		vfs_timestamp(&dev->si_atime);
1172 	td->td_fpop = fpop;
1173 	dev_relthread(dev, ref);
1174 
1175 	if ((flags & FOF_OFFSET) == 0)
1176 		fp->f_offset = uio->uio_offset;
1177 	fp->f_nextoff = uio->uio_offset;
1178 	return (error);
1179 }
1180 
1181 static int
1182 devfs_readdir(struct vop_readdir_args *ap)
1183 {
1184 	int error;
1185 	struct uio *uio;
1186 	struct dirent *dp;
1187 	struct devfs_dirent *dd;
1188 	struct devfs_dirent *de;
1189 	struct devfs_mount *dmp;
1190 	off_t off;
1191 	int *tmp_ncookies = NULL;
1192 
1193 	if (ap->a_vp->v_type != VDIR)
1194 		return (ENOTDIR);
1195 
1196 	uio = ap->a_uio;
1197 	if (uio->uio_offset < 0)
1198 		return (EINVAL);
1199 
1200 	/*
1201 	 * XXX: This is a temporary hack to get around this filesystem not
1202 	 * supporting cookies. We store the location of the ncookies pointer
1203 	 * in a temporary variable before calling vfs_subr.c:vfs_read_dirent()
1204 	 * and set the number of cookies to 0. We then set the pointer to
1205 	 * NULL so that vfs_read_dirent doesn't try to call realloc() on
1206 	 * ap->a_cookies. Later in this function, we restore the ap->a_ncookies
1207 	 * pointer to its original location before returning to the caller.
1208 	 */
1209 	if (ap->a_ncookies != NULL) {
1210 		tmp_ncookies = ap->a_ncookies;
1211 		*ap->a_ncookies = 0;
1212 		ap->a_ncookies = NULL;
1213 	}
1214 
1215 	dmp = VFSTODEVFS(ap->a_vp->v_mount);
1216 	if (devfs_populate_vp(ap->a_vp) != 0) {
1217 		if (tmp_ncookies != NULL)
1218 			ap->a_ncookies = tmp_ncookies;
1219 		return (EIO);
1220 	}
1221 	error = 0;
1222 	de = ap->a_vp->v_data;
1223 	off = 0;
1224 	TAILQ_FOREACH(dd, &de->de_dlist, de_list) {
1225 		KASSERT(dd->de_cdp != (void *)0xdeadc0de, ("%s %d\n", __func__, __LINE__));
1226 		if (dd->de_flags & (DE_COVERED | DE_WHITEOUT))
1227 			continue;
1228 		if (devfs_prison_check(dd, uio->uio_td))
1229 			continue;
1230 		if (dd->de_dirent->d_type == DT_DIR)
1231 			de = dd->de_dir;
1232 		else
1233 			de = dd;
1234 		dp = dd->de_dirent;
1235 		if (dp->d_reclen > uio->uio_resid)
1236 			break;
1237 		dp->d_fileno = de->de_inode;
1238 		if (off >= uio->uio_offset) {
1239 			error = vfs_read_dirent(ap, dp, off);
1240 			if (error)
1241 				break;
1242 		}
1243 		off += dp->d_reclen;
1244 	}
1245 	sx_xunlock(&dmp->dm_lock);
1246 	uio->uio_offset = off;
1247 
1248 	/*
1249 	 * Restore ap->a_ncookies if it wasn't originally NULL in the first
1250 	 * place.
1251 	 */
1252 	if (tmp_ncookies != NULL)
1253 		ap->a_ncookies = tmp_ncookies;
1254 
1255 	return (error);
1256 }
1257 
1258 static int
1259 devfs_readlink(struct vop_readlink_args *ap)
1260 {
1261 	struct devfs_dirent *de;
1262 
1263 	de = ap->a_vp->v_data;
1264 	return (uiomove(de->de_symlink, strlen(de->de_symlink), ap->a_uio));
1265 }
1266 
1267 static int
1268 devfs_reclaim(struct vop_reclaim_args *ap)
1269 {
1270 	struct vnode *vp = ap->a_vp;
1271 	struct devfs_dirent *de;
1272 	struct cdev *dev;
1273 
1274 	mtx_lock(&devfs_de_interlock);
1275 	de = vp->v_data;
1276 	if (de != NULL) {
1277 		de->de_vnode = NULL;
1278 		vp->v_data = NULL;
1279 	}
1280 	mtx_unlock(&devfs_de_interlock);
1281 
1282 	vnode_destroy_vobject(vp);
1283 
1284 	VI_LOCK(vp);
1285 	dev_lock();
1286 	dev = vp->v_rdev;
1287 	vp->v_rdev = NULL;
1288 
1289 	if (dev == NULL) {
1290 		dev_unlock();
1291 		VI_UNLOCK(vp);
1292 		return (0);
1293 	}
1294 
1295 	dev->si_usecount -= vp->v_usecount;
1296 	dev_unlock();
1297 	VI_UNLOCK(vp);
1298 	dev_rel(dev);
1299 	return (0);
1300 }
1301 
1302 static int
1303 devfs_remove(struct vop_remove_args *ap)
1304 {
1305 	struct vnode *dvp = ap->a_dvp;
1306 	struct vnode *vp = ap->a_vp;
1307 	struct devfs_dirent *dd;
1308 	struct devfs_dirent *de, *de_covered;
1309 	struct devfs_mount *dmp = VFSTODEVFS(vp->v_mount);
1310 
1311 	ASSERT_VOP_ELOCKED(dvp, "devfs_remove");
1312 	ASSERT_VOP_ELOCKED(vp, "devfs_remove");
1313 
1314 	sx_xlock(&dmp->dm_lock);
1315 	dd = ap->a_dvp->v_data;
1316 	de = vp->v_data;
1317 	if (de->de_cdp == NULL) {
1318 		TAILQ_REMOVE(&dd->de_dlist, de, de_list);
1319 		if (de->de_dirent->d_type == DT_LNK) {
1320 			de_covered = devfs_find(dd, de->de_dirent->d_name,
1321 			    de->de_dirent->d_namlen, 0);
1322 			if (de_covered != NULL)
1323 				de_covered->de_flags &= ~DE_COVERED;
1324 		}
1325 		/* We need to unlock dvp because devfs_delete() may lock it. */
1326 		VOP_UNLOCK(vp, 0);
1327 		if (dvp != vp)
1328 			VOP_UNLOCK(dvp, 0);
1329 		devfs_delete(dmp, de, 0);
1330 		sx_xunlock(&dmp->dm_lock);
1331 		if (dvp != vp)
1332 			vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
1333 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1334 	} else {
1335 		de->de_flags |= DE_WHITEOUT;
1336 		sx_xunlock(&dmp->dm_lock);
1337 	}
1338 	return (0);
1339 }
1340 
1341 /*
1342  * Revoke is called on a tty when a terminal session ends.  The vnode
1343  * is orphaned by setting v_op to deadfs so we need to let go of it
1344  * as well so that we create a new one next time around.
1345  *
1346  */
1347 static int
1348 devfs_revoke(struct vop_revoke_args *ap)
1349 {
1350 	struct vnode *vp = ap->a_vp, *vp2;
1351 	struct cdev *dev;
1352 	struct cdev_priv *cdp;
1353 	struct devfs_dirent *de;
1354 	int i;
1355 
1356 	KASSERT((ap->a_flags & REVOKEALL) != 0, ("devfs_revoke !REVOKEALL"));
1357 
1358 	dev = vp->v_rdev;
1359 	cdp = cdev2priv(dev);
1360 
1361 	dev_lock();
1362 	cdp->cdp_inuse++;
1363 	dev_unlock();
1364 
1365 	vhold(vp);
1366 	vgone(vp);
1367 	vdrop(vp);
1368 
1369 	VOP_UNLOCK(vp,0);
1370  loop:
1371 	for (;;) {
1372 		mtx_lock(&devfs_de_interlock);
1373 		dev_lock();
1374 		vp2 = NULL;
1375 		for (i = 0; i <= cdp->cdp_maxdirent; i++) {
1376 			de = cdp->cdp_dirents[i];
1377 			if (de == NULL)
1378 				continue;
1379 
1380 			vp2 = de->de_vnode;
1381 			if (vp2 != NULL) {
1382 				dev_unlock();
1383 				VI_LOCK(vp2);
1384 				mtx_unlock(&devfs_de_interlock);
1385 				if (vget(vp2, LK_EXCLUSIVE | LK_INTERLOCK,
1386 				    curthread))
1387 					goto loop;
1388 				vhold(vp2);
1389 				vgone(vp2);
1390 				vdrop(vp2);
1391 				vput(vp2);
1392 				break;
1393 			}
1394 		}
1395 		if (vp2 != NULL) {
1396 			continue;
1397 		}
1398 		dev_unlock();
1399 		mtx_unlock(&devfs_de_interlock);
1400 		break;
1401 	}
1402 	dev_lock();
1403 	cdp->cdp_inuse--;
1404 	if (!(cdp->cdp_flags & CDP_ACTIVE) && cdp->cdp_inuse == 0) {
1405 		TAILQ_REMOVE(&cdevp_list, cdp, cdp_list);
1406 		dev_unlock();
1407 		dev_rel(&cdp->cdp_c);
1408 	} else
1409 		dev_unlock();
1410 
1411 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1412 	return (0);
1413 }
1414 
1415 static int
1416 devfs_rioctl(struct vop_ioctl_args *ap)
1417 {
1418 	struct vnode *vp;
1419 	struct devfs_mount *dmp;
1420 	int error;
1421 
1422 	vp = ap->a_vp;
1423 	vn_lock(vp, LK_SHARED | LK_RETRY);
1424 	if (vp->v_iflag & VI_DOOMED) {
1425 		VOP_UNLOCK(vp, 0);
1426 		return (EBADF);
1427 	}
1428 	dmp = VFSTODEVFS(vp->v_mount);
1429 	sx_xlock(&dmp->dm_lock);
1430 	VOP_UNLOCK(vp, 0);
1431 	DEVFS_DMP_HOLD(dmp);
1432 	devfs_populate(dmp);
1433 	if (DEVFS_DMP_DROP(dmp)) {
1434 		sx_xunlock(&dmp->dm_lock);
1435 		devfs_unmount_final(dmp);
1436 		return (ENOENT);
1437 	}
1438 	error = devfs_rules_ioctl(dmp, ap->a_command, ap->a_data, ap->a_td);
1439 	sx_xunlock(&dmp->dm_lock);
1440 	return (error);
1441 }
1442 
1443 static int
1444 devfs_rread(struct vop_read_args *ap)
1445 {
1446 
1447 	if (ap->a_vp->v_type != VDIR)
1448 		return (EINVAL);
1449 	return (VOP_READDIR(ap->a_vp, ap->a_uio, ap->a_cred, NULL, NULL, NULL));
1450 }
1451 
1452 static int
1453 devfs_setattr(struct vop_setattr_args *ap)
1454 {
1455 	struct devfs_dirent *de;
1456 	struct vattr *vap;
1457 	struct vnode *vp;
1458 	struct thread *td;
1459 	int c, error;
1460 	uid_t uid;
1461 	gid_t gid;
1462 
1463 	vap = ap->a_vap;
1464 	vp = ap->a_vp;
1465 	td = curthread;
1466 	if ((vap->va_type != VNON) ||
1467 	    (vap->va_nlink != VNOVAL) ||
1468 	    (vap->va_fsid != VNOVAL) ||
1469 	    (vap->va_fileid != VNOVAL) ||
1470 	    (vap->va_blocksize != VNOVAL) ||
1471 	    (vap->va_flags != VNOVAL && vap->va_flags != 0) ||
1472 	    (vap->va_rdev != VNOVAL) ||
1473 	    ((int)vap->va_bytes != VNOVAL) ||
1474 	    (vap->va_gen != VNOVAL)) {
1475 		return (EINVAL);
1476 	}
1477 
1478 	de = vp->v_data;
1479 	if (vp->v_type == VDIR)
1480 		de = de->de_dir;
1481 
1482 	error = c = 0;
1483 	if (vap->va_uid == (uid_t)VNOVAL)
1484 		uid = de->de_uid;
1485 	else
1486 		uid = vap->va_uid;
1487 	if (vap->va_gid == (gid_t)VNOVAL)
1488 		gid = de->de_gid;
1489 	else
1490 		gid = vap->va_gid;
1491 	if (uid != de->de_uid || gid != de->de_gid) {
1492 		if ((ap->a_cred->cr_uid != de->de_uid) || uid != de->de_uid ||
1493 		    (gid != de->de_gid && !groupmember(gid, ap->a_cred))) {
1494 			error = priv_check(td, PRIV_VFS_CHOWN);
1495 			if (error)
1496 				return (error);
1497 		}
1498 		de->de_uid = uid;
1499 		de->de_gid = gid;
1500 		c = 1;
1501 	}
1502 
1503 	if (vap->va_mode != (mode_t)VNOVAL) {
1504 		if (ap->a_cred->cr_uid != de->de_uid) {
1505 			error = priv_check(td, PRIV_VFS_ADMIN);
1506 			if (error)
1507 				return (error);
1508 		}
1509 		de->de_mode = vap->va_mode;
1510 		c = 1;
1511 	}
1512 
1513 	if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
1514 		/* See the comment in ufs_vnops::ufs_setattr(). */
1515 		if ((error = VOP_ACCESS(vp, VADMIN, ap->a_cred, td)) &&
1516 		    ((vap->va_vaflags & VA_UTIMES_NULL) == 0 ||
1517 		    (error = VOP_ACCESS(vp, VWRITE, ap->a_cred, td))))
1518 			return (error);
1519 		if (vap->va_atime.tv_sec != VNOVAL) {
1520 			if (vp->v_type == VCHR)
1521 				vp->v_rdev->si_atime = vap->va_atime;
1522 			else
1523 				de->de_atime = vap->va_atime;
1524 		}
1525 		if (vap->va_mtime.tv_sec != VNOVAL) {
1526 			if (vp->v_type == VCHR)
1527 				vp->v_rdev->si_mtime = vap->va_mtime;
1528 			else
1529 				de->de_mtime = vap->va_mtime;
1530 		}
1531 		c = 1;
1532 	}
1533 
1534 	if (c) {
1535 		if (vp->v_type == VCHR)
1536 			vfs_timestamp(&vp->v_rdev->si_ctime);
1537 		else
1538 			vfs_timestamp(&de->de_mtime);
1539 	}
1540 	return (0);
1541 }
1542 
1543 #ifdef MAC
1544 static int
1545 devfs_setlabel(struct vop_setlabel_args *ap)
1546 {
1547 	struct vnode *vp;
1548 	struct devfs_dirent *de;
1549 
1550 	vp = ap->a_vp;
1551 	de = vp->v_data;
1552 
1553 	mac_vnode_relabel(ap->a_cred, vp, ap->a_label);
1554 	mac_devfs_update(vp->v_mount, de, vp);
1555 
1556 	return (0);
1557 }
1558 #endif
1559 
1560 static int
1561 devfs_stat_f(struct file *fp, struct stat *sb, struct ucred *cred, struct thread *td)
1562 {
1563 
1564 	return (vnops.fo_stat(fp, sb, cred, td));
1565 }
1566 
1567 static int
1568 devfs_symlink(struct vop_symlink_args *ap)
1569 {
1570 	int i, error;
1571 	struct devfs_dirent *dd;
1572 	struct devfs_dirent *de, *de_covered, *de_dotdot;
1573 	struct devfs_mount *dmp;
1574 
1575 	error = priv_check(curthread, PRIV_DEVFS_SYMLINK);
1576 	if (error)
1577 		return(error);
1578 	dmp = VFSTODEVFS(ap->a_dvp->v_mount);
1579 	if (devfs_populate_vp(ap->a_dvp) != 0)
1580 		return (ENOENT);
1581 
1582 	dd = ap->a_dvp->v_data;
1583 	de = devfs_newdirent(ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen);
1584 	de->de_flags = DE_USER;
1585 	de->de_uid = 0;
1586 	de->de_gid = 0;
1587 	de->de_mode = 0755;
1588 	de->de_inode = alloc_unr(devfs_inos);
1589 	de->de_dir = dd;
1590 	de->de_dirent->d_type = DT_LNK;
1591 	i = strlen(ap->a_target) + 1;
1592 	de->de_symlink = malloc(i, M_DEVFS, M_WAITOK);
1593 	bcopy(ap->a_target, de->de_symlink, i);
1594 #ifdef MAC
1595 	mac_devfs_create_symlink(ap->a_cnp->cn_cred, dmp->dm_mount, dd, de);
1596 #endif
1597 	de_covered = devfs_find(dd, de->de_dirent->d_name,
1598 	    de->de_dirent->d_namlen, 0);
1599 	if (de_covered != NULL) {
1600 		if ((de_covered->de_flags & DE_USER) != 0) {
1601 			devfs_delete(dmp, de, DEVFS_DEL_NORECURSE);
1602 			sx_xunlock(&dmp->dm_lock);
1603 			return (EEXIST);
1604 		}
1605 		KASSERT((de_covered->de_flags & DE_COVERED) == 0,
1606 		    ("devfs_symlink: entry %p already covered", de_covered));
1607 		de_covered->de_flags |= DE_COVERED;
1608 	}
1609 
1610 	de_dotdot = TAILQ_FIRST(&dd->de_dlist);		/* "." */
1611 	de_dotdot = TAILQ_NEXT(de_dotdot, de_list);	/* ".." */
1612 	TAILQ_INSERT_AFTER(&dd->de_dlist, de_dotdot, de, de_list);
1613 	devfs_dir_ref_de(dmp, dd);
1614 	devfs_rules_apply(dmp, de);
1615 
1616 	return (devfs_allocv(de, ap->a_dvp->v_mount, LK_EXCLUSIVE, ap->a_vpp));
1617 }
1618 
1619 static int
1620 devfs_truncate_f(struct file *fp, off_t length, struct ucred *cred, struct thread *td)
1621 {
1622 
1623 	return (vnops.fo_truncate(fp, length, cred, td));
1624 }
1625 
1626 /* ARGSUSED */
1627 static int
1628 devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
1629 {
1630 	struct cdev *dev;
1631 	int error, ioflag, ref, resid;
1632 	struct cdevsw *dsw;
1633 	struct file *fpop;
1634 
1635 	fpop = td->td_fpop;
1636 	error = devfs_fp_check(fp, &dev, &dsw, &ref);
1637 	if (error)
1638 		return (error);
1639 	KASSERT(uio->uio_td == td, ("uio_td %p is not td %p", uio->uio_td, td));
1640 	ioflag = fp->f_flag & (O_NONBLOCK | O_DIRECT | O_FSYNC);
1641 	if (ioflag & O_DIRECT)
1642 		ioflag |= IO_DIRECT;
1643 	if ((flags & FOF_OFFSET) == 0)
1644 		uio->uio_offset = fp->f_offset;
1645 
1646 	resid = uio->uio_resid;
1647 
1648 	error = dsw->d_write(dev, uio, ioflag);
1649 	if (uio->uio_resid != resid || (error == 0 && resid != 0)) {
1650 		vfs_timestamp(&dev->si_ctime);
1651 		dev->si_mtime = dev->si_ctime;
1652 	}
1653 	td->td_fpop = fpop;
1654 	dev_relthread(dev, ref);
1655 
1656 	if ((flags & FOF_OFFSET) == 0)
1657 		fp->f_offset = uio->uio_offset;
1658 	fp->f_nextoff = uio->uio_offset;
1659 	return (error);
1660 }
1661 
1662 dev_t
1663 dev2udev(struct cdev *x)
1664 {
1665 	if (x == NULL)
1666 		return (NODEV);
1667 	return (cdev2priv(x)->cdp_inode);
1668 }
1669 
1670 static struct fileops devfs_ops_f = {
1671 	.fo_read =	devfs_read_f,
1672 	.fo_write =	devfs_write_f,
1673 	.fo_truncate =	devfs_truncate_f,
1674 	.fo_ioctl =	devfs_ioctl_f,
1675 	.fo_poll =	devfs_poll_f,
1676 	.fo_kqfilter =	devfs_kqfilter_f,
1677 	.fo_stat =	devfs_stat_f,
1678 	.fo_close =	devfs_close_f,
1679 	.fo_chmod =	vn_chmod,
1680 	.fo_chown =	vn_chown,
1681 	.fo_flags =	DFLAG_PASSABLE | DFLAG_SEEKABLE
1682 };
1683 
1684 static struct vop_vector devfs_vnodeops = {
1685 	.vop_default =		&default_vnodeops,
1686 
1687 	.vop_access =		devfs_access,
1688 	.vop_getattr =		devfs_getattr,
1689 	.vop_ioctl =		devfs_rioctl,
1690 	.vop_lookup =		devfs_lookup,
1691 	.vop_mknod =		devfs_mknod,
1692 	.vop_pathconf =		devfs_pathconf,
1693 	.vop_read =		devfs_rread,
1694 	.vop_readdir =		devfs_readdir,
1695 	.vop_readlink =		devfs_readlink,
1696 	.vop_reclaim =		devfs_reclaim,
1697 	.vop_remove =		devfs_remove,
1698 	.vop_revoke =		devfs_revoke,
1699 	.vop_setattr =		devfs_setattr,
1700 #ifdef MAC
1701 	.vop_setlabel =		devfs_setlabel,
1702 #endif
1703 	.vop_symlink =		devfs_symlink,
1704 	.vop_vptocnp =		devfs_vptocnp,
1705 };
1706 
1707 static struct vop_vector devfs_specops = {
1708 	.vop_default =		&default_vnodeops,
1709 
1710 	.vop_access =		devfs_access,
1711 	.vop_bmap =		VOP_PANIC,
1712 	.vop_close =		devfs_close,
1713 	.vop_create =		VOP_PANIC,
1714 	.vop_fsync =		devfs_fsync,
1715 	.vop_getattr =		devfs_getattr,
1716 	.vop_link =		VOP_PANIC,
1717 	.vop_mkdir =		VOP_PANIC,
1718 	.vop_mknod =		VOP_PANIC,
1719 	.vop_open =		devfs_open,
1720 	.vop_pathconf =		devfs_pathconf,
1721 	.vop_print =		devfs_print,
1722 	.vop_read =		VOP_PANIC,
1723 	.vop_readdir =		VOP_PANIC,
1724 	.vop_readlink =		VOP_PANIC,
1725 	.vop_reallocblks =	VOP_PANIC,
1726 	.vop_reclaim =		devfs_reclaim,
1727 	.vop_remove =		devfs_remove,
1728 	.vop_rename =		VOP_PANIC,
1729 	.vop_revoke =		devfs_revoke,
1730 	.vop_rmdir =		VOP_PANIC,
1731 	.vop_setattr =		devfs_setattr,
1732 #ifdef MAC
1733 	.vop_setlabel =		devfs_setlabel,
1734 #endif
1735 	.vop_strategy =		VOP_PANIC,
1736 	.vop_symlink =		VOP_PANIC,
1737 	.vop_vptocnp =		devfs_vptocnp,
1738 	.vop_write =		VOP_PANIC,
1739 };
1740 
1741 /*
1742  * Our calling convention to the device drivers used to be that we passed
1743  * vnode.h IO_* flags to read()/write(), but we're moving to fcntl.h O_
1744  * flags instead since that's what open(), close() and ioctl() takes and
1745  * we don't really want vnode.h in device drivers.
1746  * We solved the source compatibility by redefining some vnode flags to
1747  * be the same as the fcntl ones and by sending down the bitwise OR of
1748  * the respective fcntl/vnode flags.  These CTASSERTS make sure nobody
1749  * pulls the rug out under this.
1750  */
1751 CTASSERT(O_NONBLOCK == IO_NDELAY);
1752 CTASSERT(O_FSYNC == IO_SYNC);
1753