Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / vfs / procfs / procfs_vnops.c
1 /*
2  * Copyright (c) 1993, 1995 Jan-Simon Pendry
3  * Copyright (c) 1993, 1995
4  *      The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * Jan-Simon Pendry.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *      @(#)procfs_vnops.c      8.18 (Berkeley) 5/21/95
38  *
39  * $FreeBSD: src/sys/miscfs/procfs/procfs_vnops.c,v 1.76.2.7 2002/01/22 17:22:59 nectar Exp $
40  */
41
42 /*
43  * procfs vnode interface
44  */
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/time.h>
49 #include <sys/kernel.h>
50 #include <sys/lock.h>
51 #include <sys/fcntl.h>
52 #include <sys/proc.h>
53 #include <sys/signalvar.h>
54 #include <sys/vnode.h>
55 #include <sys/uio.h>
56 #include <sys/mount.h>
57 #include <sys/namei.h>
58 #include <sys/dirent.h>
59 #include <sys/malloc.h>
60 #include <machine/reg.h>
61 #include <vm/vm_zone.h>
62 #include <miscfs/procfs/procfs.h>
63 #include <sys/pioctl.h>
64
65 static int      procfs_access __P((struct vop_access_args *));
66 static int      procfs_badop __P((void));
67 static int      procfs_bmap __P((struct vop_bmap_args *));
68 static int      procfs_close __P((struct vop_close_args *));
69 static int      procfs_getattr __P((struct vop_getattr_args *));
70 static int      procfs_inactive __P((struct vop_inactive_args *));
71 static int      procfs_ioctl __P((struct vop_ioctl_args *));
72 static int      procfs_lookup __P((struct vop_lookup_args *));
73 static int      procfs_open __P((struct vop_open_args *));
74 static int      procfs_print __P((struct vop_print_args *));
75 static int      procfs_readdir __P((struct vop_readdir_args *));
76 static int      procfs_readlink __P((struct vop_readlink_args *));
77 static int      procfs_reclaim __P((struct vop_reclaim_args *));
78 static int      procfs_setattr __P((struct vop_setattr_args *));
79
80 /*
81  * This is a list of the valid names in the
82  * process-specific sub-directories.  It is
83  * used in procfs_lookup and procfs_readdir
84  */
85 static struct proc_target {
86         u_char  pt_type;
87         u_char  pt_namlen;
88         char    *pt_name;
89         pfstype pt_pfstype;
90         int     (*pt_valid) __P((struct proc *p));
91 } proc_targets[] = {
92 #define N(s) sizeof(s)-1, s
93         /*        name          type            validp */
94         { DT_DIR, N("."),       Pproc,          NULL },
95         { DT_DIR, N(".."),      Proot,          NULL },
96         { DT_REG, N("mem"),     Pmem,           NULL },
97         { DT_REG, N("regs"),    Pregs,          procfs_validregs },
98         { DT_REG, N("fpregs"),  Pfpregs,        procfs_validfpregs },
99         { DT_REG, N("dbregs"),  Pdbregs,        procfs_validdbregs },
100         { DT_REG, N("ctl"),     Pctl,           NULL },
101         { DT_REG, N("status"),  Pstatus,        NULL },
102         { DT_REG, N("note"),    Pnote,          NULL },
103         { DT_REG, N("notepg"),  Pnotepg,        NULL },
104         { DT_REG, N("map"),     Pmap,           procfs_validmap },
105         { DT_REG, N("etype"),   Ptype,          procfs_validtype },
106         { DT_REG, N("cmdline"), Pcmdline,       NULL },
107         { DT_REG, N("rlimit"),  Prlimit,        NULL },
108         { DT_LNK, N("file"),    Pfile,          NULL },
109 #undef N
110 };
111 static const int nproc_targets = sizeof(proc_targets) / sizeof(proc_targets[0]);
112
113 static pid_t atopid __P((const char *, u_int));
114
115 /*
116  * set things up for doing i/o on
117  * the pfsnode (vp).  (vp) is locked
118  * on entry, and should be left locked
119  * on exit.
120  *
121  * for procfs we don't need to do anything
122  * in particular for i/o.  all that is done
123  * is to support exclusive open on process
124  * memory images.
125  */
126 static int
127 procfs_open(ap)
128         struct vop_open_args /* {
129                 struct vnode *a_vp;
130                 int  a_mode;
131                 struct ucred *a_cred;
132                 struct proc *a_p;
133         } */ *ap;
134 {
135         struct pfsnode *pfs = VTOPFS(ap->a_vp);
136         struct proc *p1, *p2;
137
138         p2 = PFIND(pfs->pfs_pid);
139         if (p2 == NULL)
140                 return (ENOENT);
141         if (pfs->pfs_pid && !PRISON_CHECK(ap->a_p, p2))
142                 return (ENOENT);
143
144         switch (pfs->pfs_type) {
145         case Pmem:
146                 if (((pfs->pfs_flags & FWRITE) && (ap->a_mode & O_EXCL)) ||
147                     ((pfs->pfs_flags & O_EXCL) && (ap->a_mode & FWRITE)))
148                         return (EBUSY);
149
150                 p1 = ap->a_p;
151                 /* Can't trace a process that's currently exec'ing. */ 
152                 if ((p2->p_flag & P_INEXEC) != 0)
153                         return EAGAIN;
154                 if (!CHECKIO(p1, p2) || p_trespass(p1, p2))
155                         return (EPERM);
156
157                 if (ap->a_mode & FWRITE)
158                         pfs->pfs_flags = ap->a_mode & (FWRITE|O_EXCL);
159
160                 return (0);
161
162         default:
163                 break;
164         }
165
166         return (0);
167 }
168
169 /*
170  * close the pfsnode (vp) after doing i/o.
171  * (vp) is not locked on entry or exit.
172  *
173  * nothing to do for procfs other than undo
174  * any exclusive open flag (see _open above).
175  */
176 static int
177 procfs_close(ap)
178         struct vop_close_args /* {
179                 struct vnode *a_vp;
180                 int  a_fflag;
181                 struct ucred *a_cred;
182                 struct proc *a_p;
183         } */ *ap;
184 {
185         struct pfsnode *pfs = VTOPFS(ap->a_vp);
186         struct proc *p;
187
188         switch (pfs->pfs_type) {
189         case Pmem:
190                 if ((ap->a_fflag & FWRITE) && (pfs->pfs_flags & O_EXCL))
191                         pfs->pfs_flags &= ~(FWRITE|O_EXCL);
192                 /*
193                  * This rather complicated-looking code is trying to
194                  * determine if this was the last close on this particular
195                  * vnode.  While one would expect v_usecount to be 1 at
196                  * that point, it seems that (according to John Dyson)
197                  * the VM system will bump up the usecount.  So:  if the
198                  * usecount is 2, and VOBJBUF is set, then this is really
199                  * the last close.  Otherwise, if the usecount is < 2
200                  * then it is definitely the last close.
201                  * If this is the last close, then it checks to see if
202                  * the target process has PF_LINGER set in p_pfsflags,
203                  * if this is *not* the case, then the process' stop flags
204                  * are cleared, and the process is woken up.  This is
205                  * to help prevent the case where a process has been
206                  * told to stop on an event, but then the requesting process
207                  * has gone away or forgotten about it.
208                  */
209                 if ((ap->a_vp->v_usecount < 2)
210                     && (p = pfind(pfs->pfs_pid))
211                     && !(p->p_pfsflags & PF_LINGER)) {
212                         p->p_stops = 0;
213                         p->p_step = 0;
214                         wakeup(&p->p_step);
215                 }
216                 break;
217         default:
218                 break;
219         }
220
221         return (0);
222 }
223
224 /*
225  * do an ioctl operation on a pfsnode (vp).
226  * (vp) is not locked on entry or exit.
227  */
228 static int
229 procfs_ioctl(ap)
230         struct vop_ioctl_args *ap;
231 {
232         struct pfsnode *pfs = VTOPFS(ap->a_vp);
233         struct proc *procp, *p;
234         int error;
235         int signo;
236         struct procfs_status *psp;
237         unsigned char flags;
238
239         p = ap->a_p;
240         procp = pfind(pfs->pfs_pid);
241         if (procp == NULL) {
242                 return ENOTTY;
243         }
244
245         /* Can't trace a process that's currently exec'ing. */ 
246         if ((procp->p_flag & P_INEXEC) != 0)
247                 return EAGAIN;
248         if (!CHECKIO(p, procp) || p_trespass(p, procp))
249                 return EPERM;
250
251         switch (ap->a_command) {
252         case PIOCBIS:
253           procp->p_stops |= *(unsigned int*)ap->a_data;
254           break;
255         case PIOCBIC:
256           procp->p_stops &= ~*(unsigned int*)ap->a_data;
257           break;
258         case PIOCSFL:
259           /*
260            * NFLAGS is "non-suser_xxx flags" -- currently, only
261            * PFS_ISUGID ("ignore set u/g id");
262            */
263 #define NFLAGS  (PF_ISUGID)
264           flags = (unsigned char)*(unsigned int*)ap->a_data;
265           if (flags & NFLAGS && (error = suser(p)))
266             return error;
267           procp->p_pfsflags = flags;
268           break;
269         case PIOCGFL:
270           *(unsigned int*)ap->a_data = (unsigned int)procp->p_pfsflags;
271           break;
272         case PIOCSTATUS:
273           psp = (struct procfs_status *)ap->a_data;
274           psp->state = (procp->p_step == 0);
275           psp->flags = procp->p_pfsflags;
276           psp->events = procp->p_stops;
277           if (procp->p_step) {
278             psp->why = procp->p_stype;
279             psp->val = procp->p_xstat;
280           } else {
281             psp->why = psp->val = 0;    /* Not defined values */
282           }
283           break;
284         case PIOCWAIT:
285           psp = (struct procfs_status *)ap->a_data;
286           if (procp->p_step == 0) {
287             error = tsleep(&procp->p_stype, PWAIT | PCATCH, "piocwait", 0);
288             if (error)
289               return error;
290           }
291           psp->state = 1;       /* It stopped */
292           psp->flags = procp->p_pfsflags;
293           psp->events = procp->p_stops;
294           psp->why = procp->p_stype;    /* why it stopped */
295           psp->val = procp->p_xstat;    /* any extra info */
296           break;
297         case PIOCCONT:  /* Restart a proc */
298           if (procp->p_step == 0)
299             return EINVAL;      /* Can only start a stopped process */
300           if ((signo = *(int*)ap->a_data) != 0) {
301             if (signo >= NSIG || signo <= 0)
302               return EINVAL;
303             psignal(procp, signo);
304           }
305           procp->p_step = 0;
306           wakeup(&procp->p_step);
307           break;
308         default:
309           return (ENOTTY);
310         }
311         return 0;
312 }
313
314 /*
315  * do block mapping for pfsnode (vp).
316  * since we don't use the buffer cache
317  * for procfs this function should never
318  * be called.  in any case, it's not clear
319  * what part of the kernel ever makes use
320  * of this function.  for sanity, this is the
321  * usual no-op bmap, although returning
322  * (EIO) would be a reasonable alternative.
323  */
324 static int
325 procfs_bmap(ap)
326         struct vop_bmap_args /* {
327                 struct vnode *a_vp;
328                 daddr_t  a_bn;
329                 struct vnode **a_vpp;
330                 daddr_t *a_bnp;
331                 int *a_runp;
332         } */ *ap;
333 {
334
335         if (ap->a_vpp != NULL)
336                 *ap->a_vpp = ap->a_vp;
337         if (ap->a_bnp != NULL)
338                 *ap->a_bnp = ap->a_bn;
339         if (ap->a_runp != NULL)
340                 *ap->a_runp = 0;
341         return (0);
342 }
343
344 /*
345  * procfs_inactive is called when the pfsnode
346  * is vrele'd and the reference count goes
347  * to zero.  (vp) will be on the vnode free
348  * list, so to get it back vget() must be
349  * used.
350  *
351  * (vp) is locked on entry, but must be unlocked on exit.
352  */
353 static int
354 procfs_inactive(ap)
355         struct vop_inactive_args /* {
356                 struct vnode *a_vp;
357         } */ *ap;
358 {
359         struct vnode *vp = ap->a_vp;
360
361         VOP_UNLOCK(vp, 0, ap->a_p);
362
363         return (0);
364 }
365
366 /*
367  * _reclaim is called when getnewvnode()
368  * wants to make use of an entry on the vnode
369  * free list.  at this time the filesystem needs
370  * to free any private data and remove the node
371  * from any private lists.
372  */
373 static int
374 procfs_reclaim(ap)
375         struct vop_reclaim_args /* {
376                 struct vnode *a_vp;
377         } */ *ap;
378 {
379
380         return (procfs_freevp(ap->a_vp));
381 }
382
383 /*
384  * _print is used for debugging.
385  * just print a readable description
386  * of (vp).
387  */
388 static int
389 procfs_print(ap)
390         struct vop_print_args /* {
391                 struct vnode *a_vp;
392         } */ *ap;
393 {
394         struct pfsnode *pfs = VTOPFS(ap->a_vp);
395
396         printf("tag VT_PROCFS, type %d, pid %ld, mode %x, flags %lx\n",
397             pfs->pfs_type, (long)pfs->pfs_pid, pfs->pfs_mode, pfs->pfs_flags);
398         return (0);
399 }
400
401 /*
402  * generic entry point for unsupported operations
403  */
404 static int
405 procfs_badop()
406 {
407
408         return (EIO);
409 }
410
411 /*
412  * Invent attributes for pfsnode (vp) and store
413  * them in (vap).
414  * Directories lengths are returned as zero since
415  * any real length would require the genuine size
416  * to be computed, and nothing cares anyway.
417  *
418  * this is relatively minimal for procfs.
419  */
420 static int
421 procfs_getattr(ap)
422         struct vop_getattr_args /* {
423                 struct vnode *a_vp;
424                 struct vattr *a_vap;
425                 struct ucred *a_cred;
426                 struct proc *a_p;
427         } */ *ap;
428 {
429         struct pfsnode *pfs = VTOPFS(ap->a_vp);
430         struct vattr *vap = ap->a_vap;
431         struct proc *procp;
432         int error;
433
434         /*
435          * First make sure that the process and its credentials 
436          * still exist.
437          */
438         switch (pfs->pfs_type) {
439         case Proot:
440         case Pcurproc:
441                 procp = 0;
442                 break;
443
444         default:
445                 procp = PFIND(pfs->pfs_pid);
446                 if (procp == NULL || procp->p_cred == NULL ||
447                     procp->p_ucred == NULL)
448                         return (ENOENT);
449         }
450
451         error = 0;
452
453         /* start by zeroing out the attributes */
454         VATTR_NULL(vap);
455
456         /* next do all the common fields */
457         vap->va_type = ap->a_vp->v_type;
458         vap->va_mode = pfs->pfs_mode;
459         vap->va_fileid = pfs->pfs_fileno;
460         vap->va_flags = 0;
461         vap->va_blocksize = PAGE_SIZE;
462         vap->va_bytes = vap->va_size = 0;
463         vap->va_fsid = ap->a_vp->v_mount->mnt_stat.f_fsid.val[0];
464
465         /*
466          * Make all times be current TOD.
467          * It would be possible to get the process start
468          * time from the p_stat structure, but there's
469          * no "file creation" time stamp anyway, and the
470          * p_stat structure is not addressible if u. gets
471          * swapped out for that process.
472          */
473         nanotime(&vap->va_ctime);
474         vap->va_atime = vap->va_mtime = vap->va_ctime;
475
476         /*
477          * If the process has exercised some setuid or setgid
478          * privilege, then rip away read/write permission so
479          * that only root can gain access.
480          */
481         switch (pfs->pfs_type) {
482         case Pctl:
483         case Pregs:
484         case Pfpregs:
485         case Pdbregs:
486         case Pmem:
487                 if (procp->p_flag & P_SUGID)
488                         vap->va_mode &= ~((VREAD|VWRITE)|
489                                           ((VREAD|VWRITE)>>3)|
490                                           ((VREAD|VWRITE)>>6));
491                 break;
492         default:
493                 break;
494         }
495
496         /*
497          * now do the object specific fields
498          *
499          * The size could be set from struct reg, but it's hardly
500          * worth the trouble, and it puts some (potentially) machine
501          * dependent data into this machine-independent code.  If it
502          * becomes important then this function should break out into
503          * a per-file stat function in the corresponding .c file.
504          */
505
506         vap->va_nlink = 1;
507         if (procp) {
508                 vap->va_uid = procp->p_ucred->cr_uid;
509                 vap->va_gid = procp->p_ucred->cr_gid;
510         }
511
512         switch (pfs->pfs_type) {
513         case Proot:
514                 /*
515                  * Set nlink to 1 to tell fts(3) we don't actually know.
516                  */
517                 vap->va_nlink = 1;
518                 vap->va_uid = 0;
519                 vap->va_gid = 0;
520                 vap->va_size = vap->va_bytes = DEV_BSIZE;
521                 break;
522
523         case Pcurproc: {
524                 char buf[16];           /* should be enough */
525                 vap->va_uid = 0;
526                 vap->va_gid = 0;
527                 vap->va_size = vap->va_bytes =
528                     snprintf(buf, sizeof(buf), "%ld", (long)curproc->p_pid);
529                 break;
530         }
531
532         case Pproc:
533                 vap->va_nlink = nproc_targets;
534                 vap->va_size = vap->va_bytes = DEV_BSIZE;
535                 break;
536
537         case Pfile: {
538                 char *fullpath, *freepath;
539                 error = textvp_fullpath(procp, &fullpath, &freepath);
540                 if (error == 0) {
541                         vap->va_size = strlen(fullpath);
542                         free(freepath, M_TEMP);
543                 } else {
544                         vap->va_size = sizeof("unknown") - 1;
545                         error = 0;
546                 }
547                 vap->va_bytes = vap->va_size;
548                 break;
549         }
550
551         case Pmem:
552                 /*
553                  * If we denied owner access earlier, then we have to
554                  * change the owner to root - otherwise 'ps' and friends
555                  * will break even though they are setgid kmem. *SIGH*
556                  */
557                 if (procp->p_flag & P_SUGID)
558                         vap->va_uid = 0;
559                 else
560                         vap->va_uid = procp->p_ucred->cr_uid;
561                 break;
562
563         case Pregs:
564                 vap->va_bytes = vap->va_size = sizeof(struct reg);
565                 break;
566
567         case Pfpregs:
568                 vap->va_bytes = vap->va_size = sizeof(struct fpreg);
569                 break;
570
571         case Pdbregs:
572                 vap->va_bytes = vap->va_size = sizeof(struct dbreg);
573                 break;
574
575         case Ptype:
576         case Pmap:
577         case Pctl:
578         case Pstatus:
579         case Pnote:
580         case Pnotepg:
581         case Pcmdline:
582         case Prlimit:
583                 break;
584
585         default:
586                 panic("procfs_getattr");
587         }
588
589         return (error);
590 }
591
592 static int
593 procfs_setattr(ap)
594         struct vop_setattr_args /* {
595                 struct vnode *a_vp;
596                 struct vattr *a_vap;
597                 struct ucred *a_cred;
598                 struct proc *a_p;
599         } */ *ap;
600 {
601
602         if (ap->a_vap->va_flags != VNOVAL)
603                 return (EOPNOTSUPP);
604
605         /*
606          * just fake out attribute setting
607          * it's not good to generate an error
608          * return, otherwise things like creat()
609          * will fail when they try to set the
610          * file length to 0.  worse, this means
611          * that echo $note > /proc/$pid/note will fail.
612          */
613
614         return (0);
615 }
616
617 /*
618  * implement access checking.
619  *
620  * something very similar to this code is duplicated
621  * throughout the 4bsd kernel and should be moved
622  * into kern/vfs_subr.c sometime.
623  *
624  * actually, the check for super-user is slightly
625  * broken since it will allow read access to write-only
626  * objects.  this doesn't cause any particular trouble
627  * but does mean that the i/o entry points need to check
628  * that the operation really does make sense.
629  */
630 static int
631 procfs_access(ap)
632         struct vop_access_args /* {
633                 struct vnode *a_vp;
634                 int a_mode;
635                 struct ucred *a_cred;
636                 struct proc *a_p;
637         } */ *ap;
638 {
639         struct vattr *vap;
640         struct vattr vattr;
641         int error;
642
643         /*
644          * If you're the super-user,
645          * you always get access.
646          */
647         if (ap->a_cred->cr_uid == 0)
648                 return (0);
649
650         vap = &vattr;
651         error = VOP_GETATTR(ap->a_vp, vap, ap->a_cred, ap->a_p);
652         if (error)
653                 return (error);
654
655         /*
656          * Access check is based on only one of owner, group, public.
657          * If not owner, then check group. If not a member of the
658          * group, then check public access.
659          */
660         if (ap->a_cred->cr_uid != vap->va_uid) {
661                 gid_t *gp;
662                 int i;
663
664                 ap->a_mode >>= 3;
665                 gp = ap->a_cred->cr_groups;
666                 for (i = 0; i < ap->a_cred->cr_ngroups; i++, gp++)
667                         if (vap->va_gid == *gp)
668                                 goto found;
669                 ap->a_mode >>= 3;
670 found:
671                 ;
672         }
673
674         if ((vap->va_mode & ap->a_mode) == ap->a_mode)
675                 return (0);
676
677         return (EACCES);
678 }
679
680 /*
681  * lookup.  this is incredibly complicated in the
682  * general case, however for most pseudo-filesystems
683  * very little needs to be done.
684  *
685  * unless you want to get a migraine, just make sure your
686  * filesystem doesn't do any locking of its own.  otherwise
687  * read and inwardly digest ufs_lookup().
688  */
689 static int
690 procfs_lookup(ap)
691         struct vop_lookup_args /* {
692                 struct vnode * a_dvp;
693                 struct vnode ** a_vpp;
694                 struct componentname * a_cnp;
695         } */ *ap;
696 {
697         struct componentname *cnp = ap->a_cnp;
698         struct vnode **vpp = ap->a_vpp;
699         struct vnode *dvp = ap->a_dvp;
700         char *pname = cnp->cn_nameptr;
701         /* struct proc *curp = cnp->cn_proc; */
702         struct proc_target *pt;
703         pid_t pid;
704         struct pfsnode *pfs;
705         struct proc *p;
706         int i;
707
708         *vpp = NULL;
709
710         if (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)
711                 return (EROFS);
712
713         if (cnp->cn_namelen == 1 && *pname == '.') {
714                 *vpp = dvp;
715                 VREF(dvp);
716                 /* vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY, curp); */
717                 return (0);
718         }
719
720         pfs = VTOPFS(dvp);
721         switch (pfs->pfs_type) {
722         case Proot:
723                 if (cnp->cn_flags & ISDOTDOT)
724                         return (EIO);
725
726                 if (CNEQ(cnp, "curproc", 7))
727                         return (procfs_allocvp(dvp->v_mount, vpp, 0, Pcurproc));
728
729                 pid = atopid(pname, cnp->cn_namelen);
730                 if (pid == NO_PID)
731                         break;
732
733                 p = PFIND(pid);
734                 if (p == NULL)
735                         break;
736
737                 return (procfs_allocvp(dvp->v_mount, vpp, pid, Pproc));
738
739         case Pproc:
740                 if (cnp->cn_flags & ISDOTDOT)
741                         return (procfs_root(dvp->v_mount, vpp));
742
743                 p = PFIND(pfs->pfs_pid);
744                 if (p == NULL)
745                         break;
746
747                 for (pt = proc_targets, i = 0; i < nproc_targets; pt++, i++) {
748                         if (cnp->cn_namelen == pt->pt_namlen &&
749                             bcmp(pt->pt_name, pname, cnp->cn_namelen) == 0 &&
750                             (pt->pt_valid == NULL || (*pt->pt_valid)(p)))
751                                 goto found;
752                 }
753                 break;
754         found:
755                 return (procfs_allocvp(dvp->v_mount, vpp, pfs->pfs_pid,
756                     pt->pt_pfstype));
757
758         default:
759                 return (ENOTDIR);
760         }
761
762         return (cnp->cn_nameiop == LOOKUP ? ENOENT : EROFS);
763 }
764
765 /*
766  * Does this process have a text file?
767  */
768 int
769 procfs_validfile(p)
770         struct proc *p;
771 {
772
773         return (procfs_findtextvp(p) != NULLVP);
774 }
775
776 /*
777  * readdir() returns directory entries from pfsnode (vp).
778  *
779  * We generate just one directory entry at a time, as it would probably
780  * not pay off to buffer several entries locally to save uiomove calls.
781  */
782 static int
783 procfs_readdir(ap)
784         struct vop_readdir_args /* {
785                 struct vnode *a_vp;
786                 struct uio *a_uio;
787                 struct ucred *a_cred;
788                 int *a_eofflag;
789                 int *a_ncookies;
790                 u_long **a_cookies;
791         } */ *ap;
792 {
793         struct uio *uio = ap->a_uio;
794         struct dirent d;
795         struct dirent *dp = &d;
796         struct pfsnode *pfs;
797         int count, error, i, off;
798         static u_int delen;
799
800         if (!delen) {
801
802                 d.d_namlen = PROCFS_NAMELEN;
803                 delen = GENERIC_DIRSIZ(&d);
804         }
805
806         pfs = VTOPFS(ap->a_vp);
807
808         off = (int)uio->uio_offset;
809         if (off != uio->uio_offset || off < 0 || 
810             off % delen != 0 || uio->uio_resid < delen)
811                 return (EINVAL);
812
813         error = 0;
814         count = 0;
815         i = off / delen;
816
817         switch (pfs->pfs_type) {
818         /*
819          * this is for the process-specific sub-directories.
820          * all that is needed to is copy out all the entries
821          * from the procent[] table (top of this file).
822          */
823         case Pproc: {
824                 struct proc *p;
825                 struct proc_target *pt;
826
827                 p = PFIND(pfs->pfs_pid);
828                 if (p == NULL)
829                         break;
830                 if (!PRISON_CHECK(curproc, p))
831                         break;
832
833                 for (pt = &proc_targets[i];
834                      uio->uio_resid >= delen && i < nproc_targets; pt++, i++) {
835                         if (pt->pt_valid && (*pt->pt_valid)(p) == 0)
836                                 continue;
837
838                         dp->d_reclen = delen;
839                         dp->d_fileno = PROCFS_FILENO(pfs->pfs_pid, pt->pt_pfstype);
840                         dp->d_namlen = pt->pt_namlen;
841                         bcopy(pt->pt_name, dp->d_name, pt->pt_namlen + 1);
842                         dp->d_type = pt->pt_type;
843
844                         if ((error = uiomove((caddr_t)dp, delen, uio)) != 0)
845                                 break;
846                 }
847
848                 break;
849             }
850
851         /*
852          * this is for the root of the procfs filesystem
853          * what is needed is a special entry for "curproc"
854          * followed by an entry for each process on allproc
855 #ifdef PROCFS_ZOMBIE
856          * and zombproc.
857 #endif
858          */
859
860         case Proot: {
861 #ifdef PROCFS_ZOMBIE
862                 int doingzomb = 0;
863 #endif
864                 int pcnt = 0;
865                 volatile struct proc *p = allproc.lh_first;
866
867                 for (; p && uio->uio_resid >= delen; i++, pcnt++) {
868                         bzero((char *) dp, delen);
869                         dp->d_reclen = delen;
870
871                         switch (i) {
872                         case 0:         /* `.' */
873                         case 1:         /* `..' */
874                                 dp->d_fileno = PROCFS_FILENO(0, Proot);
875                                 dp->d_namlen = i + 1;
876                                 bcopy("..", dp->d_name, dp->d_namlen);
877                                 dp->d_name[i + 1] = '\0';
878                                 dp->d_type = DT_DIR;
879                                 break;
880
881                         case 2:
882                                 dp->d_fileno = PROCFS_FILENO(0, Pcurproc);
883                                 dp->d_namlen = 7;
884                                 bcopy("curproc", dp->d_name, 8);
885                                 dp->d_type = DT_LNK;
886                                 break;
887
888                         default:
889                                 while (pcnt < i) {
890                                         p = p->p_list.le_next;
891                                         if (!p)
892                                                 goto done;
893                                         if (!PRISON_CHECK(curproc, p))
894                                                 continue;
895                                         pcnt++;
896                                 }
897                                 while (!PRISON_CHECK(curproc, p)) {
898                                         p = p->p_list.le_next;
899                                         if (!p)
900                                                 goto done;
901                                 }
902                                 dp->d_fileno = PROCFS_FILENO(p->p_pid, Pproc);
903                                 dp->d_namlen = sprintf(dp->d_name, "%ld",
904                                     (long)p->p_pid);
905                                 dp->d_type = DT_DIR;
906                                 p = p->p_list.le_next;
907                                 break;
908                         }
909
910                         if ((error = uiomove((caddr_t)dp, delen, uio)) != 0)
911                                 break;
912                 }
913         done:
914
915 #ifdef PROCFS_ZOMBIE
916                 if (p == NULL && doingzomb == 0) {
917                         doingzomb = 1;
918                         p = zombproc.lh_first;
919                         goto again;
920                 }
921 #endif
922
923                 break;
924
925             }
926
927         default:
928                 error = ENOTDIR;
929                 break;
930         }
931
932         uio->uio_offset = i * delen;
933
934         return (error);
935 }
936
937 /*
938  * readlink reads the link of `curproc' or `file'
939  */
940 static int
941 procfs_readlink(ap)
942         struct vop_readlink_args *ap;
943 {
944         char buf[16];           /* should be enough */
945         struct proc *procp;
946         struct vnode *vp = ap->a_vp;
947         struct pfsnode *pfs = VTOPFS(vp);
948         char *fullpath, *freepath;
949         int error, len;
950
951         switch (pfs->pfs_type) {
952         case Pcurproc:
953                 if (pfs->pfs_fileno != PROCFS_FILENO(0, Pcurproc))
954                         return (EINVAL);
955
956                 len = snprintf(buf, sizeof(buf), "%ld", (long)curproc->p_pid);
957
958                 return (uiomove(buf, len, ap->a_uio));
959         /*
960          * There _should_ be no way for an entire process to disappear
961          * from under us...
962          */
963         case Pfile:
964                 procp = PFIND(pfs->pfs_pid);
965                 if (procp == NULL || procp->p_cred == NULL ||
966                     procp->p_ucred == NULL) {
967                         printf("procfs_readlink: pid %d disappeared\n",
968                             pfs->pfs_pid);
969                         return (uiomove("unknown", sizeof("unknown") - 1,
970                             ap->a_uio));
971                 }
972                 error = textvp_fullpath(procp, &fullpath, &freepath);
973                 if (error != 0)
974                         return (uiomove("unknown", sizeof("unknown") - 1,
975                             ap->a_uio));
976                 error = uiomove(fullpath, strlen(fullpath), ap->a_uio);
977                 free(freepath, M_TEMP);
978                 return (error);
979         default:
980                 return (EINVAL);
981         }
982 }
983
984 /*
985  * convert decimal ascii to pid_t
986  */
987 static pid_t
988 atopid(b, len)
989         const char *b;
990         u_int len;
991 {
992         pid_t p = 0;
993
994         while (len--) {
995                 char c = *b++;
996                 if (c < '0' || c > '9')
997                         return (NO_PID);
998                 p = 10 * p + (c - '0');
999                 if (p > PID_MAX)
1000                         return (NO_PID);
1001         }
1002
1003         return (p);
1004 }
1005
1006 /*
1007  * procfs vnode operations.
1008  */
1009 vop_t **procfs_vnodeop_p;
1010 static struct vnodeopv_entry_desc procfs_vnodeop_entries[] = {
1011         { &vop_default_desc,            (vop_t *) vop_defaultop },
1012         { &vop_access_desc,             (vop_t *) procfs_access },
1013         { &vop_advlock_desc,            (vop_t *) procfs_badop },
1014         { &vop_bmap_desc,               (vop_t *) procfs_bmap },
1015         { &vop_close_desc,              (vop_t *) procfs_close },
1016         { &vop_create_desc,             (vop_t *) procfs_badop },
1017         { &vop_getattr_desc,            (vop_t *) procfs_getattr },
1018         { &vop_inactive_desc,           (vop_t *) procfs_inactive },
1019         { &vop_link_desc,               (vop_t *) procfs_badop },
1020         { &vop_lookup_desc,             (vop_t *) procfs_lookup },
1021         { &vop_mkdir_desc,              (vop_t *) procfs_badop },
1022         { &vop_mknod_desc,              (vop_t *) procfs_badop },
1023         { &vop_open_desc,               (vop_t *) procfs_open },
1024         { &vop_pathconf_desc,           (vop_t *) vop_stdpathconf },
1025         { &vop_print_desc,              (vop_t *) procfs_print },
1026         { &vop_read_desc,               (vop_t *) procfs_rw },
1027         { &vop_readdir_desc,            (vop_t *) procfs_readdir },
1028         { &vop_readlink_desc,           (vop_t *) procfs_readlink },
1029         { &vop_reclaim_desc,            (vop_t *) procfs_reclaim },
1030         { &vop_remove_desc,             (vop_t *) procfs_badop },
1031         { &vop_rename_desc,             (vop_t *) procfs_badop },
1032         { &vop_rmdir_desc,              (vop_t *) procfs_badop },
1033         { &vop_setattr_desc,            (vop_t *) procfs_setattr },
1034         { &vop_symlink_desc,            (vop_t *) procfs_badop },
1035         { &vop_write_desc,              (vop_t *) procfs_rw },
1036         { &vop_ioctl_desc,              (vop_t *) procfs_ioctl },
1037         { NULL, NULL }
1038 };
1039 static struct vnodeopv_desc procfs_vnodeop_opv_desc =
1040         { &procfs_vnodeop_p, procfs_vnodeop_entries };
1041
1042 VNODEOP_SET(procfs_vnodeop_opv_desc);