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