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