xref: /freebsd/lib/libkvm/kvm_proc.c (revision 09290c3a0c82524138973b14f393379edf733753)
158f0484fSRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
458f0484fSRodney W. Grimes  * Copyright (c) 1989, 1992, 1993
558f0484fSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
658f0484fSRodney W. Grimes  *
758f0484fSRodney W. Grimes  * This code is derived from software developed by the Computer Systems
858f0484fSRodney W. Grimes  * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
958f0484fSRodney W. Grimes  * BG 91-66 and contributed to Berkeley.
1058f0484fSRodney W. Grimes  *
1158f0484fSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
1258f0484fSRodney W. Grimes  * modification, are permitted provided that the following conditions
1358f0484fSRodney W. Grimes  * are met:
1458f0484fSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1558f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1658f0484fSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1758f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1858f0484fSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
19fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
2058f0484fSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
2158f0484fSRodney W. Grimes  *    without specific prior written permission.
2258f0484fSRodney W. Grimes  *
2358f0484fSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2458f0484fSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2558f0484fSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2658f0484fSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2758f0484fSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2858f0484fSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2958f0484fSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3058f0484fSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3158f0484fSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3258f0484fSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3358f0484fSRodney W. Grimes  * SUCH DAMAGE.
3458f0484fSRodney W. Grimes  */
3558f0484fSRodney W. Grimes 
3658f0484fSRodney W. Grimes 
3758f0484fSRodney W. Grimes /*
3858f0484fSRodney W. Grimes  * Proc traversal interface for kvm.  ps and w are (probably) the exclusive
3958f0484fSRodney W. Grimes  * users of this code, so we've factored it out into a separate module.
4058f0484fSRodney W. Grimes  * Thus, we keep this grunge out of the other kvm applications (i.e.,
4158f0484fSRodney W. Grimes  * most other applications are interested only in open/close/read/nlist).
4258f0484fSRodney W. Grimes  */
4358f0484fSRodney W. Grimes 
4458f0484fSRodney W. Grimes #include <sys/param.h>
45b20ea179SAlfred Perlstein #define	_WANT_UCRED	/* make ucred.h give us 'struct ucred' */
46aa22cbfeSAlfred Perlstein #include <sys/ucred.h>
47f8197bf0SPawel Jakub Dawidek #include <sys/queue.h>
48f8197bf0SPawel Jakub Dawidek #include <sys/_lock.h>
49f8197bf0SPawel Jakub Dawidek #include <sys/_mutex.h>
50f8197bf0SPawel Jakub Dawidek #include <sys/_task.h>
51413628a7SBjoern A. Zeeb #include <sys/cpuset.h>
5258f0484fSRodney W. Grimes #include <sys/user.h>
5358f0484fSRodney W. Grimes #include <sys/proc.h>
54413628a7SBjoern A. Zeeb #define	_WANT_PRISON	/* make jail.h give us 'struct prison' */
55413628a7SBjoern A. Zeeb #include <sys/jail.h>
5658f0484fSRodney W. Grimes #include <sys/exec.h>
5758f0484fSRodney W. Grimes #include <sys/stat.h>
58276de18cSGarance A Drosehn #include <sys/sysent.h>
5958f0484fSRodney W. Grimes #include <sys/ioctl.h>
6058f0484fSRodney W. Grimes #include <sys/tty.h>
61338c7541SDavid Greenman #include <sys/file.h>
622bdd5609SPeter Wemm #include <sys/conf.h>
63b4490c6eSKonstantin Belousov #define	_WANT_KW_EXITCODE
64b4490c6eSKonstantin Belousov #include <sys/wait.h>
6551295a4dSJordan K. Hubbard #include <stdio.h>
6651295a4dSJordan K. Hubbard #include <stdlib.h>
67789f4e26SMike Karels #include <stdbool.h>
6858f0484fSRodney W. Grimes #include <unistd.h>
6958f0484fSRodney W. Grimes #include <nlist.h>
7058f0484fSRodney W. Grimes #include <kvm.h>
7158f0484fSRodney W. Grimes 
7258f0484fSRodney W. Grimes #include <sys/sysctl.h>
7358f0484fSRodney W. Grimes 
7458f0484fSRodney W. Grimes #include <limits.h>
7577721f53SPeter Wemm #include <memory.h>
7658f0484fSRodney W. Grimes #include <paths.h>
7758f0484fSRodney W. Grimes 
7858f0484fSRodney W. Grimes #include "kvm_private.h"
7958f0484fSRodney W. Grimes 
8058f0484fSRodney W. Grimes #define KREAD(kd, addr, obj) \
8158f0484fSRodney W. Grimes 	(kvm_read(kd, addr, (char *)(obj), sizeof(*obj)) != sizeof(*obj))
8258f0484fSRodney W. Grimes 
8384a0b303SJeff Roberson static int ticks;
8484a0b303SJeff Roberson static int hz;
85de788839SUlrich Spörlein static uint64_t cpu_tick_frequency;
86de788839SUlrich Spörlein 
87de788839SUlrich Spörlein /*
88de788839SUlrich Spörlein  * From sys/kern/kern_tc.c. Depends on cpu_tick_frequency, which is
89de788839SUlrich Spörlein  * read/initialized before this function is ever called.
90de788839SUlrich Spörlein  */
91de788839SUlrich Spörlein static uint64_t
cputick2usec(uint64_t tick)92de788839SUlrich Spörlein cputick2usec(uint64_t tick)
93de788839SUlrich Spörlein {
94de788839SUlrich Spörlein 	if (cpu_tick_frequency == 0)
95de788839SUlrich Spörlein 		return (0);
96bb53dd56Sfirk 	return ((tick / cpu_tick_frequency) * 1000000ULL) +
97bb53dd56Sfirk 	    ((tick % cpu_tick_frequency) * 1000000ULL) / cpu_tick_frequency;
98de788839SUlrich Spörlein }
9984a0b303SJeff Roberson 
10058f0484fSRodney W. Grimes /*
10158f0484fSRodney W. Grimes  * Read proc's from memory file into buffer bp, which has space to hold
10258f0484fSRodney W. Grimes  * at most maxcnt procs.
10358f0484fSRodney W. Grimes  */
10458f0484fSRodney W. Grimes static int
kvm_proclist(kvm_t * kd,int what,int arg,struct proc * p,struct kinfo_proc * bp,int maxcnt)105c10970ddSUlrich Spörlein kvm_proclist(kvm_t *kd, int what, int arg, struct proc *p,
106c10970ddSUlrich Spörlein     struct kinfo_proc *bp, int maxcnt)
10758f0484fSRodney W. Grimes {
108be04b6d1SDavid E. O'Brien 	int cnt = 0;
1091f7d2501SKirk McKusick 	struct kinfo_proc kinfo_proc, *kp;
11058f0484fSRodney W. Grimes 	struct pgrp pgrp;
11158f0484fSRodney W. Grimes 	struct session sess;
1122bdd5609SPeter Wemm 	struct cdev t_cdev;
11358f0484fSRodney W. Grimes 	struct tty tty;
1141f7d2501SKirk McKusick 	struct vmspace vmspace;
115840558b9SJohn Baldwin 	struct sigacts sigacts;
116c10970ddSUlrich Spörlein #if 0
1171f7d2501SKirk McKusick 	struct pstats pstats;
118c10970ddSUlrich Spörlein #endif
1191f7d2501SKirk McKusick 	struct ucred ucred;
120f8197bf0SPawel Jakub Dawidek 	struct prison pr;
12171fad9fdSJulian Elischer 	struct thread mtd;
12258f0484fSRodney W. Grimes 	struct proc proc;
123a58930d8STor Egge 	struct proc pproc;
124276de18cSGarance A Drosehn 	struct sysentvec sysent;
125276de18cSGarance A Drosehn 	char svname[KI_EMULNAMELEN];
126789f4e26SMike Karels 	struct thread *td = NULL;
127789f4e26SMike Karels 	bool first_thread;
12858f0484fSRodney W. Grimes 
1291f7d2501SKirk McKusick 	kp = &kinfo_proc;
1301f7d2501SKirk McKusick 	kp->ki_structsize = sizeof(kinfo_proc);
1317ab24ea3SJulian Elischer 	/*
132789f4e26SMike Karels 	 * Loop on the processes, then threads within the process if requested.
1337ab24ea3SJulian Elischer 	 */
134789f4e26SMike Karels 	if (what == KERN_PROC_ALL)
135789f4e26SMike Karels 		what |= KERN_PROC_INC_THREAD;
13642680b3aSBen Smithurst 	for (; cnt < maxcnt && p != NULL; p = LIST_NEXT(&proc, p_list)) {
1376f8c6a69SPeter Wemm 		memset(kp, 0, sizeof *kp);
13858f0484fSRodney W. Grimes 		if (KREAD(kd, (u_long)p, &proc)) {
139c10970ddSUlrich Spörlein 			_kvm_err(kd, kd->program, "can't read proc at %p", p);
14058f0484fSRodney W. Grimes 			return (-1);
14158f0484fSRodney W. Grimes 		}
1429fb9ea1cSAndriy Gapon 		if (proc.p_state == PRS_NEW)
1439fb9ea1cSAndriy Gapon 			continue;
144b1fc0ec1SRobert Watson 		if (KREAD(kd, (u_long)proc.p_ucred, &ucred) == 0) {
145*09290c3aSOlivier Certner 			kp->ki_uid = ucred.cr_uid;
146b1fc0ec1SRobert Watson 			kp->ki_ruid = ucred.cr_ruid;
147b1fc0ec1SRobert Watson 			kp->ki_svuid = ucred.cr_svuid;
148b1fc0ec1SRobert Watson 			kp->ki_rgid = ucred.cr_rgid;
149b1fc0ec1SRobert Watson 			kp->ki_svgid = ucred.cr_svgid;
150*09290c3aSOlivier Certner 			kp->ki_cr_flags = 0;
151*09290c3aSOlivier Certner 			if (ucred.cr_flags & CRED_FLAG_CAPMODE)
152*09290c3aSOlivier Certner 				kp->ki_cr_flags |= KI_CRF_CAPABILITY_MODE;
1531b5768beSBrooks Davis 			if (ucred.cr_ngroups > KI_NGROUPS) {
1541b5768beSBrooks Davis 				kp->ki_ngroups = KI_NGROUPS;
1551b5768beSBrooks Davis 				kp->ki_cr_flags |= KI_CRF_GRP_OVERFLOW;
15668a5cc39SBrooks Davis 			} else
1571f7d2501SKirk McKusick 				kp->ki_ngroups = ucred.cr_ngroups;
158d534b0c2SBrooks Davis 			kvm_read(kd, (u_long)ucred.cr_groups, kp->ki_groups,
1591b5768beSBrooks Davis 			    kp->ki_ngroups * sizeof(gid_t));
160f8197bf0SPawel Jakub Dawidek 			if (ucred.cr_prison != NULL) {
161f8197bf0SPawel Jakub Dawidek 				if (KREAD(kd, (u_long)ucred.cr_prison, &pr)) {
162f8197bf0SPawel Jakub Dawidek 					_kvm_err(kd, kd->program,
163c10970ddSUlrich Spörlein 					    "can't read prison at %p",
164f8197bf0SPawel Jakub Dawidek 					    ucred.cr_prison);
165f8197bf0SPawel Jakub Dawidek 					return (-1);
166f8197bf0SPawel Jakub Dawidek 				}
167f8197bf0SPawel Jakub Dawidek 				kp->ki_jid = pr.pr_id;
168f8197bf0SPawel Jakub Dawidek 			}
1691f7d2501SKirk McKusick 		}
17058f0484fSRodney W. Grimes 
171694127f8SDaniel Eischen 		switch(what & ~KERN_PROC_INC_THREAD) {
17258f0484fSRodney W. Grimes 
173276de18cSGarance A Drosehn 		case KERN_PROC_GID:
174276de18cSGarance A Drosehn 			if (kp->ki_groups[0] != (gid_t)arg)
175276de18cSGarance A Drosehn 				continue;
176276de18cSGarance A Drosehn 			break;
177276de18cSGarance A Drosehn 
17858f0484fSRodney W. Grimes 		case KERN_PROC_PID:
17958f0484fSRodney W. Grimes 			if (proc.p_pid != (pid_t)arg)
18058f0484fSRodney W. Grimes 				continue;
18158f0484fSRodney W. Grimes 			break;
18258f0484fSRodney W. Grimes 
183276de18cSGarance A Drosehn 		case KERN_PROC_RGID:
184276de18cSGarance A Drosehn 			if (kp->ki_rgid != (gid_t)arg)
185276de18cSGarance A Drosehn 				continue;
186276de18cSGarance A Drosehn 			break;
187276de18cSGarance A Drosehn 
18858f0484fSRodney W. Grimes 		case KERN_PROC_UID:
1891f7d2501SKirk McKusick 			if (kp->ki_uid != (uid_t)arg)
19058f0484fSRodney W. Grimes 				continue;
19158f0484fSRodney W. Grimes 			break;
19258f0484fSRodney W. Grimes 
19358f0484fSRodney W. Grimes 		case KERN_PROC_RUID:
1941f7d2501SKirk McKusick 			if (kp->ki_ruid != (uid_t)arg)
19558f0484fSRodney W. Grimes 				continue;
19658f0484fSRodney W. Grimes 			break;
19758f0484fSRodney W. Grimes 		}
19858f0484fSRodney W. Grimes 		/*
19958f0484fSRodney W. Grimes 		 * We're going to add another proc to the set.  If this
20058f0484fSRodney W. Grimes 		 * will overflow the buffer, assume the reason is because
20158f0484fSRodney W. Grimes 		 * nprocs (or the proc list) is corrupt and declare an error.
20258f0484fSRodney W. Grimes 		 */
20358f0484fSRodney W. Grimes 		if (cnt >= maxcnt) {
20458f0484fSRodney W. Grimes 			_kvm_err(kd, kd->program, "nprocs corrupt");
20558f0484fSRodney W. Grimes 			return (-1);
20658f0484fSRodney W. Grimes 		}
20758f0484fSRodney W. Grimes 		/*
2081f7d2501SKirk McKusick 		 * gather kinfo_proc
20958f0484fSRodney W. Grimes 		 */
2101f7d2501SKirk McKusick 		kp->ki_paddr = p;
2117a62aa8aSDavid Schultz 		kp->ki_addr = 0;	/* XXX uarea */
212b40ce416SJulian Elischer 		/* kp->ki_kstack = proc.p_thread.td_kstack; XXXKSE */
2131f7d2501SKirk McKusick 		kp->ki_args = proc.p_args;
214789f4e26SMike Karels 		kp->ki_numthreads = proc.p_numthreads;
215e67ef6ceSKonstantin Belousov 		kp->ki_tracep = NULL;	/* XXXKIB do not expose ktr_io_params */
2161f7d2501SKirk McKusick 		kp->ki_textvp = proc.p_textvp;
2171f7d2501SKirk McKusick 		kp->ki_fd = proc.p_fd;
21885078b85SConrad Meyer 		kp->ki_pd = proc.p_pd;
2191f7d2501SKirk McKusick 		kp->ki_vmspace = proc.p_vmspace;
220840558b9SJohn Baldwin 		if (proc.p_sigacts != NULL) {
221840558b9SJohn Baldwin 			if (KREAD(kd, (u_long)proc.p_sigacts, &sigacts)) {
2221f7d2501SKirk McKusick 				_kvm_err(kd, kd->program,
223c10970ddSUlrich Spörlein 				    "can't read sigacts at %p", proc.p_sigacts);
2241f7d2501SKirk McKusick 				return (-1);
2251f7d2501SKirk McKusick 			}
226840558b9SJohn Baldwin 			kp->ki_sigignore = sigacts.ps_sigignore;
227840558b9SJohn Baldwin 			kp->ki_sigcatch = sigacts.ps_sigcatch;
2281f7d2501SKirk McKusick 		}
2298ef6b142SJeff Roberson #if 0
230b61ce5b0SJeff Roberson 		if ((proc.p_flag & P_INMEM) && proc.p_stats != NULL) {
2311f7d2501SKirk McKusick 			if (KREAD(kd, (u_long)proc.p_stats, &pstats)) {
2321f7d2501SKirk McKusick 				_kvm_err(kd, kd->program,
2331f7d2501SKirk McKusick 				    "can't read stats at %x", proc.p_stats);
2341f7d2501SKirk McKusick 				return (-1);
2351f7d2501SKirk McKusick 			}
2361f7d2501SKirk McKusick 			kp->ki_start = pstats.p_start;
23709ff687cSJohn Baldwin 
23809ff687cSJohn Baldwin 			/*
23909ff687cSJohn Baldwin 			 * XXX: The times here are probably zero and need
24009ff687cSJohn Baldwin 			 * to be calculated from the raw data in p_rux and
24109ff687cSJohn Baldwin 			 * p_crux.
24209ff687cSJohn Baldwin 			 */
2431f7d2501SKirk McKusick 			kp->ki_rusage = pstats.p_ru;
244276de18cSGarance A Drosehn 			kp->ki_childstime = pstats.p_cru.ru_stime;
245276de18cSGarance A Drosehn 			kp->ki_childutime = pstats.p_cru.ru_utime;
246276de18cSGarance A Drosehn 			/* Some callers want child-times in a single value */
247276de18cSGarance A Drosehn 			timeradd(&kp->ki_childstime, &kp->ki_childutime,
248276de18cSGarance A Drosehn 			    &kp->ki_childtime);
2491f7d2501SKirk McKusick 		}
2508ef6b142SJeff Roberson #endif
251a58930d8STor Egge 		if (proc.p_oppid)
2521f7d2501SKirk McKusick 			kp->ki_ppid = proc.p_oppid;
253a58930d8STor Egge 		else if (proc.p_pptr) {
254a58930d8STor Egge 			if (KREAD(kd, (u_long)proc.p_pptr, &pproc)) {
2551f7d2501SKirk McKusick 				_kvm_err(kd, kd->program,
256c10970ddSUlrich Spörlein 				    "can't read pproc at %p", proc.p_pptr);
257a58930d8STor Egge 				return (-1);
258a58930d8STor Egge 			}
2591f7d2501SKirk McKusick 			kp->ki_ppid = pproc.p_pid;
260a58930d8STor Egge 		} else
2611f7d2501SKirk McKusick 			kp->ki_ppid = 0;
2626f8c6a69SPeter Wemm 		if (proc.p_pgrp == NULL)
2636f8c6a69SPeter Wemm 			goto nopgrp;
2646f8c6a69SPeter Wemm 		if (KREAD(kd, (u_long)proc.p_pgrp, &pgrp)) {
265c10970ddSUlrich Spörlein 			_kvm_err(kd, kd->program, "can't read pgrp at %p",
2666f8c6a69SPeter Wemm 				 proc.p_pgrp);
2676f8c6a69SPeter Wemm 			return (-1);
2686f8c6a69SPeter Wemm 		}
2691f7d2501SKirk McKusick 		kp->ki_pgid = pgrp.pg_id;
2705844bd05SKonstantin Belousov 		kp->ki_jobc = -1;	/* Or calculate?  Arguably not. */
27158f0484fSRodney W. Grimes 		if (KREAD(kd, (u_long)pgrp.pg_session, &sess)) {
272c10970ddSUlrich Spörlein 			_kvm_err(kd, kd->program, "can't read session at %p",
27358f0484fSRodney W. Grimes 				pgrp.pg_session);
27458f0484fSRodney W. Grimes 			return (-1);
27558f0484fSRodney W. Grimes 		}
2761f7d2501SKirk McKusick 		kp->ki_sid = sess.s_sid;
2771f7d2501SKirk McKusick 		(void)memcpy(kp->ki_login, sess.s_login,
2781f7d2501SKirk McKusick 						sizeof(kp->ki_login));
27958f0484fSRodney W. Grimes 		if ((proc.p_flag & P_CONTROLT) && sess.s_ttyp != NULL) {
28058f0484fSRodney W. Grimes 			if (KREAD(kd, (u_long)sess.s_ttyp, &tty)) {
28158f0484fSRodney W. Grimes 				_kvm_err(kd, kd->program,
282c10970ddSUlrich Spörlein 					 "can't read tty at %p", sess.s_ttyp);
28358f0484fSRodney W. Grimes 				return (-1);
28458f0484fSRodney W. Grimes 			}
2852bdd5609SPeter Wemm 			if (tty.t_dev != NULL) {
2862bdd5609SPeter Wemm 				if (KREAD(kd, (u_long)tty.t_dev, &t_cdev)) {
2872bdd5609SPeter Wemm 					_kvm_err(kd, kd->program,
288c10970ddSUlrich Spörlein 						 "can't read cdev at %p",
2892bdd5609SPeter Wemm 						tty.t_dev);
2902bdd5609SPeter Wemm 					return (-1);
2912bdd5609SPeter Wemm 				}
2929c4fb661SPoul-Henning Kamp #if 0
2932bdd5609SPeter Wemm 				kp->ki_tdev = t_cdev.si_udev;
2949c4fb661SPoul-Henning Kamp #else
2952cfe3fdaSPeter Wemm 				kp->ki_tdev = NODEV;
2969c4fb661SPoul-Henning Kamp #endif
2972bdd5609SPeter Wemm 			}
29858f0484fSRodney W. Grimes 			if (tty.t_pgrp != NULL) {
29958f0484fSRodney W. Grimes 				if (KREAD(kd, (u_long)tty.t_pgrp, &pgrp)) {
30058f0484fSRodney W. Grimes 					_kvm_err(kd, kd->program,
301c10970ddSUlrich Spörlein 						 "can't read tpgrp at %p",
30258f0484fSRodney W. Grimes 						tty.t_pgrp);
30358f0484fSRodney W. Grimes 					return (-1);
30458f0484fSRodney W. Grimes 				}
3051f7d2501SKirk McKusick 				kp->ki_tpgid = pgrp.pg_id;
30658f0484fSRodney W. Grimes 			} else
3071f7d2501SKirk McKusick 				kp->ki_tpgid = -1;
3081f7d2501SKirk McKusick 			if (tty.t_session != NULL) {
3091f7d2501SKirk McKusick 				if (KREAD(kd, (u_long)tty.t_session, &sess)) {
3101f7d2501SKirk McKusick 					_kvm_err(kd, kd->program,
311c10970ddSUlrich Spörlein 					    "can't read session at %p",
3121f7d2501SKirk McKusick 					    tty.t_session);
3131f7d2501SKirk McKusick 					return (-1);
3141f7d2501SKirk McKusick 				}
3151f7d2501SKirk McKusick 				kp->ki_tsid = sess.s_sid;
3161f7d2501SKirk McKusick 			}
3176f8c6a69SPeter Wemm 		} else {
3186f8c6a69SPeter Wemm nopgrp:
3191f7d2501SKirk McKusick 			kp->ki_tdev = NODEV;
3206f8c6a69SPeter Wemm 		}
32158f0484fSRodney W. Grimes 
32258f0484fSRodney W. Grimes 		(void)kvm_read(kd, (u_long)proc.p_vmspace,
3231f7d2501SKirk McKusick 		    (char *)&vmspace, sizeof(vmspace));
3241f7d2501SKirk McKusick 		kp->ki_size = vmspace.vm_map.size;
3255f494640SSean Bruno 		/*
3265f494640SSean Bruno 		 * Approximate the kernel's method of calculating
3275f494640SSean Bruno 		 * this field.
3285f494640SSean Bruno 		 */
3295f494640SSean Bruno #define		pmap_resident_count(pm) ((pm)->pm_stats.resident_count)
3305f494640SSean Bruno 		kp->ki_rssize = pmap_resident_count(&vmspace.vm_pmap);
3311f7d2501SKirk McKusick 		kp->ki_swrss = vmspace.vm_swrss;
3321f7d2501SKirk McKusick 		kp->ki_tsize = vmspace.vm_tsize;
3331f7d2501SKirk McKusick 		kp->ki_dsize = vmspace.vm_dsize;
3341f7d2501SKirk McKusick 		kp->ki_ssize = vmspace.vm_ssize;
33558f0484fSRodney W. Grimes 
336694127f8SDaniel Eischen 		switch (what & ~KERN_PROC_INC_THREAD) {
33758f0484fSRodney W. Grimes 
33858f0484fSRodney W. Grimes 		case KERN_PROC_PGRP:
3391f7d2501SKirk McKusick 			if (kp->ki_pgid != (pid_t)arg)
34058f0484fSRodney W. Grimes 				continue;
34158f0484fSRodney W. Grimes 			break;
34258f0484fSRodney W. Grimes 
343276de18cSGarance A Drosehn 		case KERN_PROC_SESSION:
344276de18cSGarance A Drosehn 			if (kp->ki_sid != (pid_t)arg)
345276de18cSGarance A Drosehn 				continue;
346276de18cSGarance A Drosehn 			break;
347276de18cSGarance A Drosehn 
34858f0484fSRodney W. Grimes 		case KERN_PROC_TTY:
34958f0484fSRodney W. Grimes 			if ((proc.p_flag & P_CONTROLT) == 0 ||
3501f7d2501SKirk McKusick 			     kp->ki_tdev != (dev_t)arg)
35158f0484fSRodney W. Grimes 				continue;
35258f0484fSRodney W. Grimes 			break;
35358f0484fSRodney W. Grimes 		}
354b7e7c21aSGarance A Drosehn 		if (proc.p_comm[0] != 0)
355b7e7c21aSGarance A Drosehn 			strlcpy(kp->ki_comm, proc.p_comm, MAXCOMLEN);
356276de18cSGarance A Drosehn 		(void)kvm_read(kd, (u_long)proc.p_sysent, (char *)&sysent,
357276de18cSGarance A Drosehn 		    sizeof(sysent));
358276de18cSGarance A Drosehn 		(void)kvm_read(kd, (u_long)sysent.sv_name, (char *)&svname,
359276de18cSGarance A Drosehn 		    sizeof(svname));
360276de18cSGarance A Drosehn 		if (svname[0] != 0)
361276de18cSGarance A Drosehn 			strlcpy(kp->ki_emul, svname, KI_EMULNAMELEN);
362789f4e26SMike Karels 		kp->ki_runtime = cputick2usec(proc.p_rux.rux_runtime);
363789f4e26SMike Karels 		kp->ki_pid = proc.p_pid;
364789f4e26SMike Karels 		kp->ki_xstat = KW_EXITCODE(proc.p_xexit, proc.p_xsig);
365789f4e26SMike Karels 		kp->ki_acflag = proc.p_acflag;
366789f4e26SMike Karels 		kp->ki_lock = proc.p_lock;
367789f4e26SMike Karels 		kp->ki_tdev_freebsd11 = kp->ki_tdev; /* truncate */
368789f4e26SMike Karels 
369789f4e26SMike Karels 		/* Per-thread items; iterate as appropriate. */
370789f4e26SMike Karels 		td = TAILQ_FIRST(&proc.p_threads);
371789f4e26SMike Karels 		for (first_thread = true; cnt < maxcnt && td != NULL &&
372789f4e26SMike Karels 		    (first_thread || (what & KERN_PROC_INC_THREAD));
373789f4e26SMike Karels 		    first_thread = false) {
374789f4e26SMike Karels 			if (proc.p_state != PRS_ZOMBIE) {
375789f4e26SMike Karels 				if (KREAD(kd, (u_long)td, &mtd)) {
376789f4e26SMike Karels 					_kvm_err(kd, kd->program,
377789f4e26SMike Karels 					    "can't read thread at %p", td);
378789f4e26SMike Karels 					return (-1);
379789f4e26SMike Karels 				}
380789f4e26SMike Karels 				if (what & KERN_PROC_INC_THREAD)
381789f4e26SMike Karels 					td = TAILQ_NEXT(&mtd, td_plist);
382789f4e26SMike Karels 			} else
383789f4e26SMike Karels 				td = NULL;
384789f4e26SMike Karels 			if ((proc.p_state != PRS_ZOMBIE) && mtd.td_wmesg)
385789f4e26SMike Karels 				(void)kvm_read(kd, (u_long)mtd.td_wmesg,
386789f4e26SMike Karels 				    kp->ki_wmesg, WMESGLEN);
387789f4e26SMike Karels 			else
388789f4e26SMike Karels 				memset(kp->ki_wmesg, 0, WMESGLEN);
389789f4e26SMike Karels 			if (proc.p_pgrp == NULL) {
390789f4e26SMike Karels 				kp->ki_kiflag = 0;
391789f4e26SMike Karels 			} else {
392789f4e26SMike Karels 				kp->ki_kiflag = sess.s_ttyvp ? KI_CTTY : 0;
393789f4e26SMike Karels 				if (sess.s_leader == p)
394789f4e26SMike Karels 					kp->ki_kiflag |= KI_SLEADER;
395789f4e26SMike Karels 			}
396bff4151cSJulian Elischer 			if ((proc.p_state != PRS_ZOMBIE) &&
39771fad9fdSJulian Elischer 			    (mtd.td_blocked != 0)) {
3980d632649SJohn Baldwin 				kp->ki_kiflag |= KI_LOCKBLOCK;
3990d632649SJohn Baldwin 				if (mtd.td_lockname)
400bff4151cSJulian Elischer 					(void)kvm_read(kd,
4010d632649SJohn Baldwin 					    (u_long)mtd.td_lockname,
4020d632649SJohn Baldwin 					    kp->ki_lockname, LOCKNAMELEN);
403789f4e26SMike Karels 				else
404789f4e26SMike Karels 					memset(kp->ki_lockname, 0,
405789f4e26SMike Karels 					    LOCKNAMELEN);
4060d632649SJohn Baldwin 				kp->ki_lockname[LOCKNAMELEN] = 0;
407789f4e26SMike Karels 			} else
408789f4e26SMike Karels 				kp->ki_kiflag &= ~KI_LOCKBLOCK;
409e8a58a83SJuli Mallett 			kp->ki_siglist = proc.p_siglist;
410789f4e26SMike Karels 			if (proc.p_state != PRS_ZOMBIE) {
41142d3ad71SJeff Roberson 				SIGSETOR(kp->ki_siglist, mtd.td_siglist);
41231a9779eSJeff Roberson 				kp->ki_sigmask = mtd.td_sigmask;
41384a0b303SJeff Roberson 				kp->ki_swtime = (ticks - proc.p_swtick) / hz;
4146143c383SJulian Elischer 				kp->ki_flag = proc.p_flag;
415b61ce5b0SJeff Roberson 				kp->ki_sflag = 0;
41630105366SJulian Elischer 				kp->ki_nice = proc.p_nice;
4171f7d2501SKirk McKusick 				kp->ki_traceflag = proc.p_traceflag;
4186143c383SJulian Elischer 				if (proc.p_state == PRS_NORMAL) {
41971fad9fdSJulian Elischer 					if (TD_ON_RUNQ(&mtd) ||
42071fad9fdSJulian Elischer 					    TD_CAN_RUN(&mtd) ||
42171fad9fdSJulian Elischer 					    TD_IS_RUNNING(&mtd)) {
422e602ba25SJulian Elischer 						kp->ki_stat = SRUN;
423fa2528acSAlex Richardson 					} else if (TD_GET_STATE(&mtd) ==
4244f0db5e0SJulian Elischer 					    TDS_INHIBITED) {
42571fad9fdSJulian Elischer 						if (P_SHOULDSTOP(&proc)) {
426e602ba25SJulian Elischer 							kp->ki_stat = SSTOP;
4274f0db5e0SJulian Elischer 						} else if (
4284f0db5e0SJulian Elischer 						    TD_IS_SLEEPING(&mtd)) {
42971fad9fdSJulian Elischer 							kp->ki_stat = SSLEEP;
4300d632649SJohn Baldwin 						} else if (TD_ON_LOCK(&mtd)) {
4310d632649SJohn Baldwin 							kp->ki_stat = SLOCK;
432e602ba25SJulian Elischer 						} else {
433e602ba25SJulian Elischer 							kp->ki_stat = SWAIT;
434e602ba25SJulian Elischer 						}
43571fad9fdSJulian Elischer 					}
436e602ba25SJulian Elischer 				} else {
437e602ba25SJulian Elischer 					kp->ki_stat = SIDL;
438e602ba25SJulian Elischer 				}
4394f0db5e0SJulian Elischer 				/* Stuff from the thread */
44071fad9fdSJulian Elischer 				kp->ki_pri.pri_level = mtd.td_priority;
44171fad9fdSJulian Elischer 				kp->ki_pri.pri_native = mtd.td_base_pri;
44271fad9fdSJulian Elischer 				kp->ki_lastcpu = mtd.td_lastcpu;
4434f0db5e0SJulian Elischer 				kp->ki_wchan = mtd.td_wchan;
444a0ddbf49SJulian Elischer 				kp->ki_oncpu = mtd.td_oncpu;
4457ab24ea3SJulian Elischer 				if (mtd.td_name[0] != '\0')
446789f4e26SMike Karels 					strlcpy(kp->ki_tdname, mtd.td_name,
447789f4e26SMike Karels 					    sizeof(kp->ki_tdname));
448789f4e26SMike Karels 				else
449789f4e26SMike Karels 					memset(kp->ki_tdname, 0,
450789f4e26SMike Karels 					    sizeof(kp->ki_tdname));
451ed062c8dSJulian Elischer 				kp->ki_pctcpu = 0;
452ed062c8dSJulian Elischer 				kp->ki_rqindex = 0;
453e77f9fedSAdrian Chadd 
454e77f9fedSAdrian Chadd 				/*
455789f4e26SMike Karels 				 * Note: legacy fields; wraps at NO_CPU_OLD
456789f4e26SMike Karels 				 * or the old max CPU value as appropriate
457e77f9fedSAdrian Chadd 				 */
458e77f9fedSAdrian Chadd 				if (mtd.td_lastcpu == NOCPU)
459e77f9fedSAdrian Chadd 					kp->ki_lastcpu_old = NOCPU_OLD;
460e77f9fedSAdrian Chadd 				else if (mtd.td_lastcpu > MAXCPU_OLD)
461e77f9fedSAdrian Chadd 					kp->ki_lastcpu_old = MAXCPU_OLD;
462e77f9fedSAdrian Chadd 				else
463e77f9fedSAdrian Chadd 					kp->ki_lastcpu_old = mtd.td_lastcpu;
464e77f9fedSAdrian Chadd 
465e77f9fedSAdrian Chadd 				if (mtd.td_oncpu == NOCPU)
466e77f9fedSAdrian Chadd 					kp->ki_oncpu_old = NOCPU_OLD;
467e77f9fedSAdrian Chadd 				else if (mtd.td_oncpu > MAXCPU_OLD)
468e77f9fedSAdrian Chadd 					kp->ki_oncpu_old = MAXCPU_OLD;
469e77f9fedSAdrian Chadd 				else
470e77f9fedSAdrian Chadd 					kp->ki_oncpu_old = mtd.td_oncpu;
471789f4e26SMike Karels 				kp->ki_tid = mtd.td_tid;
4724f0db5e0SJulian Elischer 			} else {
473789f4e26SMike Karels 				memset(&kp->ki_sigmask, 0,
474789f4e26SMike Karels 				    sizeof(kp->ki_sigmask));
4756143c383SJulian Elischer 				kp->ki_stat = SZOMB;
476789f4e26SMike Karels 				kp->ki_tid = 0;
4776143c383SJulian Elischer 			}
478789f4e26SMike Karels 
4791f7d2501SKirk McKusick 			bcopy(&kinfo_proc, bp, sizeof(kinfo_proc));
48058f0484fSRodney W. Grimes 			++bp;
48158f0484fSRodney W. Grimes 			++cnt;
48258f0484fSRodney W. Grimes 		}
483789f4e26SMike Karels 	}
48458f0484fSRodney W. Grimes 	return (cnt);
48558f0484fSRodney W. Grimes }
48658f0484fSRodney W. Grimes 
48758f0484fSRodney W. Grimes /*
48858f0484fSRodney W. Grimes  * Build proc info array by reading in proc list from a crash dump.
48958f0484fSRodney W. Grimes  * Return number of procs read.  maxcnt is the max we will read.
49058f0484fSRodney W. Grimes  */
49158f0484fSRodney W. Grimes static int
kvm_deadprocs(kvm_t * kd,int what,int arg,u_long a_allproc,u_long a_zombproc,int maxcnt)492c10970ddSUlrich Spörlein kvm_deadprocs(kvm_t *kd, int what, int arg, u_long a_allproc,
493c10970ddSUlrich Spörlein     u_long a_zombproc, int maxcnt)
49458f0484fSRodney W. Grimes {
495be04b6d1SDavid E. O'Brien 	struct kinfo_proc *bp = kd->procbase;
496789f4e26SMike Karels 	int acnt, zcnt = 0;
49758f0484fSRodney W. Grimes 	struct proc *p;
49858f0484fSRodney W. Grimes 
49958f0484fSRodney W. Grimes 	if (KREAD(kd, a_allproc, &p)) {
50058f0484fSRodney W. Grimes 		_kvm_err(kd, kd->program, "cannot read allproc");
50158f0484fSRodney W. Grimes 		return (-1);
50258f0484fSRodney W. Grimes 	}
50358f0484fSRodney W. Grimes 	acnt = kvm_proclist(kd, what, arg, p, bp, maxcnt);
50458f0484fSRodney W. Grimes 	if (acnt < 0)
50558f0484fSRodney W. Grimes 		return (acnt);
50658f0484fSRodney W. Grimes 
507789f4e26SMike Karels 	if (a_zombproc != 0) {
50858f0484fSRodney W. Grimes 		if (KREAD(kd, a_zombproc, &p)) {
50958f0484fSRodney W. Grimes 			_kvm_err(kd, kd->program, "cannot read zombproc");
51058f0484fSRodney W. Grimes 			return (-1);
51158f0484fSRodney W. Grimes 		}
51258f0484fSRodney W. Grimes 		zcnt = kvm_proclist(kd, what, arg, p, bp + acnt, maxcnt - acnt);
51358f0484fSRodney W. Grimes 		if (zcnt < 0)
51458f0484fSRodney W. Grimes 			zcnt = 0;
515789f4e26SMike Karels 	}
51658f0484fSRodney W. Grimes 
51758f0484fSRodney W. Grimes 	return (acnt + zcnt);
51858f0484fSRodney W. Grimes }
51958f0484fSRodney W. Grimes 
52058f0484fSRodney W. Grimes struct kinfo_proc *
kvm_getprocs(kvm_t * kd,int op,int arg,int * cnt)521c10970ddSUlrich Spörlein kvm_getprocs(kvm_t *kd, int op, int arg, int *cnt)
52258f0484fSRodney W. Grimes {
523c2ac238cSDoug Rabson 	int mib[4], st, nprocs;
524767993ecSMikolaj Golub 	size_t size, osize;
525694127f8SDaniel Eischen 	int temp_op;
52658f0484fSRodney W. Grimes 
52758f0484fSRodney W. Grimes 	if (kd->procbase != 0) {
52858f0484fSRodney W. Grimes 		free((void *)kd->procbase);
52958f0484fSRodney W. Grimes 		/*
53058f0484fSRodney W. Grimes 		 * Clear this pointer in case this call fails.  Otherwise,
53158f0484fSRodney W. Grimes 		 * kvm_close() will free it again.
53258f0484fSRodney W. Grimes 		 */
53358f0484fSRodney W. Grimes 		kd->procbase = 0;
53458f0484fSRodney W. Grimes 	}
53558f0484fSRodney W. Grimes 	if (ISALIVE(kd)) {
53658f0484fSRodney W. Grimes 		size = 0;
53758f0484fSRodney W. Grimes 		mib[0] = CTL_KERN;
53858f0484fSRodney W. Grimes 		mib[1] = KERN_PROC;
53958f0484fSRodney W. Grimes 		mib[2] = op;
54058f0484fSRodney W. Grimes 		mib[3] = arg;
541694127f8SDaniel Eischen 		temp_op = op & ~KERN_PROC_INC_THREAD;
542694127f8SDaniel Eischen 		st = sysctl(mib,
543694127f8SDaniel Eischen 		    temp_op == KERN_PROC_ALL || temp_op == KERN_PROC_PROC ?
544f2dd06abSTim J. Robbins 		    3 : 4, NULL, &size, NULL, 0);
54558f0484fSRodney W. Grimes 		if (st == -1) {
54658f0484fSRodney W. Grimes 			_kvm_syserr(kd, kd->program, "kvm_getprocs");
54758f0484fSRodney W. Grimes 			return (0);
54858f0484fSRodney W. Grimes 		}
54921687047SDima Dorfman 		/*
55021687047SDima Dorfman 		 * We can't continue with a size of 0 because we pass
55121687047SDima Dorfman 		 * it to realloc() (via _kvm_realloc()), and passing 0
55221687047SDima Dorfman 		 * to realloc() results in undefined behavior.
55321687047SDima Dorfman 		 */
55421687047SDima Dorfman 		if (size == 0) {
55521687047SDima Dorfman 			/*
55621687047SDima Dorfman 			 * XXX: We should probably return an invalid,
55721687047SDima Dorfman 			 * but non-NULL, pointer here so any client
55821687047SDima Dorfman 			 * program trying to dereference it will
55921687047SDima Dorfman 			 * crash.  However, _kvm_freeprocs() calls
56021687047SDima Dorfman 			 * free() on kd->procbase if it isn't NULL,
56121687047SDima Dorfman 			 * and free()'ing a junk pointer isn't good.
56221687047SDima Dorfman 			 * Then again, _kvm_freeprocs() isn't used
56321687047SDima Dorfman 			 * anywhere . . .
56421687047SDima Dorfman 			 */
56521687047SDima Dorfman 			kd->procbase = _kvm_malloc(kd, 1);
56621687047SDima Dorfman 			goto liveout;
56721687047SDima Dorfman 		}
568b2d3d0f0SDag-Erling Smørgrav 		do {
569b2d3d0f0SDag-Erling Smørgrav 			size += size / 10;
570b2d3d0f0SDag-Erling Smørgrav 			kd->procbase = (struct kinfo_proc *)
571b2d3d0f0SDag-Erling Smørgrav 			    _kvm_realloc(kd, kd->procbase, size);
572fb0e1892SEnji Cooper 			if (kd->procbase == NULL)
57358f0484fSRodney W. Grimes 				return (0);
574767993ecSMikolaj Golub 			osize = size;
575694127f8SDaniel Eischen 			st = sysctl(mib, temp_op == KERN_PROC_ALL ||
576694127f8SDaniel Eischen 			    temp_op == KERN_PROC_PROC ? 3 : 4,
577b2d3d0f0SDag-Erling Smørgrav 			    kd->procbase, &size, NULL, 0);
578767993ecSMikolaj Golub 		} while (st == -1 && errno == ENOMEM && size == osize);
57958f0484fSRodney W. Grimes 		if (st == -1) {
58058f0484fSRodney W. Grimes 			_kvm_syserr(kd, kd->program, "kvm_getprocs");
58158f0484fSRodney W. Grimes 			return (0);
58258f0484fSRodney W. Grimes 		}
58321687047SDima Dorfman 		/*
58421687047SDima Dorfman 		 * We have to check the size again because sysctl()
58521687047SDima Dorfman 		 * may "round up" oldlenp if oldp is NULL; hence it
58621687047SDima Dorfman 		 * might've told us that there was data to get when
58721687047SDima Dorfman 		 * there really isn't any.
58821687047SDima Dorfman 		 */
5890627f53bSDavid Malone 		if (size > 0 &&
5900627f53bSDavid Malone 		    kd->procbase->ki_structsize != sizeof(struct kinfo_proc)) {
59158f0484fSRodney W. Grimes 			_kvm_err(kd, kd->program,
592c10970ddSUlrich Spörlein 			    "kinfo_proc size mismatch (expected %zu, got %d)",
5931f7d2501SKirk McKusick 			    sizeof(struct kinfo_proc),
5941f7d2501SKirk McKusick 			    kd->procbase->ki_structsize);
59558f0484fSRodney W. Grimes 			return (0);
59658f0484fSRodney W. Grimes 		}
59721687047SDima Dorfman liveout:
598d339edcfSDavid Malone 		nprocs = size == 0 ? 0 : size / kd->procbase->ki_structsize;
59958f0484fSRodney W. Grimes 	} else {
600789f4e26SMike Karels 		struct nlist nl[6], *p;
601789f4e26SMike Karels 		struct nlist nlz[2];
60258f0484fSRodney W. Grimes 
60358f0484fSRodney W. Grimes 		nl[0].n_name = "_nprocs";
60458f0484fSRodney W. Grimes 		nl[1].n_name = "_allproc";
605789f4e26SMike Karels 		nl[2].n_name = "_ticks";
606789f4e26SMike Karels 		nl[3].n_name = "_hz";
607789f4e26SMike Karels 		nl[4].n_name = "_cpu_tick_frequency";
608789f4e26SMike Karels 		nl[5].n_name = 0;
609789f4e26SMike Karels 
610789f4e26SMike Karels 		nlz[0].n_name = "_zombproc";
611789f4e26SMike Karels 		nlz[1].n_name = 0;
61258f0484fSRodney W. Grimes 
6137f911abeSJohn Baldwin 		if (!kd->arch->ka_native(kd)) {
6147f911abeSJohn Baldwin 			_kvm_err(kd, kd->program,
6157f911abeSJohn Baldwin 			    "cannot read procs from non-native core");
6167f911abeSJohn Baldwin 			return (0);
6177f911abeSJohn Baldwin 		}
6187f911abeSJohn Baldwin 
61958f0484fSRodney W. Grimes 		if (kvm_nlist(kd, nl) != 0) {
62058f0484fSRodney W. Grimes 			for (p = nl; p->n_type != 0; ++p)
62158f0484fSRodney W. Grimes 				;
62258f0484fSRodney W. Grimes 			_kvm_err(kd, kd->program,
62358f0484fSRodney W. Grimes 				 "%s: no such symbol", p->n_name);
62458f0484fSRodney W. Grimes 			return (0);
62558f0484fSRodney W. Grimes 		}
626789f4e26SMike Karels 		(void) kvm_nlist(kd, nlz);	/* attempt to get zombproc */
62758f0484fSRodney W. Grimes 		if (KREAD(kd, nl[0].n_value, &nprocs)) {
62858f0484fSRodney W. Grimes 			_kvm_err(kd, kd->program, "can't read nprocs");
62958f0484fSRodney W. Grimes 			return (0);
63058f0484fSRodney W. Grimes 		}
631789f4e26SMike Karels 		/*
632789f4e26SMike Karels 		 * If returning all threads, we don't know how many that
633789f4e26SMike Karels 		 * might be.  Presume that there are, on average, no more
634789f4e26SMike Karels 		 * than 10 threads per process.
635789f4e26SMike Karels 		 */
636789f4e26SMike Karels 		if (op == KERN_PROC_ALL || (op & KERN_PROC_INC_THREAD))
637789f4e26SMike Karels 			nprocs *= 10;		/* XXX */
638789f4e26SMike Karels 		if (KREAD(kd, nl[2].n_value, &ticks)) {
63984a0b303SJeff Roberson 			_kvm_err(kd, kd->program, "can't read ticks");
64084a0b303SJeff Roberson 			return (0);
64184a0b303SJeff Roberson 		}
642789f4e26SMike Karels 		if (KREAD(kd, nl[3].n_value, &hz)) {
64384a0b303SJeff Roberson 			_kvm_err(kd, kd->program, "can't read hz");
64484a0b303SJeff Roberson 			return (0);
64584a0b303SJeff Roberson 		}
646789f4e26SMike Karels 		if (KREAD(kd, nl[4].n_value, &cpu_tick_frequency)) {
647de788839SUlrich Spörlein 			_kvm_err(kd, kd->program,
648de788839SUlrich Spörlein 			    "can't read cpu_tick_frequency");
649de788839SUlrich Spörlein 			return (0);
650de788839SUlrich Spörlein 		}
65158f0484fSRodney W. Grimes 		size = nprocs * sizeof(struct kinfo_proc);
65258f0484fSRodney W. Grimes 		kd->procbase = (struct kinfo_proc *)_kvm_malloc(kd, size);
653fb0e1892SEnji Cooper 		if (kd->procbase == NULL)
65458f0484fSRodney W. Grimes 			return (0);
65558f0484fSRodney W. Grimes 
65658f0484fSRodney W. Grimes 		nprocs = kvm_deadprocs(kd, op, arg, nl[1].n_value,
657789f4e26SMike Karels 				      nlz[0].n_value, nprocs);
658ca895af3SAndriy Gapon 		if (nprocs <= 0) {
659ca895af3SAndriy Gapon 			_kvm_freeprocs(kd);
660ca895af3SAndriy Gapon 			nprocs = 0;
661ca895af3SAndriy Gapon 		}
66258f0484fSRodney W. Grimes #ifdef notdef
663ca895af3SAndriy Gapon 		else {
66458f0484fSRodney W. Grimes 			size = nprocs * sizeof(struct kinfo_proc);
665ca895af3SAndriy Gapon 			kd->procbase = realloc(kd->procbase, size);
666ca895af3SAndriy Gapon 		}
66758f0484fSRodney W. Grimes #endif
66858f0484fSRodney W. Grimes 	}
66958f0484fSRodney W. Grimes 	*cnt = nprocs;
67058f0484fSRodney W. Grimes 	return (kd->procbase);
67158f0484fSRodney W. Grimes }
67258f0484fSRodney W. Grimes 
67358f0484fSRodney W. Grimes void
_kvm_freeprocs(kvm_t * kd)674c10970ddSUlrich Spörlein _kvm_freeprocs(kvm_t *kd)
67558f0484fSRodney W. Grimes {
676fb0e1892SEnji Cooper 
67758f0484fSRodney W. Grimes 	free(kd->procbase);
678fb0e1892SEnji Cooper 	kd->procbase = NULL;
67958f0484fSRodney W. Grimes }
68058f0484fSRodney W. Grimes 
68158f0484fSRodney W. Grimes void *
_kvm_realloc(kvm_t * kd,void * p,size_t n)682c10970ddSUlrich Spörlein _kvm_realloc(kvm_t *kd, void *p, size_t n)
68358f0484fSRodney W. Grimes {
684fb0e1892SEnji Cooper 	void *np;
68558f0484fSRodney W. Grimes 
686fb0e1892SEnji Cooper 	np = reallocf(p, n);
687fb0e1892SEnji Cooper 	if (np == NULL)
68858f0484fSRodney W. Grimes 		_kvm_err(kd, kd->program, "out of memory");
68958f0484fSRodney W. Grimes 	return (np);
69058f0484fSRodney W. Grimes }
69158f0484fSRodney W. Grimes 
69258f0484fSRodney W. Grimes /*
693ee5169dcSMikolaj Golub  * Get the command args or environment.
69458f0484fSRodney W. Grimes  */
69558f0484fSRodney W. Grimes static char **
kvm_argv(kvm_t * kd,const struct kinfo_proc * kp,int env,int nchr)696ee5169dcSMikolaj Golub kvm_argv(kvm_t *kd, const struct kinfo_proc *kp, int env, int nchr)
69758f0484fSRodney W. Grimes {
698b9df5231SPoul-Henning Kamp 	int oid[4];
699b7875890SDavid E. O'Brien 	int i;
700b7875890SDavid E. O'Brien 	size_t bufsz;
701ee5169dcSMikolaj Golub 	static int buflen;
702b9df5231SPoul-Henning Kamp 	static char *buf, *p;
703b9df5231SPoul-Henning Kamp 	static char **bufp;
704b9df5231SPoul-Henning Kamp 	static int argc;
70568b68bf5SEnji Cooper 	char **nbufp;
706b9df5231SPoul-Henning Kamp 
707c4a7cdb3SPeter Wemm 	if (!ISALIVE(kd)) {
708c4a7cdb3SPeter Wemm 		_kvm_err(kd, kd->program,
709c4a7cdb3SPeter Wemm 		    "cannot read user space from dead kernel");
710fb0e1892SEnji Cooper 		return (NULL);
711c4a7cdb3SPeter Wemm 	}
712c4a7cdb3SPeter Wemm 
713ee5169dcSMikolaj Golub 	if (nchr == 0 || nchr > ARG_MAX)
714ee5169dcSMikolaj Golub 		nchr = ARG_MAX;
715ee5169dcSMikolaj Golub 	if (buflen == 0) {
716ee5169dcSMikolaj Golub 		buf = malloc(nchr);
717ee5169dcSMikolaj Golub 		if (buf == NULL) {
718ee5169dcSMikolaj Golub 			_kvm_err(kd, kd->program, "cannot allocate memory");
719fb0e1892SEnji Cooper 			return (NULL);
720ee5169dcSMikolaj Golub 		}
721b9df5231SPoul-Henning Kamp 		argc = 32;
722b9df5231SPoul-Henning Kamp 		bufp = malloc(sizeof(char *) * argc);
72368b68bf5SEnji Cooper 		if (bufp == NULL) {
72468b68bf5SEnji Cooper 			free(buf);
72568b68bf5SEnji Cooper 			buf = NULL;
72668b68bf5SEnji Cooper 			_kvm_err(kd, kd->program, "cannot allocate memory");
72768b68bf5SEnji Cooper 			return (NULL);
72868b68bf5SEnji Cooper 		}
72968b68bf5SEnji Cooper 		buflen = nchr;
730ee5169dcSMikolaj Golub 	} else if (nchr > buflen) {
731ee5169dcSMikolaj Golub 		p = realloc(buf, nchr);
732ee5169dcSMikolaj Golub 		if (p != NULL) {
733ee5169dcSMikolaj Golub 			buf = p;
734ee5169dcSMikolaj Golub 			buflen = nchr;
735b9df5231SPoul-Henning Kamp 		}
736b9df5231SPoul-Henning Kamp 	}
737b9df5231SPoul-Henning Kamp 	oid[0] = CTL_KERN;
738b9df5231SPoul-Henning Kamp 	oid[1] = KERN_PROC;
739ee5169dcSMikolaj Golub 	oid[2] = env ? KERN_PROC_ENV : KERN_PROC_ARGS;
7401f7d2501SKirk McKusick 	oid[3] = kp->ki_pid;
741b7875890SDavid E. O'Brien 	bufsz = buflen;
742952a0c3eSMikolaj Golub 	if (sysctl(oid, 4, buf, &bufsz, 0, 0) == -1) {
743952a0c3eSMikolaj Golub 		/*
744952a0c3eSMikolaj Golub 		 * If the supplied buf is too short to hold the requested
745952a0c3eSMikolaj Golub 		 * value the sysctl returns with ENOMEM. The buf is filled
746952a0c3eSMikolaj Golub 		 * with the truncated value and the returned bufsz is equal
747952a0c3eSMikolaj Golub 		 * to the requested len.
748952a0c3eSMikolaj Golub 		 */
749952a0c3eSMikolaj Golub 		if (errno != ENOMEM || bufsz != (size_t)buflen)
750fb0e1892SEnji Cooper 			return (NULL);
751952a0c3eSMikolaj Golub 		buf[bufsz - 1] = '\0';
752952a0c3eSMikolaj Golub 		errno = 0;
753fb0e1892SEnji Cooper 	} else if (bufsz == 0)
754fb0e1892SEnji Cooper 		return (NULL);
755b9df5231SPoul-Henning Kamp 	i = 0;
756b9df5231SPoul-Henning Kamp 	p = buf;
757b9df5231SPoul-Henning Kamp 	do {
758b9df5231SPoul-Henning Kamp 		bufp[i++] = p;
759b9df5231SPoul-Henning Kamp 		p += strlen(p) + 1;
760b9df5231SPoul-Henning Kamp 		if (i >= argc) {
761b9df5231SPoul-Henning Kamp 			argc += argc;
76268b68bf5SEnji Cooper 			nbufp = realloc(bufp, sizeof(char *) * argc);
76368b68bf5SEnji Cooper 			if (nbufp == NULL)
76468b68bf5SEnji Cooper 				return (NULL);
76568b68bf5SEnji Cooper 			bufp = nbufp;
766b9df5231SPoul-Henning Kamp 		}
767b7875890SDavid E. O'Brien 	} while (p < buf + bufsz);
768b9df5231SPoul-Henning Kamp 	bufp[i++] = 0;
769b9df5231SPoul-Henning Kamp 	return (bufp);
770b9df5231SPoul-Henning Kamp }
771ee5169dcSMikolaj Golub 
772ee5169dcSMikolaj Golub char **
kvm_getargv(kvm_t * kd,const struct kinfo_proc * kp,int nchr)773ee5169dcSMikolaj Golub kvm_getargv(kvm_t *kd, const struct kinfo_proc *kp, int nchr)
774ee5169dcSMikolaj Golub {
775ee5169dcSMikolaj Golub 	return (kvm_argv(kd, kp, 0, nchr));
77658f0484fSRodney W. Grimes }
77758f0484fSRodney W. Grimes 
77858f0484fSRodney W. Grimes char **
kvm_getenvv(kvm_t * kd,const struct kinfo_proc * kp,int nchr)779c10970ddSUlrich Spörlein kvm_getenvv(kvm_t *kd, const struct kinfo_proc *kp, int nchr)
78058f0484fSRodney W. Grimes {
781ee5169dcSMikolaj Golub 	return (kvm_argv(kd, kp, 1, nchr));
78258f0484fSRodney W. Grimes }
783