xref: /freebsd/lib/libkvm/kvm_proc.c (revision 5069714534cba67f1985e6dfe23b145178372b5f)
1 /*-
2  * Copyright (c) 1989, 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software developed by the Computer Systems
6  * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
7  * BG 91-66 and contributed to Berkeley.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *	This product includes software developed by the University of
20  *	California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  * $FreeBSD$
38  */
39 
40 #if defined(LIBC_SCCS) && !defined(lint)
41 static char sccsid[] = "@(#)kvm_proc.c	8.3 (Berkeley) 9/23/93";
42 #endif /* LIBC_SCCS and not lint */
43 
44 /*
45  * Proc traversal interface for kvm.  ps and w are (probably) the exclusive
46  * users of this code, so we've factored it out into a separate module.
47  * Thus, we keep this grunge out of the other kvm applications (i.e.,
48  * most other applications are interested only in open/close/read/nlist).
49  */
50 
51 #include <sys/param.h>
52 #include <sys/user.h>
53 #include <sys/proc.h>
54 #include <sys/exec.h>
55 #include <sys/stat.h>
56 #include <sys/ioctl.h>
57 #include <sys/tty.h>
58 #include <sys/file.h>
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <unistd.h>
62 #include <nlist.h>
63 #include <kvm.h>
64 
65 #include <vm/vm.h>
66 #include <vm/vm_param.h>
67 #include <vm/swap_pager.h>
68 
69 #include <sys/sysctl.h>
70 
71 #include <limits.h>
72 #include <memory.h>
73 #include <paths.h>
74 
75 #include "kvm_private.h"
76 
77 #if used
78 static char *
79 kvm_readswap(kd, p, va, cnt)
80 	kvm_t *kd;
81 	const struct proc *p;
82 	u_long va;
83 	u_long *cnt;
84 {
85 #ifdef __FreeBSD__
86 	/* XXX Stubbed out, our vm system is differnet */
87 	_kvm_err(kd, kd->program, "kvm_readswap not implemented");
88 	return(0);
89 #endif	/* __FreeBSD__ */
90 }
91 #endif
92 
93 #define KREAD(kd, addr, obj) \
94 	(kvm_read(kd, addr, (char *)(obj), sizeof(*obj)) != sizeof(*obj))
95 
96 /*
97  * Read proc's from memory file into buffer bp, which has space to hold
98  * at most maxcnt procs.
99  */
100 static int
101 kvm_proclist(kd, what, arg, p, bp, maxcnt)
102 	kvm_t *kd;
103 	int what, arg;
104 	struct proc *p;
105 	struct kinfo_proc *bp;
106 	int maxcnt;
107 {
108 	register int cnt = 0;
109 	struct kinfo_proc kinfo_proc, *kp;
110 	struct pgrp pgrp;
111 	struct session sess;
112 	struct tty tty;
113 	struct vmspace vmspace;
114 	struct procsig procsig;
115 	struct pcred pcred;
116 	struct pstats pstats;
117 	struct ucred ucred;
118 	struct proc proc;
119 	struct proc pproc;
120 
121 	kp = &kinfo_proc;
122 	kp->ki_structsize = sizeof(kinfo_proc);
123 	for (; cnt < maxcnt && p != NULL; p = LIST_NEXT(&proc, p_list)) {
124 		if (KREAD(kd, (u_long)p, &proc)) {
125 			_kvm_err(kd, kd->program, "can't read proc at %x", p);
126 			return (-1);
127 		}
128 		if (KREAD(kd, (u_long)proc.p_cred, &pcred) == 0) {
129 			kp->ki_ruid = pcred.p_ruid;
130 			kp->ki_svuid = pcred.p_svuid;
131 			kp->ki_rgid = pcred.p_rgid;
132 			kp->ki_svgid = pcred.p_svgid;
133 			(void)(KREAD(kd, (u_long)pcred.pc_ucred, &ucred));
134 			kp->ki_ngroups = ucred.cr_ngroups;
135 			bcopy(ucred.cr_groups, kp->ki_groups,
136 			    NGROUPS * sizeof(gid_t));
137 			kp->ki_uid = ucred.cr_uid;
138 		}
139 
140 		switch(what) {
141 
142 		case KERN_PROC_PID:
143 			if (proc.p_pid != (pid_t)arg)
144 				continue;
145 			break;
146 
147 		case KERN_PROC_UID:
148 			if (kp->ki_uid != (uid_t)arg)
149 				continue;
150 			break;
151 
152 		case KERN_PROC_RUID:
153 			if (kp->ki_ruid != (uid_t)arg)
154 				continue;
155 			break;
156 		}
157 		/*
158 		 * We're going to add another proc to the set.  If this
159 		 * will overflow the buffer, assume the reason is because
160 		 * nprocs (or the proc list) is corrupt and declare an error.
161 		 */
162 		if (cnt >= maxcnt) {
163 			_kvm_err(kd, kd->program, "nprocs corrupt");
164 			return (-1);
165 		}
166 		/*
167 		 * gather kinfo_proc
168 		 */
169 		kp->ki_paddr = p;
170 		kp->ki_addr = proc.p_addr;
171 		kp->ki_args = proc.p_args;
172 		kp->ki_tracep = proc.p_tracep;
173 		kp->ki_textvp = proc.p_textvp;
174 		kp->ki_fd = proc.p_fd;
175 		kp->ki_vmspace = proc.p_vmspace;
176 		if (proc.p_procsig != NULL) {
177 			if (KREAD(kd, (u_long)proc.p_procsig, &procsig)) {
178 				_kvm_err(kd, kd->program,
179 				    "can't read procsig at %x", proc.p_procsig);
180 				return (-1);
181 			}
182 			kp->ki_sigignore = procsig.ps_sigignore;
183 			kp->ki_sigcatch = procsig.ps_sigcatch;
184 		}
185 		if ((proc.p_flag & P_INMEM) && proc.p_stats != NULL) {
186 			if (KREAD(kd, (u_long)proc.p_stats, &pstats)) {
187 				_kvm_err(kd, kd->program,
188 				    "can't read stats at %x", proc.p_stats);
189 				return (-1);
190 			}
191 			kp->ki_start = pstats.p_start;
192 			kp->ki_rusage = pstats.p_ru;
193 			kp->ki_childtime.tv_sec = pstats.p_cru.ru_utime.tv_sec +
194 			    pstats.p_cru.ru_stime.tv_sec;
195 			kp->ki_childtime.tv_usec =
196 			    pstats.p_cru.ru_utime.tv_usec +
197 			    pstats.p_cru.ru_stime.tv_usec;
198 		}
199 		if (KREAD(kd, (u_long)proc.p_pgrp, &pgrp)) {
200 			_kvm_err(kd, kd->program, "can't read pgrp at %x",
201 				 proc.p_pgrp);
202 			return (-1);
203 		}
204 		if (proc.p_oppid)
205 			kp->ki_ppid = proc.p_oppid;
206 		else if (proc.p_pptr) {
207 			if (KREAD(kd, (u_long)proc.p_pptr, &pproc)) {
208 				_kvm_err(kd, kd->program,
209 				    "can't read pproc at %x", proc.p_pptr);
210 				return (-1);
211 			}
212 			kp->ki_ppid = pproc.p_pid;
213 		} else
214 			kp->ki_ppid = 0;
215 		kp->ki_pgid = pgrp.pg_id;
216 		kp->ki_jobc = pgrp.pg_jobc;
217 		if (KREAD(kd, (u_long)pgrp.pg_session, &sess)) {
218 			_kvm_err(kd, kd->program, "can't read session at %x",
219 				pgrp.pg_session);
220 			return (-1);
221 		}
222 		kp->ki_sid = sess.s_sid;
223 		(void)memcpy(kp->ki_login, sess.s_login,
224 						sizeof(kp->ki_login));
225 		kp->ki_kiflag = sess.s_ttyvp ? KI_CTTY : 0;
226 		if (sess.s_leader == p)
227 			kp->ki_kiflag |= KI_SLEADER;
228 		if ((proc.p_flag & P_CONTROLT) && sess.s_ttyp != NULL) {
229 			if (KREAD(kd, (u_long)sess.s_ttyp, &tty)) {
230 				_kvm_err(kd, kd->program,
231 					 "can't read tty at %x", sess.s_ttyp);
232 				return (-1);
233 			}
234 			kp->ki_tdev = tty.t_dev;
235 			if (tty.t_pgrp != NULL) {
236 				if (KREAD(kd, (u_long)tty.t_pgrp, &pgrp)) {
237 					_kvm_err(kd, kd->program,
238 						 "can't read tpgrp at &x",
239 						tty.t_pgrp);
240 					return (-1);
241 				}
242 				kp->ki_tpgid = pgrp.pg_id;
243 			} else
244 				kp->ki_tpgid = -1;
245 			if (tty.t_session != NULL) {
246 				if (KREAD(kd, (u_long)tty.t_session, &sess)) {
247 					_kvm_err(kd, kd->program,
248 					    "can't read session at %x",
249 					    tty.t_session);
250 					return (-1);
251 				}
252 				kp->ki_tsid = sess.s_sid;
253 			}
254 		} else
255 			kp->ki_tdev = NODEV;
256 		if (proc.p_wmesg)
257 			(void)kvm_read(kd, (u_long)proc.p_wmesg,
258 			    kp->ki_wmesg, WMESGLEN);
259 
260 #ifdef sparc
261 		(void)kvm_read(kd, (u_long)&proc.p_vmspace->vm_rssize,
262 		    (char *)&kp->ki_rssize,
263 		    sizeof(kp->ki_rssize));
264 		(void)kvm_read(kd, (u_long)&proc.p_vmspace->vm_tsize,
265 		    (char *)&kp->ki_tsize,
266 		    3 * sizeof(kp->ki_rssize));	/* XXX */
267 #else
268 		(void)kvm_read(kd, (u_long)proc.p_vmspace,
269 		    (char *)&vmspace, sizeof(vmspace));
270 		kp->ki_size = vmspace.vm_map.size;
271 		kp->ki_rssize = vmspace.vm_swrss; /* XXX */
272 		kp->ki_swrss = vmspace.vm_swrss;
273 		kp->ki_tsize = vmspace.vm_tsize;
274 		kp->ki_dsize = vmspace.vm_dsize;
275 		kp->ki_ssize = vmspace.vm_ssize;
276 #endif
277 
278 		switch (what) {
279 
280 		case KERN_PROC_PGRP:
281 			if (kp->ki_pgid != (pid_t)arg)
282 				continue;
283 			break;
284 
285 		case KERN_PROC_TTY:
286 			if ((proc.p_flag & P_CONTROLT) == 0 ||
287 			     kp->ki_tdev != (dev_t)arg)
288 				continue;
289 			break;
290 		}
291 		if (proc.p_comm[0] != 0) {
292 			strncpy(kp->ki_comm, proc.p_comm, MAXCOMLEN);
293 			kp->ki_comm[MAXCOMLEN] = 0;
294 		}
295 		if (proc.p_blocked != 0) {
296 			kp->ki_kiflag |= KI_MTXBLOCK;
297 			if (proc.p_mtxname)
298 				(void)kvm_read(kd, (u_long)proc.p_mtxname,
299 				    kp->ki_mtxname, MTXNAMELEN);
300 			kp->ki_mtxname[MTXNAMELEN] = 0;
301 		}
302 		kp->ki_rtprio = proc.p_rtprio;
303 		kp->ki_runtime = proc.p_runtime;
304 		kp->ki_pid = proc.p_pid;
305 		kp->ki_siglist = proc.p_siglist;
306 		kp->ki_sigmask = proc.p_sigmask;
307 		kp->ki_xstat = proc.p_xstat;
308 		kp->ki_acflag = proc.p_acflag;
309 		kp->ki_pctcpu = proc.p_pctcpu;
310 		kp->ki_estcpu = proc.p_estcpu;
311 		kp->ki_slptime = proc.p_slptime;
312 		kp->ki_swtime = proc.p_swtime;
313 		kp->ki_flag = proc.p_flag;
314 		kp->ki_wchan = proc.p_wchan;
315 		kp->ki_traceflag = proc.p_traceflag;
316 		kp->ki_priority = proc.p_priority;
317 		kp->ki_usrpri = proc.p_usrpri;
318 		kp->ki_nativepri = proc.p_nativepri;
319 		kp->ki_stat = proc.p_stat;
320 		kp->ki_nice = proc.p_nice;
321 		kp->ki_lock = proc.p_lock;
322 		kp->ki_rqindex = proc.p_rqindex;
323 		kp->ki_oncpu = proc.p_oncpu;
324 		kp->ki_lastcpu = proc.p_lastcpu;
325 		bcopy(&kinfo_proc, bp, sizeof(kinfo_proc));
326 		++bp;
327 		++cnt;
328 	}
329 	return (cnt);
330 }
331 
332 /*
333  * Build proc info array by reading in proc list from a crash dump.
334  * Return number of procs read.  maxcnt is the max we will read.
335  */
336 static int
337 kvm_deadprocs(kd, what, arg, a_allproc, a_zombproc, maxcnt)
338 	kvm_t *kd;
339 	int what, arg;
340 	u_long a_allproc;
341 	u_long a_zombproc;
342 	int maxcnt;
343 {
344 	register struct kinfo_proc *bp = kd->procbase;
345 	register int acnt, zcnt;
346 	struct proc *p;
347 
348 	if (KREAD(kd, a_allproc, &p)) {
349 		_kvm_err(kd, kd->program, "cannot read allproc");
350 		return (-1);
351 	}
352 	acnt = kvm_proclist(kd, what, arg, p, bp, maxcnt);
353 	if (acnt < 0)
354 		return (acnt);
355 
356 	if (KREAD(kd, a_zombproc, &p)) {
357 		_kvm_err(kd, kd->program, "cannot read zombproc");
358 		return (-1);
359 	}
360 	zcnt = kvm_proclist(kd, what, arg, p, bp + acnt, maxcnt - acnt);
361 	if (zcnt < 0)
362 		zcnt = 0;
363 
364 	return (acnt + zcnt);
365 }
366 
367 struct kinfo_proc *
368 kvm_getprocs(kd, op, arg, cnt)
369 	kvm_t *kd;
370 	int op, arg;
371 	int *cnt;
372 {
373 	int mib[4], st, nprocs;
374 	size_t size;
375 
376 	if (kd->procbase != 0) {
377 		free((void *)kd->procbase);
378 		/*
379 		 * Clear this pointer in case this call fails.  Otherwise,
380 		 * kvm_close() will free it again.
381 		 */
382 		kd->procbase = 0;
383 	}
384 	if (ISALIVE(kd)) {
385 		size = 0;
386 		mib[0] = CTL_KERN;
387 		mib[1] = KERN_PROC;
388 		mib[2] = op;
389 		mib[3] = arg;
390 		st = sysctl(mib, op == KERN_PROC_ALL ? 3 : 4, NULL, &size, NULL, 0);
391 		if (st == -1) {
392 			_kvm_syserr(kd, kd->program, "kvm_getprocs");
393 			return (0);
394 		}
395 		do {
396 			size += size / 10;
397 			kd->procbase = (struct kinfo_proc *)
398 			    _kvm_realloc(kd, kd->procbase, size);
399 			if (kd->procbase == 0)
400 				return (0);
401 			st = sysctl(mib, op == KERN_PROC_ALL ? 3 : 4,
402 			    kd->procbase, &size, NULL, 0);
403 		} while (st == -1 && errno == ENOMEM);
404 		if (st == -1) {
405 			_kvm_syserr(kd, kd->program, "kvm_getprocs");
406 			return (0);
407 		}
408 		if (kd->procbase->ki_structsize != sizeof(struct kinfo_proc)) {
409 			_kvm_err(kd, kd->program,
410 			    "kinfo_proc size mismatch (expected %d, got %d)",
411 			    sizeof(struct kinfo_proc),
412 			    kd->procbase->ki_structsize);
413 			return (0);
414 		}
415 		nprocs = size / kd->procbase->ki_structsize;
416 	} else {
417 		struct nlist nl[4], *p;
418 
419 		nl[0].n_name = "_nprocs";
420 		nl[1].n_name = "_allproc";
421 		nl[2].n_name = "_zombproc";
422 		nl[3].n_name = 0;
423 
424 		if (kvm_nlist(kd, nl) != 0) {
425 			for (p = nl; p->n_type != 0; ++p)
426 				;
427 			_kvm_err(kd, kd->program,
428 				 "%s: no such symbol", p->n_name);
429 			return (0);
430 		}
431 		if (KREAD(kd, nl[0].n_value, &nprocs)) {
432 			_kvm_err(kd, kd->program, "can't read nprocs");
433 			return (0);
434 		}
435 		size = nprocs * sizeof(struct kinfo_proc);
436 		kd->procbase = (struct kinfo_proc *)_kvm_malloc(kd, size);
437 		if (kd->procbase == 0)
438 			return (0);
439 
440 		nprocs = kvm_deadprocs(kd, op, arg, nl[1].n_value,
441 				      nl[2].n_value, nprocs);
442 #ifdef notdef
443 		size = nprocs * sizeof(struct kinfo_proc);
444 		(void)realloc(kd->procbase, size);
445 #endif
446 	}
447 	*cnt = nprocs;
448 	return (kd->procbase);
449 }
450 
451 void
452 _kvm_freeprocs(kd)
453 	kvm_t *kd;
454 {
455 	if (kd->procbase) {
456 		free(kd->procbase);
457 		kd->procbase = 0;
458 	}
459 }
460 
461 void *
462 _kvm_realloc(kd, p, n)
463 	kvm_t *kd;
464 	void *p;
465 	size_t n;
466 {
467 	void *np = (void *)realloc(p, n);
468 
469 	if (np == 0) {
470 		free(p);
471 		_kvm_err(kd, kd->program, "out of memory");
472 	}
473 	return (np);
474 }
475 
476 #ifndef MAX
477 #define MAX(a, b) ((a) > (b) ? (a) : (b))
478 #endif
479 
480 /*
481  * Read in an argument vector from the user address space of process kp.
482  * addr if the user-space base address of narg null-terminated contiguous
483  * strings.  This is used to read in both the command arguments and
484  * environment strings.  Read at most maxcnt characters of strings.
485  */
486 static char **
487 kvm_argv(kd, kp, addr, narg, maxcnt)
488 	kvm_t *kd;
489 	struct kinfo_proc *kp;
490 	register u_long addr;
491 	register int narg;
492 	register int maxcnt;
493 {
494 	register char *np, *cp, *ep, *ap;
495 	register u_long oaddr = -1;
496 	register int len, cc;
497 	register char **argv;
498 
499 	/*
500 	 * Check that there aren't an unreasonable number of agruments,
501 	 * and that the address is in user space.
502 	 */
503 	if (narg > 512 || addr < VM_MIN_ADDRESS || addr >= VM_MAXUSER_ADDRESS)
504 		return (0);
505 
506 	/*
507 	 * kd->argv : work space for fetching the strings from the target
508 	 *            process's space, and is converted for returning to caller
509 	 */
510 	if (kd->argv == 0) {
511 		/*
512 		 * Try to avoid reallocs.
513 		 */
514 		kd->argc = MAX(narg + 1, 32);
515 		kd->argv = (char **)_kvm_malloc(kd, kd->argc *
516 						sizeof(*kd->argv));
517 		if (kd->argv == 0)
518 			return (0);
519 	} else if (narg + 1 > kd->argc) {
520 		kd->argc = MAX(2 * kd->argc, narg + 1);
521 		kd->argv = (char **)_kvm_realloc(kd, kd->argv, kd->argc *
522 						sizeof(*kd->argv));
523 		if (kd->argv == 0)
524 			return (0);
525 	}
526 	/*
527 	 * kd->argspc : returned to user, this is where the kd->argv
528 	 *              arrays are left pointing to the collected strings.
529 	 */
530 	if (kd->argspc == 0) {
531 		kd->argspc = (char *)_kvm_malloc(kd, PAGE_SIZE);
532 		if (kd->argspc == 0)
533 			return (0);
534 		kd->arglen = PAGE_SIZE;
535 	}
536 	/*
537 	 * kd->argbuf : used to pull in pages from the target process.
538 	 *              the strings are copied out of here.
539 	 */
540 	if (kd->argbuf == 0) {
541 		kd->argbuf = (char *)_kvm_malloc(kd, PAGE_SIZE);
542 		if (kd->argbuf == 0)
543 			return (0);
544 	}
545 
546 	/* Pull in the target process'es argv vector */
547 	cc = sizeof(char *) * narg;
548 	if (kvm_uread(kd, kp, addr, (char *)kd->argv, cc) != cc)
549 		return (0);
550 	/*
551 	 * ap : saved start address of string we're working on in kd->argspc
552 	 * np : pointer to next place to write in kd->argspc
553 	 * len: length of data in kd->argspc
554 	 * argv: pointer to the argv vector that we are hunting around the
555 	 *       target process space for, and converting to addresses in
556 	 *       our address space (kd->argspc).
557 	 */
558 	ap = np = kd->argspc;
559 	argv = kd->argv;
560 	len = 0;
561 	/*
562 	 * Loop over pages, filling in the argument vector.
563 	 * Note that the argv strings could be pointing *anywhere* in
564 	 * the user address space and are no longer contiguous.
565 	 * Note that *argv is modified when we are going to fetch a string
566 	 * that crosses a page boundary.  We copy the next part of the string
567 	 * into to "np" and eventually convert the pointer.
568 	 */
569 	while (argv < kd->argv + narg && *argv != 0) {
570 
571 		/* get the address that the current argv string is on */
572 		addr = (u_long)*argv & ~(PAGE_SIZE - 1);
573 
574 		/* is it the same page as the last one? */
575 		if (addr != oaddr) {
576 			if (kvm_uread(kd, kp, addr, kd->argbuf, PAGE_SIZE) !=
577 			    PAGE_SIZE)
578 				return (0);
579 			oaddr = addr;
580 		}
581 
582 		/* offset within the page... kd->argbuf */
583 		addr = (u_long)*argv & (PAGE_SIZE - 1);
584 
585 		/* cp = start of string, cc = count of chars in this chunk */
586 		cp = kd->argbuf + addr;
587 		cc = PAGE_SIZE - addr;
588 
589 		/* dont get more than asked for by user process */
590 		if (maxcnt > 0 && cc > maxcnt - len)
591 			cc = maxcnt - len;
592 
593 		/* pointer to end of string if we found it in this page */
594 		ep = memchr(cp, '\0', cc);
595 		if (ep != 0)
596 			cc = ep - cp + 1;
597 		/*
598 		 * at this point, cc is the count of the chars that we are
599 		 * going to retrieve this time. we may or may not have found
600 		 * the end of it.  (ep points to the null if the end is known)
601 		 */
602 
603 		/* will we exceed the malloc/realloced buffer? */
604 		if (len + cc > kd->arglen) {
605 			register int off;
606 			register char **pp;
607 			register char *op = kd->argspc;
608 
609 			kd->arglen *= 2;
610 			kd->argspc = (char *)_kvm_realloc(kd, kd->argspc,
611 							  kd->arglen);
612 			if (kd->argspc == 0)
613 				return (0);
614 			/*
615 			 * Adjust argv pointers in case realloc moved
616 			 * the string space.
617 			 */
618 			off = kd->argspc - op;
619 			for (pp = kd->argv; pp < argv; pp++)
620 				*pp += off;
621 			ap += off;
622 			np += off;
623 		}
624 		/* np = where to put the next part of the string in kd->argspc*/
625 		/* np is kinda redundant.. could use "kd->argspc + len" */
626 		memcpy(np, cp, cc);
627 		np += cc;	/* inc counters */
628 		len += cc;
629 
630 		/*
631 		 * if end of string found, set the *argv pointer to the
632 		 * saved beginning of string, and advance. argv points to
633 		 * somewhere in kd->argv..  This is initially relative
634 		 * to the target process, but when we close it off, we set
635 		 * it to point in our address space.
636 		 */
637 		if (ep != 0) {
638 			*argv++ = ap;
639 			ap = np;
640 		} else {
641 			/* update the address relative to the target process */
642 			*argv += cc;
643 		}
644 
645 		if (maxcnt > 0 && len >= maxcnt) {
646 			/*
647 			 * We're stopping prematurely.  Terminate the
648 			 * current string.
649 			 */
650 			if (ep == 0) {
651 				*np = '\0';
652 				*argv++ = ap;
653 			}
654 			break;
655 		}
656 	}
657 	/* Make sure argv is terminated. */
658 	*argv = 0;
659 	return (kd->argv);
660 }
661 
662 static void
663 ps_str_a(p, addr, n)
664 	struct ps_strings *p;
665 	u_long *addr;
666 	int *n;
667 {
668 	*addr = (u_long)p->ps_argvstr;
669 	*n = p->ps_nargvstr;
670 }
671 
672 static void
673 ps_str_e(p, addr, n)
674 	struct ps_strings *p;
675 	u_long *addr;
676 	int *n;
677 {
678 	*addr = (u_long)p->ps_envstr;
679 	*n = p->ps_nenvstr;
680 }
681 
682 /*
683  * Determine if the proc indicated by p is still active.
684  * This test is not 100% foolproof in theory, but chances of
685  * being wrong are very low.
686  */
687 static int
688 proc_verify(curkp)
689 	struct kinfo_proc *curkp;
690 {
691 	struct kinfo_proc newkp;
692 	int mib[4];
693 	size_t len;
694 
695 	mib[0] = CTL_KERN;
696 	mib[1] = KERN_PROC;
697 	mib[2] = KERN_PROC_PID;
698 	mib[3] = curkp->ki_pid;
699 	len = sizeof(newkp);
700 	if (sysctl(mib, 4, &newkp, &len, NULL, 0) == -1)
701 		return (0);
702 	return (curkp->ki_pid == newkp.ki_pid &&
703 	    (newkp.ki_stat != SZOMB || curkp->ki_stat == SZOMB));
704 }
705 
706 static char **
707 kvm_doargv(kd, kp, nchr, info)
708 	kvm_t *kd;
709 	struct kinfo_proc *kp;
710 	int nchr;
711 	void (*info)(struct ps_strings *, u_long *, int *);
712 {
713 	char **ap;
714 	u_long addr;
715 	int cnt;
716 	static struct ps_strings arginfo;
717 	static u_long ps_strings;
718 	size_t len;
719 
720 	if (ps_strings == NULL) {
721 		len = sizeof(ps_strings);
722 		if (sysctlbyname("kern.ps_strings", &ps_strings, &len, NULL,
723 		    0) == -1)
724 			ps_strings = PS_STRINGS;
725 	}
726 
727 	/*
728 	 * Pointers are stored at the top of the user stack.
729 	 */
730 	if (kp->ki_stat == SZOMB ||
731 	    kvm_uread(kd, kp, ps_strings, (char *)&arginfo,
732 		      sizeof(arginfo)) != sizeof(arginfo))
733 		return (0);
734 
735 	(*info)(&arginfo, &addr, &cnt);
736 	if (cnt == 0)
737 		return (0);
738 	ap = kvm_argv(kd, kp, addr, cnt, nchr);
739 	/*
740 	 * For live kernels, make sure this process didn't go away.
741 	 */
742 	if (ap != 0 && ISALIVE(kd) && !proc_verify(kp))
743 		ap = 0;
744 	return (ap);
745 }
746 
747 /*
748  * Get the command args.  This code is now machine independent.
749  */
750 char **
751 kvm_getargv(kd, kp, nchr)
752 	kvm_t *kd;
753 	const struct kinfo_proc *kp;
754 	int nchr;
755 {
756 	int oid[4];
757 	int i;
758 	size_t bufsz;
759 	static int buflen;
760 	static char *buf, *p;
761 	static char **bufp;
762 	static int argc;
763 
764 	if (!ISALIVE(kd)) {
765 		_kvm_err(kd, kd->program,
766 		    "cannot read user space from dead kernel");
767 		return (0);
768 	}
769 
770 	if (!buflen) {
771 		bufsz = sizeof(buflen);
772 		i = sysctlbyname("kern.ps_arg_cache_limit",
773 		    &buflen, &bufsz, NULL, 0);
774 		if (i == -1) {
775 			buflen = 0;
776 		} else {
777 			buf = malloc(buflen);
778 			if (buf == NULL)
779 				buflen = 0;
780 			argc = 32;
781 			bufp = malloc(sizeof(char *) * argc);
782 		}
783 	}
784 	if (buf != NULL) {
785 		oid[0] = CTL_KERN;
786 		oid[1] = KERN_PROC;
787 		oid[2] = KERN_PROC_ARGS;
788 		oid[3] = kp->ki_pid;
789 		bufsz = buflen;
790 		i = sysctl(oid, 4, buf, &bufsz, 0, 0);
791 		if (i == 0 && bufsz > 0) {
792 			i = 0;
793 			p = buf;
794 			do {
795 				bufp[i++] = p;
796 				p += strlen(p) + 1;
797 				if (i >= argc) {
798 					argc += argc;
799 					bufp = realloc(bufp,
800 					    sizeof(char *) * argc);
801 				}
802 			} while (p < buf + bufsz);
803 			bufp[i++] = 0;
804 			return (bufp);
805 		}
806 	}
807 	if (kp->ki_flag & P_SYSTEM)
808 		return (NULL);
809 	return (kvm_doargv(kd, kp, nchr, ps_str_a));
810 }
811 
812 char **
813 kvm_getenvv(kd, kp, nchr)
814 	kvm_t *kd;
815 	const struct kinfo_proc *kp;
816 	int nchr;
817 {
818 	return (kvm_doargv(kd, kp, nchr, ps_str_e));
819 }
820 
821 /*
822  * Read from user space.  The user context is given by p.
823  */
824 ssize_t
825 kvm_uread(kd, kp, uva, buf, len)
826 	kvm_t *kd;
827 	struct kinfo_proc *kp;
828 	register u_long uva;
829 	register char *buf;
830 	register size_t len;
831 {
832 	register char *cp;
833 	char procfile[MAXPATHLEN];
834 	ssize_t amount;
835 	int fd;
836 
837 	if (!ISALIVE(kd)) {
838 		_kvm_err(kd, kd->program,
839 		    "cannot read user space from dead kernel");
840 		return (0);
841 	}
842 
843 	sprintf(procfile, "/proc/%d/mem", kp->ki_pid);
844 	fd = open(procfile, O_RDONLY, 0);
845 	if (fd < 0) {
846 		_kvm_err(kd, kd->program, "cannot open %s", procfile);
847 		close(fd);
848 		return (0);
849 	}
850 
851 	cp = buf;
852 	while (len > 0) {
853 		errno = 0;
854 		if (lseek(fd, (off_t)uva, 0) == -1 && errno != 0) {
855 			_kvm_err(kd, kd->program, "invalid address (%x) in %s",
856 			    uva, procfile);
857 			break;
858 		}
859 		amount = read(fd, cp, len);
860 		if (amount < 0) {
861 			_kvm_syserr(kd, kd->program, "error reading %s",
862 			    procfile);
863 			break;
864 		}
865 		if (amount == 0) {
866 			_kvm_err(kd, kd->program, "EOF reading %s", procfile);
867 			break;
868 		}
869 		cp += amount;
870 		uva += amount;
871 		len -= amount;
872 	}
873 
874 	close(fd);
875 	return ((ssize_t)(cp - buf));
876 }
877