Home | History | Annotate | Line # | Download | only in iostat
iostat.c revision 1.67.4.1
      1  1.67.4.1    martin /*	$NetBSD: iostat.c,v 1.67.4.1 2023/04/01 16:25:10 martin Exp $	*/
      2       1.9   thorpej 
      3       1.9   thorpej /*
      4       1.9   thorpej  * Copyright (c) 1996 John M. Vinopal
      5       1.9   thorpej  * All rights reserved.
      6       1.9   thorpej  *
      7       1.9   thorpej  * Redistribution and use in source and binary forms, with or without
      8       1.9   thorpej  * modification, are permitted provided that the following conditions
      9       1.9   thorpej  * are met:
     10       1.9   thorpej  * 1. Redistributions of source code must retain the above copyright
     11       1.9   thorpej  *    notice, this list of conditions and the following disclaimer.
     12       1.9   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.9   thorpej  *    notice, this list of conditions and the following disclaimer in the
     14       1.9   thorpej  *    documentation and/or other materials provided with the distribution.
     15       1.9   thorpej  * 3. All advertising materials mentioning features or use of this software
     16       1.9   thorpej  *    must display the following acknowledgement:
     17       1.9   thorpej  *      This product includes software developed for the NetBSD Project
     18       1.9   thorpej  *      by John M. Vinopal.
     19       1.9   thorpej  * 4. The name of the author may not be used to endorse or promote products
     20       1.9   thorpej  *    derived from this software without specific prior written permission.
     21       1.9   thorpej  *
     22       1.9   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23       1.9   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24       1.9   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25       1.9   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26       1.9   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     27       1.9   thorpej  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     28       1.9   thorpej  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     29       1.9   thorpej  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     30       1.9   thorpej  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31       1.9   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32       1.9   thorpej  * SUCH DAMAGE.
     33       1.9   thorpej  */
     34       1.8   thorpej 
     35       1.1       cgd /*-
     36       1.6       cgd  * Copyright (c) 1986, 1991, 1993
     37       1.9   thorpej  *      The Regents of the University of California.  All rights reserved.
     38       1.1       cgd  *
     39       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     40       1.1       cgd  * modification, are permitted provided that the following conditions
     41       1.1       cgd  * are met:
     42       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     43       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     44       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     45       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     46       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     47      1.40       agc  * 3. Neither the name of the University nor the names of its contributors
     48       1.1       cgd  *    may be used to endorse or promote products derived from this software
     49       1.1       cgd  *    without specific prior written permission.
     50       1.1       cgd  *
     51       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     52       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     53       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     54       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     55       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     56       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     57       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61       1.1       cgd  * SUCH DAMAGE.
     62       1.1       cgd  */
     63       1.1       cgd 
     64      1.12     lukem #include <sys/cdefs.h>
     65       1.1       cgd #ifndef lint
     66      1.52     lukem __COPYRIGHT("@(#) Copyright (c) 1986, 1991, 1993\
     67      1.52     lukem  The Regents of the University of California.  All rights reserved.");
     68       1.1       cgd #endif /* not lint */
     69       1.1       cgd 
     70       1.1       cgd #ifndef lint
     71       1.8   thorpej #if 0
     72      1.11       mrg static char sccsid[] = "@(#)iostat.c	8.3 (Berkeley) 4/28/95";
     73       1.8   thorpej #else
     74  1.67.4.1    martin __RCSID("$NetBSD: iostat.c,v 1.67.4.1 2023/04/01 16:25:10 martin Exp $");
     75       1.8   thorpej #endif
     76       1.1       cgd #endif /* not lint */
     77       1.1       cgd 
     78      1.11       mrg #include <sys/types.h>
     79      1.37    simonb #include <sys/ioctl.h>
     80      1.22   thorpej #include <sys/sched.h>
     81       1.9   thorpej #include <sys/time.h>
     82       1.6       cgd 
     83       1.6       cgd #include <err.h>
     84       1.6       cgd #include <ctype.h>
     85       1.6       cgd #include <signal.h>
     86       1.1       cgd #include <stdio.h>
     87       1.1       cgd #include <stdlib.h>
     88       1.1       cgd #include <string.h>
     89       1.6       cgd #include <unistd.h>
     90      1.54  jakllsch #include <math.h>
     91      1.62       mrg #include <fnmatch.h>
     92       1.1       cgd 
     93      1.49     blymn #include "drvstats.h"
     94       1.1       cgd 
     95      1.60     joerg int		hz;
     96      1.60     joerg static int	reps, interval;
     97       1.9   thorpej static int	todo = 0;
     98      1.38    simonb static int	defdrives;
     99      1.37    simonb static int	winlines = 20;
    100      1.38    simonb static int	wincols = 80;
    101       1.9   thorpej 
    102      1.54  jakllsch #define	MAX(a,b)	(((a)>(b))?(a):(b))
    103      1.54  jakllsch 
    104      1.36    simonb #define	ISSET(x, a)	((x) & (a))
    105      1.51  christos #define	SHOW_CPU	(1<<0)
    106      1.51  christos #define	SHOW_TTY	(1<<1)
    107      1.51  christos #define	SHOW_STATS_1	(1<<2)
    108      1.51  christos #define	SHOW_STATS_2	(1<<3)
    109      1.51  christos #define	SHOW_STATS_X	(1<<4)
    110      1.64   mlelstv #define	SHOW_STATS_Y	(1<<5)
    111      1.51  christos #define	SHOW_TOTALS	(1<<7)
    112      1.64   mlelstv #define	SHOW_STATS_ALL	(SHOW_STATS_1 | SHOW_STATS_2 | SHOW_STATS_X | SHOW_STATS_Y)
    113       1.9   thorpej 
    114      1.23    simonb static void cpustats(void);
    115      1.65   mlelstv static double drive_time(double, int);
    116      1.49     blymn static void drive_stats(double);
    117      1.49     blymn static void drive_stats2(double);
    118      1.49     blymn static void drive_statsx(double);
    119      1.64   mlelstv static void drive_statsy(double);
    120      1.64   mlelstv static void drive_statsy_io(double, double, double);
    121      1.64   mlelstv static void drive_statsy_q(double, double, double, double, double, double);
    122      1.39       mrg static void sig_header(int);
    123      1.39       mrg static volatile int do_header;
    124      1.39       mrg static void header(void);
    125      1.60     joerg __dead static void usage(void);
    126      1.23    simonb static void display(void);
    127  1.67.4.1    martin static int selectdrives(int, char *[], int);
    128      1.23    simonb 
    129       1.6       cgd int
    130      1.23    simonb main(int argc, char *argv[])
    131       1.1       cgd {
    132      1.66       mrg 	int ch, hdrcnt, hdroffset, ndrives, lines;
    133      1.28   mycroft 	struct timespec	tv;
    134      1.37    simonb 	struct ttysize ts;
    135       1.9   thorpej 
    136      1.64   mlelstv 	while ((ch = getopt(argc, argv, "Cc:dDITw:xy")) != -1)
    137      1.31     enami 		switch (ch) {
    138       1.1       cgd 		case 'c':
    139       1.6       cgd 			if ((reps = atoi(optarg)) <= 0)
    140       1.6       cgd 				errx(1, "repetition count <= 0.");
    141       1.1       cgd 			break;
    142       1.9   thorpej 		case 'C':
    143       1.9   thorpej 			todo |= SHOW_CPU;
    144       1.9   thorpej 			break;
    145       1.9   thorpej 		case 'd':
    146      1.15     lukem 			todo &= ~SHOW_STATS_ALL;
    147       1.9   thorpej 			todo |= SHOW_STATS_1;
    148       1.9   thorpej 			break;
    149       1.9   thorpej 		case 'D':
    150      1.15     lukem 			todo &= ~SHOW_STATS_ALL;
    151       1.9   thorpej 			todo |= SHOW_STATS_2;
    152       1.9   thorpej 			break;
    153       1.9   thorpej 		case 'I':
    154       1.9   thorpej 			todo |= SHOW_TOTALS;
    155       1.9   thorpej 			break;
    156       1.9   thorpej 		case 'T':
    157       1.9   thorpej 			todo |= SHOW_TTY;
    158       1.9   thorpej 			break;
    159       1.1       cgd 		case 'w':
    160       1.6       cgd 			if ((interval = atoi(optarg)) <= 0)
    161       1.6       cgd 				errx(1, "interval <= 0.");
    162       1.1       cgd 			break;
    163      1.15     lukem 		case 'x':
    164      1.15     lukem 			todo &= ~SHOW_STATS_ALL;
    165      1.15     lukem 			todo |= SHOW_STATS_X;
    166      1.15     lukem 			break;
    167      1.64   mlelstv 		case 'y':
    168      1.64   mlelstv 			todo &= ~SHOW_STATS_ALL;
    169      1.64   mlelstv 			todo |= SHOW_STATS_Y;
    170      1.64   mlelstv 			break;
    171       1.1       cgd 		case '?':
    172       1.1       cgd 		default:
    173       1.1       cgd 			usage();
    174       1.1       cgd 		}
    175       1.1       cgd 	argc -= optind;
    176       1.1       cgd 	argv += optind;
    177       1.1       cgd 
    178      1.15     lukem 	if (!ISSET(todo, SHOW_CPU | SHOW_TTY | SHOW_STATS_ALL))
    179       1.9   thorpej 		todo |= SHOW_CPU | SHOW_TTY | SHOW_STATS_1;
    180      1.15     lukem 	if (ISSET(todo, SHOW_STATS_X)) {
    181      1.15     lukem 		todo &= ~(SHOW_CPU | SHOW_TTY | SHOW_STATS_ALL);
    182      1.15     lukem 		todo |= SHOW_STATS_X;
    183      1.15     lukem 	}
    184      1.64   mlelstv 	if (ISSET(todo, SHOW_STATS_Y)) {
    185      1.64   mlelstv 		todo &= ~(SHOW_CPU | SHOW_TTY | SHOW_STATS_ALL | SHOW_TOTALS);
    186      1.64   mlelstv 		todo |= SHOW_STATS_Y;
    187      1.64   mlelstv 	}
    188       1.6       cgd 
    189      1.38    simonb 	if (ioctl(STDOUT_FILENO, TIOCGSIZE, &ts) != -1) {
    190      1.38    simonb 		if (ts.ts_lines)
    191      1.38    simonb 			winlines = ts.ts_lines;
    192      1.38    simonb 		if (ts.ts_cols)
    193      1.38    simonb 			wincols = ts.ts_cols;
    194      1.38    simonb 	}
    195      1.38    simonb 
    196      1.38    simonb 	defdrives = wincols;
    197      1.38    simonb 	if (ISSET(todo, SHOW_CPU))
    198      1.38    simonb 		defdrives -= 16;	/* XXX magic number */
    199      1.38    simonb 	if (ISSET(todo, SHOW_TTY))
    200      1.63       mrg 		defdrives -= 10;	/* XXX magic number */
    201      1.38    simonb 	defdrives /= 18;		/* XXX magic number */
    202      1.38    simonb 
    203      1.49     blymn 	drvinit(0);
    204      1.48       dsl 	cpureadstats();
    205      1.49     blymn 	drvreadstats();
    206  1.67.4.1    martin 	ndrives = selectdrives(argc, argv, 1);
    207      1.34     enami 	if (ndrives == 0) {
    208      1.49     blymn 		/* No drives are selected.  No need to show drive stats. */
    209      1.34     enami 		todo &= ~SHOW_STATS_ALL;
    210      1.34     enami 		if (todo == 0)
    211      1.34     enami 			errx(1, "no drives");
    212      1.34     enami 	}
    213       1.9   thorpej 	tv.tv_sec = interval;
    214      1.28   mycroft 	tv.tv_nsec = 0;
    215       1.1       cgd 
    216       1.9   thorpej 	/* print a new header on sigcont */
    217      1.39       mrg 	(void)signal(SIGCONT, sig_header);
    218       1.1       cgd 
    219       1.1       cgd 	for (hdrcnt = 1;;) {
    220      1.67   mlelstv 		if (ISSET(todo, SHOW_STATS_X | SHOW_STATS_Y)) {
    221      1.67   mlelstv 			lines = ndrives;
    222      1.67   mlelstv 			hdroffset = 3;
    223      1.67   mlelstv 		} else {
    224      1.67   mlelstv 			lines = 1;
    225      1.67   mlelstv 			hdroffset = 4;
    226      1.67   mlelstv 		}
    227      1.67   mlelstv 
    228      1.66       mrg 		if (do_header || (hdrcnt -= lines) <= 0) {
    229      1.39       mrg 			do_header = 0;
    230      1.39       mrg 			header();
    231      1.66       mrg 			hdrcnt = winlines - hdroffset;
    232       1.1       cgd 		}
    233       1.9   thorpej 
    234      1.45     blymn 		if (!ISSET(todo, SHOW_TOTALS)) {
    235      1.48       dsl 			cpuswap();
    236      1.49     blymn 			drvswap();
    237      1.50    simonb 			tkswap();
    238      1.45     blymn 		}
    239      1.49     blymn 
    240       1.9   thorpej 		display();
    241       1.1       cgd 
    242       1.1       cgd 		if (reps >= 0 && --reps <= 0)
    243       1.1       cgd 			break;
    244      1.28   mycroft 		nanosleep(&tv, NULL);
    245      1.48       dsl 		cpureadstats();
    246      1.49     blymn 		drvreadstats();
    247      1.67   mlelstv 
    248  1.67.4.1    martin 		ndrives = selectdrives(argc, argv, 0);
    249       1.1       cgd 	}
    250       1.1       cgd 	exit(0);
    251       1.1       cgd }
    252       1.1       cgd 
    253       1.9   thorpej static void
    254      1.39       mrg sig_header(int signo)
    255      1.39       mrg {
    256      1.39       mrg 	do_header = 1;
    257      1.39       mrg }
    258      1.39       mrg 
    259      1.39       mrg static void
    260      1.60     joerg header(void)
    261       1.1       cgd {
    262      1.53     lukem 	size_t i;
    263       1.1       cgd 
    264      1.29       mrg 					/* Main Headers. */
    265      1.29       mrg 	if (ISSET(todo, SHOW_STATS_X)) {
    266      1.29       mrg 		if (ISSET(todo, SHOW_TOTALS)) {
    267      1.31     enami 			(void)printf(
    268      1.42       dbj 			    "device  read KB/t    xfr   time     MB  ");
    269      1.42       dbj 			(void)printf(" write KB/t    xfr   time     MB\n");
    270      1.29       mrg 		} else {
    271      1.31     enami 			(void)printf(
    272      1.31     enami 			    "device  read KB/t    r/s   time     MB/s");
    273      1.29       mrg 			(void)printf(" write KB/t    w/s   time     MB/s\n");
    274      1.29       mrg 		}
    275      1.15     lukem 		return;
    276      1.29       mrg 	}
    277      1.15     lukem 
    278      1.64   mlelstv 	if (ISSET(todo, SHOW_STATS_Y)) {
    279      1.64   mlelstv 		(void)printf("device  read KB/t    r/s     MB/s write KB/t    w/s     MB/s");
    280      1.64   mlelstv 		(void)printf("   wait   actv  wsvc_t  asvc_t  wtime   time");
    281      1.64   mlelstv 		(void)printf("\n");
    282      1.64   mlelstv 		return;
    283      1.64   mlelstv 	}
    284      1.64   mlelstv 
    285       1.9   thorpej 	if (ISSET(todo, SHOW_TTY))
    286       1.9   thorpej 		(void)printf("      tty");
    287       1.9   thorpej 
    288      1.45     blymn 	if (ISSET(todo, SHOW_STATS_1)) {
    289      1.49     blymn 		for (i = 0; i < ndrive; i++)
    290      1.49     blymn 			if (cur.select[i])
    291      1.49     blymn 				(void)printf("        %9.9s ", cur.name[i]);
    292      1.45     blymn 	}
    293       1.9   thorpej 
    294      1.45     blymn 	if (ISSET(todo, SHOW_STATS_2)) {
    295      1.49     blymn 		for (i = 0; i < ndrive; i++)
    296      1.49     blymn 			if (cur.select[i])
    297      1.49     blymn 				(void)printf("        %9.9s ", cur.name[i]);
    298      1.45     blymn 	}
    299      1.49     blymn 
    300       1.9   thorpej 	if (ISSET(todo, SHOW_CPU))
    301      1.41       wiz 		(void)printf("            CPU");
    302      1.15     lukem 
    303       1.9   thorpej 	printf("\n");
    304       1.9   thorpej 
    305      1.15     lukem 					/* Sub-Headers. */
    306       1.9   thorpej 	if (ISSET(todo, SHOW_TTY))
    307      1.63       mrg 		printf(" tin  tout");
    308       1.9   thorpej 
    309      1.15     lukem 	if (ISSET(todo, SHOW_STATS_1)) {
    310      1.49     blymn 		for (i = 0; i < ndrive; i++)
    311      1.49     blymn 			if (cur.select[i]) {
    312      1.45     blymn 				if (ISSET(todo, SHOW_TOTALS))
    313      1.45     blymn 					(void)printf("  KB/t  xfr  MB   ");
    314      1.45     blymn 				else
    315      1.45     blymn 					(void)printf("  KB/t  t/s  MB/s ");
    316      1.45     blymn 			}
    317      1.15     lukem 	}
    318       1.9   thorpej 
    319      1.45     blymn 	if (ISSET(todo, SHOW_STATS_2)) {
    320      1.49     blymn 		for (i = 0; i < ndrive; i++)
    321      1.49     blymn 			if (cur.select[i])
    322      1.45     blymn 				(void)printf("    KB   xfr time ");
    323      1.45     blymn 	}
    324       1.9   thorpej 
    325       1.9   thorpej 	if (ISSET(todo, SHOW_CPU))
    326       1.9   thorpej 		(void)printf(" us ni sy in id");
    327       1.9   thorpej 	printf("\n");
    328       1.1       cgd }
    329       1.1       cgd 
    330      1.65   mlelstv static double
    331      1.65   mlelstv drive_time(double etime, int dn)
    332      1.65   mlelstv {
    333      1.65   mlelstv 	if (ISSET(todo, SHOW_TOTALS))
    334      1.65   mlelstv 		return etime;
    335      1.65   mlelstv 
    336      1.65   mlelstv 	if (cur.timestamp[dn].tv_sec || cur.timestamp[dn].tv_usec) {
    337      1.65   mlelstv 		etime = (double)cur.timestamp[dn].tv_sec +
    338      1.65   mlelstv 		    ((double)cur.timestamp[dn].tv_usec / (double)1000000);
    339      1.65   mlelstv 	}
    340      1.65   mlelstv 
    341      1.65   mlelstv 	return etime;
    342      1.65   mlelstv }
    343      1.65   mlelstv 
    344       1.9   thorpej static void
    345      1.49     blymn drive_stats(double etime)
    346      1.45     blymn {
    347      1.53     lukem 	size_t dn;
    348      1.65   mlelstv 	double atime, dtime, mbps;
    349      1.45     blymn 
    350      1.49     blymn 	for (dn = 0; dn < ndrive; ++dn) {
    351      1.49     blymn 		if (!cur.select[dn])
    352      1.45     blymn 			continue;
    353      1.65   mlelstv 
    354      1.65   mlelstv 		dtime = drive_time(etime, dn);
    355      1.65   mlelstv 
    356      1.45     blymn 					/* average Kbytes per transfer. */
    357      1.49     blymn 		if (cur.rxfer[dn] + cur.wxfer[dn])
    358      1.49     blymn 			mbps = ((cur.rbytes[dn] + cur.wbytes[dn]) /
    359      1.49     blymn 			    1024.0) / (cur.rxfer[dn] + cur.wxfer[dn]);
    360      1.45     blymn 		else
    361      1.45     blymn 			mbps = 0.0;
    362      1.57  jakllsch 		(void)printf(" %5.*f",
    363      1.59     enami 		    MAX(0, 3 - (int)floor(log10(fmax(1.0, mbps)))), mbps);
    364      1.45     blymn 
    365      1.45     blymn 					/* average transfers per second. */
    366      1.45     blymn 		(void)printf(" %4.0f",
    367      1.65   mlelstv 		    (cur.rxfer[dn] + cur.wxfer[dn]) / dtime);
    368      1.45     blymn 
    369      1.49     blymn 					/* time busy in drive activity */
    370      1.49     blymn 		atime = (double)cur.time[dn].tv_sec +
    371      1.49     blymn 		    ((double)cur.time[dn].tv_usec / (double)1000000);
    372      1.45     blymn 
    373      1.45     blymn 					/* Megabytes per second. */
    374      1.45     blymn 		if (atime != 0.0)
    375      1.49     blymn 			mbps = (cur.rbytes[dn] + cur.wbytes[dn]) /
    376      1.45     blymn 			    (double)(1024 * 1024);
    377      1.45     blymn 		else
    378      1.45     blymn 			mbps = 0;
    379      1.65   mlelstv 		mbps /= dtime;
    380      1.54  jakllsch 		(void)printf(" %5.*f ",
    381      1.59     enami 		    MAX(0, 3 - (int)floor(log10(fmax(1.0, mbps)))), mbps);
    382      1.45     blymn 	}
    383      1.45     blymn }
    384      1.45     blymn 
    385      1.45     blymn static void
    386      1.49     blymn drive_stats2(double etime)
    387      1.45     blymn {
    388      1.53     lukem 	size_t dn;
    389      1.65   mlelstv 	double atime, dtime;
    390      1.45     blymn 
    391      1.49     blymn 	for (dn = 0; dn < ndrive; ++dn) {
    392      1.49     blymn 		if (!cur.select[dn])
    393      1.45     blymn 			continue;
    394      1.45     blymn 
    395      1.65   mlelstv 		dtime = drive_time(etime, dn);
    396      1.65   mlelstv 
    397      1.45     blymn 					/* average kbytes per second. */
    398      1.45     blymn 		(void)printf(" %5.0f",
    399      1.65   mlelstv 		    (cur.rbytes[dn] + cur.wbytes[dn]) / 1024.0 / dtime);
    400      1.45     blymn 
    401      1.45     blymn 					/* average transfers per second. */
    402      1.45     blymn 		(void)printf(" %5.0f",
    403      1.65   mlelstv 		    (cur.rxfer[dn] + cur.wxfer[dn]) / dtime);
    404      1.45     blymn 
    405      1.49     blymn 					/* average time busy in drive activity */
    406      1.49     blymn 		atime = (double)cur.time[dn].tv_sec +
    407      1.49     blymn 		    ((double)cur.time[dn].tv_usec / (double)1000000);
    408      1.65   mlelstv 		(void)printf(" %4.2f ", atime / dtime);
    409      1.45     blymn 	}
    410      1.45     blymn }
    411      1.45     blymn 
    412      1.45     blymn static void
    413      1.49     blymn drive_statsx(double etime)
    414      1.45     blymn {
    415      1.53     lukem 	size_t dn;
    416      1.65   mlelstv 	double atime, dtime, kbps;
    417      1.45     blymn 
    418      1.49     blymn 	for (dn = 0; dn < ndrive; ++dn) {
    419      1.49     blymn 		if (!cur.select[dn])
    420      1.45     blymn 			continue;
    421      1.45     blymn 
    422      1.65   mlelstv 		dtime = drive_time(etime, dn);
    423      1.65   mlelstv 
    424      1.49     blymn 		(void)printf("%-8.8s", cur.name[dn]);
    425      1.45     blymn 
    426      1.45     blymn 					/* average read Kbytes per transfer */
    427      1.49     blymn 		if (cur.rxfer[dn])
    428      1.49     blymn 			kbps = (cur.rbytes[dn] / 1024.0) / cur.rxfer[dn];
    429      1.45     blymn 		else
    430      1.45     blymn 			kbps = 0.0;
    431      1.45     blymn 		(void)printf(" %8.2f", kbps);
    432      1.45     blymn 
    433      1.45     blymn 					/* average read transfers
    434      1.45     blymn 					   (per second) */
    435      1.65   mlelstv 		(void)printf(" %6.0f", cur.rxfer[dn] / dtime);
    436      1.45     blymn 
    437      1.49     blymn 					/* time read busy in drive activity */
    438      1.49     blymn 		atime = (double)cur.time[dn].tv_sec +
    439      1.49     blymn 		    ((double)cur.time[dn].tv_usec / (double)1000000);
    440      1.65   mlelstv 		(void)printf(" %6.2f", atime / dtime);
    441      1.45     blymn 
    442      1.45     blymn 					/* average read megabytes
    443      1.45     blymn 					   (per second) */
    444      1.45     blymn 		(void)printf(" %8.2f",
    445      1.65   mlelstv 		    cur.rbytes[dn] / (1024.0 * 1024) / dtime);
    446      1.45     blymn 
    447      1.45     blymn 
    448      1.45     blymn 					/* average write Kbytes per transfer */
    449      1.49     blymn 		if (cur.wxfer[dn])
    450      1.49     blymn 			kbps = (cur.wbytes[dn] / 1024.0) / cur.wxfer[dn];
    451      1.45     blymn 		else
    452      1.45     blymn 			kbps = 0.0;
    453      1.45     blymn 		(void)printf("   %8.2f", kbps);
    454      1.45     blymn 
    455      1.45     blymn 					/* average write transfers
    456      1.45     blymn 					   (per second) */
    457      1.65   mlelstv 		(void)printf(" %6.0f", cur.wxfer[dn] / dtime);
    458      1.45     blymn 
    459      1.49     blymn 					/* time write busy in drive activity */
    460      1.49     blymn 		atime = (double)cur.time[dn].tv_sec +
    461      1.49     blymn 		    ((double)cur.time[dn].tv_usec / (double)1000000);
    462      1.65   mlelstv 		(void)printf(" %6.2f", atime / dtime);
    463      1.45     blymn 
    464      1.45     blymn 					/* average write megabytes
    465      1.45     blymn 					   (per second) */
    466      1.45     blymn 		(void)printf(" %8.2f\n",
    467      1.65   mlelstv 		    cur.wbytes[dn] / (1024.0 * 1024) / dtime);
    468      1.45     blymn 	}
    469      1.45     blymn }
    470      1.45     blymn 
    471      1.45     blymn static void
    472      1.64   mlelstv drive_statsy_io(double elapsed, double count, double volume)
    473      1.64   mlelstv {
    474      1.64   mlelstv 	double kbps;
    475      1.64   mlelstv 
    476      1.64   mlelstv 	/* average Kbytes per transfer */
    477      1.64   mlelstv 	if (count)
    478      1.64   mlelstv 		kbps = (volume / 1024.0) / count;
    479      1.64   mlelstv 	else
    480      1.64   mlelstv 		kbps = 0.0;
    481      1.64   mlelstv 	(void)printf(" %8.2f", kbps);
    482      1.64   mlelstv 
    483      1.64   mlelstv 	/* average transfers (per second) */
    484      1.64   mlelstv 	(void)printf(" %6.0f", count / elapsed);
    485      1.64   mlelstv 
    486      1.64   mlelstv 	/* average megabytes (per second) */
    487      1.64   mlelstv 	(void)printf(" %8.2f", volume / (1024.0 * 1024) / elapsed);
    488      1.64   mlelstv }
    489      1.64   mlelstv 
    490      1.64   mlelstv static void
    491      1.64   mlelstv drive_statsy_q(double elapsed, double busy, double wait, double busysum, double waitsum, double count)
    492      1.64   mlelstv {
    493      1.64   mlelstv 	/* average wait queue length */
    494      1.64   mlelstv 	(void)printf(" %6.1f", waitsum / elapsed);
    495      1.64   mlelstv 
    496      1.64   mlelstv 	/* average busy queue length */
    497      1.64   mlelstv 	(void)printf(" %6.1f", busysum / elapsed);
    498      1.64   mlelstv 
    499      1.64   mlelstv 	/* average wait time */
    500      1.64   mlelstv 	(void)printf(" %7.2f", count > 0 ? waitsum / count * 1000.0 : 0.0);
    501      1.64   mlelstv 
    502      1.64   mlelstv 	/* average service time */
    503      1.64   mlelstv 	(void)printf(" %7.2f", count > 0 ? busysum / count * 1000.0 : 0.0);
    504      1.64   mlelstv 
    505      1.64   mlelstv 	/* time waiting for drive activity */
    506      1.64   mlelstv 	(void)printf(" %6.2f", wait / elapsed);
    507      1.64   mlelstv 
    508      1.64   mlelstv 	/* time busy in drive activity */
    509      1.64   mlelstv 	(void)printf(" %6.2f", busy / elapsed);
    510      1.64   mlelstv }
    511      1.64   mlelstv 
    512      1.64   mlelstv static void
    513      1.64   mlelstv drive_statsy(double etime)
    514      1.64   mlelstv {
    515      1.64   mlelstv 	size_t dn;
    516      1.65   mlelstv 	double atime, await, abusysum, awaitsum, dtime;
    517      1.64   mlelstv 
    518      1.64   mlelstv 	for (dn = 0; dn < ndrive; ++dn) {
    519      1.64   mlelstv 		if (!cur.select[dn])
    520      1.64   mlelstv 			continue;
    521      1.64   mlelstv 
    522      1.65   mlelstv 		dtime = drive_time(etime, dn);
    523      1.65   mlelstv 
    524      1.64   mlelstv 		(void)printf("%-8.8s", cur.name[dn]);
    525      1.64   mlelstv 
    526      1.64   mlelstv 		atime = (double)cur.time[dn].tv_sec +
    527      1.64   mlelstv 		    ((double)cur.time[dn].tv_usec / (double)1000000);
    528      1.64   mlelstv 		await = (double)cur.wait[dn].tv_sec +
    529      1.64   mlelstv 		    ((double)cur.wait[dn].tv_usec / (double)1000000);
    530      1.64   mlelstv 		abusysum = (double)cur.busysum[dn].tv_sec +
    531      1.64   mlelstv 		    ((double)cur.busysum[dn].tv_usec / (double)1000000);
    532      1.64   mlelstv 		awaitsum = (double)cur.waitsum[dn].tv_sec +
    533      1.64   mlelstv 		    ((double)cur.waitsum[dn].tv_usec / (double)1000000);
    534      1.64   mlelstv 
    535      1.65   mlelstv 		drive_statsy_io(dtime, cur.rxfer[dn], cur.rbytes[dn]);
    536      1.64   mlelstv 		(void)printf("  ");
    537      1.65   mlelstv 		drive_statsy_io(dtime, cur.wxfer[dn], cur.wbytes[dn]);
    538      1.65   mlelstv 		drive_statsy_q(dtime, atime, await, abusysum, awaitsum, cur.rxfer[dn]+cur.wxfer[dn]);
    539      1.64   mlelstv 
    540      1.64   mlelstv 		(void)printf("\n");
    541      1.64   mlelstv 	}
    542      1.64   mlelstv }
    543      1.64   mlelstv 
    544      1.64   mlelstv static void
    545      1.23    simonb cpustats(void)
    546       1.1       cgd {
    547      1.12     lukem 	int state;
    548      1.53     lukem 	double ttime;
    549       1.1       cgd 
    550      1.53     lukem 	ttime = 0;
    551       1.1       cgd 	for (state = 0; state < CPUSTATES; ++state)
    552      1.53     lukem 		ttime += cur.cp_time[state];
    553      1.53     lukem 	if (!ttime)
    554      1.53     lukem 		ttime = 1.0;
    555      1.15     lukem 			/* States are generally never 100% and can use %3.0f. */
    556       1.1       cgd 	for (state = 0; state < CPUSTATES; ++state)
    557      1.53     lukem 		printf(" %2.0f", 100. * cur.cp_time[state] / ttime);
    558       1.1       cgd }
    559       1.1       cgd 
    560       1.9   thorpej static void
    561      1.23    simonb usage(void)
    562       1.1       cgd {
    563      1.13       mrg 
    564      1.64   mlelstv 	(void)fprintf(stderr, "usage: iostat [-CdDITxy] [-c count] "
    565      1.61     joerg 	    "[-w wait] [drives]\n");
    566       1.1       cgd 	exit(1);
    567       1.9   thorpej }
    568       1.9   thorpej 
    569       1.9   thorpej static void
    570      1.23    simonb display(void)
    571       1.9   thorpej {
    572       1.9   thorpej 	double	etime;
    573       1.9   thorpej 
    574       1.9   thorpej 	/* Sum up the elapsed ticks. */
    575      1.27  sommerfe 	etime = cur.cp_etime;
    576       1.9   thorpej 
    577      1.34     enami 	/*
    578      1.34     enami 	 * If we're showing totals only, then don't divide by the
    579       1.9   thorpej 	 * system time.
    580       1.9   thorpej 	 */
    581       1.9   thorpej 	if (ISSET(todo, SHOW_TOTALS))
    582       1.9   thorpej 		etime = 1.0;
    583       1.9   thorpej 
    584      1.34     enami 	if (ISSET(todo, SHOW_STATS_X)) {
    585      1.49     blymn 		drive_statsx(etime);
    586      1.34     enami 		goto out;
    587      1.34     enami 	}
    588      1.34     enami 
    589      1.64   mlelstv 	if (ISSET(todo, SHOW_STATS_Y)) {
    590      1.64   mlelstv 		drive_statsy(etime);
    591      1.64   mlelstv 		goto out;
    592      1.64   mlelstv 	}
    593      1.64   mlelstv 
    594       1.9   thorpej 	if (ISSET(todo, SHOW_TTY))
    595      1.63       mrg 		printf("%4.0f %5.0f", cur.tk_nin / etime, cur.tk_nout / etime);
    596      1.27  sommerfe 
    597      1.45     blymn 	if (ISSET(todo, SHOW_STATS_1)) {
    598      1.49     blymn 		drive_stats(etime);
    599      1.45     blymn 	}
    600      1.49     blymn 
    601       1.9   thorpej 
    602      1.45     blymn 	if (ISSET(todo, SHOW_STATS_2)) {
    603      1.49     blymn 		drive_stats2(etime);
    604      1.45     blymn 	}
    605      1.49     blymn 
    606      1.15     lukem 
    607       1.9   thorpej 	if (ISSET(todo, SHOW_CPU))
    608       1.9   thorpej 		cpustats();
    609       1.9   thorpej 
    610      1.34     enami 	(void)printf("\n");
    611      1.34     enami 
    612      1.34     enami out:
    613       1.9   thorpej 	(void)fflush(stdout);
    614       1.9   thorpej }
    615       1.9   thorpej 
    616      1.34     enami static int
    617  1.67.4.1    martin selectdrives(int argc, char *argv[], int first)
    618       1.9   thorpej {
    619      1.34     enami 	int	i, maxdrives, ndrives, tried;
    620       1.9   thorpej 
    621       1.9   thorpej 	/*
    622       1.9   thorpej 	 * Choose drives to be displayed.  Priority goes to (in order) drives
    623       1.9   thorpej 	 * supplied as arguments and default drives.  If everything isn't
    624       1.9   thorpej 	 * filled in and there are drives not taken care of, display the first
    625       1.9   thorpej 	 * few that fit.
    626       1.9   thorpej 	 *
    627       1.9   thorpej 	 * The backward compatibility #ifdefs permit the syntax:
    628       1.9   thorpej 	 *	iostat [ drives ] [ interval [ count ] ]
    629       1.9   thorpej 	 */
    630      1.19      tron 
    631       1.9   thorpej #define	BACKWARD_COMPATIBILITY
    632      1.34     enami 	for (tried = ndrives = 0; *argv; ++argv) {
    633      1.34     enami #ifdef BACKWARD_COMPATIBILITY
    634      1.43       dsl 		if (isdigit((unsigned char)**argv))
    635       1.9   thorpej 			break;
    636       1.9   thorpej #endif
    637      1.34     enami 		tried++;
    638      1.53     lukem 		for (i = 0; i < (int)ndrive; i++) {
    639      1.62       mrg 			if (fnmatch(*argv, cur.name[i], 0))
    640      1.33  christos 				continue;
    641      1.49     blymn 			cur.select[i] = 1;
    642      1.45     blymn 			++ndrives;
    643      1.45     blymn 		}
    644      1.49     blymn 
    645       1.9   thorpej 	}
    646      1.34     enami 
    647      1.34     enami 	if (ndrives == 0 && tried == 0) {
    648      1.34     enami 		/*
    649      1.38    simonb 		 * Pick up to defdrives (or all if -x is given) drives
    650      1.34     enami 		 * if none specified.
    651      1.34     enami 		 */
    652      1.64   mlelstv 		maxdrives = (ISSET(todo, SHOW_STATS_X | SHOW_STATS_Y) ||
    653      1.53     lukem 			     (int)ndrive < defdrives)
    654      1.53     lukem 			? (int)(ndrive) : defdrives;
    655      1.34     enami 		for (i = 0; i < maxdrives; i++) {
    656      1.49     blymn 			cur.select[i] = 1;
    657      1.49     blymn 
    658      1.34     enami 			++ndrives;
    659      1.64   mlelstv 			if (!ISSET(todo, SHOW_STATS_X | SHOW_STATS_Y) &&
    660      1.64   mlelstv 			    ndrives == defdrives)
    661      1.34     enami 				break;
    662      1.34     enami 		}
    663      1.34     enami 	}
    664      1.34     enami 
    665      1.34     enami #ifdef BACKWARD_COMPATIBILITY
    666  1.67.4.1    martin 	if (first && *argv) {
    667       1.9   thorpej 		interval = atoi(*argv);
    668       1.9   thorpej 		if (*++argv)
    669       1.9   thorpej 			reps = atoi(*argv);
    670       1.9   thorpej 	}
    671       1.9   thorpej #endif
    672       1.9   thorpej 
    673       1.9   thorpej 	if (interval) {
    674       1.9   thorpej 		if (!reps)
    675       1.9   thorpej 			reps = -1;
    676       1.9   thorpej 	} else
    677       1.9   thorpej 		if (reps)
    678       1.9   thorpej 			interval = 1;
    679       1.9   thorpej 
    680      1.34     enami 	return (ndrives);
    681       1.1       cgd }
    682