Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / kern / kern_proc.c
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
34  * $FreeBSD: src/sys/kern/kern_proc.c,v 1.63.2.9 2003/05/08 07:47:16 kbyanc Exp $
35  * $DragonFly: src/sys/kern/kern_proc.c,v 1.16 2004/07/24 20:21:35 dillon Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/sysctl.h>
42 #include <sys/malloc.h>
43 #include <sys/proc.h>
44 #include <sys/filedesc.h>
45 #include <sys/tty.h>
46 #include <sys/signalvar.h>
47 #include <vm/vm.h>
48 #include <sys/lock.h>
49 #include <vm/pmap.h>
50 #include <vm/vm_map.h>
51 #include <sys/user.h>
52 #include <vm/vm_zone.h>
53 #include <machine/smp.h>
54
55 static MALLOC_DEFINE(M_PGRP, "pgrp", "process group header");
56 MALLOC_DEFINE(M_SESSION, "session", "session header");
57 static MALLOC_DEFINE(M_PROC, "proc", "Proc structures");
58 MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures");
59
60 int ps_showallprocs = 1;
61 static int ps_showallthreads = 1;
62 SYSCTL_INT(_kern, OID_AUTO, ps_showallprocs, CTLFLAG_RW,
63     &ps_showallprocs, 0, "");
64 SYSCTL_INT(_kern, OID_AUTO, ps_showallthreads, CTLFLAG_RW,
65     &ps_showallthreads, 0, "");
66
67 static void pgdelete    (struct pgrp *);
68
69 static void     orphanpg (struct pgrp *pg);
70
71 /*
72  * Other process lists
73  */
74 struct pidhashhead *pidhashtbl;
75 u_long pidhash;
76 struct pgrphashhead *pgrphashtbl;
77 u_long pgrphash;
78 struct proclist allproc;
79 struct proclist zombproc;
80 vm_zone_t proc_zone;
81 vm_zone_t thread_zone;
82
83 /*
84  * Initialize global process hashing structures.
85  */
86 void
87 procinit()
88 {
89
90         LIST_INIT(&allproc);
91         LIST_INIT(&zombproc);
92         pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash);
93         pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash);
94         proc_zone = zinit("PROC", sizeof (struct proc), 0, 0, 5);
95         thread_zone = zinit("THREAD", sizeof (struct thread), 0, 0, 5);
96         uihashinit();
97 }
98
99 /*
100  * Is p an inferior of the current process?
101  */
102 int
103 inferior(p)
104         struct proc *p;
105 {
106
107         for (; p != curproc; p = p->p_pptr)
108                 if (p->p_pid == 0)
109                         return (0);
110         return (1);
111 }
112
113 /*
114  * Locate a process by number
115  */
116 struct proc *
117 pfind(pid)
118         pid_t pid;
119 {
120         struct proc *p;
121
122         LIST_FOREACH(p, PIDHASH(pid), p_hash)
123                 if (p->p_pid == pid)
124                         return (p);
125         return (NULL);
126 }
127
128 /*
129  * Locate a process group by number
130  */
131 struct pgrp *
132 pgfind(pgid)
133         pid_t pgid;
134 {
135         struct pgrp *pgrp;
136
137         LIST_FOREACH(pgrp, PGRPHASH(pgid), pg_hash)
138                 if (pgrp->pg_id == pgid)
139                         return (pgrp);
140         return (NULL);
141 }
142
143 /*
144  * Move p to a new or existing process group (and session)
145  */
146 int
147 enterpgrp(p, pgid, mksess)
148         struct proc *p;
149         pid_t pgid;
150         int mksess;
151 {
152         struct pgrp *pgrp = pgfind(pgid);
153
154         KASSERT(pgrp == NULL || !mksess,
155             ("enterpgrp: setsid into non-empty pgrp"));
156         KASSERT(!SESS_LEADER(p),
157             ("enterpgrp: session leader attempted setpgrp"));
158
159         if (pgrp == NULL) {
160                 pid_t savepid = p->p_pid;
161                 struct proc *np;
162                 /*
163                  * new process group
164                  */
165                 KASSERT(p->p_pid == pgid,
166                     ("enterpgrp: new pgrp and pid != pgid"));
167                 if ((np = pfind(savepid)) == NULL || np != p)
168                         return (ESRCH);
169                 MALLOC(pgrp, struct pgrp *, sizeof(struct pgrp), M_PGRP,
170                     M_WAITOK);
171                 if (mksess) {
172                         struct session *sess;
173
174                         /*
175                          * new session
176                          */
177                         MALLOC(sess, struct session *, sizeof(struct session),
178                             M_SESSION, M_WAITOK);
179                         sess->s_leader = p;
180                         sess->s_sid = p->p_pid;
181                         sess->s_count = 1;
182                         sess->s_ttyvp = NULL;
183                         sess->s_ttyp = NULL;
184                         bcopy(p->p_session->s_login, sess->s_login,
185                             sizeof(sess->s_login));
186                         p->p_flag &= ~P_CONTROLT;
187                         pgrp->pg_session = sess;
188                         KASSERT(p == curproc,
189                             ("enterpgrp: mksession and p != curproc"));
190                 } else {
191                         pgrp->pg_session = p->p_session;
192                         pgrp->pg_session->s_count++;
193                 }
194                 pgrp->pg_id = pgid;
195                 LIST_INIT(&pgrp->pg_members);
196                 LIST_INSERT_HEAD(PGRPHASH(pgid), pgrp, pg_hash);
197                 pgrp->pg_jobc = 0;
198                 SLIST_INIT(&pgrp->pg_sigiolst);
199         } else if (pgrp == p->p_pgrp)
200                 return (0);
201
202         /*
203          * Adjust eligibility of affected pgrps to participate in job control.
204          * Increment eligibility counts before decrementing, otherwise we
205          * could reach 0 spuriously during the first call.
206          */
207         fixjobc(p, pgrp, 1);
208         fixjobc(p, p->p_pgrp, 0);
209
210         LIST_REMOVE(p, p_pglist);
211         if (LIST_EMPTY(&p->p_pgrp->pg_members))
212                 pgdelete(p->p_pgrp);
213         p->p_pgrp = pgrp;
214         LIST_INSERT_HEAD(&pgrp->pg_members, p, p_pglist);
215         return (0);
216 }
217
218 /*
219  * remove process from process group
220  */
221 int
222 leavepgrp(p)
223         struct proc *p;
224 {
225
226         LIST_REMOVE(p, p_pglist);
227         if (LIST_EMPTY(&p->p_pgrp->pg_members))
228                 pgdelete(p->p_pgrp);
229         p->p_pgrp = 0;
230         return (0);
231 }
232
233 /*
234  * delete a process group
235  */
236 static void
237 pgdelete(pgrp)
238         struct pgrp *pgrp;
239 {
240
241         /*
242          * Reset any sigio structures pointing to us as a result of
243          * F_SETOWN with our pgid.
244          */
245         funsetownlst(&pgrp->pg_sigiolst);
246
247         if (pgrp->pg_session->s_ttyp != NULL &&
248             pgrp->pg_session->s_ttyp->t_pgrp == pgrp)
249                 pgrp->pg_session->s_ttyp->t_pgrp = NULL;
250         LIST_REMOVE(pgrp, pg_hash);
251         if (--pgrp->pg_session->s_count == 0)
252                 FREE(pgrp->pg_session, M_SESSION);
253         FREE(pgrp, M_PGRP);
254 }
255
256 /*
257  * Adjust pgrp jobc counters when specified process changes process group.
258  * We count the number of processes in each process group that "qualify"
259  * the group for terminal job control (those with a parent in a different
260  * process group of the same session).  If that count reaches zero, the
261  * process group becomes orphaned.  Check both the specified process'
262  * process group and that of its children.
263  * entering == 0 => p is leaving specified group.
264  * entering == 1 => p is entering specified group.
265  */
266 void
267 fixjobc(p, pgrp, entering)
268         struct proc *p;
269         struct pgrp *pgrp;
270         int entering;
271 {
272         struct pgrp *hispgrp;
273         struct session *mysession = pgrp->pg_session;
274
275         /*
276          * Check p's parent to see whether p qualifies its own process
277          * group; if so, adjust count for p's process group.
278          */
279         if ((hispgrp = p->p_pptr->p_pgrp) != pgrp &&
280             hispgrp->pg_session == mysession) {
281                 if (entering)
282                         pgrp->pg_jobc++;
283                 else if (--pgrp->pg_jobc == 0)
284                         orphanpg(pgrp);
285         }
286
287         /*
288          * Check this process' children to see whether they qualify
289          * their process groups; if so, adjust counts for children's
290          * process groups.
291          */
292         LIST_FOREACH(p, &p->p_children, p_sibling)
293                 if ((hispgrp = p->p_pgrp) != pgrp &&
294                     hispgrp->pg_session == mysession &&
295                     p->p_stat != SZOMB) {
296                         if (entering)
297                                 hispgrp->pg_jobc++;
298                         else if (--hispgrp->pg_jobc == 0)
299                                 orphanpg(hispgrp);
300                 }
301 }
302
303 /*
304  * A process group has become orphaned;
305  * if there are any stopped processes in the group,
306  * hang-up all process in that group.
307  */
308 static void
309 orphanpg(pg)
310         struct pgrp *pg;
311 {
312         struct proc *p;
313
314         LIST_FOREACH(p, &pg->pg_members, p_pglist) {
315                 if (p->p_stat == SSTOP) {
316                         LIST_FOREACH(p, &pg->pg_members, p_pglist) {
317                                 psignal(p, SIGHUP);
318                                 psignal(p, SIGCONT);
319                         }
320                         return;
321                 }
322         }
323 }
324
325 #include "opt_ddb.h"
326 #ifdef DDB
327 #include <ddb/ddb.h>
328
329 DB_SHOW_COMMAND(pgrpdump, pgrpdump)
330 {
331         struct pgrp *pgrp;
332         struct proc *p;
333         int i;
334
335         for (i = 0; i <= pgrphash; i++) {
336                 if (!LIST_EMPTY(&pgrphashtbl[i])) {
337                         printf("\tindx %d\n", i);
338                         LIST_FOREACH(pgrp, &pgrphashtbl[i], pg_hash) {
339                                 printf(
340                         "\tpgrp %p, pgid %ld, sess %p, sesscnt %d, mem %p\n",
341                                     (void *)pgrp, (long)pgrp->pg_id,
342                                     (void *)pgrp->pg_session,
343                                     pgrp->pg_session->s_count,
344                                     (void *)LIST_FIRST(&pgrp->pg_members));
345                                 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
346                                         printf("\t\tpid %ld addr %p pgrp %p\n", 
347                                             (long)p->p_pid, (void *)p,
348                                             (void *)p->p_pgrp);
349                                 }
350                         }
351                 }
352         }
353 }
354 #endif /* DDB */
355
356 /*
357  * Fill in an eproc structure for the specified thread.
358  */
359 void
360 fill_eproc_td(thread_t td, struct eproc *ep, struct proc *xp)
361 {
362         bzero(ep, sizeof(*ep));
363
364         ep->e_uticks = td->td_uticks;
365         ep->e_sticks = td->td_sticks;
366         ep->e_iticks = td->td_iticks;
367         ep->e_tdev = NOUDEV;
368         ep->e_cpuid = td->td_gd->gd_cpuid;
369         if (td->td_wmesg) {
370                 strncpy(ep->e_wmesg, td->td_wmesg, WMESGLEN);
371                 ep->e_wmesg[WMESGLEN] = 0;
372         }
373
374         /*
375          * Fake up portions of the proc structure copied out by the sysctl
376          * to return useful information.  Note that using td_pri directly
377          * is messy because it includes critial section data so we fake
378          * up an rtprio.prio for threads.
379          */
380         if (xp) {
381                 *xp = *initproc;
382                 xp->p_rtprio.type = RTP_PRIO_THREAD;
383                 xp->p_rtprio.prio = td->td_pri & TDPRI_MASK;
384                 xp->p_pid = -1;
385         }
386 }
387
388 /*
389  * Fill in an eproc structure for the specified process.
390  */
391 void
392 fill_eproc(struct proc *p, struct eproc *ep)
393 {
394         struct tty *tp;
395
396         fill_eproc_td(p->p_thread, ep, NULL);
397
398         ep->e_paddr = p;
399         if (p->p_ucred) {
400                 ep->e_ucred = *p->p_ucred;
401         }
402         if (p->p_procsig) {
403                 ep->e_procsig = *p->p_procsig;
404         }
405         if (p->p_stat != SIDL && p->p_stat != SZOMB && p->p_vmspace != NULL) {
406                 struct vmspace *vm = p->p_vmspace;
407                 ep->e_vm = *vm;
408                 ep->e_vm.vm_rssize = vmspace_resident_count(vm); /*XXX*/
409         }
410         if ((p->p_flag & P_INMEM) && p->p_stats)
411                 ep->e_stats = *p->p_stats;
412         if (p->p_pptr)
413                 ep->e_ppid = p->p_pptr->p_pid;
414         if (p->p_pgrp) {
415                 ep->e_pgid = p->p_pgrp->pg_id;
416                 ep->e_jobc = p->p_pgrp->pg_jobc;
417                 ep->e_sess = p->p_pgrp->pg_session;
418
419                 if (ep->e_sess) {
420                         bcopy(ep->e_sess->s_login, ep->e_login, sizeof(ep->e_login));
421                         if (ep->e_sess->s_ttyvp)
422                                 ep->e_flag = EPROC_CTTY;
423                         if (p->p_session && SESS_LEADER(p))
424                                 ep->e_flag |= EPROC_SLEADER;
425                 }
426         }
427         if ((p->p_flag & P_CONTROLT) &&
428             (ep->e_sess != NULL) &&
429             ((tp = ep->e_sess->s_ttyp) != NULL)) {
430                 ep->e_tdev = dev2udev(tp->t_dev);
431                 ep->e_tpgid = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
432                 ep->e_tsess = tp->t_session;
433         } else {
434                 ep->e_tdev = NOUDEV;
435         }
436 }
437
438 struct proc *
439 zpfind(pid_t pid)
440 {
441         struct proc *p;
442
443         LIST_FOREACH(p, &zombproc, p_list)
444                 if (p->p_pid == pid)
445                         return (p);
446         return (NULL);
447 }
448
449 static int
450 sysctl_out_proc(struct proc *p, struct thread *td, struct sysctl_req *req, int doingzomb)
451 {
452         struct eproc eproc;
453         struct proc xproc;
454         int error;
455 #if 0
456         pid_t pid = p->p_pid;
457 #endif
458
459         if (p) {
460                 td = p->p_thread;
461                 fill_eproc(p, &eproc);
462                 xproc = *p;
463
464                 /*
465                  * Fixup p_stat from SRUN to SSLEEP if the LWKT thread is
466                  * in a thread-blocked state.
467                  *
468                  * XXX temporary fix which might become permanent (I'd rather
469                  * not pollute the thread scheduler with knowlege about 
470                  * processes).
471                  */
472                 if (p->p_stat == SRUN && td && (td->td_flags & TDF_BLOCKED)) {
473                         xproc.p_stat = SSLEEP;
474                 }
475         } else if (td) {
476                 fill_eproc_td(td, &eproc, &xproc);
477         }
478         error = SYSCTL_OUT(req,(caddr_t)&xproc, sizeof(struct proc));
479         if (error)
480                 return (error);
481         error = SYSCTL_OUT(req,(caddr_t)&eproc, sizeof(eproc));
482         if (error)
483                 return (error);
484         error = SYSCTL_OUT(req,(caddr_t)td, sizeof(struct thread));
485         if (error)
486                 return (error);
487 #if 0
488         if (!doingzomb && pid && (pfind(pid) != p))
489                 return EAGAIN;
490         if (doingzomb && zpfind(pid) != p)
491                 return EAGAIN;
492 #endif
493         return (0);
494 }
495
496 static int
497 sysctl_kern_proc(SYSCTL_HANDLER_ARGS)
498 {
499         int *name = (int*) arg1;
500         u_int namelen = arg2;
501         struct proc *p;
502         struct thread *td;
503         int doingzomb;
504         int error = 0;
505         int n;
506         int origcpu;
507         struct ucred *cr1 = curproc->p_ucred;
508
509         if (oidp->oid_number == KERN_PROC_PID) {
510                 if (namelen != 1) 
511                         return (EINVAL);
512                 p = pfind((pid_t)name[0]);
513                 if (!p)
514                         return (0);
515                 if (!PRISON_CHECK(cr1, p->p_ucred))
516                         return (0);
517                 error = sysctl_out_proc(p, NULL, req, 0);
518                 return (error);
519         }
520         if (oidp->oid_number == KERN_PROC_ALL && !namelen)
521                 ;
522         else if (oidp->oid_number != KERN_PROC_ALL && namelen == 1)
523                 ;
524         else
525                 return (EINVAL);
526         
527         if (!req->oldptr) {
528                 /* overestimate by 5 procs */
529                 error = SYSCTL_OUT(req, 0, sizeof (struct kinfo_proc) * 5);
530                 if (error)
531                         return (error);
532         }
533         for (doingzomb=0 ; doingzomb < 2 ; doingzomb++) {
534                 if (!doingzomb)
535                         p = LIST_FIRST(&allproc);
536                 else
537                         p = LIST_FIRST(&zombproc);
538                 for (; p != 0; p = LIST_NEXT(p, p_list)) {
539                         /*
540                          * Show a user only their processes.
541                          */
542                         if ((!ps_showallprocs) && p_trespass(cr1, p->p_ucred))
543                                 continue;
544                         /*
545                          * Skip embryonic processes.
546                          */
547                         if (p->p_stat == SIDL)
548                                 continue;
549                         /*
550                          * TODO - make more efficient (see notes below).
551                          * do by session.
552                          */
553                         switch (oidp->oid_number) {
554                         case KERN_PROC_PGRP:
555                                 /* could do this by traversing pgrp */
556                                 if (p->p_pgrp == NULL || 
557                                     p->p_pgrp->pg_id != (pid_t)name[0])
558                                         continue;
559                                 break;
560
561                         case KERN_PROC_TTY:
562                                 if ((p->p_flag & P_CONTROLT) == 0 ||
563                                     p->p_session == NULL ||
564                                     p->p_session->s_ttyp == NULL ||
565                                     dev2udev(p->p_session->s_ttyp->t_dev) != 
566                                         (udev_t)name[0])
567                                         continue;
568                                 break;
569
570                         case KERN_PROC_UID:
571                                 if (p->p_ucred == NULL || 
572                                     p->p_ucred->cr_uid != (uid_t)name[0])
573                                         continue;
574                                 break;
575
576                         case KERN_PROC_RUID:
577                                 if (p->p_ucred == NULL || 
578                                     p->p_ucred->cr_ruid != (uid_t)name[0])
579                                         continue;
580                                 break;
581                         }
582
583                         if (!PRISON_CHECK(cr1, p->p_ucred))
584                                 continue;
585                         PHOLD(p);
586                         error = sysctl_out_proc(p, NULL, req, doingzomb);
587                         PRELE(p);
588                         if (error)
589                                 return (error);
590                 }
591         }
592
593         /*
594          * Iterate over all active cpus and scan their thread list.  Start
595          * with the next logical cpu and end with our original cpu.  We
596          * migrate our own thread to each target cpu in order to safely scan
597          * its thread list.  In the last loop we migrate back to our original
598          * cpu.
599          */
600         origcpu = mycpu->gd_cpuid;
601         for (n = 1; ps_showallthreads && n <= ncpus; ++n) {
602                 globaldata_t rgd;
603                 int nid;
604
605                 nid = (origcpu + n) % ncpus;
606                 if ((smp_active_mask & (1 << nid)) == 0)
607                         continue;
608                 rgd = globaldata_find(nid);
609                 lwkt_setcpu_self(rgd);
610                 cpu_mb1();      /* CURRENT CPU HAS CHANGED */
611
612                 TAILQ_FOREACH(td, &mycpu->gd_tdallq, td_allq) {
613                         if (td->td_proc)
614                                 continue;
615                         switch (oidp->oid_number) {
616                         case KERN_PROC_PGRP:
617                         case KERN_PROC_TTY:
618                         case KERN_PROC_UID:
619                         case KERN_PROC_RUID:
620                                 continue;
621                         default:
622                                 break;
623                         }
624                         lwkt_hold(td);
625                         error = sysctl_out_proc(NULL, td, req, doingzomb);
626                         lwkt_rele(td);
627                         if (error)
628                                 return (error);
629                 }
630         }
631         return (0);
632 }
633
634 /*
635  * This sysctl allows a process to retrieve the argument list or process
636  * title for another process without groping around in the address space
637  * of the other process.  It also allow a process to set its own "process 
638  * title to a string of its own choice.
639  */
640 static int
641 sysctl_kern_proc_args(SYSCTL_HANDLER_ARGS)
642 {
643         int *name = (int*) arg1;
644         u_int namelen = arg2;
645         struct proc *p;
646         struct pargs *pa;
647         int error = 0;
648         struct ucred *cr1 = curproc->p_ucred;
649
650         if (namelen != 1) 
651                 return (EINVAL);
652
653         p = pfind((pid_t)name[0]);
654         if (!p)
655                 return (0);
656
657         if ((!ps_argsopen) && p_trespass(cr1, p->p_ucred))
658                 return (0);
659
660         if (req->newptr && curproc != p)
661                 return (EPERM);
662
663         if (req->oldptr && p->p_args != NULL)
664                 error = SYSCTL_OUT(req, p->p_args->ar_args, p->p_args->ar_length);
665         if (req->newptr == NULL)
666                 return (error);
667
668         if (p->p_args && --p->p_args->ar_ref == 0) 
669                 FREE(p->p_args, M_PARGS);
670         p->p_args = NULL;
671
672         if (req->newlen + sizeof(struct pargs) > ps_arg_cache_limit)
673                 return (error);
674
675         MALLOC(pa, struct pargs *, sizeof(struct pargs) + req->newlen, 
676             M_PARGS, M_WAITOK);
677         pa->ar_ref = 1;
678         pa->ar_length = req->newlen;
679         error = SYSCTL_IN(req, pa->ar_args, req->newlen);
680         if (!error)
681                 p->p_args = pa;
682         else
683                 FREE(pa, M_PARGS);
684         return (error);
685 }
686
687 SYSCTL_NODE(_kern, KERN_PROC, proc, CTLFLAG_RD,  0, "Process table");
688
689 SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLFLAG_RD|CTLTYPE_STRUCT,
690         0, 0, sysctl_kern_proc, "S,proc", "Return entire process table");
691
692 SYSCTL_NODE(_kern_proc, KERN_PROC_PGRP, pgrp, CTLFLAG_RD, 
693         sysctl_kern_proc, "Process table");
694
695 SYSCTL_NODE(_kern_proc, KERN_PROC_TTY, tty, CTLFLAG_RD, 
696         sysctl_kern_proc, "Process table");
697
698 SYSCTL_NODE(_kern_proc, KERN_PROC_UID, uid, CTLFLAG_RD, 
699         sysctl_kern_proc, "Process table");
700
701 SYSCTL_NODE(_kern_proc, KERN_PROC_RUID, ruid, CTLFLAG_RD, 
702         sysctl_kern_proc, "Process table");
703
704 SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD, 
705         sysctl_kern_proc, "Process table");
706
707 SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args, CTLFLAG_RW | CTLFLAG_ANYBODY,
708         sysctl_kern_proc_args, "Process argument list");