clean up unexecuted code; lint
[unix-history] / usr / src / sys / kern / vfs_subr.c
CommitLineData
3c4390e8
KM
1/*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 *
41185b3b 17 * @(#)vfs_subr.c 7.45 (Berkeley) %G%
3c4390e8
KM
18 */
19
20/*
21 * External virtual filesystem routines
22 */
23
24#include "param.h"
25#include "mount.h"
26#include "time.h"
27#include "vnode.h"
0f93ba7b 28#include "specdev.h"
c60798ca
KM
29#include "namei.h"
30#include "ucred.h"
3c4390e8 31#include "errno.h"
ef24f6dd 32#include "malloc.h"
3c4390e8 33
3c4390e8
KM
34/*
35 * Remove a mount point from the list of mounted filesystems.
36 * Unmount of the root is illegal.
37 */
38void
39vfs_remove(mp)
40 register struct mount *mp;
41{
42
43 if (mp == rootfs)
44 panic("vfs_remove: unmounting root");
54fb9dc2
KM
45 mp->mnt_prev->mnt_next = mp->mnt_next;
46 mp->mnt_next->mnt_prev = mp->mnt_prev;
47 mp->mnt_vnodecovered->v_mountedhere = (struct mount *)0;
3c4390e8
KM
48 vfs_unlock(mp);
49}
50
51/*
52 * Lock a filesystem.
53 * Used to prevent access to it while mounting and unmounting.
54 */
55vfs_lock(mp)
56 register struct mount *mp;
57{
58
54fb9dc2
KM
59 while(mp->mnt_flag & MNT_MLOCK) {
60 mp->mnt_flag |= MNT_MWAIT;
594501df
KM
61 sleep((caddr_t)mp, PVFS);
62 }
54fb9dc2 63 mp->mnt_flag |= MNT_MLOCK;
3c4390e8
KM
64 return (0);
65}
66
67/*
68 * Unlock a locked filesystem.
69 * Panic if filesystem is not locked.
70 */
71void
72vfs_unlock(mp)
73 register struct mount *mp;
74{
75
54fb9dc2 76 if ((mp->mnt_flag & MNT_MLOCK) == 0)
36ef03ec 77 panic("vfs_unlock: not locked");
54fb9dc2
KM
78 mp->mnt_flag &= ~MNT_MLOCK;
79 if (mp->mnt_flag & MNT_MWAIT) {
80 mp->mnt_flag &= ~MNT_MWAIT;
3c4390e8
KM
81 wakeup((caddr_t)mp);
82 }
83}
84
36ef03ec
KM
85/*
86 * Mark a mount point as busy.
87 * Used to synchronize access and to delay unmounting.
88 */
89vfs_busy(mp)
90 register struct mount *mp;
91{
92
54fb9dc2
KM
93 while(mp->mnt_flag & MNT_MPBUSY) {
94 mp->mnt_flag |= MNT_MPWANT;
95 sleep((caddr_t)&mp->mnt_flag, PVFS);
36ef03ec 96 }
d8b63609
KM
97 if (mp->mnt_flag & MNT_UNMOUNT)
98 return (1);
54fb9dc2 99 mp->mnt_flag |= MNT_MPBUSY;
36ef03ec
KM
100 return (0);
101}
102
103/*
104 * Free a busy filesystem.
105 * Panic if filesystem is not busy.
106 */
107void
108vfs_unbusy(mp)
109 register struct mount *mp;
110{
111
54fb9dc2 112 if ((mp->mnt_flag & MNT_MPBUSY) == 0)
36ef03ec 113 panic("vfs_unbusy: not busy");
54fb9dc2
KM
114 mp->mnt_flag &= ~MNT_MPBUSY;
115 if (mp->mnt_flag & MNT_MPWANT) {
116 mp->mnt_flag &= ~MNT_MPWANT;
117 wakeup((caddr_t)&mp->mnt_flag);
36ef03ec
KM
118 }
119}
120
3c4390e8
KM
121/*
122 * Lookup a mount point by filesystem identifier.
123 */
124struct mount *
125getvfs(fsid)
126 fsid_t *fsid;
127{
128 register struct mount *mp;
129
d713f801
KM
130 mp = rootfs;
131 do {
54fb9dc2
KM
132 if (mp->mnt_stat.f_fsid.val[0] == fsid->val[0] &&
133 mp->mnt_stat.f_fsid.val[1] == fsid->val[1]) {
d713f801 134 return (mp);
3c4390e8 135 }
54fb9dc2 136 mp = mp->mnt_next;
d713f801
KM
137 } while (mp != rootfs);
138 return ((struct mount *)0);
3c4390e8
KM
139}
140
141/*
142 * Set vnode attributes to VNOVAL
143 */
144void vattr_null(vap)
145 register struct vattr *vap;
146{
147
148 vap->va_type = VNON;
149 vap->va_mode = vap->va_nlink = vap->va_uid = vap->va_gid =
150 vap->va_fsid = vap->va_fileid = vap->va_size =
8fae943a
KM
151 vap->va_size_rsv = vap->va_blocksize = vap->va_rdev =
152 vap->va_bytes = vap->va_bytes_rsv =
3c4390e8
KM
153 vap->va_atime.tv_sec = vap->va_atime.tv_usec =
154 vap->va_mtime.tv_sec = vap->va_mtime.tv_usec =
8cf4d4fb
KM
155 vap->va_ctime.tv_sec = vap->va_ctime.tv_usec =
156 vap->va_flags = vap->va_gen = VNOVAL;
3c4390e8 157}
c60798ca
KM
158
159/*
160 * Initialize a nameidata structure
161 */
162ndinit(ndp)
163 register struct nameidata *ndp;
164{
165
166 bzero((caddr_t)ndp, sizeof(struct nameidata));
167 ndp->ni_iov = &ndp->ni_nd.nd_iovec;
168 ndp->ni_iovcnt = 1;
169 ndp->ni_base = (caddr_t)&ndp->ni_dent;
170 ndp->ni_rw = UIO_WRITE;
4dbe3531 171 ndp->ni_uioseg = UIO_SYSSPACE;
c60798ca
KM
172}
173
174/*
175 * Duplicate a nameidata structure
176 */
177nddup(ndp, newndp)
178 register struct nameidata *ndp, *newndp;
179{
180
181 ndinit(newndp);
182 newndp->ni_cdir = ndp->ni_cdir;
8fe1c702 183 VREF(newndp->ni_cdir);
c60798ca
KM
184 newndp->ni_rdir = ndp->ni_rdir;
185 if (newndp->ni_rdir)
8fe1c702 186 VREF(newndp->ni_rdir);
c60798ca
KM
187 newndp->ni_cred = ndp->ni_cred;
188 crhold(newndp->ni_cred);
189}
190
191/*
192 * Release a nameidata structure
193 */
194ndrele(ndp)
195 register struct nameidata *ndp;
196{
197
198 vrele(ndp->ni_cdir);
199 if (ndp->ni_rdir)
200 vrele(ndp->ni_rdir);
201 crfree(ndp->ni_cred);
202}
36d09cb1
KM
203
204/*
205 * Routines having to do with the management of the vnode table.
206 */
207struct vnode *vfreeh, **vfreet;
4ef5d036 208extern struct vnodeops dead_vnodeops, spec_vnodeops;
32339c94 209extern void vclean();
1a80f56e 210long numvnodes;
d3664d8f 211struct vattr va_null;
c0de8792 212
36d09cb1 213/*
ef24f6dd 214 * Initialize the vnode structures and initialize each file system type.
36d09cb1 215 */
ef24f6dd 216vfsinit()
36d09cb1 217{
ef24f6dd 218 struct vfsops **vfsp;
36d09cb1 219
ef24f6dd
KM
220 /*
221 * Initialize the vnode name cache
222 */
223 nchinit();
224 /*
225 * Initialize each file system type.
226 */
d3664d8f 227 vattr_null(&va_null);
ef24f6dd
KM
228 for (vfsp = &vfssw[0]; vfsp <= &vfssw[MOUNT_MAXTYPE]; vfsp++) {
229 if (*vfsp == NULL)
230 continue;
231 (*(*vfsp)->vfs_init)();
232 }
36d09cb1
KM
233}
234
235/*
236 * Return the next vnode from the free list.
237 */
238getnewvnode(tag, mp, vops, vpp)
239 enum vtagtype tag;
240 struct mount *mp;
241 struct vnodeops *vops;
242 struct vnode **vpp;
243{
244 register struct vnode *vp, *vq;
245
1a80f56e
KM
246 if (numvnodes < desiredvnodes) {
247 vp = (struct vnode *)malloc(sizeof *vp, M_VNODE, M_WAITOK);
248 bzero((char *)vp, sizeof *vp);
249 numvnodes++;
250 } else {
251 if ((vp = vfreeh) == NULL) {
252 tablefull("vnode");
253 *vpp = 0;
254 return (ENFILE);
255 }
256 if (vp->v_usecount)
257 panic("free vnode isn't");
258 if (vq = vp->v_freef)
259 vq->v_freeb = &vfreeh;
260 else
261 vfreet = &vfreeh;
262 vfreeh = vq;
263 vp->v_freef = NULL;
264 vp->v_freeb = NULL;
265 if (vp->v_type != VBAD)
266 vgone(vp);
267 vp->v_flag = 0;
268 vp->v_shlockc = 0;
269 vp->v_exlockc = 0;
270 vp->v_lastr = 0;
271 vp->v_socket = 0;
36d09cb1 272 }
b027498b 273 vp->v_type = VNON;
36d09cb1
KM
274 cache_purge(vp);
275 vp->v_tag = tag;
ef24f6dd 276 vp->v_op = vops;
36d09cb1
KM
277 insmntque(vp, mp);
278 VREF(vp);
279 *vpp = vp;
280 return (0);
281}
282
283/*
284 * Move a vnode from one mount queue to another.
285 */
286insmntque(vp, mp)
287 register struct vnode *vp;
288 register struct mount *mp;
289{
290 struct vnode *vq;
291
292 /*
293 * Delete from old mount point vnode list, if on one.
294 */
295 if (vp->v_mountb) {
296 if (vq = vp->v_mountf)
297 vq->v_mountb = vp->v_mountb;
298 *vp->v_mountb = vq;
299 }
300 /*
301 * Insert into list of vnodes for the new mount point, if available.
302 */
a45ff315 303 vp->v_mount = mp;
36d09cb1
KM
304 if (mp == NULL) {
305 vp->v_mountf = NULL;
306 vp->v_mountb = NULL;
307 return;
308 }
54fb9dc2
KM
309 if (mp->mnt_mounth) {
310 vp->v_mountf = mp->mnt_mounth;
311 vp->v_mountb = &mp->mnt_mounth;
312 mp->mnt_mounth->v_mountb = &vp->v_mountf;
313 mp->mnt_mounth = vp;
36d09cb1 314 } else {
54fb9dc2
KM
315 mp->mnt_mounth = vp;
316 vp->v_mountb = &mp->mnt_mounth;
36d09cb1
KM
317 vp->v_mountf = NULL;
318 }
319}
320
321/*
ef24f6dd
KM
322 * Create a vnode for a block device.
323 * Used for root filesystem, argdev, and swap areas.
324 * Also used for memory file system special devices.
325 */
326bdevvp(dev, vpp)
327 dev_t dev;
328 struct vnode **vpp;
329{
ef24f6dd
KM
330 register struct vnode *vp;
331 struct vnode *nvp;
332 int error;
333
4ef5d036 334 error = getnewvnode(VT_NON, (struct mount *)0, &spec_vnodeops, &nvp);
ef24f6dd
KM
335 if (error) {
336 *vpp = 0;
337 return (error);
338 }
339 vp = nvp;
340 vp->v_type = VBLK;
c0de8792 341 if (nvp = checkalias(vp, dev, (struct mount *)0)) {
ef24f6dd
KM
342 vput(vp);
343 vp = nvp;
344 }
345 *vpp = vp;
346 return (0);
347}
348
349/*
350 * Check to see if the new vnode represents a special device
351 * for which we already have a vnode (either because of
352 * bdevvp() or because of a different vnode representing
353 * the same block device). If such an alias exists, deallocate
f0556f86 354 * the existing contents and return the aliased vnode. The
ef24f6dd
KM
355 * caller is responsible for filling it with its new contents.
356 */
357struct vnode *
c0de8792 358checkalias(nvp, nvp_rdev, mp)
ef24f6dd 359 register struct vnode *nvp;
c0de8792 360 dev_t nvp_rdev;
ef24f6dd
KM
361 struct mount *mp;
362{
363 register struct vnode *vp;
c0de8792 364 struct vnode **vpp;
ef24f6dd
KM
365
366 if (nvp->v_type != VBLK && nvp->v_type != VCHR)
54fb9dc2 367 return (NULLVP);
c0de8792
KM
368
369 vpp = &speclisth[SPECHASH(nvp_rdev)];
ef24f6dd 370loop:
c0de8792
KM
371 for (vp = *vpp; vp; vp = vp->v_specnext) {
372 if (nvp_rdev != vp->v_rdev || nvp->v_type != vp->v_type)
ef24f6dd 373 continue;
c0de8792
KM
374 /*
375 * Alias, but not in use, so flush it out.
376 */
7f7b7d89 377 if (vp->v_usecount == 0) {
c0de8792
KM
378 vgone(vp);
379 goto loop;
380 }
ef62830d
KM
381 if (vget(vp))
382 goto loop;
ef24f6dd
KM
383 break;
384 }
c0de8792 385 if (vp == NULL || vp->v_tag != VT_NON) {
c0de8792
KM
386 MALLOC(nvp->v_specinfo, struct specinfo *,
387 sizeof(struct specinfo), M_VNODE, M_WAITOK);
388 nvp->v_rdev = nvp_rdev;
7f7b7d89 389 nvp->v_hashchain = vpp;
c0de8792
KM
390 nvp->v_specnext = *vpp;
391 *vpp = nvp;
40452d5e
KM
392 if (vp != NULL) {
393 nvp->v_flag |= VALIASED;
394 vp->v_flag |= VALIASED;
395 vput(vp);
396 }
54fb9dc2 397 return (NULLVP);
ef24f6dd 398 }
2bae1875
KM
399 VOP_UNLOCK(vp);
400 vclean(vp, 0);
ef24f6dd
KM
401 vp->v_op = nvp->v_op;
402 vp->v_tag = nvp->v_tag;
403 nvp->v_type = VNON;
404 insmntque(vp, mp);
405 return (vp);
406}
407
408/*
409 * Grab a particular vnode from the free list, increment its
410 * reference count and lock it. The vnode lock bit is set the
411 * vnode is being eliminated in vgone. The process is awakened
412 * when the transition is completed, and an error returned to
413 * indicate that the vnode is no longer usable (possibly having
414 * been changed to a new file system type).
36d09cb1
KM
415 */
416vget(vp)
417 register struct vnode *vp;
418{
419 register struct vnode *vq;
420
ef24f6dd
KM
421 if (vp->v_flag & VXLOCK) {
422 vp->v_flag |= VXWANT;
423 sleep((caddr_t)vp, PINOD);
424 return (1);
425 }
7f7b7d89 426 if (vp->v_usecount == 0) {
ef24f6dd
KM
427 if (vq = vp->v_freef)
428 vq->v_freeb = vp->v_freeb;
429 else
430 vfreet = vp->v_freeb;
431 *vp->v_freeb = vq;
432 vp->v_freef = NULL;
433 vp->v_freeb = NULL;
434 }
36d09cb1 435 VREF(vp);
ef24f6dd
KM
436 VOP_LOCK(vp);
437 return (0);
36d09cb1
KM
438}
439
440/*
441 * Vnode reference, just increment the count
442 */
443void vref(vp)
444 struct vnode *vp;
445{
446
7f7b7d89 447 vp->v_usecount++;
36d09cb1
KM
448}
449
450/*
451 * vput(), just unlock and vrele()
452 */
453void vput(vp)
454 register struct vnode *vp;
455{
456 VOP_UNLOCK(vp);
457 vrele(vp);
458}
459
460/*
461 * Vnode release.
462 * If count drops to zero, call inactive routine and return to freelist.
463 */
464void vrele(vp)
465 register struct vnode *vp;
466{
467
468 if (vp == NULL)
ef24f6dd 469 panic("vrele: null vp");
7f7b7d89
KM
470 vp->v_usecount--;
471 if (vp->v_usecount < 0)
0bf84b18 472 vprint("vrele: bad ref count", vp);
7f7b7d89 473 if (vp->v_usecount > 0)
36d09cb1 474 return;
54fb9dc2 475 if (vfreeh == NULLVP) {
36d09cb1
KM
476 /*
477 * insert into empty list
478 */
479 vfreeh = vp;
480 vp->v_freeb = &vfreeh;
36d09cb1
KM
481 } else {
482 /*
483 * insert at tail of list
484 */
485 *vfreet = vp;
486 vp->v_freeb = vfreet;
36d09cb1 487 }
ef24f6dd
KM
488 vp->v_freef = NULL;
489 vfreet = &vp->v_freef;
490 VOP_INACTIVE(vp);
491}
492
7f7b7d89
KM
493/*
494 * Page or buffer structure gets a reference.
495 */
496vhold(vp)
497 register struct vnode *vp;
498{
499
500 vp->v_holdcnt++;
501}
502
503/*
504 * Page or buffer structure frees a reference.
505 */
506holdrele(vp)
507 register struct vnode *vp;
508{
509
510 if (vp->v_holdcnt <= 0)
511 panic("holdrele: holdcnt");
512 vp->v_holdcnt--;
513}
514
f0556f86
KM
515/*
516 * Remove any vnodes in the vnode table belonging to mount point mp.
517 *
518 * If MNT_NOFORCE is specified, there should not be any active ones,
519 * return error if any are found (nb: this is a user error, not a
520 * system error). If MNT_FORCE is specified, detach any active vnodes
521 * that are found.
522 */
523int busyprt = 0; /* patch to print out busy vnodes */
524
525vflush(mp, skipvp, flags)
526 struct mount *mp;
527 struct vnode *skipvp;
528 int flags;
529{
530 register struct vnode *vp, *nvp;
531 int busy = 0;
532
54fb9dc2 533 if ((mp->mnt_flag & MNT_MPBUSY) == 0)
36ef03ec 534 panic("vflush: not busy");
4597dd33 535loop:
54fb9dc2 536 for (vp = mp->mnt_mounth; vp; vp = nvp) {
4597dd33
KM
537 if (vp->v_mount != mp)
538 goto loop;
f0556f86
KM
539 nvp = vp->v_mountf;
540 /*
541 * Skip over a selected vnode.
f0556f86
KM
542 */
543 if (vp == skipvp)
544 continue;
36ef03ec
KM
545 /*
546 * Skip over a vnodes marked VSYSTEM.
547 */
548 if ((flags & SKIPSYSTEM) && (vp->v_flag & VSYSTEM))
549 continue;
f0556f86 550 /*
7f7b7d89 551 * With v_usecount == 0, all we need to do is clear
f0556f86
KM
552 * out the vnode data structures and we are done.
553 */
7f7b7d89 554 if (vp->v_usecount == 0) {
f0556f86
KM
555 vgone(vp);
556 continue;
557 }
558 /*
559 * For block or character devices, revert to an
560 * anonymous device. For all other files, just kill them.
561 */
36ef03ec 562 if (flags & FORCECLOSE) {
f0556f86
KM
563 if (vp->v_type != VBLK && vp->v_type != VCHR) {
564 vgone(vp);
565 } else {
566 vclean(vp, 0);
567 vp->v_op = &spec_vnodeops;
568 insmntque(vp, (struct mount *)0);
569 }
570 continue;
571 }
572 if (busyprt)
0bf84b18 573 vprint("vflush: busy vnode", vp);
f0556f86
KM
574 busy++;
575 }
576 if (busy)
577 return (EBUSY);
578 return (0);
579}
580
ef24f6dd
KM
581/*
582 * Disassociate the underlying file system from a vnode.
ef24f6dd 583 */
36ef03ec 584void vclean(vp, flags)
ef24f6dd 585 register struct vnode *vp;
36ef03ec 586 long flags;
ef24f6dd
KM
587{
588 struct vnodeops *origops;
2bae1875 589 int active;
ef24f6dd 590
2bae1875
KM
591 /*
592 * Check to see if the vnode is in use.
0bf84b18
KM
593 * If so we have to reference it before we clean it out
594 * so that its count cannot fall to zero and generate a
595 * race against ourselves to recycle it.
2bae1875 596 */
7f7b7d89 597 if (active = vp->v_usecount)
2bae1875 598 VREF(vp);
2bae1875
KM
599 /*
600 * Prevent the vnode from being recycled or
601 * brought into use while we clean it out.
602 */
0bf84b18
KM
603 if (vp->v_flag & VXLOCK)
604 panic("vclean: deadlock");
ef24f6dd 605 vp->v_flag |= VXLOCK;
0bf84b18
KM
606 /*
607 * Even if the count is zero, the VOP_INACTIVE routine may still
608 * have the object locked while it cleans it out. The VOP_LOCK
609 * ensures that the VOP_INACTIVE routine is done with its work.
610 * For active vnodes, it ensures that no other activity can
611 * occur while the buffer list is being cleaned out.
612 */
613 VOP_LOCK(vp);
36ef03ec 614 if (flags & DOCLOSE)
0bf84b18 615 vinvalbuf(vp, 1);
ef24f6dd
KM
616 /*
617 * Prevent any further operations on the vnode from
618 * being passed through to the old file system.
619 */
620 origops = vp->v_op;
621 vp->v_op = &dead_vnodeops;
622 vp->v_tag = VT_NON;
623 /*
2bae1875
KM
624 * If purging an active vnode, it must be unlocked, closed,
625 * and deactivated before being reclaimed.
ef24f6dd 626 */
0bf84b18 627 (*(origops->vn_unlock))(vp);
2bae1875 628 if (active) {
36ef03ec 629 if (flags & DOCLOSE)
2bae1875 630 (*(origops->vn_close))(vp, 0, NOCRED);
ef24f6dd
KM
631 (*(origops->vn_inactive))(vp);
632 }
633 /*
634 * Reclaim the vnode.
635 */
636 if ((*(origops->vn_reclaim))(vp))
637 panic("vclean: cannot reclaim");
2bae1875
KM
638 if (active)
639 vrele(vp);
ef24f6dd
KM
640 /*
641 * Done with purge, notify sleepers in vget of the grim news.
642 */
643 vp->v_flag &= ~VXLOCK;
644 if (vp->v_flag & VXWANT) {
645 vp->v_flag &= ~VXWANT;
646 wakeup((caddr_t)vp);
647 }
648}
649
ef62830d
KM
650/*
651 * Eliminate all activity associated with the requested vnode
652 * and with all vnodes aliased to the requested vnode.
653 */
654void vgoneall(vp)
655 register struct vnode *vp;
656{
7f7b7d89 657 register struct vnode *vq;
ef62830d 658
7a7b3a95
KM
659 if (vp->v_flag & VALIASED) {
660 /*
661 * If a vgone (or vclean) is already in progress,
662 * wait until it is done and return.
663 */
664 if (vp->v_flag & VXLOCK) {
665 vp->v_flag |= VXWANT;
666 sleep((caddr_t)vp, PINOD);
667 return;
668 }
669 /*
670 * Ensure that vp will not be vgone'd while we
671 * are eliminating its aliases.
672 */
673 vp->v_flag |= VXLOCK;
674 while (vp->v_flag & VALIASED) {
675 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
676 if (vq->v_rdev != vp->v_rdev ||
677 vq->v_type != vp->v_type || vp == vq)
678 continue;
679 vgone(vq);
680 break;
681 }
ef62830d 682 }
7a7b3a95
KM
683 /*
684 * Remove the lock so that vgone below will
685 * really eliminate the vnode after which time
686 * vgone will awaken any sleepers.
687 */
688 vp->v_flag &= ~VXLOCK;
ef62830d
KM
689 }
690 vgone(vp);
691}
692
ef24f6dd
KM
693/*
694 * Eliminate all activity associated with a vnode
695 * in preparation for reuse.
696 */
697void vgone(vp)
698 register struct vnode *vp;
699{
7f7b7d89 700 register struct vnode *vq;
c0de8792
KM
701 struct vnode *vx;
702 long count;
ef24f6dd 703
4f55e3ec
KM
704 /*
705 * If a vgone (or vclean) is already in progress,
706 * wait until it is done and return.
707 */
708 if (vp->v_flag & VXLOCK) {
709 vp->v_flag |= VXWANT;
710 sleep((caddr_t)vp, PINOD);
711 return;
712 }
ef24f6dd
KM
713 /*
714 * Clean out the filesystem specific data.
715 */
36ef03ec 716 vclean(vp, DOCLOSE);
ef24f6dd
KM
717 /*
718 * Delete from old mount point vnode list, if on one.
719 */
720 if (vp->v_mountb) {
721 if (vq = vp->v_mountf)
722 vq->v_mountb = vp->v_mountb;
723 *vp->v_mountb = vq;
724 vp->v_mountf = NULL;
725 vp->v_mountb = NULL;
726 }
727 /*
728 * If special device, remove it from special device alias list.
729 */
730 if (vp->v_type == VBLK || vp->v_type == VCHR) {
7f7b7d89
KM
731 if (*vp->v_hashchain == vp) {
732 *vp->v_hashchain = vp->v_specnext;
ef24f6dd 733 } else {
7f7b7d89 734 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
c0de8792 735 if (vq->v_specnext != vp)
ef24f6dd 736 continue;
c0de8792 737 vq->v_specnext = vp->v_specnext;
ef24f6dd
KM
738 break;
739 }
c0de8792 740 if (vq == NULL)
ef24f6dd
KM
741 panic("missing bdev");
742 }
c0de8792 743 if (vp->v_flag & VALIASED) {
7f7b7d89
KM
744 count = 0;
745 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
de81e10c
KM
746 if (vq->v_rdev != vp->v_rdev ||
747 vq->v_type != vp->v_type)
c0de8792
KM
748 continue;
749 count++;
750 vx = vq;
751 }
752 if (count == 0)
753 panic("missing alias");
754 if (count == 1)
755 vx->v_flag &= ~VALIASED;
756 vp->v_flag &= ~VALIASED;
757 }
758 FREE(vp->v_specinfo, M_VNODE);
759 vp->v_specinfo = NULL;
ef24f6dd
KM
760 }
761 /*
762 * If it is on the freelist, move it to the head of the list.
763 */
764 if (vp->v_freeb) {
765 if (vq = vp->v_freef)
766 vq->v_freeb = vp->v_freeb;
767 else
768 vfreet = vp->v_freeb;
769 *vp->v_freeb = vq;
770 vp->v_freef = vfreeh;
771 vp->v_freeb = &vfreeh;
772 vfreeh->v_freeb = &vp->v_freef;
773 vfreeh = vp;
774 }
2bae1875 775 vp->v_type = VBAD;
36d09cb1 776}
ef62830d 777
2bcd6066
KM
778/*
779 * Lookup a vnode by device number.
780 */
781vfinddev(dev, type, vpp)
782 dev_t dev;
783 enum vtype type;
784 struct vnode **vpp;
785{
786 register struct vnode *vp;
787
788 for (vp = speclisth[SPECHASH(dev)]; vp; vp = vp->v_specnext) {
789 if (dev != vp->v_rdev || type != vp->v_type)
790 continue;
791 *vpp = vp;
792 return (0);
793 }
794 return (1);
795}
796
ef62830d
KM
797/*
798 * Calculate the total number of references to a special device.
799 */
800vcount(vp)
801 register struct vnode *vp;
802{
7f7b7d89 803 register struct vnode *vq;
ef62830d
KM
804 int count;
805
806 if ((vp->v_flag & VALIASED) == 0)
7f7b7d89 807 return (vp->v_usecount);
ef62830d 808loop:
7f7b7d89 809 for (count = 0, vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
de81e10c 810 if (vq->v_rdev != vp->v_rdev || vq->v_type != vp->v_type)
ef62830d
KM
811 continue;
812 /*
813 * Alias, but not in use, so flush it out.
814 */
7f7b7d89 815 if (vq->v_usecount == 0) {
ef62830d
KM
816 vgone(vq);
817 goto loop;
818 }
7f7b7d89 819 count += vq->v_usecount;
ef62830d
KM
820 }
821 return (count);
822}
0bf84b18
KM
823
824/*
825 * Print out a description of a vnode.
826 */
827static char *typename[] =
61f846a8 828 { "VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD" };
0bf84b18
KM
829
830vprint(label, vp)
831 char *label;
832 register struct vnode *vp;
833{
f2f730c6 834 char buf[64];
0bf84b18
KM
835
836 if (label != NULL)
837 printf("%s: ", label);
f2f730c6 838 printf("type %s, usecount %d, refcount %d,", typename[vp->v_type],
7f7b7d89 839 vp->v_usecount, vp->v_holdcnt);
f2f730c6
KM
840 buf[0] = '\0';
841 if (vp->v_flag & VROOT)
842 strcat(buf, "|VROOT");
843 if (vp->v_flag & VTEXT)
844 strcat(buf, "|VTEXT");
36ef03ec
KM
845 if (vp->v_flag & VSYSTEM)
846 strcat(buf, "|VSYSTEM");
f2f730c6
KM
847 if (vp->v_flag & VEXLOCK)
848 strcat(buf, "|VEXLOCK");
849 if (vp->v_flag & VSHLOCK)
850 strcat(buf, "|VSHLOCK");
851 if (vp->v_flag & VLWAIT)
852 strcat(buf, "|VLWAIT");
36ef03ec
KM
853 if (vp->v_flag & VXLOCK)
854 strcat(buf, "|VXLOCK");
855 if (vp->v_flag & VXWANT)
856 strcat(buf, "|VXWANT");
f2f730c6
KM
857 if (vp->v_flag & VBWAIT)
858 strcat(buf, "|VBWAIT");
36ef03ec
KM
859 if (vp->v_flag & VALIASED)
860 strcat(buf, "|VALIASED");
f2f730c6
KM
861 if (buf[0] != '\0')
862 printf(" flags (%s)", &buf[1]);
863 printf("\n\t");
0bf84b18
KM
864 VOP_PRINT(vp);
865}
985cbdd5
MT
866
867int kinfo_vdebug = 1;
868int kinfo_vgetfailed;
869#define KINFO_VNODESLOP 10
870/*
871 * Dump vnode list (via kinfo).
872 * Copyout address of vnode followed by vnode.
873 */
874kinfo_vnode(op, where, acopysize, arg, aneeded)
875 char *where;
876 int *acopysize, *aneeded;
877{
878 register struct mount *mp = rootfs;
36ef03ec 879 struct mount *omp;
985cbdd5
MT
880 struct vnode *vp;
881 register needed = 0;
882 register char *bp = where, *savebp;
883 char *ewhere = where + *acopysize;
884 int error;
885
886#define VPTRSZ sizeof (struct vnode *)
887#define VNODESZ sizeof (struct vnode)
888 if (where == NULL) {
889 *aneeded = (numvnodes + KINFO_VNODESLOP) * (VPTRSZ + VNODESZ);
890 return (0);
891 }
892
985cbdd5 893 do {
36ef03ec 894 if (vfs_busy(mp)) {
54fb9dc2 895 mp = mp->mnt_next;
36ef03ec
KM
896 continue;
897 }
985cbdd5
MT
898 savebp = bp;
899again:
4597dd33 900 for (vp = mp->mnt_mounth; vp; vp = vp->v_mountf) {
41185b3b
KM
901 /*
902 * Check that the vp is still associated with
903 * this filesystem. RACE: could have been
904 * recycled onto the same filesystem.
905 */
4597dd33
KM
906 if (vp->v_mount != mp) {
907 if (kinfo_vdebug)
908 printf("kinfo: vp changed\n");
909 bp = savebp;
910 goto again;
911 }
985cbdd5
MT
912 if ((bp + VPTRSZ + VNODESZ <= ewhere) &&
913 ((error = copyout((caddr_t)&vp, bp, VPTRSZ)) ||
914 (error = copyout((caddr_t)vp, bp + VPTRSZ,
41185b3b 915 VNODESZ))))
985cbdd5 916 return (error);
985cbdd5 917 bp += VPTRSZ + VNODESZ;
985cbdd5 918 }
36ef03ec 919 omp = mp;
54fb9dc2 920 mp = mp->mnt_next;
36ef03ec 921 vfs_unbusy(omp);
985cbdd5
MT
922 } while (mp != rootfs);
923
924 *aneeded = bp - where;
925 if (bp > ewhere)
926 *acopysize = ewhere - where;
927 else
928 *acopysize = bp - where;
929 return (0);
930}