machine.c revision 1.112
1/* $OpenBSD: machine.c,v 1.112 2022/09/10 16:58:51 cheloha Exp $	 */
2
3/*-
4 * Copyright (c) 1994 Thorsten Lockert <tholo@sigmasoft.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 *    derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
19 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
21 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * AUTHOR:  Thorsten Lockert <tholo@sigmasoft.com>
30 *          Adapted from BSD4.4 by Christos Zoulas <christos@ee.cornell.edu>
31 *          Patch for process wait display by Jarl F. Greipsland <jarle@idt.unit.no>
32 *	    Patch for -DORDER by Kenneth Stailey <kstailey@disclosure.com>
33 *	    Patch for new swapctl(2) by Tobias Weingartner <weingart@openbsd.org>
34 */
35
36#include <sys/param.h>	/* DEV_BSIZE PZERO */
37#include <sys/types.h>
38#include <sys/signal.h>
39#include <sys/mount.h>
40#include <sys/proc.h>
41#include <sys/sched.h>
42#include <sys/swap.h>
43#include <sys/sysctl.h>
44
45#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
48#include <unistd.h>
49#include <err.h>
50#include <errno.h>
51
52#include "top.h"
53#include "display.h"
54#include "machine.h"
55#include "utils.h"
56
57static int	swapmode(int *, int *);
58static char	*state_abbr(struct kinfo_proc *);
59static char	*format_comm(struct kinfo_proc *);
60static int	cmd_matches(struct kinfo_proc *, char *);
61static char	**get_proc_args(struct kinfo_proc *);
62
63/* get_process_info passes back a handle.  This is what it looks like: */
64
65struct handle {
66	struct kinfo_proc **next_proc;	/* points to next valid proc pointer */
67};
68
69/* what we consider to be process size: */
70#define PROCSIZE(pp) ((pp)->p_vm_tsize + (pp)->p_vm_dsize + (pp)->p_vm_ssize)
71
72/*
73 *  These definitions control the format of the per-process area
74 */
75static char header[] =
76	"  PID X        PRI NICE  SIZE   RES STATE     WAIT      TIME    CPU COMMAND";
77
78/* offsets in the header line to start alternative columns */
79#define UNAME_START 6
80#define RTABLE_START 46
81
82#define Proc_format \
83	"%5d %-8.8s %3d %4d %5s %5s %-9s %-7.7s %6s %5.2f%% %s"
84
85/* process state names for the "STATE" column of the display */
86char	*state_abbrev[] = {
87	"", "start", "run", "sleep", "stop", "zomb", "dead", "onproc"
88};
89
90/* these are for calculating cpu state percentages */
91static struct cpustats	*cp_time;
92static struct cpustats	*cp_old;
93static struct cpustats	*cp_diff;
94
95/* these are for detailing the process states */
96int process_states[8];
97char *procstatenames[] = {
98	"", " starting, ", " running, ", " idle, ",
99	" stopped, ", " zombie, ", " dead, ", " on processor, ",
100	NULL
101};
102
103/* these are for detailing the cpu states */
104int64_t *cpu_states;
105char *cpustatenames[] = {
106	"user", "nice", "sys", "spin", "intr", "idle", NULL
107};
108
109/* this is for tracking which cpus are online */
110int *cpu_online;
111
112/* these are for detailing the memory statistics */
113int memory_stats[10];
114char *memorynames[] = {
115	"Real: ", "K/", "K act/tot ", "Free: ", "K ",
116	"Cache: ", "K ",
117	"Swap: ", "K/", "K",
118	NULL
119};
120
121/* these are names given to allowed sorting orders -- first is default */
122char	*ordernames[] = {
123	"cpu", "size", "res", "time", "pri", "pid", "command", NULL
124};
125
126/* these are for keeping track of the proc array */
127static int	nproc;
128static int	onproc = -1;
129static int	pref_len;
130static struct kinfo_proc *pbase;
131static struct kinfo_proc **pref;
132
133/* these are for getting the memory statistics */
134static int	pageshift;	/* log base 2 of the pagesize */
135
136/* define pagetok in terms of pageshift */
137#define pagetok(size) ((size) << pageshift)
138
139int		ncpu;
140int		ncpuonline;
141int		fscale;
142
143unsigned int	maxslp;
144
145int
146getfscale(void)
147{
148	int mib[] = { CTL_KERN, KERN_FSCALE };
149	size_t size = sizeof(fscale);
150
151	if (sysctl(mib, sizeof(mib) / sizeof(mib[0]),
152	    &fscale, &size, NULL, 0) == -1)
153		return (-1);
154	return fscale;
155}
156
157int
158getncpu(void)
159{
160	int mib[] = { CTL_HW, HW_NCPU };
161	int numcpu;
162	size_t size = sizeof(numcpu);
163
164	if (sysctl(mib, sizeof(mib) / sizeof(mib[0]),
165	    &numcpu, &size, NULL, 0) == -1)
166		return (-1);
167
168	return (numcpu);
169}
170
171int
172getncpuonline(void)
173{
174	int mib[] = { CTL_HW, HW_NCPUONLINE };
175	int numcpu;
176	size_t size = sizeof(numcpu);
177
178	if (sysctl(mib, sizeof(mib) / sizeof(mib[0]),
179	    &numcpu, &size, NULL, 0) == -1)
180		return (-1);
181
182	return (numcpu);
183}
184
185int
186machine_init(struct statics *statics)
187{
188	int pagesize;
189
190	ncpu = getncpu();
191	if (ncpu == -1)
192		return (-1);
193	if (getfscale() == -1)
194		return (-1);
195	cpu_states = calloc(ncpu, CPUSTATES * sizeof(int64_t));
196	if (cpu_states == NULL)
197		err(1, NULL);
198	cp_time = calloc(ncpu, sizeof(*cp_time));
199	cp_old  = calloc(ncpu, sizeof(*cp_old));
200	cp_diff = calloc(ncpu, sizeof(*cp_diff));
201	if (cp_time == NULL || cp_old == NULL || cp_diff == NULL)
202		err(1, NULL);
203	cpu_online = calloc(ncpu, sizeof(*cpu_online));
204	if (cpu_online == NULL)
205		err(1, NULL);
206
207	/*
208	 * get the page size with "getpagesize" and calculate pageshift from
209	 * it
210	 */
211	pagesize = getpagesize();
212	pageshift = 0;
213	while (pagesize > 1) {
214		pageshift++;
215		pagesize >>= 1;
216	}
217
218	/* we only need the amount of log(2)1024 for our conversion */
219	pageshift -= LOG1024;
220
221	/* fill in the statics information */
222	statics->procstate_names = procstatenames;
223	statics->cpustate_names = cpustatenames;
224	statics->memory_names = memorynames;
225	statics->order_names = ordernames;
226	return (0);
227}
228
229char *
230format_header(char *second_field, char *eighth_field)
231{
232	char *second_fieldp = second_field, *eighth_fieldp = eighth_field, *ptr;
233
234	ptr = header + UNAME_START;
235	while (*second_fieldp != '\0')
236		*ptr++ = *second_fieldp++;
237	ptr = header + RTABLE_START;
238	while (*eighth_fieldp != '\0')
239		*ptr++ = *eighth_fieldp++;
240	return (header);
241}
242
243void
244get_system_info(struct system_info *si)
245{
246	static int cpustats_mib[] = {CTL_KERN, KERN_CPUSTATS, /*fillme*/0};
247	static int sysload_mib[] = {CTL_VM, VM_LOADAVG};
248	static int uvmexp_mib[] = {CTL_VM, VM_UVMEXP};
249	static int bcstats_mib[] = {CTL_VFS, VFS_GENERIC, VFS_BCACHESTAT};
250	struct loadavg sysload;
251	struct uvmexp uvmexp;
252	struct bcachestats bcstats;
253	double *infoloadp;
254	size_t size;
255	int i;
256	int64_t *tmpstate;
257
258	size = sizeof(*cp_time);
259	for (i = 0; i < ncpu; i++) {
260		cpustats_mib[2] = i;
261		tmpstate = cpu_states + (CPUSTATES * i);
262		if (sysctl(cpustats_mib, 3, &cp_time[i], &size, NULL, 0) == -1)
263			warn("sysctl kern.cpustats failed");
264		/* convert cpustats counts to percentages */
265		(void) percentages(CPUSTATES, tmpstate, cp_time[i].cs_time,
266		    cp_old[i].cs_time, cp_diff[i].cs_time);
267		/* note whether the cpu is online */
268		cpu_online[i] = (cp_time[i].cs_flags & CPUSTATS_ONLINE) != 0;
269	}
270
271	size = sizeof(sysload);
272	if (sysctl(sysload_mib, 2, &sysload, &size, NULL, 0) == -1)
273		warn("sysctl failed");
274	infoloadp = si->load_avg;
275	for (i = 0; i < 3; i++)
276		*infoloadp++ = ((double) sysload.ldavg[i]) / sysload.fscale;
277
278
279	/* get total -- systemwide main memory usage structure */
280	size = sizeof(uvmexp);
281	if (sysctl(uvmexp_mib, 2, &uvmexp, &size, NULL, 0) == -1) {
282		warn("sysctl failed");
283		bzero(&uvmexp, sizeof(uvmexp));
284	}
285	size = sizeof(bcstats);
286	if (sysctl(bcstats_mib, 3, &bcstats, &size, NULL, 0) == -1) {
287		warn("sysctl failed");
288		bzero(&bcstats, sizeof(bcstats));
289	}
290	/* convert memory stats to Kbytes */
291	memory_stats[0] = -1;
292	memory_stats[1] = pagetok(uvmexp.active);
293	memory_stats[2] = pagetok(uvmexp.npages - uvmexp.free);
294	memory_stats[3] = -1;
295	memory_stats[4] = pagetok(uvmexp.free);
296	memory_stats[5] = -1;
297	memory_stats[6] = pagetok(bcstats.numbufpages);
298	memory_stats[7] = -1;
299
300	if (!swapmode(&memory_stats[8], &memory_stats[9])) {
301		memory_stats[8] = 0;
302		memory_stats[9] = 0;
303	}
304
305	/* set arrays and strings */
306	si->cpustates = cpu_states;
307	si->cpuonline = cpu_online;
308	si->memory = memory_stats;
309}
310
311static struct handle handle;
312
313struct kinfo_proc *
314getprocs(int op, int arg, int *cnt)
315{
316	size_t size;
317	int mib[6] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0,
318	    sizeof(struct kinfo_proc), 0};
319	static int maxslp_mib[] = {CTL_VM, VM_MAXSLP};
320	static struct kinfo_proc *procbase;
321	int st;
322
323	mib[2] = op;
324	mib[3] = arg;
325
326	size = sizeof(maxslp);
327	if (sysctl(maxslp_mib, 2, &maxslp, &size, NULL, 0) == -1) {
328		warn("sysctl vm.maxslp failed");
329		return (0);
330	}
331    retry:
332	free(procbase);
333	st = sysctl(mib, 6, NULL, &size, NULL, 0);
334	if (st == -1) {
335		/* _kvm_syserr(kd, kd->program, "kvm_getprocs"); */
336		return (0);
337	}
338	size = 5 * size / 4;			/* extra slop */
339	if ((procbase = malloc(size)) == NULL)
340		return (0);
341	mib[5] = (int)(size / sizeof(struct kinfo_proc));
342	st = sysctl(mib, 6, procbase, &size, NULL, 0);
343	if (st == -1) {
344		if (errno == ENOMEM)
345			goto retry;
346		/* _kvm_syserr(kd, kd->program, "kvm_getprocs"); */
347		return (0);
348	}
349	*cnt = (int)(size / sizeof(struct kinfo_proc));
350	return (procbase);
351}
352
353static char **
354get_proc_args(struct kinfo_proc *kp)
355{
356	static char	**s;
357	static size_t	siz = 1023;
358	int		mib[4];
359
360	if (!s && !(s = malloc(siz)))
361		err(1, NULL);
362
363	mib[0] = CTL_KERN;
364	mib[1] = KERN_PROC_ARGS;
365	mib[2] = kp->p_pid;
366	mib[3] = KERN_PROC_ARGV;
367	for (;;) {
368		size_t space = siz;
369		if (sysctl(mib, 4, s, &space, NULL, 0) == 0)
370			break;
371		if (errno != ENOMEM)
372			return NULL;
373		siz *= 2;
374		if ((s = realloc(s, siz)) == NULL)
375			err(1, NULL);
376	}
377	return s;
378}
379
380static int
381cmd_matches(struct kinfo_proc *proc, char *term)
382{
383	extern int	show_args;
384	char		**args = NULL;
385
386	if (!term) {
387		/* No command filter set */
388		return 1;
389	} else {
390		/* Filter set, process name needs to contain term */
391		if (strstr(proc->p_comm, term))
392			return 1;
393		/* If showing arguments, search those as well */
394		if (show_args) {
395			args = get_proc_args(proc);
396
397			if (args == NULL) {
398				/* Failed to get args, so can't search them */
399				return 0;
400			}
401
402			while (*args != NULL) {
403				if (strstr(*args, term))
404					return 1;
405				args++;
406			}
407		}
408	}
409	return 0;
410}
411
412struct handle *
413get_process_info(struct system_info *si, struct process_select *sel,
414    int (*compare) (const void *, const void *))
415{
416	int show_idle, show_system, show_threads, show_uid, show_pid, show_cmd;
417	int show_rtableid, hide_rtableid, hide_uid;
418	int total_procs, active_procs;
419	struct kinfo_proc **prefp, *pp;
420	int what = KERN_PROC_ALL;
421
422	show_system = sel->system;
423	show_threads = sel->threads;
424
425	if (show_system)
426		what = KERN_PROC_KTHREAD;
427	if (show_threads)
428		what |= KERN_PROC_SHOW_THREADS;
429
430	if ((pbase = getprocs(what, 0, &nproc)) == NULL) {
431		/* warnx("%s", kvm_geterr(kd)); */
432		quit(23);
433	}
434	if (nproc > onproc)
435		pref = reallocarray(pref, (onproc = nproc),
436		    sizeof(struct kinfo_proc *));
437	if (pref == NULL) {
438		warnx("Out of memory.");
439		quit(23);
440	}
441	/* get a pointer to the states summary array */
442	si->procstates = process_states;
443
444	/* set up flags which define what we are going to select */
445	show_idle = sel->idle;
446	show_uid = sel->uid != (uid_t)-1;
447	hide_uid = sel->huid != (uid_t)-1;
448	show_pid = sel->pid != (pid_t)-1;
449	show_rtableid = sel->rtableid != -1;
450	hide_rtableid = sel->hrtableid != -1;
451	show_cmd = sel->command != NULL;
452
453	/* count up process states and get pointers to interesting procs */
454	total_procs = 0;
455	active_procs = 0;
456	memset((char *) process_states, 0, sizeof(process_states));
457	prefp = pref;
458	for (pp = pbase; pp < &pbase[nproc]; pp++) {
459		/*
460		 * When showing threads, we want to ignore the structure
461		 * that represents the entire process, which has TID == -1
462		 */
463		if (show_threads && pp->p_tid == -1)
464			continue;
465		/*
466		 * Place pointers to each valid proc structure in pref[].
467		 * Process slots that are actually in use have a non-zero
468		 * status field.
469		 */
470		if (pp->p_stat != 0) {
471			total_procs++;
472			process_states[(unsigned char) pp->p_stat]++;
473			if ((pp->p_psflags & PS_ZOMBIE) == 0 &&
474			    (show_idle || pp->p_pctcpu != 0 ||
475			    pp->p_stat == SRUN) &&
476			    (!hide_uid || pp->p_ruid != sel->huid) &&
477			    (!show_uid || pp->p_ruid == sel->uid) &&
478			    (!show_pid || pp->p_pid == sel->pid) &&
479			    (!hide_rtableid || pp->p_rtableid != sel->hrtableid) &&
480			    (!show_rtableid || pp->p_rtableid == sel->rtableid) &&
481			    (!show_cmd || cmd_matches(pp, sel->command))) {
482				*prefp++ = pp;
483				active_procs++;
484			}
485		}
486	}
487
488	qsort((char *)pref, active_procs, sizeof(struct kinfo_proc *), compare);
489	/* remember active and total counts */
490	si->p_total = total_procs;
491	si->p_active = pref_len = active_procs;
492
493	/* pass back a handle */
494	handle.next_proc = pref;
495	return &handle;
496}
497
498char fmt[MAX_COLS];	/* static area where result is built */
499
500static char *
501state_abbr(struct kinfo_proc *pp)
502{
503	static char buf[10];
504
505	if (ncpu > 1 && pp->p_cpuid != KI_NOCPU)
506		snprintf(buf, sizeof buf, "%s/%llu",
507		    state_abbrev[(unsigned char)pp->p_stat], pp->p_cpuid);
508	else
509		snprintf(buf, sizeof buf, "%s",
510		    state_abbrev[(unsigned char)pp->p_stat]);
511	return buf;
512}
513
514static char *
515format_comm(struct kinfo_proc *kp)
516{
517	static char	buf[MAX_COLS];
518	char		**p, **s;
519	extern int	show_args;
520
521	if (!show_args)
522		return (kp->p_comm);
523
524	s = get_proc_args(kp);
525	if (s == NULL)
526		return kp->p_comm;
527
528	buf[0] = '\0';
529	for (p = s; *p != NULL; p++) {
530		if (p != s)
531			strlcat(buf, " ", sizeof(buf));
532		strlcat(buf, *p, sizeof(buf));
533	}
534	if (buf[0] == '\0')
535		return (kp->p_comm);
536	return (buf);
537}
538
539void
540skip_processes(struct handle *hndl, int n)
541{
542	hndl->next_proc += n;
543}
544
545char *
546format_next_process(struct handle *hndl, const char *(*get_userid)(uid_t, int),
547    int rtable, pid_t *pid)
548{
549	struct kinfo_proc *pp;
550	int cputime;
551	double pct;
552	char second_buf[16], eighth_buf[8];
553
554	/* find and remember the next proc structure */
555	pp = *(hndl->next_proc++);
556
557	cputime = pp->p_rtime_sec + ((pp->p_rtime_usec + 500000) / 1000000);
558
559	/* calculate the base for cpu percentages */
560	pct = (double)pp->p_pctcpu / fscale;
561
562	if (get_userid == NULL)
563		snprintf(second_buf, sizeof(second_buf), "%8d", pp->p_tid);
564	else
565		strlcpy(second_buf, (*get_userid)(pp->p_ruid, 0),
566		    sizeof(second_buf));
567
568	if (rtable)
569		snprintf(eighth_buf, sizeof(eighth_buf), "%7d", pp->p_rtableid);
570	else
571		strlcpy(eighth_buf, pp->p_wmesg[0] ? pp->p_wmesg : "-",
572		    sizeof(eighth_buf));
573
574	/* format this entry */
575	snprintf(fmt, sizeof(fmt), Proc_format, pp->p_pid, second_buf,
576	    pp->p_priority - PZERO, pp->p_nice - NZERO,
577	    format_k(pagetok(PROCSIZE(pp))),
578	    format_k(pagetok(pp->p_vm_rssize)),
579	    (pp->p_stat == SSLEEP && pp->p_slptime > maxslp) ?
580	    "idle" : state_abbr(pp),
581	    eighth_buf, format_time(cputime), 100.0 * pct,
582	    printable(format_comm(pp)));
583
584	*pid = pp->p_pid;
585	/* return the result */
586	return (fmt);
587}
588
589/* comparison routine for qsort */
590static unsigned char sorted_state[] =
591{
592	0,			/* not used		 */
593	4,			/* start		 */
594	5,			/* run			 */
595	2,			/* sleep		 */
596	3,			/* stop			 */
597	1			/* zombie		 */
598};
599
600extern int rev_order;
601
602/*
603 *  proc_compares - comparison functions for "qsort"
604 */
605
606/*
607 * First, the possible comparison keys.  These are defined in such a way
608 * that they can be merely listed in the source code to define the actual
609 * desired ordering.
610 */
611
612#define ORDERKEY_PCTCPU \
613	if ((result = (int)(p2->p_pctcpu - p1->p_pctcpu)) == 0)
614#define ORDERKEY_CPUTIME \
615	if ((result = p2->p_rtime_sec - p1->p_rtime_sec) == 0) \
616		if ((result = p2->p_rtime_usec - p1->p_rtime_usec) == 0)
617#define ORDERKEY_STATE \
618	if ((result = sorted_state[(unsigned char)p2->p_stat] - \
619	    sorted_state[(unsigned char)p1->p_stat])  == 0)
620#define ORDERKEY_PRIO \
621	if ((result = p2->p_priority - p1->p_priority) == 0)
622#define ORDERKEY_RSSIZE \
623	if ((result = p2->p_vm_rssize - p1->p_vm_rssize) == 0)
624#define ORDERKEY_MEM \
625	if ((result = PROCSIZE(p2) - PROCSIZE(p1)) == 0)
626#define ORDERKEY_PID \
627	if ((result = p1->p_pid - p2->p_pid) == 0)
628#define ORDERKEY_CMD \
629	if ((result = strcmp(p1->p_comm, p2->p_comm)) == 0)
630
631/* remove one level of indirection and set sort order */
632#define SETORDER do { \
633		if (rev_order) { \
634			p1 = *(struct kinfo_proc **) v2; \
635			p2 = *(struct kinfo_proc **) v1; \
636		} else { \
637			p1 = *(struct kinfo_proc **) v1; \
638			p2 = *(struct kinfo_proc **) v2; \
639		} \
640	} while (0)
641
642/* compare_cpu - the comparison function for sorting by cpu percentage */
643static int
644compare_cpu(const void *v1, const void *v2)
645{
646	struct kinfo_proc *p1, *p2;
647	int result;
648
649	SETORDER;
650
651	ORDERKEY_PCTCPU
652	ORDERKEY_CPUTIME
653	ORDERKEY_STATE
654	ORDERKEY_PRIO
655	ORDERKEY_RSSIZE
656	ORDERKEY_MEM
657		;
658	return (result);
659}
660
661/* compare_size - the comparison function for sorting by total memory usage */
662static int
663compare_size(const void *v1, const void *v2)
664{
665	struct kinfo_proc *p1, *p2;
666	int result;
667
668	SETORDER;
669
670	ORDERKEY_MEM
671	ORDERKEY_RSSIZE
672	ORDERKEY_PCTCPU
673	ORDERKEY_CPUTIME
674	ORDERKEY_STATE
675	ORDERKEY_PRIO
676		;
677	return (result);
678}
679
680/* compare_res - the comparison function for sorting by resident set size */
681static int
682compare_res(const void *v1, const void *v2)
683{
684	struct kinfo_proc *p1, *p2;
685	int result;
686
687	SETORDER;
688
689	ORDERKEY_RSSIZE
690	ORDERKEY_MEM
691	ORDERKEY_PCTCPU
692	ORDERKEY_CPUTIME
693	ORDERKEY_STATE
694	ORDERKEY_PRIO
695		;
696	return (result);
697}
698
699/* compare_time - the comparison function for sorting by CPU time */
700static int
701compare_time(const void *v1, const void *v2)
702{
703	struct kinfo_proc *p1, *p2;
704	int result;
705
706	SETORDER;
707
708	ORDERKEY_CPUTIME
709	ORDERKEY_PCTCPU
710	ORDERKEY_STATE
711	ORDERKEY_PRIO
712	ORDERKEY_MEM
713	ORDERKEY_RSSIZE
714		;
715	return (result);
716}
717
718/* compare_prio - the comparison function for sorting by CPU time */
719static int
720compare_prio(const void *v1, const void *v2)
721{
722	struct kinfo_proc *p1, *p2;
723	int result;
724
725	SETORDER;
726
727	ORDERKEY_PRIO
728	ORDERKEY_PCTCPU
729	ORDERKEY_CPUTIME
730	ORDERKEY_STATE
731	ORDERKEY_RSSIZE
732	ORDERKEY_MEM
733		;
734	return (result);
735}
736
737static int
738compare_pid(const void *v1, const void *v2)
739{
740	struct kinfo_proc *p1, *p2;
741	int result;
742
743	SETORDER;
744
745	ORDERKEY_PID
746	ORDERKEY_PCTCPU
747	ORDERKEY_CPUTIME
748	ORDERKEY_STATE
749	ORDERKEY_PRIO
750	ORDERKEY_RSSIZE
751	ORDERKEY_MEM
752		;
753	return (result);
754}
755
756static int
757compare_cmd(const void *v1, const void *v2)
758{
759	struct kinfo_proc *p1, *p2;
760	int result;
761
762	SETORDER;
763
764	ORDERKEY_CMD
765	ORDERKEY_PCTCPU
766	ORDERKEY_CPUTIME
767	ORDERKEY_STATE
768	ORDERKEY_PRIO
769	ORDERKEY_RSSIZE
770	ORDERKEY_MEM
771		;
772	return (result);
773}
774
775
776int (*proc_compares[])(const void *, const void *) = {
777	compare_cpu,
778	compare_size,
779	compare_res,
780	compare_time,
781	compare_prio,
782	compare_pid,
783	compare_cmd,
784	NULL
785};
786
787/*
788 * proc_owner(pid) - returns the uid that owns process "pid", or -1 if
789 *		the process does not exist.
790 *		It is EXTREMELY IMPORTANT that this function work correctly.
791 *		If top runs setuid root (as in SVR4), then this function
792 *		is the only thing that stands in the way of a serious
793 *		security problem.  It validates requests for the "kill"
794 *		and "renice" commands.
795 */
796uid_t
797proc_owner(pid_t pid)
798{
799	struct kinfo_proc **prefp, *pp;
800	int cnt;
801
802	prefp = pref;
803	cnt = pref_len;
804	while (--cnt >= 0) {
805		pp = *prefp++;
806		if (pp->p_pid == pid)
807			return ((uid_t)pp->p_ruid);
808	}
809	return (uid_t)(-1);
810}
811
812/*
813 * swapmode is rewritten by Tobias Weingartner <weingart@openbsd.org>
814 * to be based on the new swapctl(2) system call.
815 */
816static int
817swapmode(int *used, int *total)
818{
819	struct swapent *swdev;
820	int nswap, rnswap, i;
821
822	nswap = swapctl(SWAP_NSWAP, 0, 0);
823	if (nswap == 0)
824		return 0;
825
826	swdev = calloc(nswap, sizeof(*swdev));
827	if (swdev == NULL)
828		return 0;
829
830	rnswap = swapctl(SWAP_STATS, swdev, nswap);
831	if (rnswap == -1) {
832		free(swdev);
833		return 0;
834	}
835
836	/* if rnswap != nswap, then what? */
837
838	/* Total things up */
839	*total = *used = 0;
840	for (i = 0; i < nswap; i++) {
841		if (swdev[i].se_flags & SWF_ENABLE) {
842			*used += (swdev[i].se_inuse / (1024 / DEV_BSIZE));
843			*total += (swdev[i].se_nblks / (1024 / DEV_BSIZE));
844		}
845	}
846	free(swdev);
847	return 1;
848}
849