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