/*- * Copyright (c) 1980, 1991 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifndef lint char copyright[] = "@(#) Copyright (c) 1980, 1991 The Regents of the University of California.\n\ All rights reserved.\n"; #endif /* not lint */ #ifndef lint static char sccsid[] = "@(#)w.c 5.29 (Berkeley) 4/23/91"; #endif /* not lint */ /* * w - print system status (who and what) * * This program is similar to the systat command on Tenex/Tops 10/20 * */ #include #define _SYS_TYPES_H #define _SIGNAL_H #define _TIME_H #define _SYS_RESOURCE_H #define _SYS_TIME_H #define _TERMIOS_H #include #include /*#include */ #include #include #include #include #include #ifdef hack #define gid_t unsigned char #define nlink_t unsigned char #define ino_t unsigned short #endif #include /* #include */ /* #include */ #define _PATH_DEV "/dev/" #include #include #undef free #define proc task_struct #ifndef UT_NAMESIZE #define UT_NAMESIZE 8 #define UT_LINESIZE 12 #define UT_HOSTSIZE 16 #endif #ifndef _PATH_UTMP #define _PATH_UTMP UTMP_FILE #endif char *program; int ttywidth; /* width of tty */ int argwidth; /* width of tty */ int header = 1; /* true if -h flag: don't print heading */ int wcmd = 1; /* true if this is w(1), and not uptime(1) */ int nusers; /* number of users logged in now */ char * sel_user; /* login of particular user selected */ time_t now; /* the current time of day */ struct timeval boottime; time_t uptime; /* time of last reboot & elapsed time since */ struct utmp utmp; struct winsize ws; int sortidle; /* sort bu idle time */ int show_env = 0; int kern_comm = 0; /* * One of these per active utmp entry. */ struct entry { struct entry *next; struct utmp utmp; dev_t tdev; /* dev_t of terminal */ int idle; /* idle time of terminal in minutes */ int jcpu; /* joint cpu time */ int pcpu; /* process cpu time */ struct proc *proc; /* list of procs in foreground */ char *args; /* arg list of interesting process */ } *ep, *ehead = NULL, **nextp = &ehead; #define USAGE "[ -hi ] [ user ]" #define usage() fprintf(stderr, "usage: %s: %s\n", program, USAGE) main(argc, argv) int argc; char **argv; { register int i; struct winsize win; register struct proc *p; struct tty_struct *e; struct stat *stp, *ttystat(); FILE *ut; char *cp; int ch; extern char *optarg; extern int optind; char *attime(); program = argv[0]; /* * are we w(1) or uptime(1) */ if ((cp = strrchr(program, '/')) || *(cp = program) == '-') cp++; if (*cp == 'u') wcmd = 0; while ((ch = getopt(argc, argv, "hiflsuw")) != EOF) switch((char)ch) { case 'h': header = 0; break; case 'i': sortidle++; break; case 'f': case 'l': case 's': case 'u': case 'w': error("[-flsuw] no longer supported"); usage(); exit(1); case '?': default: usage(); exit(1); } argc -= optind; argv += optind; if (*argv) sel_user = *argv; if (open_psdb()) { error("cannot open psdatabase"); exit(1); } time(&now); ut = fopen(_PATH_UTMP, "r"); while (fread(&utmp, sizeof(utmp), 1, ut)) { if (utmp.ut_type != USER_PROCESS || utmp.ut_name[0] == '\0') continue; nusers++; if (wcmd == 0 || (sel_user && strncmp(utmp.ut_name, sel_user, UT_NAMESIZE) != 0)) continue; if ((ep = (struct entry *) calloc(1, sizeof (struct entry))) == NULL) { error("out of memory"); exit(1); } #ifndef SORTED_UTMP /* Linux utmp is not sorted */ for (nextp = &ehead; *nextp; nextp = &(**nextp).next) if (strncmp(utmp.ut_line, (**nextp).utmp.ut_line, 8) < 0) break; ep->next = *nextp; *nextp = ep; #else *nextp = ep; nextp = &(ep->next); #endif memcpy(&(ep->utmp), &utmp, sizeof (struct utmp)); stp = ttystat(ep->utmp.ut_line); ep->tdev = stp->st_rdev; ep->idle = ((now - stp->st_atime) + 30) / 60; /* secs->mins */ if (ep->idle < 0) ep->idle = 0; } fclose(ut); if (header || wcmd == 0) { double avenrun[3] = {0,0,0}; int days, hrs, mins; /* * Print time of day */ putchar(' '); fputs(attime(&now), stdout); /* * Print how long system has been up. * (Found by looking for "boottime" in kernel) */ boottime.tv_sec = get_kword(k_addr("_startup_time")); uptime = now - boottime.tv_sec; uptime += 30; days = uptime / (60*60*24); uptime %= (60*60*24); hrs = uptime / (60*60); uptime %= (60*60); mins = uptime / 60; printf(" up"); if (days > 0) printf(" %d day%s,", days, days>1?"s":""); if (hrs > 0 && mins > 0) { printf(" %2d:%02d,", hrs, mins); } else { if (hrs > 0) printf(" %d hr%s,", hrs, hrs>1?"s":""); if (mins > 0) printf(" %d min%s,", mins, mins>1?"s":""); } /* Print number of users logged in to system */ printf(" %d user%s", nusers, nusers>1?"s":""); /* * Print 1, 5, and 15 minute load averages. */ printf(", load average:"); (void)getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0])); for (i = 0; i < (sizeof(avenrun)/sizeof(avenrun[0])); i++) { if (i > 0) printf(","); printf(" %.2f", avenrun[i]); } printf("\n"); if (wcmd == 0) /* if uptime(1) then done */ exit(0); #ifdef NEWFMT #define HEADER "USER TTY FROM LOGIN@ IDLE WHAT\n" #else #define HEADER "User tty login@ idle JCPU PCPU what\n" #endif #define WUSED (sizeof (HEADER) - sizeof ("WHAT\n")) printf(HEADER); } while ((p = kvm_nextproc()) != NULL) { long tpgid; struct tty_struct *tt; if (p->state == TASK_ZOMBIE || p->tty == -1) { free(p); continue; } for (ep = ehead; ep != NULL; ep = ep->next) { if ((ep->tdev & 0xff) == p->tty) { ep->jcpu += p->utime + p->stime + p->cutime + p->cstime; tt = (struct tty_struct *) k_addr("_tty_table"); tt += (p->tty & 0xff); if ((p->tty & 0xff) < 64) --tt; kmemread(&tpgid, &tt->pgrp, 4); if (p->pgrp == tpgid) { /* * Proc is in foreground of this terminal */ if (proc_compare(ep->proc, p)) { if (ep->proc) free(ep->proc); ep->proc = p; ep->pcpu = p->utime + p->stime; } break; } } } } if ((ioctl(1, TIOCGWINSZ, &ws) == -1 && ioctl(2, TIOCGWINSZ, &ws) == -1 && ioctl(0, TIOCGWINSZ, &ws) == -1) || ws.ws_col == 0) ttywidth = 79; else ttywidth = ws.ws_col - 1; argwidth = ttywidth - WUSED; if (argwidth < 4) argwidth = 8; for (ep = ehead; ep != NULL; ep = ep->next) { ep->args = strdup(cmd_args(ep->proc)); if (ep->args == NULL) { error("out of memory"); exit(1); } } /* sort by idle time */ if (sortidle && ehead != NULL) { struct entry *from = ehead, *save; ehead = NULL; while (from != NULL) { for (nextp = &ehead; (*nextp) && from->idle >= (*nextp)->idle; nextp = &(*nextp)->next) ; save = from; from = from->next; save->next = *nextp; *nextp = save; } } for (ep = ehead; ep != NULL; ep = ep->next) { #ifdef NEWFMT printf("%-*.*s %-2.2s %-*.*s %s", UT_NAMESIZE, UT_NAMESIZE, ep->utmp.ut_name, strncmp(ep->utmp.ut_line, "tty", 3) == 0 ? ep->utmp.ut_line+3 : ep->utmp.ut_line, UT_HOSTSIZE, UT_HOSTSIZE, *ep->utmp.ut_host ? ep->utmp.ut_host : "-", attime(&ep->utmp.ut_time)); if (ep->idle >= 36 * 60) printf(" %ddays ", (ep->idle + 12 * 60) / (24 * 60)); else prttime(ep->idle, " "); #else printf("%-8.8s %-8.8s %s", ep->utmp.ut_name, ep->utmp.ut_line, attime(&ep->utmp.ut_time)); if (ep->idle >= 36 * 60) printf("%2ddays ", (ep->idle + 12 * 60) / (24 * 60)); else prttime(ep->idle, " "); prttime(ep->jcpu / HZ, " "); prttime(ep->pcpu / HZ, " "); #endif printf("%.*s\n", argwidth, ep->args); } exit(0); } struct stat * ttystat(line) { static struct stat statbuf; char ttybuf[sizeof (_PATH_DEV) + UT_LINESIZE + 1]; sprintf(ttybuf, "%s/%.*s", _PATH_DEV, UT_LINESIZE, line); (void) stat(ttybuf, &statbuf); return (&statbuf); } /* * prttime prints a time in hours and minutes or minutes and seconds. * The character string tail is printed at the end, obvious * strings to pass are "", " ", or "am". */ prttime(tim, tail) time_t tim; char *tail; { if (tim >= 60) { printf("%3d:", tim/60); tim %= 60; printf("%02d", tim); } else if (tim > 0) printf(" %2d", tim); else printf(" "); printf("%s", tail); } #include error(va_alist) va_dcl { char *fmt; va_list ap; fprintf(stderr, "%s: ", program); va_start(ap); fmt = va_arg(ap, char *); (void) vfprintf(stderr, fmt, ap); va_end(ap); fprintf(stderr, "\n"); }