Allocate lwkt threads from objcache instead of custom per-cpu cache backed
[games.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.44 2008/05/26 17:11:09 nth 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/jail.h>
45 #include <sys/filedesc.h>
46 #include <sys/tty.h>
47 #include <sys/signalvar.h>
48 #include <sys/spinlock.h>
49 #include <vm/vm.h>
50 #include <sys/lock.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_map.h>
53 #include <sys/user.h>
54 #include <machine/smp.h>
55
56 #include <sys/spinlock2.h>
57
58 static MALLOC_DEFINE(M_PGRP, "pgrp", "process group header");
59 MALLOC_DEFINE(M_SESSION, "session", "session header");
60 MALLOC_DEFINE(M_PROC, "proc", "Proc structures");
61 MALLOC_DEFINE(M_LWP, "lwp", "lwp structures");
62 MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures");
63
64 int ps_showallprocs = 1;
65 static int ps_showallthreads = 1;
66 SYSCTL_INT(_security, OID_AUTO, ps_showallprocs, CTLFLAG_RW,
67     &ps_showallprocs, 0,
68     "Unprivileged processes can see proccesses with different UID/GID");
69 SYSCTL_INT(_security, OID_AUTO, ps_showallthreads, CTLFLAG_RW,
70     &ps_showallthreads, 0,
71     "Unprivileged processes can see kernel threads");
72
73 static void pgdelete(struct pgrp *);
74 static void orphanpg(struct pgrp *pg);
75 static pid_t proc_getnewpid_locked(int random_offset);
76
77 /*
78  * Other process lists
79  */
80 struct pidhashhead *pidhashtbl;
81 u_long pidhash;
82 struct pgrphashhead *pgrphashtbl;
83 u_long pgrphash;
84 struct proclist allproc;
85 struct proclist zombproc;
86 struct spinlock allproc_spin;
87
88 /*
89  * Random component to nextpid generation.  We mix in a random factor to make
90  * it a little harder to predict.  We sanity check the modulus value to avoid
91  * doing it in critical paths.  Don't let it be too small or we pointlessly
92  * waste randomness entropy, and don't let it be impossibly large.  Using a
93  * modulus that is too big causes a LOT more process table scans and slows
94  * down fork processing as the pidchecked caching is defeated.
95  */
96 static int randompid = 0;
97
98 static int
99 sysctl_kern_randompid(SYSCTL_HANDLER_ARGS)
100 {
101         int error, pid;
102
103         pid = randompid;
104         error = sysctl_handle_int(oidp, &pid, 0, req);
105         if (error || !req->newptr)
106                 return (error);
107         if (pid < 0 || pid > PID_MAX - 100)     /* out of range */
108                 pid = PID_MAX - 100;
109         else if (pid < 2)                       /* NOP */
110                 pid = 0;
111         else if (pid < 100)                     /* Make it reasonable */
112                 pid = 100;
113         randompid = pid;
114         return (error);
115 }
116
117 SYSCTL_PROC(_kern, OID_AUTO, randompid, CTLTYPE_INT|CTLFLAG_RW,
118             0, 0, sysctl_kern_randompid, "I", "Random PID modulus");
119
120 /*
121  * Initialize global process hashing structures.
122  */
123 void
124 procinit(void)
125 {
126         LIST_INIT(&allproc);
127         LIST_INIT(&zombproc);
128         spin_init(&allproc_spin);
129         lwkt_init();
130         pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash);
131         pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash);
132         uihashinit();
133 }
134
135 /*
136  * Is p an inferior of the current process?
137  */
138 int
139 inferior(struct proc *p)
140 {
141         for (; p != curproc; p = p->p_pptr)
142                 if (p->p_pid == 0)
143                         return (0);
144         return (1);
145 }
146
147 /*
148  * Locate a process by number
149  */
150 struct proc *
151 pfind(pid_t pid)
152 {
153         struct proc *p;
154
155         LIST_FOREACH(p, PIDHASH(pid), p_hash) {
156                 if (p->p_pid == pid)
157                         return (p);
158         }
159         return (NULL);
160 }
161
162 /*
163  * Locate a process group by number
164  */
165 struct pgrp *
166 pgfind(pid_t pgid)
167 {
168         struct pgrp *pgrp;
169
170         LIST_FOREACH(pgrp, PGRPHASH(pgid), pg_hash) {
171                 if (pgrp->pg_id == pgid)
172                         return (pgrp);
173         }
174         return (NULL);
175 }
176
177 /*
178  * Move p to a new or existing process group (and session)
179  */
180 int
181 enterpgrp(struct proc *p, pid_t pgid, int mksess)
182 {
183         struct pgrp *pgrp = pgfind(pgid);
184
185         KASSERT(pgrp == NULL || !mksess,
186             ("enterpgrp: setsid into non-empty pgrp"));
187         KASSERT(!SESS_LEADER(p),
188             ("enterpgrp: session leader attempted setpgrp"));
189
190         if (pgrp == NULL) {
191                 pid_t savepid = p->p_pid;
192                 struct proc *np;
193                 /*
194                  * new process group
195                  */
196                 KASSERT(p->p_pid == pgid,
197                     ("enterpgrp: new pgrp and pid != pgid"));
198                 if ((np = pfind(savepid)) == NULL || np != p)
199                         return (ESRCH);
200                 MALLOC(pgrp, struct pgrp *, sizeof(struct pgrp), M_PGRP,
201                     M_WAITOK);
202                 if (mksess) {
203                         struct session *sess;
204
205                         /*
206                          * new session
207                          */
208                         MALLOC(sess, struct session *, sizeof(struct session),
209                             M_SESSION, M_WAITOK);
210                         sess->s_leader = p;
211                         sess->s_sid = p->p_pid;
212                         sess->s_count = 1;
213                         sess->s_ttyvp = NULL;
214                         sess->s_ttyp = NULL;
215                         bcopy(p->p_session->s_login, sess->s_login,
216                             sizeof(sess->s_login));
217                         p->p_flag &= ~P_CONTROLT;
218                         pgrp->pg_session = sess;
219                         KASSERT(p == curproc,
220                             ("enterpgrp: mksession and p != curproc"));
221                 } else {
222                         pgrp->pg_session = p->p_session;
223                         sess_hold(pgrp->pg_session);
224                 }
225                 pgrp->pg_id = pgid;
226                 LIST_INIT(&pgrp->pg_members);
227                 LIST_INSERT_HEAD(PGRPHASH(pgid), pgrp, pg_hash);
228                 pgrp->pg_jobc = 0;
229                 SLIST_INIT(&pgrp->pg_sigiolst);
230                 lockinit(&pgrp->pg_lock, "pgwt", 0, 0);
231         } else if (pgrp == p->p_pgrp)
232                 return (0);
233
234         /*
235          * Adjust eligibility of affected pgrps to participate in job control.
236          * Increment eligibility counts before decrementing, otherwise we
237          * could reach 0 spuriously during the first call.
238          */
239         fixjobc(p, pgrp, 1);
240         fixjobc(p, p->p_pgrp, 0);
241
242         LIST_REMOVE(p, p_pglist);
243         if (LIST_EMPTY(&p->p_pgrp->pg_members))
244                 pgdelete(p->p_pgrp);
245         p->p_pgrp = pgrp;
246         LIST_INSERT_HEAD(&pgrp->pg_members, p, p_pglist);
247         return (0);
248 }
249
250 /*
251  * remove process from process group
252  */
253 int
254 leavepgrp(struct proc *p)
255 {
256
257         LIST_REMOVE(p, p_pglist);
258         if (LIST_EMPTY(&p->p_pgrp->pg_members))
259                 pgdelete(p->p_pgrp);
260         p->p_pgrp = 0;
261         return (0);
262 }
263
264 /*
265  * delete a process group
266  */
267 static void
268 pgdelete(struct pgrp *pgrp)
269 {
270
271         /*
272          * Reset any sigio structures pointing to us as a result of
273          * F_SETOWN with our pgid.
274          */
275         funsetownlst(&pgrp->pg_sigiolst);
276
277         if (pgrp->pg_session->s_ttyp != NULL &&
278             pgrp->pg_session->s_ttyp->t_pgrp == pgrp)
279                 pgrp->pg_session->s_ttyp->t_pgrp = NULL;
280         LIST_REMOVE(pgrp, pg_hash);
281         sess_rele(pgrp->pg_session);
282         kfree(pgrp, M_PGRP);
283 }
284
285 /*
286  * Adjust the ref count on a session structure.  When the ref count falls to
287  * zero the tty is disassociated from the session and the session structure
288  * is freed.  Note that tty assocation is not itself ref-counted.
289  */
290 void
291 sess_hold(struct session *sp)
292 {
293         ++sp->s_count;
294 }
295
296 void
297 sess_rele(struct session *sp)
298 {
299         KKASSERT(sp->s_count > 0);
300         if (--sp->s_count == 0) {
301                 if (sp->s_ttyp && sp->s_ttyp->t_session) {
302 #ifdef TTY_DO_FULL_CLOSE
303                         /* FULL CLOSE, see ttyclearsession() */
304                         KKASSERT(sp->s_ttyp->t_session == sp);
305                         sp->s_ttyp->t_session = NULL;
306 #else
307                         /* HALF CLOSE, see ttyclearsession() */
308                         if (sp->s_ttyp->t_session == sp)
309                                 sp->s_ttyp->t_session = NULL;
310 #endif
311                 }
312                 kfree(sp, M_SESSION);
313         }
314 }
315
316 /*
317  * Adjust pgrp jobc counters when specified process changes process group.
318  * We count the number of processes in each process group that "qualify"
319  * the group for terminal job control (those with a parent in a different
320  * process group of the same session).  If that count reaches zero, the
321  * process group becomes orphaned.  Check both the specified process'
322  * process group and that of its children.
323  * entering == 0 => p is leaving specified group.
324  * entering == 1 => p is entering specified group.
325  */
326 void
327 fixjobc(struct proc *p, struct pgrp *pgrp, int entering)
328 {
329         struct pgrp *hispgrp;
330         struct session *mysession = pgrp->pg_session;
331
332         /*
333          * Check p's parent to see whether p qualifies its own process
334          * group; if so, adjust count for p's process group.
335          */
336         if ((hispgrp = p->p_pptr->p_pgrp) != pgrp &&
337             hispgrp->pg_session == mysession) {
338                 if (entering)
339                         pgrp->pg_jobc++;
340                 else if (--pgrp->pg_jobc == 0)
341                         orphanpg(pgrp);
342         }
343
344         /*
345          * Check this process' children to see whether they qualify
346          * their process groups; if so, adjust counts for children's
347          * process groups.
348          */
349         LIST_FOREACH(p, &p->p_children, p_sibling)
350                 if ((hispgrp = p->p_pgrp) != pgrp &&
351                     hispgrp->pg_session == mysession &&
352                     p->p_stat != SZOMB) {
353                         if (entering)
354                                 hispgrp->pg_jobc++;
355                         else if (--hispgrp->pg_jobc == 0)
356                                 orphanpg(hispgrp);
357                 }
358 }
359
360 /*
361  * A process group has become orphaned;
362  * if there are any stopped processes in the group,
363  * hang-up all process in that group.
364  */
365 static void
366 orphanpg(struct pgrp *pg)
367 {
368         struct proc *p;
369
370         LIST_FOREACH(p, &pg->pg_members, p_pglist) {
371                 if (p->p_stat == SSTOP) {
372                         LIST_FOREACH(p, &pg->pg_members, p_pglist) {
373                                 ksignal(p, SIGHUP);
374                                 ksignal(p, SIGCONT);
375                         }
376                         return;
377                 }
378         }
379 }
380
381 /*
382  * Add a new process to the allproc list and the PID hash.  This
383  * also assigns a pid to the new process.
384  *
385  * MPALMOSTSAFE - acquires mplock for karc4random() call
386  */
387 void
388 proc_add_allproc(struct proc *p)
389 {
390         int random_offset;
391
392         if ((random_offset = randompid) != 0) {
393                 get_mplock();
394                 random_offset = karc4random() % random_offset;
395                 rel_mplock();
396         }
397
398         spin_lock_wr(&allproc_spin);
399         p->p_pid = proc_getnewpid_locked(random_offset);
400         LIST_INSERT_HEAD(&allproc, p, p_list);
401         LIST_INSERT_HEAD(PIDHASH(p->p_pid), p, p_hash);
402         spin_unlock_wr(&allproc_spin);
403 }
404
405 /*
406  * Calculate a new process pid.  This function is integrated into
407  * proc_add_allproc() to guarentee that the new pid is not reused before
408  * the new process can be added to the allproc list.
409  *
410  * MPSAFE - must be called with allproc_spin held.
411  */
412 static
413 pid_t
414 proc_getnewpid_locked(int random_offset)
415 {
416         static pid_t nextpid;
417         static pid_t pidchecked;
418         struct proc *p;
419
420         /*
421          * Find an unused process ID.  We remember a range of unused IDs
422          * ready to use (from nextpid+1 through pidchecked-1).
423          */
424         nextpid = nextpid + 1 + random_offset;
425 retry:
426         /*
427          * If the process ID prototype has wrapped around,
428          * restart somewhat above 0, as the low-numbered procs
429          * tend to include daemons that don't exit.
430          */
431         if (nextpid >= PID_MAX) {
432                 nextpid = nextpid % PID_MAX;
433                 if (nextpid < 100)
434                         nextpid += 100;
435                 pidchecked = 0;
436         }
437         if (nextpid >= pidchecked) {
438                 int doingzomb = 0;
439
440                 pidchecked = PID_MAX;
441                 /*
442                  * Scan the active and zombie procs to check whether this pid
443                  * is in use.  Remember the lowest pid that's greater
444                  * than nextpid, so we can avoid checking for a while.
445                  */
446                 p = LIST_FIRST(&allproc);
447 again:
448                 for (; p != 0; p = LIST_NEXT(p, p_list)) {
449                         while (p->p_pid == nextpid ||
450                             p->p_pgrp->pg_id == nextpid ||
451                             p->p_session->s_sid == nextpid) {
452                                 nextpid++;
453                                 if (nextpid >= pidchecked)
454                                         goto retry;
455                         }
456                         if (p->p_pid > nextpid && pidchecked > p->p_pid)
457                                 pidchecked = p->p_pid;
458                         if (p->p_pgrp->pg_id > nextpid &&
459                             pidchecked > p->p_pgrp->pg_id)
460                                 pidchecked = p->p_pgrp->pg_id;
461                         if (p->p_session->s_sid > nextpid &&
462                             pidchecked > p->p_session->s_sid)
463                                 pidchecked = p->p_session->s_sid;
464                 }
465                 if (!doingzomb) {
466                         doingzomb = 1;
467                         p = LIST_FIRST(&zombproc);
468                         goto again;
469                 }
470         }
471         return(nextpid);
472 }
473
474 /*
475  * Called from exit1 to remove a process from the allproc
476  * list and move it to the zombie list.
477  *
478  * MPSAFE
479  */
480 void
481 proc_move_allproc_zombie(struct proc *p)
482 {
483         spin_lock_wr(&allproc_spin);
484         while (p->p_lock) {
485                 spin_unlock_wr(&allproc_spin);
486                 tsleep(p, 0, "reap1", hz / 10);
487                 spin_lock_wr(&allproc_spin);
488         }
489         LIST_REMOVE(p, p_list);
490         LIST_INSERT_HEAD(&zombproc, p, p_list);
491         LIST_REMOVE(p, p_hash);
492         p->p_stat = SZOMB;
493         spin_unlock_wr(&allproc_spin);
494 }
495
496 /*
497  * This routine is called from kern_wait() and will remove the process
498  * from the zombie list and the sibling list.  This routine will block
499  * if someone has a lock on the proces (p_lock).
500  *
501  * MPSAFE
502  */
503 void
504 proc_remove_zombie(struct proc *p)
505 {
506         spin_lock_wr(&allproc_spin);
507         while (p->p_lock) {
508                 spin_unlock_wr(&allproc_spin);
509                 tsleep(p, 0, "reap1", hz / 10);
510                 spin_lock_wr(&allproc_spin);
511         }
512         LIST_REMOVE(p, p_list); /* off zombproc */
513         LIST_REMOVE(p, p_sibling);
514         spin_unlock_wr(&allproc_spin);
515 }
516
517 /*
518  * Scan all processes on the allproc list.  The process is automatically
519  * held for the callback.  A return value of -1 terminates the loop.
520  *
521  * MPSAFE
522  */
523 void
524 allproc_scan(int (*callback)(struct proc *, void *), void *data)
525 {
526         struct proc *p;
527         int r;
528
529         spin_lock_rd(&allproc_spin);
530         LIST_FOREACH(p, &allproc, p_list) {
531                 PHOLD(p);
532                 spin_unlock_rd(&allproc_spin);
533                 r = callback(p, data);
534                 spin_lock_rd(&allproc_spin);
535                 PRELE(p);
536                 if (r < 0)
537                         break;
538         }
539         spin_unlock_rd(&allproc_spin);
540 }
541
542 /*
543  * Scan all lwps of processes on the allproc list.  The lwp is automatically
544  * held for the callback.  A return value of -1 terminates the loop.
545  *
546  * possibly not MPSAFE, needs to access foreingn proc structures
547  */
548 void
549 alllwp_scan(int (*callback)(struct lwp *, void *), void *data)
550 {
551         struct proc *p;
552         struct lwp *lp;
553         int r = 0;
554
555         spin_lock_rd(&allproc_spin);
556         LIST_FOREACH(p, &allproc, p_list) {
557                 PHOLD(p);
558                 spin_unlock_rd(&allproc_spin);
559                 FOREACH_LWP_IN_PROC(lp, p) {
560                         LWPHOLD(lp);
561                         r = callback(lp, data);
562                         LWPRELE(lp);
563                 }
564                 spin_lock_rd(&allproc_spin);
565                 PRELE(p);
566                 if (r < 0)
567                         break;
568         }
569         spin_unlock_rd(&allproc_spin);
570 }
571
572 /*
573  * Scan all processes on the zombproc list.  The process is automatically
574  * held for the callback.  A return value of -1 terminates the loop.
575  *
576  * MPSAFE
577  */
578 void
579 zombproc_scan(int (*callback)(struct proc *, void *), void *data)
580 {
581         struct proc *p;
582         int r;
583
584         spin_lock_rd(&allproc_spin);
585         LIST_FOREACH(p, &zombproc, p_list) {
586                 PHOLD(p);
587                 spin_unlock_rd(&allproc_spin);
588                 r = callback(p, data);
589                 spin_lock_rd(&allproc_spin);
590                 PRELE(p);
591                 if (r < 0)
592                         break;
593         }
594         spin_unlock_rd(&allproc_spin);
595 }
596
597 #include "opt_ddb.h"
598 #ifdef DDB
599 #include <ddb/ddb.h>
600
601 DB_SHOW_COMMAND(pgrpdump, pgrpdump)
602 {
603         struct pgrp *pgrp;
604         struct proc *p;
605         int i;
606
607         for (i = 0; i <= pgrphash; i++) {
608                 if (!LIST_EMPTY(&pgrphashtbl[i])) {
609                         kprintf("\tindx %d\n", i);
610                         LIST_FOREACH(pgrp, &pgrphashtbl[i], pg_hash) {
611                                 kprintf(
612                         "\tpgrp %p, pgid %ld, sess %p, sesscnt %d, mem %p\n",
613                                     (void *)pgrp, (long)pgrp->pg_id,
614                                     (void *)pgrp->pg_session,
615                                     pgrp->pg_session->s_count,
616                                     (void *)LIST_FIRST(&pgrp->pg_members));
617                                 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
618                                         kprintf("\t\tpid %ld addr %p pgrp %p\n", 
619                                             (long)p->p_pid, (void *)p,
620                                             (void *)p->p_pgrp);
621                                 }
622                         }
623                 }
624         }
625 }
626 #endif /* DDB */
627
628 /*
629  * Locate a process on the zombie list.  Return a held process or NULL.
630  */
631 struct proc *
632 zpfind(pid_t pid)
633 {
634         struct proc *p;
635
636         LIST_FOREACH(p, &zombproc, p_list)
637                 if (p->p_pid == pid)
638                         return (p);
639         return (NULL);
640 }
641
642 static int
643 sysctl_out_proc(struct proc *p, struct sysctl_req *req, int flags)
644 {
645         struct kinfo_proc ki;
646         struct lwp *lp;
647         int skp = 0, had_output = 0;
648         int error;
649
650         fill_kinfo_proc(p, &ki);
651         if ((flags & KERN_PROC_FLAG_LWP) == 0)
652                 skp = 1;
653         FOREACH_LWP_IN_PROC(lp, p) {
654                 fill_kinfo_lwp(lp, &ki.kp_lwp);
655 output:
656                 had_output = 1;
657                 error = SYSCTL_OUT(req, &ki, sizeof(ki));
658                 if (error)
659                         return error;
660                 if (skp)
661                         break;
662         }
663         /* We need to output at least the proc, even if there is no lwp. */
664         if (!had_output)
665                 goto output;
666 #if 0
667         if (!doingzomb && pid && (pfind(pid) != p))
668                 return EAGAIN;
669         if (doingzomb && zpfind(pid) != p)
670                 return EAGAIN;
671 #endif
672         return (0);
673 }
674
675 static int
676 sysctl_out_proc_kthread(struct thread *td, struct sysctl_req *req, int flags)
677 {
678         struct kinfo_proc ki;
679         int error;
680
681         fill_kinfo_proc_kthread(td, &ki);
682         error = SYSCTL_OUT(req, &ki, sizeof(ki));
683         if (error)
684                 return error;
685         return(0);
686 }
687
688 static int
689 sysctl_kern_proc(SYSCTL_HANDLER_ARGS)
690 {
691         int *name = (int*) arg1;
692         int oid = oidp->oid_number;
693         u_int namelen = arg2;
694         struct proc *p, *np;
695         struct proclist *plist;
696         struct thread *td;
697         int doingzomb, flags = 0;
698         int error = 0;
699         int n;
700         int origcpu;
701         struct ucred *cr1 = curproc->p_ucred;
702
703         flags = oid & KERN_PROC_FLAGMASK;
704         oid &= ~KERN_PROC_FLAGMASK;
705
706         if ((oid == KERN_PROC_ALL && namelen != 0) ||
707             (oid != KERN_PROC_ALL && namelen != 1))
708                 return (EINVAL);
709
710         if (oid == KERN_PROC_PID) {
711                 p = pfind((pid_t)name[0]);
712                 if (!p)
713                         return (0);
714                 if (!PRISON_CHECK(cr1, p->p_ucred))
715                         return (0);
716                 PHOLD(p);
717                 error = sysctl_out_proc(p, req, flags);
718                 PRELE(p);
719                 return (error);
720         }
721
722         if (!req->oldptr) {
723                 /* overestimate by 5 procs */
724                 error = SYSCTL_OUT(req, 0, sizeof (struct kinfo_proc) * 5);
725                 if (error)
726                         return (error);
727         }
728         for (doingzomb = 0; doingzomb <= 1; doingzomb++) {
729                 if (doingzomb)
730                         plist = &zombproc;
731                 else
732                         plist = &allproc;
733                 LIST_FOREACH_MUTABLE(p, plist, p_list, np) {
734                         /*
735                          * Show a user only their processes.
736                          */
737                         if ((!ps_showallprocs) && p_trespass(cr1, p->p_ucred))
738                                 continue;
739                         /*
740                          * Skip embryonic processes.
741                          */
742                         if (p->p_stat == SIDL)
743                                 continue;
744                         /*
745                          * TODO - make more efficient (see notes below).
746                          * do by session.
747                          */
748                         switch (oid) {
749                         case KERN_PROC_PGRP:
750                                 /* could do this by traversing pgrp */
751                                 if (p->p_pgrp == NULL || 
752                                     p->p_pgrp->pg_id != (pid_t)name[0])
753                                         continue;
754                                 break;
755
756                         case KERN_PROC_TTY:
757                                 if ((p->p_flag & P_CONTROLT) == 0 ||
758                                     p->p_session == NULL ||
759                                     p->p_session->s_ttyp == NULL ||
760                                     dev2udev(p->p_session->s_ttyp->t_dev) != 
761                                         (udev_t)name[0])
762                                         continue;
763                                 break;
764
765                         case KERN_PROC_UID:
766                                 if (p->p_ucred == NULL || 
767                                     p->p_ucred->cr_uid != (uid_t)name[0])
768                                         continue;
769                                 break;
770
771                         case KERN_PROC_RUID:
772                                 if (p->p_ucred == NULL || 
773                                     p->p_ucred->cr_ruid != (uid_t)name[0])
774                                         continue;
775                                 break;
776                         }
777
778                         if (!PRISON_CHECK(cr1, p->p_ucred))
779                                 continue;
780                         PHOLD(p);
781                         error = sysctl_out_proc(p, req, flags);
782                         PRELE(p);
783                         if (error)
784                                 return (error);
785                 }
786         }
787
788         /*
789          * Iterate over all active cpus and scan their thread list.  Start
790          * with the next logical cpu and end with our original cpu.  We
791          * migrate our own thread to each target cpu in order to safely scan
792          * its thread list.  In the last loop we migrate back to our original
793          * cpu.
794          */
795         origcpu = mycpu->gd_cpuid;
796         if (!ps_showallthreads || jailed(cr1))
797                 goto post_threads;
798         for (n = 1; n <= ncpus; ++n) {
799                 globaldata_t rgd;
800                 int nid;
801
802                 nid = (origcpu + n) % ncpus;
803                 if ((smp_active_mask & (1 << nid)) == 0)
804                         continue;
805                 rgd = globaldata_find(nid);
806                 lwkt_setcpu_self(rgd);
807
808                 TAILQ_FOREACH(td, &mycpu->gd_tdallq, td_allq) {
809                         if (td->td_proc)
810                                 continue;
811                         switch (oid) {
812                         case KERN_PROC_PGRP:
813                         case KERN_PROC_TTY:
814                         case KERN_PROC_UID:
815                         case KERN_PROC_RUID:
816                                 continue;
817                         default:
818                                 break;
819                         }
820                         lwkt_hold(td);
821                         error = sysctl_out_proc_kthread(td, req, doingzomb);
822                         lwkt_rele(td);
823                         if (error)
824                                 return (error);
825                 }
826         }
827 post_threads:
828         return (0);
829 }
830
831 /*
832  * This sysctl allows a process to retrieve the argument list or process
833  * title for another process without groping around in the address space
834  * of the other process.  It also allow a process to set its own "process 
835  * title to a string of its own choice.
836  */
837 static int
838 sysctl_kern_proc_args(SYSCTL_HANDLER_ARGS)
839 {
840         int *name = (int*) arg1;
841         u_int namelen = arg2;
842         struct proc *p;
843         struct pargs *pa;
844         int error = 0;
845         struct ucred *cr1 = curproc->p_ucred;
846
847         if (namelen != 1) 
848                 return (EINVAL);
849
850         p = pfind((pid_t)name[0]);
851         if (!p)
852                 return (0);
853
854         if ((!ps_argsopen) && p_trespass(cr1, p->p_ucred))
855                 return (0);
856
857         if (req->newptr && curproc != p)
858                 return (EPERM);
859
860         if (req->oldptr && p->p_args != NULL)
861                 error = SYSCTL_OUT(req, p->p_args->ar_args, p->p_args->ar_length);
862         if (req->newptr == NULL)
863                 return (error);
864
865         if (p->p_args && --p->p_args->ar_ref == 0) 
866                 FREE(p->p_args, M_PARGS);
867         p->p_args = NULL;
868
869         if (req->newlen + sizeof(struct pargs) > ps_arg_cache_limit)
870                 return (error);
871
872         MALLOC(pa, struct pargs *, sizeof(struct pargs) + req->newlen, 
873             M_PARGS, M_WAITOK);
874         pa->ar_ref = 1;
875         pa->ar_length = req->newlen;
876         error = SYSCTL_IN(req, pa->ar_args, req->newlen);
877         if (!error)
878                 p->p_args = pa;
879         else
880                 FREE(pa, M_PARGS);
881         return (error);
882 }
883
884 SYSCTL_NODE(_kern, KERN_PROC, proc, CTLFLAG_RD,  0, "Process table");
885
886 SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLFLAG_RD|CTLTYPE_STRUCT,
887         0, 0, sysctl_kern_proc, "S,proc", "Return entire process table");
888
889 SYSCTL_NODE(_kern_proc, KERN_PROC_PGRP, pgrp, CTLFLAG_RD, 
890         sysctl_kern_proc, "Process table");
891
892 SYSCTL_NODE(_kern_proc, KERN_PROC_TTY, tty, CTLFLAG_RD, 
893         sysctl_kern_proc, "Process table");
894
895 SYSCTL_NODE(_kern_proc, KERN_PROC_UID, uid, CTLFLAG_RD, 
896         sysctl_kern_proc, "Process table");
897
898 SYSCTL_NODE(_kern_proc, KERN_PROC_RUID, ruid, CTLFLAG_RD, 
899         sysctl_kern_proc, "Process table");
900
901 SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD, 
902         sysctl_kern_proc, "Process table");
903
904 SYSCTL_NODE(_kern_proc, (KERN_PROC_ALL | KERN_PROC_FLAG_LWP), all_lwp, CTLFLAG_RD,
905         sysctl_kern_proc, "Process table");
906
907 SYSCTL_NODE(_kern_proc, (KERN_PROC_PGRP | KERN_PROC_FLAG_LWP), pgrp_lwp, CTLFLAG_RD, 
908         sysctl_kern_proc, "Process table");
909
910 SYSCTL_NODE(_kern_proc, (KERN_PROC_TTY | KERN_PROC_FLAG_LWP), tty_lwp, CTLFLAG_RD, 
911         sysctl_kern_proc, "Process table");
912
913 SYSCTL_NODE(_kern_proc, (KERN_PROC_UID | KERN_PROC_FLAG_LWP), uid_lwp, CTLFLAG_RD, 
914         sysctl_kern_proc, "Process table");
915
916 SYSCTL_NODE(_kern_proc, (KERN_PROC_RUID | KERN_PROC_FLAG_LWP), ruid_lwp, CTLFLAG_RD, 
917         sysctl_kern_proc, "Process table");
918
919 SYSCTL_NODE(_kern_proc, (KERN_PROC_PID | KERN_PROC_FLAG_LWP), pid_lwp, CTLFLAG_RD, 
920         sysctl_kern_proc, "Process table");
921
922 SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args, CTLFLAG_RW | CTLFLAG_ANYBODY,
923         sysctl_kern_proc_args, "Process argument list");