xref: /freebsd/sys/kern/kern_proc.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
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$
35  */
36 
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/lock.h>
41 #include <sys/malloc.h>
42 #include <sys/mutex.h>
43 #include <sys/proc.h>
44 #include <sys/sysctl.h>
45 #include <sys/filedesc.h>
46 #include <sys/tty.h>
47 #include <sys/signalvar.h>
48 #include <sys/sx.h>
49 #include <sys/user.h>
50 #include <sys/jail.h>
51 
52 #include <vm/vm.h>
53 #include <vm/pmap.h>
54 #include <vm/vm_map.h>
55 #include <vm/vm_zone.h>
56 
57 static MALLOC_DEFINE(M_PGRP, "pgrp", "process group header");
58 MALLOC_DEFINE(M_SESSION, "session", "session header");
59 static MALLOC_DEFINE(M_PROC, "proc", "Proc structures");
60 MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures");
61 
62 int ps_showallprocs = 1;
63 SYSCTL_INT(_kern, OID_AUTO, ps_showallprocs, CTLFLAG_RW,
64     &ps_showallprocs, 0, "");
65 
66 static void pgdelete	__P((struct pgrp *));
67 
68 static void	orphanpg __P((struct pgrp *pg));
69 
70 /*
71  * Other process lists
72  */
73 struct pidhashhead *pidhashtbl;
74 u_long pidhash;
75 struct pgrphashhead *pgrphashtbl;
76 u_long pgrphash;
77 struct proclist allproc;
78 struct proclist zombproc;
79 struct sx allproc_lock;
80 struct sx proctree_lock;
81 vm_zone_t proc_zone;
82 vm_zone_t ithread_zone;
83 
84 /*
85  * Initialize global process hashing structures.
86  */
87 void
88 procinit()
89 {
90 	int i, j;
91 
92 	sx_init(&allproc_lock, "allproc");
93 	sx_init(&proctree_lock, "proctree");
94 	LIST_INIT(&allproc);
95 	LIST_INIT(&zombproc);
96 	pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash);
97 	pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash);
98 	proc_zone = zinit("PROC", sizeof (struct proc), 0, 0, 5);
99 	uihashinit();
100 	/*
101 	 * This should really be a compile time warning, but I do
102 	 * not know of any way to do that...
103 	 */
104 	if (sizeof(struct kinfo_proc) != KINFO_PROC_SIZE) {
105 		printf("This message will repeat for the next 20 seconds\n");
106 		for (i = 0; i < 20; i++) {
107 			printf("WARNING: size of kinfo_proc (%ld) should be %d!!!\n",
108 			    (long)sizeof(struct kinfo_proc), KINFO_PROC_SIZE);
109 			printf("The kinfo_proc structure was changed ");
110 			printf("incorrectly in <sys/user.h>\n");
111 			for (j = 0; j < 0x7ffffff; j++);
112 		}
113 
114 	}
115 }
116 
117 /*
118  * Is p an inferior of the current process?
119  */
120 int
121 inferior(p)
122 	register struct proc *p;
123 {
124 	int rval;
125 
126 	PROC_LOCK_ASSERT(p, MA_OWNED);
127 	if (p == curproc)
128 		return (1);
129 	if (p->p_pid == 0)
130 		return (0);
131 	PROC_LOCK(p->p_pptr);
132 	rval = inferior(p->p_pptr);
133 	PROC_UNLOCK(p->p_pptr);
134 	return (rval);
135 }
136 
137 /*
138  * Locate a process by number
139  */
140 struct proc *
141 pfind(pid)
142 	register pid_t pid;
143 {
144 	register struct proc *p;
145 
146 	sx_slock(&allproc_lock);
147 	LIST_FOREACH(p, PIDHASH(pid), p_hash)
148 		if (p->p_pid == pid) {
149 			PROC_LOCK(p);
150 			break;
151 		}
152 	sx_sunlock(&allproc_lock);
153 	return (p);
154 }
155 
156 /*
157  * Locate a process group by number
158  */
159 struct pgrp *
160 pgfind(pgid)
161 	register pid_t pgid;
162 {
163 	register struct pgrp *pgrp;
164 
165 	LIST_FOREACH(pgrp, PGRPHASH(pgid), pg_hash)
166 		if (pgrp->pg_id == pgid)
167 			return (pgrp);
168 	return (NULL);
169 }
170 
171 /*
172  * Move p to a new or existing process group (and session)
173  */
174 int
175 enterpgrp(p, pgid, mksess)
176 	register struct proc *p;
177 	pid_t pgid;
178 	int mksess;
179 {
180 	register struct pgrp *pgrp = pgfind(pgid);
181 	struct pgrp *savegrp;
182 
183 	KASSERT(pgrp == NULL || !mksess,
184 	    ("enterpgrp: setsid into non-empty pgrp"));
185 	KASSERT(!SESS_LEADER(p),
186 	    ("enterpgrp: session leader attempted setpgrp"));
187 
188 	if (pgrp == NULL) {
189 		pid_t savepid = p->p_pid;
190 		struct proc *np;
191 		/*
192 		 * new process group
193 		 */
194 		KASSERT(p->p_pid == pgid,
195 		    ("enterpgrp: new pgrp and pid != pgid"));
196 		if ((np = pfind(savepid)) == NULL || np != p) {
197 			if (np != NULL)
198 				PROC_UNLOCK(np);
199 			return (ESRCH);
200 		}
201 		PROC_UNLOCK(np);
202 		MALLOC(pgrp, struct pgrp *, sizeof(struct pgrp), M_PGRP,
203 		    M_WAITOK);
204 		if (mksess) {
205 			register struct session *sess;
206 
207 			/*
208 			 * new session
209 			 */
210 			MALLOC(sess, struct session *, sizeof(struct session),
211 			    M_SESSION, M_WAITOK);
212 			sess->s_leader = p;
213 			sess->s_sid = p->p_pid;
214 			sess->s_count = 1;
215 			sess->s_ttyvp = NULL;
216 			sess->s_ttyp = NULL;
217 			bcopy(p->p_session->s_login, sess->s_login,
218 			    sizeof(sess->s_login));
219 			PROC_LOCK(p);
220 			p->p_flag &= ~P_CONTROLT;
221 			PROC_UNLOCK(p);
222 			pgrp->pg_session = sess;
223 			KASSERT(p == curproc,
224 			    ("enterpgrp: mksession and p != curproc"));
225 		} else {
226 			pgrp->pg_session = p->p_session;
227 			pgrp->pg_session->s_count++;
228 		}
229 		pgrp->pg_id = pgid;
230 		LIST_INIT(&pgrp->pg_members);
231 		LIST_INSERT_HEAD(PGRPHASH(pgid), pgrp, pg_hash);
232 		pgrp->pg_jobc = 0;
233 		SLIST_INIT(&pgrp->pg_sigiolst);
234 	} else if (pgrp == p->p_pgrp)
235 		return (0);
236 
237 	/*
238 	 * Adjust eligibility of affected pgrps to participate in job control.
239 	 * Increment eligibility counts before decrementing, otherwise we
240 	 * could reach 0 spuriously during the first call.
241 	 */
242 	fixjobc(p, pgrp, 1);
243 	fixjobc(p, p->p_pgrp, 0);
244 
245 	PROC_LOCK(p);
246 	LIST_REMOVE(p, p_pglist);
247 	savegrp = p->p_pgrp;
248 	p->p_pgrp = pgrp;
249 	LIST_INSERT_HEAD(&pgrp->pg_members, p, p_pglist);
250 	PROC_UNLOCK(p);
251 	if (LIST_EMPTY(&savegrp->pg_members))
252 		pgdelete(savegrp);
253 	return (0);
254 }
255 
256 /*
257  * remove process from process group
258  */
259 int
260 leavepgrp(p)
261 	register struct proc *p;
262 {
263 	struct pgrp *savegrp;
264 
265 	PROC_LOCK(p);
266 	LIST_REMOVE(p, p_pglist);
267 	savegrp = p->p_pgrp;
268 	p->p_pgrp = NULL;
269 	PROC_UNLOCK(p);
270 	if (LIST_EMPTY(&savegrp->pg_members))
271 		pgdelete(savegrp);
272 	return (0);
273 }
274 
275 /*
276  * delete a process group
277  */
278 static void
279 pgdelete(pgrp)
280 	register struct pgrp *pgrp;
281 {
282 
283 	/*
284 	 * Reset any sigio structures pointing to us as a result of
285 	 * F_SETOWN with our pgid.
286 	 */
287 	funsetownlst(&pgrp->pg_sigiolst);
288 
289 	if (pgrp->pg_session->s_ttyp != NULL &&
290 	    pgrp->pg_session->s_ttyp->t_pgrp == pgrp)
291 		pgrp->pg_session->s_ttyp->t_pgrp = NULL;
292 	LIST_REMOVE(pgrp, pg_hash);
293 	if (--pgrp->pg_session->s_count == 0)
294 		FREE(pgrp->pg_session, M_SESSION);
295 	FREE(pgrp, M_PGRP);
296 }
297 
298 /*
299  * Adjust pgrp jobc counters when specified process changes process group.
300  * We count the number of processes in each process group that "qualify"
301  * the group for terminal job control (those with a parent in a different
302  * process group of the same session).  If that count reaches zero, the
303  * process group becomes orphaned.  Check both the specified process'
304  * process group and that of its children.
305  * entering == 0 => p is leaving specified group.
306  * entering == 1 => p is entering specified group.
307  */
308 void
309 fixjobc(p, pgrp, entering)
310 	register struct proc *p;
311 	register struct pgrp *pgrp;
312 	int entering;
313 {
314 	register struct pgrp *hispgrp;
315 	register struct session *mysession = pgrp->pg_session;
316 
317 	/*
318 	 * Check p's parent to see whether p qualifies its own process
319 	 * group; if so, adjust count for p's process group.
320 	 */
321 	sx_slock(&proctree_lock);
322 	if ((hispgrp = p->p_pptr->p_pgrp) != pgrp &&
323 	    hispgrp->pg_session == mysession) {
324 		if (entering)
325 			pgrp->pg_jobc++;
326 		else if (--pgrp->pg_jobc == 0)
327 			orphanpg(pgrp);
328 	}
329 
330 	/*
331 	 * Check this process' children to see whether they qualify
332 	 * their process groups; if so, adjust counts for children's
333 	 * process groups.
334 	 */
335 	LIST_FOREACH(p, &p->p_children, p_sibling)
336 		if ((hispgrp = p->p_pgrp) != pgrp &&
337 		    hispgrp->pg_session == mysession &&
338 		    p->p_stat != SZOMB) {
339 			if (entering)
340 				hispgrp->pg_jobc++;
341 			else if (--hispgrp->pg_jobc == 0)
342 				orphanpg(hispgrp);
343 		}
344 	sx_sunlock(&proctree_lock);
345 }
346 
347 /*
348  * A process group has become orphaned;
349  * if there are any stopped processes in the group,
350  * hang-up all process in that group.
351  */
352 static void
353 orphanpg(pg)
354 	struct pgrp *pg;
355 {
356 	register struct proc *p;
357 
358 	mtx_lock_spin(&sched_lock);
359 	LIST_FOREACH(p, &pg->pg_members, p_pglist) {
360 		if (p->p_stat == SSTOP) {
361 			mtx_unlock_spin(&sched_lock);
362 			LIST_FOREACH(p, &pg->pg_members, p_pglist) {
363 				PROC_LOCK(p);
364 				psignal(p, SIGHUP);
365 				psignal(p, SIGCONT);
366 				PROC_UNLOCK(p);
367 			}
368 			return;
369 		}
370 	}
371 	mtx_unlock_spin(&sched_lock);
372 }
373 
374 #include "opt_ddb.h"
375 #ifdef DDB
376 #include <ddb/ddb.h>
377 
378 DB_SHOW_COMMAND(pgrpdump, pgrpdump)
379 {
380 	register struct pgrp *pgrp;
381 	register struct proc *p;
382 	register int i;
383 
384 	for (i = 0; i <= pgrphash; i++) {
385 		if (!LIST_EMPTY(&pgrphashtbl[i])) {
386 			printf("\tindx %d\n", i);
387 			LIST_FOREACH(pgrp, &pgrphashtbl[i], pg_hash) {
388 				printf(
389 			"\tpgrp %p, pgid %ld, sess %p, sesscnt %d, mem %p\n",
390 				    (void *)pgrp, (long)pgrp->pg_id,
391 				    (void *)pgrp->pg_session,
392 				    pgrp->pg_session->s_count,
393 				    (void *)LIST_FIRST(&pgrp->pg_members));
394 				LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
395 					printf("\t\tpid %ld addr %p pgrp %p\n",
396 					    (long)p->p_pid, (void *)p,
397 					    (void *)p->p_pgrp);
398 				}
399 			}
400 		}
401 	}
402 }
403 #endif /* DDB */
404 
405 /*
406  * Fill in an kinfo_proc structure for the specified process.
407  */
408 void
409 fill_kinfo_proc(p, kp)
410 	struct proc *p;
411 	struct kinfo_proc *kp;
412 {
413 	struct tty *tp;
414 	struct session *sp;
415 
416 	bzero(kp, sizeof(*kp));
417 
418 	kp->ki_structsize = sizeof(*kp);
419 	kp->ki_paddr = p;
420 	PROC_LOCK(p);
421 	kp->ki_addr = p->p_addr;
422 	kp->ki_args = p->p_args;
423 	kp->ki_tracep = p->p_tracep;
424 	kp->ki_textvp = p->p_textvp;
425 	kp->ki_fd = p->p_fd;
426 	kp->ki_vmspace = p->p_vmspace;
427 	if (p->p_ucred) {
428 		kp->ki_uid = p->p_ucred->cr_uid;
429 		kp->ki_ruid = p->p_ucred->cr_ruid;
430 		kp->ki_svuid = p->p_ucred->cr_svuid;
431 		kp->ki_ngroups = p->p_ucred->cr_ngroups;
432 		bcopy(p->p_ucred->cr_groups, kp->ki_groups,
433 		    NGROUPS * sizeof(gid_t));
434 		kp->ki_rgid = p->p_ucred->cr_rgid;
435 		kp->ki_svgid = p->p_ucred->cr_svgid;
436 	}
437 	if (p->p_procsig) {
438 		kp->ki_sigignore = p->p_procsig->ps_sigignore;
439 		kp->ki_sigcatch = p->p_procsig->ps_sigcatch;
440 	}
441 	mtx_lock_spin(&sched_lock);
442 	if (p->p_stat != SIDL && p->p_stat != SZOMB && p->p_vmspace != NULL) {
443 		struct vmspace *vm = p->p_vmspace;
444 
445 		kp->ki_size = vm->vm_map.size;
446 		kp->ki_rssize = vmspace_resident_count(vm); /*XXX*/
447 		kp->ki_swrss = vm->vm_swrss;
448 		kp->ki_tsize = vm->vm_tsize;
449 		kp->ki_dsize = vm->vm_dsize;
450 		kp->ki_ssize = vm->vm_ssize;
451 	}
452 	if ((p->p_sflag & PS_INMEM) && p->p_stats) {
453 		kp->ki_start = p->p_stats->p_start;
454 		kp->ki_rusage = p->p_stats->p_ru;
455 		kp->ki_childtime.tv_sec = p->p_stats->p_cru.ru_utime.tv_sec +
456 		    p->p_stats->p_cru.ru_stime.tv_sec;
457 		kp->ki_childtime.tv_usec = p->p_stats->p_cru.ru_utime.tv_usec +
458 		    p->p_stats->p_cru.ru_stime.tv_usec;
459 	}
460 	if (p->p_wmesg) {
461 		strncpy(kp->ki_wmesg, p->p_wmesg, WMESGLEN);
462 		kp->ki_wmesg[WMESGLEN] = 0;
463 	}
464 	if (p->p_stat == SMTX) {
465 		kp->ki_kiflag |= KI_MTXBLOCK;
466 		strncpy(kp->ki_mtxname, p->p_mtxname, MTXNAMELEN);
467 		kp->ki_mtxname[MTXNAMELEN] = 0;
468 	}
469 	kp->ki_stat = p->p_stat;
470 	kp->ki_sflag = p->p_sflag;
471 	kp->ki_pctcpu = p->p_pctcpu;
472 	kp->ki_estcpu = p->p_estcpu;
473 	kp->ki_slptime = p->p_slptime;
474 	kp->ki_swtime = p->p_swtime;
475 	kp->ki_wchan = p->p_wchan;
476 	kp->ki_traceflag = p->p_traceflag;
477 	kp->ki_pri = p->p_pri;
478 	kp->ki_nice = p->p_nice;
479 	kp->ki_runtime = p->p_runtime;
480 	kp->ki_pid = p->p_pid;
481 	kp->ki_rqindex = p->p_rqindex;
482 	kp->ki_oncpu = p->p_oncpu;
483 	kp->ki_lastcpu = p->p_lastcpu;
484 	mtx_unlock_spin(&sched_lock);
485 	sp = NULL;
486 	if (p->p_pgrp) {
487 		kp->ki_pgid = p->p_pgrp->pg_id;
488 		kp->ki_jobc = p->p_pgrp->pg_jobc;
489 		sp = p->p_pgrp->pg_session;
490 
491 		if (sp != NULL) {
492 			kp->ki_sid = sp->s_sid;
493 			bcopy(sp->s_login, kp->ki_login, sizeof(kp->ki_login));
494 			if (sp->s_ttyvp)
495 				kp->ki_kiflag = KI_CTTY;
496 			if (SESS_LEADER(p))
497 				kp->ki_kiflag |= KI_SLEADER;
498 		}
499 	}
500 	if ((p->p_flag & P_CONTROLT) && sp && ((tp = sp->s_ttyp) != NULL)) {
501 		kp->ki_tdev = dev2udev(tp->t_dev);
502 		kp->ki_tpgid = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
503 		if (tp->t_session)
504 			kp->ki_tsid = tp->t_session->s_sid;
505 	} else
506 		kp->ki_tdev = NOUDEV;
507 	if (p->p_comm[0] != 0) {
508 		strncpy(kp->ki_comm, p->p_comm, MAXCOMLEN);
509 		kp->ki_comm[MAXCOMLEN] = 0;
510 	}
511 	kp->ki_siglist = p->p_siglist;
512 	kp->ki_sigmask = p->p_sigmask;
513 	kp->ki_xstat = p->p_xstat;
514 	kp->ki_acflag = p->p_acflag;
515 	kp->ki_flag = p->p_flag;
516 	/* If jailed(p->p_ucred), emulate the old P_JAILED flag. */
517 	if (jailed(p->p_ucred))
518 		kp->ki_flag |= P_JAILED;
519 	kp->ki_lock = p->p_lock;
520 	if (p->p_pptr)
521 		kp->ki_ppid = p->p_pptr->p_pid;
522 	PROC_UNLOCK(p);
523 }
524 
525 /*
526  * Locate a zombie process by number
527  */
528 struct proc *
529 zpfind(pid_t pid)
530 {
531 	struct proc *p;
532 
533 	sx_slock(&allproc_lock);
534 	LIST_FOREACH(p, &zombproc, p_list)
535 		if (p->p_pid == pid) {
536 			PROC_LOCK(p);
537 			break;
538 		}
539 	sx_sunlock(&allproc_lock);
540 	return (p);
541 }
542 
543 
544 static int
545 sysctl_out_proc(struct proc *p, struct sysctl_req *req, int doingzomb)
546 {
547 	struct kinfo_proc kinfo_proc;
548 	int error;
549 	struct proc *np;
550 	pid_t pid = p->p_pid;
551 
552 	fill_kinfo_proc(p, &kinfo_proc);
553 	error = SYSCTL_OUT(req, (caddr_t)&kinfo_proc, sizeof(kinfo_proc));
554 	if (error)
555 		return (error);
556 	if (doingzomb)
557 		np = zpfind(pid);
558 	else {
559 		if (pid == 0)
560 			return (0);
561 		np = pfind(pid);
562 	}
563 	if (np == NULL)
564 		return EAGAIN;
565 	if (np != p) {
566 		PROC_UNLOCK(np);
567 		return EAGAIN;
568 	}
569 	PROC_UNLOCK(np);
570 	return (0);
571 }
572 
573 static int
574 sysctl_kern_proc(SYSCTL_HANDLER_ARGS)
575 {
576 	int *name = (int*) arg1;
577 	u_int namelen = arg2;
578 	struct proc *p;
579 	int doingzomb;
580 	int error = 0;
581 
582 	if (oidp->oid_number == KERN_PROC_PID) {
583 		if (namelen != 1)
584 			return (EINVAL);
585 		p = pfind((pid_t)name[0]);
586 		if (!p)
587 			return (0);
588 		if (p_cansee(curproc, p)) {
589 			PROC_UNLOCK(p);
590 			return (0);
591 		}
592 		PROC_UNLOCK(p);
593 		error = sysctl_out_proc(p, req, 0);
594 		return (error);
595 	}
596 	if (oidp->oid_number == KERN_PROC_ALL && !namelen)
597 		;
598 	else if (oidp->oid_number != KERN_PROC_ALL && namelen == 1)
599 		;
600 	else
601 		return (EINVAL);
602 
603 	if (!req->oldptr) {
604 		/* overestimate by 5 procs */
605 		error = SYSCTL_OUT(req, 0, sizeof (struct kinfo_proc) * 5);
606 		if (error)
607 			return (error);
608 	}
609 	sx_slock(&allproc_lock);
610 	for (doingzomb=0 ; doingzomb < 2 ; doingzomb++) {
611 		if (!doingzomb)
612 			p = LIST_FIRST(&allproc);
613 		else
614 			p = LIST_FIRST(&zombproc);
615 		for (; p != 0; p = LIST_NEXT(p, p_list)) {
616 			/*
617 			 * Show a user only appropriate processes.
618 			 */
619 			if (p_cansee(curproc, p))
620 				continue;
621 			/*
622 			 * Skip embryonic processes.
623 			 */
624 			if (p->p_stat == SIDL)
625 				continue;
626 			/*
627 			 * TODO - make more efficient (see notes below).
628 			 * do by session.
629 			 */
630 			switch (oidp->oid_number) {
631 
632 			case KERN_PROC_PGRP:
633 				/* could do this by traversing pgrp */
634 				if (p->p_pgrp == NULL ||
635 				    p->p_pgrp->pg_id != (pid_t)name[0])
636 					continue;
637 				break;
638 
639 			case KERN_PROC_TTY:
640 				if ((p->p_flag & P_CONTROLT) == 0 ||
641 				    p->p_session == NULL ||
642 				    p->p_session->s_ttyp == NULL ||
643 				    dev2udev(p->p_session->s_ttyp->t_dev) !=
644 					(udev_t)name[0])
645 					continue;
646 				break;
647 
648 			case KERN_PROC_UID:
649 				if (p->p_ucred == NULL ||
650 				    p->p_ucred->cr_uid != (uid_t)name[0])
651 					continue;
652 				break;
653 
654 			case KERN_PROC_RUID:
655 				if (p->p_ucred == NULL ||
656 				    p->p_ucred->cr_ruid != (uid_t)name[0])
657 					continue;
658 				break;
659 			}
660 
661 			if (p_cansee(curproc, p))
662 				continue;
663 
664 			error = sysctl_out_proc(p, req, doingzomb);
665 			if (error) {
666 				sx_sunlock(&allproc_lock);
667 				return (error);
668 			}
669 		}
670 	}
671 	sx_sunlock(&allproc_lock);
672 	return (0);
673 }
674 
675 /*
676  * This sysctl allows a process to retrieve the argument list or process
677  * title for another process without groping around in the address space
678  * of the other process.  It also allow a process to set its own "process
679  * title to a string of its own choice.
680  */
681 static int
682 sysctl_kern_proc_args(SYSCTL_HANDLER_ARGS)
683 {
684 	int *name = (int*) arg1;
685 	u_int namelen = arg2;
686 	struct proc *p;
687 	struct pargs *pa;
688 	int error = 0;
689 
690 	if (namelen != 1)
691 		return (EINVAL);
692 
693 	p = pfind((pid_t)name[0]);
694 	if (!p)
695 		return (0);
696 
697 	if ((!ps_argsopen) && p_cansee(curproc, p)) {
698 		PROC_UNLOCK(p);
699 		return (0);
700 	}
701 	PROC_UNLOCK(p);
702 
703 	if (req->newptr && curproc != p)
704 		return (EPERM);
705 
706 	if (req->oldptr && p->p_args != NULL)
707 		error = SYSCTL_OUT(req, p->p_args->ar_args, p->p_args->ar_length);
708 	if (req->newptr == NULL)
709 		return (error);
710 
711 	PROC_LOCK(p);
712 	pa = p->p_args;
713 	p->p_args = NULL;
714 	PROC_UNLOCK(p);
715 	if (pa != NULL && --pa->ar_ref == 0)
716 		FREE(pa, M_PARGS);
717 
718 	if (req->newlen + sizeof(struct pargs) > ps_arg_cache_limit)
719 		return (error);
720 
721 	MALLOC(pa, struct pargs *, sizeof(struct pargs) + req->newlen,
722 	    M_PARGS, M_WAITOK);
723 	pa->ar_ref = 1;
724 	pa->ar_length = req->newlen;
725 	error = SYSCTL_IN(req, pa->ar_args, req->newlen);
726 	if (!error) {
727 		PROC_LOCK(p);
728 		p->p_args = pa;
729 		PROC_UNLOCK(p);
730 	} else
731 		FREE(pa, M_PARGS);
732 	return (error);
733 }
734 
735 SYSCTL_NODE(_kern, KERN_PROC, proc, CTLFLAG_RD,  0, "Process table");
736 
737 SYSCTL_PROC(_kern_proc, KERN_PROC_ALL, all, CTLFLAG_RD|CTLTYPE_STRUCT,
738 	0, 0, sysctl_kern_proc, "S,proc", "Return entire process table");
739 
740 SYSCTL_NODE(_kern_proc, KERN_PROC_PGRP, pgrp, CTLFLAG_RD,
741 	sysctl_kern_proc, "Process table");
742 
743 SYSCTL_NODE(_kern_proc, KERN_PROC_TTY, tty, CTLFLAG_RD,
744 	sysctl_kern_proc, "Process table");
745 
746 SYSCTL_NODE(_kern_proc, KERN_PROC_UID, uid, CTLFLAG_RD,
747 	sysctl_kern_proc, "Process table");
748 
749 SYSCTL_NODE(_kern_proc, KERN_PROC_RUID, ruid, CTLFLAG_RD,
750 	sysctl_kern_proc, "Process table");
751 
752 SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD,
753 	sysctl_kern_proc, "Process table");
754 
755 SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args, CTLFLAG_RW | CTLFLAG_ANYBODY,
756 	sysctl_kern_proc_args, "Process argument list");
757