122534Smckusick /* 222534Smckusick * Copyright (c) 1980 Regents of the University of California. 322534Smckusick * All rights reserved. The Berkeley software License Agreement 422534Smckusick * specifies the terms and conditions for redistribution. 522534Smckusick */ 622534Smckusick 722534Smckusick #ifndef lint 822534Smckusick char copyright[] = 922534Smckusick "@(#) Copyright (c) 1980 Regents of the University of California.\n\ 1022534Smckusick All rights reserved.\n"; 1122534Smckusick #endif not lint 1222534Smckusick 1322534Smckusick #ifndef lint 14*23748Sedward static char sccsid[] = "@(#)sysline.c 5.2 (Berkeley) 06/24/85"; 1522534Smckusick #endif not lint 1622534Smckusick 1722534Smckusick /* 1822534Smckusick * sysline - system status display on 25th line of terminal 1922534Smckusick * j.k.foderaro 2022534Smckusick * 2122534Smckusick * Prints a variety of information on the special status line of terminals 2222534Smckusick * that have a status display capability. Cursor motions, status commands, 2322534Smckusick * etc. are gleamed from /etc/termcap. 2422534Smckusick * By default, all information is printed, and flags are given on the command 2522534Smckusick * line to disable the printing of information. The information and 2622534Smckusick * disabling flags are: 2722534Smckusick * 2822534Smckusick * flag what 2922534Smckusick * ----- ---- 3022534Smckusick * time of day 3122534Smckusick * load average and change in load average in the last 5 mins 3222534Smckusick * number of user logged on 3322534Smckusick * -p # of processes the users owns which are runnable and the 3422534Smckusick * number which are suspended. Processes whose parent is 1 3522534Smckusick * are not counted. 3622534Smckusick * -l users who've logged on and off. 3722534Smckusick * -m summarize new mail which has arrived 3822534Smckusick * 3922534Smckusick * <other flags> 4022534Smckusick * -r use non reverse video 4122534Smckusick * -c turn off 25th line for 5 seconds before redisplaying. 4222534Smckusick * -b beep once one the half hour, twice on the hour 4322534Smckusick * +N refresh display every N seconds. 4422534Smckusick * -i print pid first thing 4522534Smckusick * -e do simple print designed for an emacs buffer line 4622534Smckusick * -w do the right things for a window 4722534Smckusick * -h print hostname between time and load average 4822534Smckusick * -D print day/date before time of day 4922534Smckusick * -d debug mode - print status line data in human readable format 5022534Smckusick * -q quiet mode - don't output diagnostic messages 5122534Smckusick * -s print Short (left-justified) line if escapes not allowed 5222534Smckusick * -j Print left Justified line regardless 5322534Smckusick */ 5422534Smckusick 5522534Smckusick #define BSD4_2 /* for 4.2 BSD */ 5622534Smckusick #define WHO /* turn this on always */ 5722534Smckusick #define HOSTNAME /* 4.1a or greater, with hostname() */ 5822534Smckusick #define RWHO /* 4.1a or greater, with rwho */ 5922534Smckusick #define VMUNIX /* turn this on if you are running on vmunix */ 6022534Smckusick #define NEW_BOOTTIME /* 4.1c or greater */ 6122534Smckusick 6222534Smckusick #define NETPREFIX "ucb" 6322534Smckusick #define DEFDELAY 60 /* update status once per minute */ 6422534Smckusick #define MAILDIR "/usr/spool/mail" 6522534Smckusick /* 6622534Smckusick * if MAXLOAD is defined, then if the load average exceeded MAXLOAD 6722534Smckusick * then the process table will not be scanned and the log in/out data 6822534Smckusick * will not be checked. The purpose of this is to reduced the load 6922534Smckusick * on the system when it is loaded. 7022534Smckusick */ 7122534Smckusick #define MAXLOAD 6.0 7222534Smckusick 7322534Smckusick #include <stdio.h> 7422534Smckusick #include <sys/param.h> 7522534Smckusick #include <sys/signal.h> 7622534Smckusick #include <utmp.h> 7722534Smckusick #include <ctype.h> 7822534Smckusick #ifndef BSD4_2 7922534Smckusick #include <unctrl.h> 8022534Smckusick #endif 8122534Smckusick #include <sys/time.h> 8222534Smckusick #include <sys/stat.h> 8322534Smckusick #ifdef VMUNIX 8422534Smckusick #include <nlist.h> 8522534Smckusick #include <sys/vtimes.h> 8622534Smckusick #include <sys/proc.h> 8722534Smckusick #endif 8822534Smckusick #ifdef pdp11 8922534Smckusick #include <a.out.h> 9022534Smckusick #include <sys/proc.h> 9122534Smckusick #endif 9222534Smckusick #include <curses.h> 9322534Smckusick #undef nl 9422534Smckusick #ifdef TERMINFO 9522534Smckusick #include <term.h> 9622534Smckusick #endif TERMINFO 9722534Smckusick 9822534Smckusick #ifdef RWHO 9922534Smckusick #define DOWN_THRESHOLD (11 * 60) 10022534Smckusick #define RWHOLEADER "/usr/spool/rwho/whod." 10122534Smckusick 10222534Smckusick struct whod { 10322534Smckusick char wd_vers; 10422534Smckusick char wd_type; 10522534Smckusick char wd_fill[2]; 10622534Smckusick int wd_sendtime; 10722534Smckusick int wd_recvtime; 10822534Smckusick char wd_hostname[32]; 10922534Smckusick int wd_loadav[3]; 11022534Smckusick int wd_boottime; 11122534Smckusick }; 11222534Smckusick 11322534Smckusick struct remotehost { 11422534Smckusick char *rh_host; 11522534Smckusick int rh_file; 11622534Smckusick } remotehost[10]; 11722534Smckusick int nremotes = 0; 11822534Smckusick #endif RWHO 11922534Smckusick 12022534Smckusick struct nlist nl[] = { 12122534Smckusick #ifdef NEW_BOOTTIME 12222534Smckusick { "_boottime" }, /* After 4.1a the label changed to "boottime" */ 12322534Smckusick #else 12422534Smckusick { "_bootime" }, /* Under 4.1a and earlier it is "bootime" */ 12522534Smckusick #endif 12622534Smckusick #define NL_BOOT 0 12722534Smckusick { "_proc" }, 12822534Smckusick #define NL_PROC 1 12922534Smckusick { "_avenrun" }, 13022534Smckusick #define NL_AVEN 2 13122534Smckusick #ifdef VMUNIX 13222534Smckusick { "_nproc" }, 13322534Smckusick #define NL_NPROC 3 13422534Smckusick #endif 13522534Smckusick 0 13622534Smckusick }; 13722534Smckusick 13822534Smckusick /* stuff for the kernel */ 13922534Smckusick int kmem; /* file descriptor for /dev/kmem */ 14022534Smckusick struct proc *proc, *procNPROC; 14122534Smckusick int nproc; 14222534Smckusick int procadr; 14322534Smckusick double avenrun[3]; /* used for storing load averages */ 14422534Smckusick 14522534Smckusick /* 14622534Smckusick * In order to determine how many people are logged on and who has 14722534Smckusick * logged in or out, we read in the /etc/utmp file. We also keep track of 14822534Smckusick * the previous utmp file. 14922534Smckusick */ 150*23748Sedward int ut = -1; /* the file descriptor */ 15122534Smckusick struct utmp *new, *old; 15222534Smckusick char *status; /* per tty status bits, see below */ 15322534Smckusick int nentries; /* number of utmp entries */ 15422534Smckusick /* string lengths for printing */ 15522534Smckusick #define LINESIZE (sizeof old->ut_line) 15622534Smckusick #define NAMESIZE (sizeof old->ut_name) 15722534Smckusick /* 15822534Smckusick * Status codes to say what has happened to a particular entry in utmp. 15922534Smckusick * NOCH means no change, ON means new person logged on, 16022534Smckusick * OFF means person logged off. 16122534Smckusick */ 16222534Smckusick #define NOCH 0 16322534Smckusick #define ON 0x1 16422534Smckusick #define OFF 0x2 16522534Smckusick 16622534Smckusick #ifdef WHO 16722534Smckusick char whofilename[100]; 16822534Smckusick char whofilename2[100]; 16922534Smckusick #endif 17022534Smckusick 17122534Smckusick #ifdef HOSTNAME 17222534Smckusick char hostname[33]; /* one more for null termination */ 17322534Smckusick #endif 17422534Smckusick 17522534Smckusick char lockfilename[100]; /* if exists, will prevent us from running */ 17622534Smckusick 17722534Smckusick /* flags which determine which info is printed */ 17822534Smckusick int mailcheck = 1; /* m - do biff like checking of mail */ 17922534Smckusick int proccheck = 1; /* p - give information on processes */ 18022534Smckusick int logcheck = 1; /* l - tell who logs in and out */ 18122534Smckusick int hostprint = 0; /* h - print out hostname */ 18222534Smckusick int dateprint = 0; /* h - print out day/date */ 18322534Smckusick int quiet = 0; /* q - hush diagnostic messages */ 18422534Smckusick 18522534Smckusick /* flags which determine how things are printed */ 18622534Smckusick int clr_bet_ref = 0; /* c - clear line between refeshes */ 18722534Smckusick int reverse = 1; /* r - use reverse video */ 18822534Smckusick int shortline = 0; /* s - short (left-justified) if escapes not allowed */ 18922534Smckusick int leftline = 0; /* j - left-justified even if escapes allowed */ 19022534Smckusick 19122534Smckusick /* flags which have terminal do random things */ 19222534Smckusick int beep = 0; /* b - beep every half hour and twice every hour */ 19322534Smckusick int printid = 0; /* i - print pid of this process at startup */ 19422534Smckusick int synch = 1; /* synchronize with clock */ 19522534Smckusick 19622534Smckusick /* select output device (status display or straight output) */ 19722534Smckusick int emacs = 0; /* e - assume status display */ 19822534Smckusick int window = 0; /* w - window mode */ 19922534Smckusick int dbug = 0; /* d - debug */ 20022534Smckusick 20122534Smckusick /* 20222534Smckusick * used to turn off reverse video every REVOFF times 20322534Smckusick * in an attempt to not wear out the phospher. 20422534Smckusick */ 20522534Smckusick #define REVOFF 5 20622534Smckusick int revtime = 1; 20722534Smckusick 20822534Smckusick /* used by mail checker */ 20922534Smckusick off_t mailsize = 0; 21022534Smckusick off_t linebeg = 0; /* place where we last left off reading */ 21122534Smckusick 21222534Smckusick /* things used by the string routines */ 21322534Smckusick int chars; /* number of printable characters */ 21422534Smckusick char *sp; 21522534Smckusick char strarr[512]; /* big enough now? */ 21622534Smckusick /* flags to stringdump() */ 21722534Smckusick char sawmail; /* remember mail was seen to print bells */ 21822534Smckusick char mustclear; /* status line messed up */ 21922534Smckusick 22022534Smckusick /* strings which control status line display */ 22122534Smckusick #ifdef TERMINFO 22222534Smckusick char *rev_out, *rev_end, *arrows; 22322534Smckusick char *tparm(); 22422534Smckusick #else 22522534Smckusick char to_status_line[64]; 22622534Smckusick char from_status_line[64]; 22722534Smckusick char dis_status_line[64]; 22822534Smckusick char clr_eol[64]; 22922534Smckusick char rev_out[20], rev_end[20]; 23022534Smckusick char *arrows, *bell = "\007"; 23122534Smckusick int eslok; /* escapes on status line okay (reverse, cursor addressing) */ 23222534Smckusick int columns; 23322534Smckusick #define tparm(cap, parm) tgoto((cap), 0, (parm)) 23422534Smckusick char *tgoto(); 23522534Smckusick #endif 23622534Smckusick 23722534Smckusick /* to deal with window size changes */ 23822534Smckusick #ifdef SIGWINCH 23922534Smckusick int sigwinch(); 24022534Smckusick char winchanged; /* window size has changed since last update */ 24122534Smckusick #endif 24222534Smckusick 24322534Smckusick /* random globals */ 24422534Smckusick char *username; 24522534Smckusick char *ourtty; /* keep track of what tty we're on */ 24622534Smckusick struct stat stbuf, mstbuf; /* mstbuf for mail check only */ 24722534Smckusick unsigned delay = DEFDELAY; 24822534Smckusick short uid; 24922534Smckusick double loadavg = 0.0; /* current load average */ 25022534Smckusick int users = 0; 25122534Smckusick 25222534Smckusick char *getenv(); 25322534Smckusick char *ttyname(); 25422534Smckusick char *strcpy1(); 25522534Smckusick char *sysrup(); 25622534Smckusick char *calloc(); 25722534Smckusick char *malloc(); 25822534Smckusick int outc(); 25922534Smckusick int erroutc(); 26022534Smckusick 26122534Smckusick main(argc,argv) 26222534Smckusick register char **argv; 26322534Smckusick { 26422534Smckusick int clearbotl(); 26522534Smckusick register char *cp; 26622534Smckusick char *home; 26722534Smckusick extern char _sobuf[]; 26822534Smckusick 26922534Smckusick setbuf(stdout, _sobuf); 27022534Smckusick 27122534Smckusick #ifdef HOSTNAME 27222534Smckusick gethostname(hostname, sizeof hostname - 1); 27322534Smckusick #endif 27422534Smckusick 27522534Smckusick for (argv++; *argv != 0; argv++) 27622534Smckusick switch (**argv) { 27722534Smckusick case '-': 27822534Smckusick for (cp = *argv + 1; *cp; cp++) { 27922534Smckusick switch(*cp) { 28022534Smckusick case 'r' : /* turn off reverse video */ 28122534Smckusick reverse = 0; 28222534Smckusick break; 28322534Smckusick case 'c': 28422534Smckusick clr_bet_ref = 1; 28522534Smckusick break; 28622534Smckusick case 'h': 28722534Smckusick hostprint = 1; 28822534Smckusick break; 28922534Smckusick case 'D': 29022534Smckusick dateprint = 1; 29122534Smckusick break; 29222534Smckusick #ifdef RWHO 29322534Smckusick case 'H': 29422534Smckusick if (argv[1] == 0) 29522534Smckusick break; 29622534Smckusick argv++; 29722534Smckusick if (strcmp(hostname, *argv) && 29822534Smckusick strcmp(&hostname[sizeof NETPREFIX - 1], *argv)) 29922534Smckusick remotehost[nremotes++].rh_host = *argv; 30022534Smckusick break; 30122534Smckusick #endif RWHO 30222534Smckusick case 'm': 30322534Smckusick mailcheck = 0; 30422534Smckusick break; 30522534Smckusick case 'p': 30622534Smckusick proccheck = 0; 30722534Smckusick break; 30822534Smckusick case 'l': 30922534Smckusick logcheck = 0; 31022534Smckusick break; 31122534Smckusick case 'b': 31222534Smckusick beep = 1; 31322534Smckusick break; 31422534Smckusick case 'i': 31522534Smckusick printid = 1; 31622534Smckusick break; 31722534Smckusick case 'w': 31822534Smckusick window = 1; 31922534Smckusick break; 32022534Smckusick case 'e': 32122534Smckusick emacs = 1; 32222534Smckusick break; 32322534Smckusick case 'd': 32422534Smckusick dbug = 1; 32522534Smckusick break; 32622534Smckusick case 'q': 32722534Smckusick quiet = 1; 32822534Smckusick break; 32922534Smckusick case 's': 33022534Smckusick shortline = 1; 33122534Smckusick break; 33222534Smckusick case 'j': 33322534Smckusick leftline = 1; 33422534Smckusick break; 33522534Smckusick default: 33622534Smckusick fprintf(stderr, 33722534Smckusick "sysline: bad flag: %c\n", *cp); 33822534Smckusick } 33922534Smckusick } 34022534Smckusick break; 34122534Smckusick case '+': 34222534Smckusick delay = atoi(*argv + 1); 34322534Smckusick if (delay < 10) 34422534Smckusick delay = 10; 34522534Smckusick else if (delay > 500) 34622534Smckusick delay = 500; 34722534Smckusick synch = 0; /* no more sync */ 34822534Smckusick break; 34922534Smckusick default: 35022534Smckusick fprintf(stderr, "sysline: illegal argument %s\n", 35122534Smckusick argv[0]); 35222534Smckusick } 35322534Smckusick if (emacs) { 35422534Smckusick reverse = 0; 35522534Smckusick columns = 79; 35622534Smckusick } else /* if not to emacs window, initialize terminal dependent info */ 35722534Smckusick initterm(); 35822534Smckusick #ifdef SIGWINCH 35922534Smckusick /* 36022534Smckusick * When the window size changes and we are the foreground 36122534Smckusick * process (true if -w), we get this signal. 36222534Smckusick */ 36322534Smckusick signal(SIGWINCH, sigwinch); 36422534Smckusick #endif 36522534Smckusick getwinsize(); /* get window size from ioctl */ 36622534Smckusick 36722534Smckusick /* immediately fork and let the parent die if not emacs mode */ 36822534Smckusick if (!emacs && !window && !dbug) { 36922534Smckusick if (fork()) 37022534Smckusick exit(0); 37122534Smckusick /* pgrp should take care of things, but ignore them anyway */ 37222534Smckusick signal(SIGINT, SIG_IGN); 37322534Smckusick signal(SIGQUIT, SIG_IGN); 37422534Smckusick #ifdef VMUNIX 37522534Smckusick signal(SIGTTOU, SIG_IGN); 37622534Smckusick #endif 37722534Smckusick } 37822534Smckusick /* 37922534Smckusick * When we logoff, init will do a "vhangup()" on this 38022534Smckusick * tty which turns off I/O access and sends a SIGHUP 38122534Smckusick * signal. We catch this and thereby clear the status 38222534Smckusick * display. Note that a bug in 4.1bsd caused the SIGHUP 38322534Smckusick * signal to be sent to the wrong process, so you had to 38422534Smckusick * `kill -HUP' yourself in your .logout file. 38522534Smckusick * Do the same thing for SIGTERM, which is the default kill 38622534Smckusick * signal. 38722534Smckusick */ 38822534Smckusick signal(SIGHUP, clearbotl); 38922534Smckusick signal(SIGTERM, clearbotl); 39022534Smckusick /* 39122534Smckusick * This is so kill -ALRM to force update won't screw us up.. 39222534Smckusick */ 39322534Smckusick signal(SIGALRM, SIG_IGN); 39422534Smckusick 39522534Smckusick uid = getuid(); 39622534Smckusick ourtty = ttyname(2); /* remember what tty we are on */ 39722534Smckusick if (printid) { 39822534Smckusick printf("%d\n", getpid()); 39922534Smckusick fflush(stdout); 40022534Smckusick } 40122534Smckusick dup2(2, 1); 40222534Smckusick 40322534Smckusick if ((home = getenv("HOME")) == 0) 40422534Smckusick home = ""; 40522534Smckusick strcpy1(strcpy1(whofilename, home), "/.who"); 40622534Smckusick strcpy1(strcpy1(whofilename2, home), "/.sysline"); 40722534Smckusick strcpy1(strcpy1(lockfilename, home), "/.syslinelock"); 40822534Smckusick 40922534Smckusick if ((kmem = open("/dev/kmem",0)) < 0) { 41022534Smckusick fprintf(stderr, "Can't open kmem.\n"); 41122534Smckusick exit(1); 41222534Smckusick } 41322534Smckusick readnamelist(); 41422534Smckusick if (proccheck) 41522534Smckusick initprocread(); 41622534Smckusick if (mailcheck) 41722534Smckusick if ((username = getenv("USER")) == 0) 41822534Smckusick mailcheck = 0; 41922534Smckusick else { 42022534Smckusick chdir(MAILDIR); 42122534Smckusick if (stat(username, &mstbuf) >= 0) 42222534Smckusick mailsize = mstbuf.st_size; 42322534Smckusick else 42422534Smckusick mailsize = 0; 42522534Smckusick } 42622534Smckusick 42722534Smckusick while (emacs || window || isloggedin()) 42822534Smckusick if (access(lockfilename, 0) >= 0) 42922534Smckusick sleep(60); 43022534Smckusick else { 43122534Smckusick prtinfo(); 43222534Smckusick sleep(delay); 43322534Smckusick if (clr_bet_ref) { 43422534Smckusick tputs(dis_status_line, 1, outc); 43522534Smckusick fflush(stdout); 43622534Smckusick sleep(5); 43722534Smckusick } 43822534Smckusick revtime = (1 + revtime) % REVOFF; 43922534Smckusick } 44022534Smckusick clearbotl(); 44122534Smckusick /*NOTREACHED*/ 44222534Smckusick } 44322534Smckusick 44422534Smckusick isloggedin() 44522534Smckusick { 44622534Smckusick /* 44722534Smckusick * you can tell if a person has logged out if the owner of 44822534Smckusick * the tty has changed 44922534Smckusick */ 45022534Smckusick struct stat statbuf; 45122534Smckusick 45222534Smckusick return fstat(2, &statbuf) == 0 && statbuf.st_uid == uid; 45322534Smckusick } 45422534Smckusick 45522534Smckusick readnamelist() 45622534Smckusick { 45722534Smckusick time_t bootime, clock, nintv, time(); 45822534Smckusick 45922534Smckusick #ifdef pdp11 46022534Smckusick nlist("/unix", nl); 46122534Smckusick #else 46222534Smckusick nlist("/vmunix", nl); 46322534Smckusick #endif 46422534Smckusick if (nl[0].n_value == 0) { 46522534Smckusick if (!quiet) 46622534Smckusick fprintf(stderr, "No namelist\n"); 46722534Smckusick return; 46822534Smckusick } 46922534Smckusick lseek(kmem, (long)nl[NL_BOOT].n_value, 0); 47022534Smckusick read(kmem, &bootime, sizeof(bootime)); 47122534Smckusick (void) time(&clock); 47222534Smckusick nintv = clock - bootime; 47322534Smckusick if (nintv <= 0L || nintv > 60L*60L*24L*365L) { 47422534Smckusick if (!quiet) 47522534Smckusick fprintf(stderr, 47622534Smckusick "Time makes no sense... namelist must be wrong\n"); 47722534Smckusick nl[NL_PROC].n_value = nl[NL_AVEN].n_value = 0; 47822534Smckusick } 47922534Smckusick } 48022534Smckusick 481*23748Sedward readutmp(nflag) 482*23748Sedward char nflag; 48322534Smckusick { 484*23748Sedward static time_t lastmod; /* initially zero */ 485*23748Sedward static off_t utmpsize; /* ditto */ 48622534Smckusick struct stat st; 48722534Smckusick 488*23748Sedward if (ut < 0 && (ut = open("/etc/utmp", 0)) < 0) { 489*23748Sedward fprintf(stderr, "sysline: Can't open utmp.\n"); 49022534Smckusick exit(1); 49122534Smckusick } 492*23748Sedward if (fstat(ut, &st) < 0 || st.st_mtime == lastmod) 49322534Smckusick return 0; 49422534Smckusick lastmod = st.st_mtime; 495*23748Sedward if (utmpsize != st.st_size) { 496*23748Sedward utmpsize = st.st_size; 497*23748Sedward nentries = utmpsize / sizeof (struct utmp); 498*23748Sedward if (old == 0) { 499*23748Sedward old = (struct utmp *)calloc(utmpsize, 1); 500*23748Sedward new = (struct utmp *)calloc(utmpsize, 1); 501*23748Sedward } else { 502*23748Sedward old = (struct utmp *)realloc((char *)old, utmpsize); 503*23748Sedward new = (struct utmp *)realloc((char *)new, utmpsize); 504*23748Sedward free(status); 505*23748Sedward } 506*23748Sedward status = malloc(nentries * sizeof *status); 507*23748Sedward if (old == 0 || new == 0 || status == 0) { 508*23748Sedward fprintf(stderr, "sysline: Out of memory.\n"); 509*23748Sedward exit(1); 510*23748Sedward } 511*23748Sedward } 51222534Smckusick lseek(ut, 0L, 0); 513*23748Sedward (void) read(ut, (char *) (nflag ? new : old), utmpsize); 51422534Smckusick return 1; 51522534Smckusick } 51622534Smckusick 51722534Smckusick /* 51822534Smckusick * read in the process table locations and sizes, and allocate space 51922534Smckusick * for storing the process table. This is done only once. 52022534Smckusick */ 52122534Smckusick initprocread() 52222534Smckusick { 52322534Smckusick 52422534Smckusick if (nl[NL_PROC].n_value == 0) 52522534Smckusick return; 52622534Smckusick #ifdef VMUNIX 52722534Smckusick lseek(kmem, (long)nl[NL_PROC].n_value, 0); 52822534Smckusick read(kmem, &procadr, sizeof procadr); 52922534Smckusick lseek(kmem, (long)nl[NL_NPROC].n_value, 0); 53022534Smckusick read(kmem, &nproc, sizeof nproc); 53122534Smckusick #endif 53222534Smckusick #ifdef pdp11 53322534Smckusick procadr = nl[NL_PROC].n_value; 53422534Smckusick nproc = NPROC; /* from param.h */ 53522534Smckusick #endif 53622534Smckusick if ((proc = (struct proc *) calloc(nproc, sizeof (struct proc))) == 0) { 53722534Smckusick fprintf(stderr, "Out of memory.\n"); 53822534Smckusick exit(1); 53922534Smckusick } 54022534Smckusick procNPROC = proc + nproc; 54122534Smckusick } 54222534Smckusick 54322534Smckusick /* 54422534Smckusick * read in the process table. This assumes that initprocread has alread been 54522534Smckusick * called to set up storage. 54622534Smckusick */ 54722534Smckusick readproctab() 54822534Smckusick { 54922534Smckusick 55022534Smckusick if (nl[NL_PROC].n_value == 0) 55122534Smckusick return (0); 55222534Smckusick lseek(kmem, (long)procadr, 0); 55322534Smckusick read(kmem, (char *)proc, nproc * sizeof (struct proc)); 55422534Smckusick return (1); 55522534Smckusick } 55622534Smckusick 55722534Smckusick prtinfo() 55822534Smckusick { 55922534Smckusick int on, off; 56022534Smckusick register i; 56122534Smckusick char fullprocess; 56222534Smckusick 56322534Smckusick stringinit(); 56422534Smckusick #ifdef SIGWINCH 56522534Smckusick if (winchanged) { 56622534Smckusick winchanged = 0; 56722534Smckusick getwinsize(); 56822534Smckusick mustclear = 1; 56922534Smckusick } 57022534Smckusick #endif 57122534Smckusick #ifdef WHO 57222534Smckusick /* check for file named .who in the home directory */ 57322534Smckusick whocheck(); 57422534Smckusick #endif 57522534Smckusick timeprint(); 57622534Smckusick /* 57722534Smckusick * if mail is seen, don't print rest of info, just the mail 57822534Smckusick * reverse new and old so that next time we run, we won't lose log 57922534Smckusick * in and out information 58022534Smckusick */ 58122534Smckusick if (mailcheck && (sawmail = mailseen())) 58222534Smckusick goto bottom; 58322534Smckusick #ifdef HOSTNAME 58422534Smckusick #ifdef RWHO 58522534Smckusick for (i = 0; i < nremotes; i++) { 58622534Smckusick char *tmp; 58722534Smckusick 58822534Smckusick stringspace(); 58922534Smckusick tmp = sysrup(remotehost + i); 59022534Smckusick stringcat(tmp, strlen(tmp)); 59122534Smckusick } 59222534Smckusick #endif 59322534Smckusick /* 59422534Smckusick * print hostname info if requested 59522534Smckusick */ 59622534Smckusick if (hostprint) { 59722534Smckusick stringspace(); 59822534Smckusick stringcat(hostname, -1); 59922534Smckusick } 60022534Smckusick #endif 60122534Smckusick /* 60222534Smckusick * print load average and difference between current load average 60322534Smckusick * and the load average 5 minutes ago 60422534Smckusick */ 60522534Smckusick if (nl[NL_AVEN].n_value != 0) { 60622534Smckusick double diff; 60722534Smckusick 60822534Smckusick stringspace(); 60922534Smckusick #ifdef VMUNIX 61022534Smckusick lseek(kmem, (long)nl[NL_AVEN].n_value, 0); 61122534Smckusick read(kmem, avenrun, sizeof avenrun); 61222534Smckusick #endif 61322534Smckusick #ifdef pdp11 61422534Smckusick loadav(avenrun); 61522534Smckusick #endif 61622534Smckusick if ((diff = avenrun[0] - avenrun[1]) < 0.0) 61722534Smckusick stringprt("%.1f %.1f", avenrun[0], diff); 61822534Smckusick else 61922534Smckusick stringprt("%.1f +%.1f", avenrun[0], diff); 62022534Smckusick loadavg = avenrun[0]; /* remember load average */ 62122534Smckusick } 62222534Smckusick /* 62322534Smckusick * print log on and off information 62422534Smckusick */ 62522534Smckusick stringspace(); 62622534Smckusick fullprocess = 1; 62722534Smckusick #ifdef MAXLOAD 62822534Smckusick if (loadavg > MAXLOAD) 62922534Smckusick fullprocess = 0; /* too loaded to run */ 63022534Smckusick #endif 63122534Smckusick /* 63222534Smckusick * Read utmp file (logged in data) only if we are doing a full 63322534Smckusick * process, or if this is the first time and we are calculating 63422534Smckusick * the number of users. 63522534Smckusick */ 63622534Smckusick on = off = 0; 63722534Smckusick if (users == 0) { /* first time */ 638*23748Sedward if (readutmp(0)) 63922534Smckusick for (i = 0; i < nentries; i++) 64022534Smckusick if (old[i].ut_name[0]) 64122534Smckusick users++; 642*23748Sedward } else if (fullprocess && readutmp(1)) { 64322534Smckusick struct utmp *tmp; 64422534Smckusick 64522534Smckusick users = 0; 64622534Smckusick for (i = 0; i < nentries; i++) { 64722534Smckusick if (strncmp(old[i].ut_name, 64822534Smckusick new[i].ut_name, NAMESIZE) == 0) 64922534Smckusick status[i] = NOCH; 65022534Smckusick else if (old[i].ut_name[0] == '\0') { 65122534Smckusick status[i] = ON; 65222534Smckusick on++; 65322534Smckusick } else if (new[i].ut_name[0] == '\0') { 65422534Smckusick status[i] = OFF; 65522534Smckusick off++; 65622534Smckusick } else { 65722534Smckusick status[i] = ON | OFF; 65822534Smckusick on++; 65922534Smckusick off++; 66022534Smckusick } 66122534Smckusick if (new[i].ut_name[0]) 66222534Smckusick users++; 66322534Smckusick } 66422534Smckusick tmp = new; 66522534Smckusick new = old; 66622534Smckusick old = tmp; 66722534Smckusick } 66822534Smckusick /* 66922534Smckusick * Print: 67022534Smckusick * 1. number of users 67122534Smckusick * 2. a * for unread mail 67222534Smckusick * 3. a - if load is too high 67322534Smckusick * 4. number of processes running and stopped 67422534Smckusick */ 67522534Smckusick stringprt("%du", users); 67622534Smckusick if (mailsize > 0 && mstbuf.st_mtime >= mstbuf.st_atime) 67722534Smckusick stringcat("*", -1); 67822534Smckusick if (!fullprocess && (proccheck || logcheck)) 67922534Smckusick stringcat("-", -1); 68022534Smckusick if (fullprocess && proccheck && readproctab()) { 68122534Smckusick register struct proc *p; 68222534Smckusick int procrun, procstop; 68322534Smckusick 68422534Smckusick /* 68522534Smckusick * We are only interested in processes which have the same 68622534Smckusick * uid as us, and whose parent process id is not 1. 68722534Smckusick */ 68822534Smckusick procrun = procstop = 0; 68922534Smckusick for (p = proc; p < procNPROC; p++) { 69022534Smckusick if (p->p_stat == 0 || p->p_pgrp == 0 || 69122534Smckusick p->p_uid != uid || p->p_ppid == 1) 69222534Smckusick continue; 69322534Smckusick switch (p->p_stat) { 69422534Smckusick case SSTOP: 69522534Smckusick procstop++; 69622534Smckusick break; 69722534Smckusick case SSLEEP: 69822534Smckusick /* 69922534Smckusick * Sleep can mean waiting for a signal or just 70022534Smckusick * in a disk or page wait queue ready to run. 70122534Smckusick * We can tell if it is the later by the pri 70222534Smckusick * being negative. 70322534Smckusick */ 70422534Smckusick if (p->p_pri < PZERO) 70522534Smckusick procrun++; 70622534Smckusick break; 70722534Smckusick case SWAIT: 70822534Smckusick case SRUN: 70922534Smckusick case SIDL: 71022534Smckusick procrun++; 71122534Smckusick } 71222534Smckusick } 71322534Smckusick if (procrun > 0 || procstop > 0) { 71422534Smckusick stringspace(); 71522534Smckusick if (procrun > 0 && procstop > 0) 71622534Smckusick stringprt("%dr %ds", procrun, procstop); 71722534Smckusick else if (procrun > 0) 71822534Smckusick stringprt("%dr", procrun); 71922534Smckusick else 72022534Smckusick stringprt("%ds", procstop); 72122534Smckusick } 72222534Smckusick } 72322534Smckusick /* 72422534Smckusick * If anyone has logged on or off, and we are interested in it, 72522534Smckusick * print it out. 72622534Smckusick */ 72722534Smckusick if (logcheck) { 72822534Smckusick /* old and new have already been swapped */ 72922534Smckusick if (on) { 73022534Smckusick stringspace(); 73122534Smckusick stringcat("on:", -1); 73222534Smckusick for (i = 0; i < nentries; i++) 73322534Smckusick if (status[i] & ON) { 73422534Smckusick stringprt(" %.8s", old[i].ut_name); 73522534Smckusick ttyprint(old[i].ut_line); 73622534Smckusick } 73722534Smckusick } 73822534Smckusick if (off) { 73922534Smckusick stringspace(); 74022534Smckusick stringcat("off:", -1); 74122534Smckusick for (i = 0; i < nentries; i++) 74222534Smckusick if (status[i] & OFF) { 74322534Smckusick stringprt(" %.8s", new[i].ut_name); 74422534Smckusick ttyprint(new[i].ut_line); 74522534Smckusick } 74622534Smckusick } 74722534Smckusick } 74822534Smckusick bottom: 74922534Smckusick /* dump out what we know */ 75022534Smckusick stringdump(); 75122534Smckusick } 75222534Smckusick 75322534Smckusick timeprint() 75422534Smckusick { 75522534Smckusick long curtime; 75622534Smckusick struct tm *tp, *localtime(); 75722534Smckusick static int beepable = 1; 75822534Smckusick 75922534Smckusick /* always print time */ 76022534Smckusick time(&curtime); 76122534Smckusick tp = localtime(&curtime); 76222534Smckusick if (dateprint) 76322534Smckusick stringprt("%.11s", ctime(&curtime)); 76422534Smckusick stringprt("%d:%02d", tp->tm_hour > 12 ? tp->tm_hour - 12 : 76522534Smckusick (tp->tm_hour == 0 ? 12 : tp->tm_hour), tp->tm_min); 76622534Smckusick if (synch) /* sync with clock */ 76722534Smckusick delay = 60 - tp->tm_sec; 76822534Smckusick /* 76922534Smckusick * Beepable is used to insure that we get at most one set of beeps 77022534Smckusick * every half hour. 77122534Smckusick */ 77222534Smckusick if (beep) 77322534Smckusick if (beepable) { 77422534Smckusick if (tp->tm_min == 30) { 77522534Smckusick tputs(bell, 1, outc); 77622534Smckusick fflush(stdout); 77722534Smckusick beepable = 0; 77822534Smckusick } else if (tp->tm_min == 0) { 77922534Smckusick tputs(bell, 1, outc); 78022534Smckusick fflush(stdout); 78122534Smckusick sleep(2); 78222534Smckusick tputs(bell, 1, outc); 78322534Smckusick fflush(stdout); 78422534Smckusick beepable = 0; 78522534Smckusick } 78622534Smckusick } else 78722534Smckusick if (tp->tm_min != 0 && tp->tm_min != 30) 78822534Smckusick beepable = 1; 78922534Smckusick } 79022534Smckusick 79122534Smckusick /* 79222534Smckusick * whocheck -- check for file named .who and print it on the who line first 79322534Smckusick */ 79422534Smckusick whocheck() 79522534Smckusick { 79622534Smckusick int chss; 79722534Smckusick register char *p; 79822534Smckusick char buff[81]; 79922534Smckusick int whofile; 80022534Smckusick 80122534Smckusick if ((whofile = open(whofilename, 0)) < 0 && 80222534Smckusick (whofile = open(whofilename2, 0)) < 0) 80322534Smckusick return; 80422534Smckusick chss = read(whofile, buff, sizeof buff - 1); 80522534Smckusick close(whofile); 80622534Smckusick if (chss <= 0) 80722534Smckusick return; 80822534Smckusick buff[chss] = '\0'; 80922534Smckusick /* 81022534Smckusick * Remove all line feeds, and replace by spaces if they are within 81122534Smckusick * the message, else replace them by nulls. 81222534Smckusick */ 81322534Smckusick for (p = buff; *p;) 81422534Smckusick if (*p == '\n') 81522534Smckusick if (p[1]) 81622534Smckusick *p++ = ' '; 81722534Smckusick else 81822534Smckusick *p = '\0'; 81922534Smckusick else 82022534Smckusick p++; 82122534Smckusick stringcat(buff, p - buff); 82222534Smckusick stringspace(); 82322534Smckusick } 82422534Smckusick 82522534Smckusick /* 82622534Smckusick * ttyprint -- given the name of a tty, print in the string buffer its 82722534Smckusick * short name surrounded by parenthesis. 82822534Smckusick * ttyxx is printed as (xx) 82922534Smckusick * console is printed as (cty) 83022534Smckusick */ 83122534Smckusick ttyprint(name) 83222534Smckusick char *name; 83322534Smckusick { 83422534Smckusick char buff[11]; 83522534Smckusick 83622534Smckusick if (strncmp(name, "tty", 3) == 0) 83722534Smckusick stringprt("(%.*s)", LINESIZE - 3, name + 3); 83822534Smckusick else if (strcmp(name, "console") == 0) 83922534Smckusick stringcat("(cty)", -1); 84022534Smckusick else 84122534Smckusick stringprt("(%.*s)", LINESIZE, name); 84222534Smckusick } 84322534Smckusick 84422534Smckusick /* 84522534Smckusick * mail checking function 84622534Smckusick * returns 0 if no mail seen 84722534Smckusick */ 84822534Smckusick mailseen() 84922534Smckusick { 85022534Smckusick FILE *mfd; 85122534Smckusick register n; 85222534Smckusick register char *cp; 85322534Smckusick char lbuf[100], sendbuf[100], *bufend; 85422534Smckusick char seenspace; 85522534Smckusick int retval = 0; 85622534Smckusick 85722534Smckusick if (stat(username, &mstbuf) < 0) { 85822534Smckusick mailsize = 0; 85922534Smckusick return 0; 86022534Smckusick } 86122534Smckusick if (mstbuf.st_size <= mailsize || (mfd = fopen(username,"r")) == NULL) { 86222534Smckusick mailsize = mstbuf.st_size; 86322534Smckusick return 0; 86422534Smckusick } 86522534Smckusick fseek(mfd, mailsize, 0); 86622534Smckusick while ((n = readline(mfd, lbuf, sizeof lbuf)) >= 0 && 86722534Smckusick strncmp(lbuf, "From ", 5) != 0) 86822534Smckusick ; 86922534Smckusick if (n < 0) { 87022534Smckusick stringcat("Mail has just arrived", 0); 87122534Smckusick goto out; 87222534Smckusick } 87322534Smckusick retval = 1; 87422534Smckusick /* 87522534Smckusick * Found a From line, get second word, which is the sender, 87622534Smckusick * and print it. 87722534Smckusick */ 87822534Smckusick for (cp = lbuf + 5; *cp && *cp != ' '; cp++) /* skip to blank */ 87922534Smckusick ; 88022534Smckusick *cp = '\0'; /* terminate name */ 88122534Smckusick stringspace(); 88222534Smckusick stringprt("Mail from %s ", lbuf + 5); 88322534Smckusick /* 88422534Smckusick * Print subject, and skip over header. 88522534Smckusick */ 88622534Smckusick while ((n = readline(mfd, lbuf, sizeof lbuf)) > 0) 88722534Smckusick if (strncmp(lbuf, "Subject:", 8) == 0) 88822534Smckusick stringprt("on %s ", lbuf + 9); 88922534Smckusick if (!emacs) 89022534Smckusick stringcat(arrows, 2); 89122534Smckusick else 89222534Smckusick stringcat(": ", 2); 89322534Smckusick if (n < 0) /* already at eof */ 89422534Smckusick goto out; 89522534Smckusick /* 89622534Smckusick * Print as much of the letter as we can. 89722534Smckusick */ 89822534Smckusick cp = sendbuf; 89922534Smckusick if ((n = columns - chars) > sizeof sendbuf - 1) 90022534Smckusick n = sizeof sendbuf - 1; 90122534Smckusick bufend = cp + n; 90222534Smckusick seenspace = 0; 90322534Smckusick while ((n = readline(mfd, lbuf, sizeof lbuf)) >= 0) { 90422534Smckusick register char *rp; 90522534Smckusick 90622534Smckusick if (strncmp(lbuf, "From ", 5) == 0) 90722534Smckusick break; 90822534Smckusick if (cp >= bufend) 90922534Smckusick continue; 91022534Smckusick if (!seenspace) { 91122534Smckusick *cp++ = ' '; /* space before lines */ 91222534Smckusick seenspace = 1; 91322534Smckusick } 91422534Smckusick rp = lbuf; 91522534Smckusick while (*rp && cp < bufend) 91622534Smckusick if (isspace(*rp)) { 91722534Smckusick if (!seenspace) { 91822534Smckusick *cp++ = ' '; 91922534Smckusick seenspace = 1; 92022534Smckusick } 92122534Smckusick rp++; 92222534Smckusick } else { 92322534Smckusick *cp++ = *rp++; 92422534Smckusick seenspace = 0; 92522534Smckusick } 92622534Smckusick } 92722534Smckusick *cp = 0; 92822534Smckusick stringcat(sendbuf, -1); 92922534Smckusick /* 93022534Smckusick * Want to update write time so a star will 93122534Smckusick * appear after the number of users until the 93222534Smckusick * user reads his mail. 93322534Smckusick */ 93422534Smckusick out: 93522534Smckusick mailsize = linebeg; 93622534Smckusick fclose(mfd); 93722534Smckusick touch(username); 93822534Smckusick return retval; 93922534Smckusick } 94022534Smckusick 94122534Smckusick /* 94222534Smckusick * readline -- read a line from fp and store it in buf. 94322534Smckusick * return the number of characters read. 94422534Smckusick */ 94522534Smckusick readline(fp, buf, n) 94622534Smckusick register FILE *fp; 94722534Smckusick char *buf; 94822534Smckusick register n; 94922534Smckusick { 95022534Smckusick register c; 95122534Smckusick register char *cp = buf; 95222534Smckusick 95322534Smckusick linebeg = ftell(fp); /* remember loc where line begins */ 95422534Smckusick cp = buf; 95522534Smckusick while (--n > 0 && (c = getc(fp)) != EOF && c != '\n') 95622534Smckusick *cp++ = c; 95722534Smckusick *cp = 0; 95822534Smckusick if (c == EOF && cp - buf == 0) 95922534Smckusick return -1; 96022534Smckusick return cp - buf; 96122534Smckusick } 96222534Smckusick 96322534Smckusick 96422534Smckusick /* 96522534Smckusick * string hacking functions 96622534Smckusick */ 96722534Smckusick 96822534Smckusick stringinit() 96922534Smckusick { 97022534Smckusick sp = strarr; 97122534Smckusick chars = 0; 97222534Smckusick } 97322534Smckusick 97422534Smckusick /*VARARGS1*/ 97522534Smckusick stringprt(format, a, b, c) 97622534Smckusick char *format; 97722534Smckusick { 97822534Smckusick char tempbuf[150]; 97922534Smckusick 98022534Smckusick stringcat(sprintf(tempbuf, format, a, b, c), -1); 98122534Smckusick } 98222534Smckusick 98322534Smckusick stringdump() 98422534Smckusick { 98522534Smckusick char bigbuf[sizeof strarr + 200]; 98622534Smckusick register char *bp = bigbuf; 98722534Smckusick register int i; 98822534Smckusick 98922534Smckusick if (!emacs) { 99022534Smckusick if (sawmail) 99122534Smckusick bp = strcpy1(bp, bell); 99222534Smckusick if (eslok) 99322534Smckusick bp = strcpy1(bp, tparm(to_status_line, 99422534Smckusick leftline ? 0 : columns - chars)); 99522534Smckusick else { 99622534Smckusick bp = strcpy1(bp, to_status_line); 99722534Smckusick if (!shortline && !leftline) 99822534Smckusick for (i = columns - chars; --i >= 0;) 99922534Smckusick *bp++ = ' '; 100022534Smckusick } 100122534Smckusick if (reverse && revtime != 0) 100222534Smckusick bp = strcpy1(bp, rev_out); 100322534Smckusick } 100422534Smckusick *sp = 0; 100522534Smckusick bp = strcpy1(bp, strarr); 100622534Smckusick if (!emacs) { 100722534Smckusick if (reverse) 100822534Smckusick bp = strcpy1(bp, rev_end); 100922534Smckusick bp = strcpy1(bp, from_status_line); 101022534Smckusick if (sawmail) 101122534Smckusick bp = strcpy1(strcpy1(bp, bell), bell); 101222534Smckusick *bp = 0; 101322534Smckusick tputs(bigbuf, 1, outc); 101422534Smckusick if (mustclear) { 101522534Smckusick mustclear = 0; 101622534Smckusick tputs(clr_eol, 1, outc); 101722534Smckusick } 101822534Smckusick if (dbug) 101922534Smckusick putchar('\n'); 102022534Smckusick fflush(stdout); 102122534Smckusick } else 102222534Smckusick write(2, bigbuf, bp - bigbuf); 102322534Smckusick } 102422534Smckusick 102522534Smckusick stringspace() 102622534Smckusick { 102722534Smckusick if (reverse && revtime != 0) { 102822534Smckusick #ifdef TERMINFO 102922534Smckusick stringcat(rev_end, 103022534Smckusick magic_cookie_glitch <= 0 ? 0 : magic_cookie_glitch); 103122534Smckusick stringcat(" ", 1); 103222534Smckusick stringcat(rev_out, 103322534Smckusick magic_cookie_glitch <= 0 ? 0 : magic_cookie_glitch); 103422534Smckusick #else 103522534Smckusick stringcat(rev_end, 0); 103622534Smckusick stringcat(" ", 1); 103722534Smckusick stringcat(rev_out, 0); 103822534Smckusick #endif TERMINFO 103922534Smckusick } else 104022534Smckusick stringcat(" ", 1); 104122534Smckusick } 104222534Smckusick 104322534Smckusick /* 104422534Smckusick * stringcat :: concatenate the characters in string str to the list we are 104522534Smckusick * building to send out. 104622534Smckusick * str - the string to print. may contain funny (terminal control) chars. 104722534Smckusick * n - the number of printable characters in the string 104822534Smckusick * or if -1 then str is all printable so we can truncate it, 104922534Smckusick * otherwise don't print only half a string. 105022534Smckusick */ 105122534Smckusick stringcat(str, n) 105222534Smckusick register char *str; 105322534Smckusick register n; 105422534Smckusick { 105522534Smckusick register char *p = sp; 105622534Smckusick 105722534Smckusick if (n < 0) { /* truncate */ 105822534Smckusick n = columns - chars; 105922534Smckusick while ((*p++ = *str++) && --n >= 0) 106022534Smckusick ; 106122534Smckusick p--; 106222534Smckusick chars += p - sp; 106322534Smckusick sp = p; 106422534Smckusick } else if (chars + n <= columns) { /* don't truncate */ 106522534Smckusick while (*p++ = *str++) 106622534Smckusick ; 106722534Smckusick chars += n; 106822534Smckusick sp = p - 1; 106922534Smckusick } 107022534Smckusick } 107122534Smckusick 107222534Smckusick /* 107322534Smckusick * touch :: update the modify time of a file. 107422534Smckusick */ 107522534Smckusick touch(name) 107622534Smckusick char *name; /* name of file */ 107722534Smckusick { 107822534Smckusick register fd; 107922534Smckusick char buf; 108022534Smckusick 108122534Smckusick if ((fd = open(name, 2)) >= 0) { 108222534Smckusick read(fd, &buf, 1); /* get first byte */ 108322534Smckusick lseek(fd, 0L, 0); /* go to beginning */ 108422534Smckusick write(fd, &buf, 1); /* and rewrite first byte */ 108522534Smckusick close(fd); 108622534Smckusick } 108722534Smckusick } 108822534Smckusick 108922534Smckusick 109022534Smckusick /* 109122534Smckusick * clearbotl :: clear bottom line. 109222534Smckusick * called when process quits or is killed. 109322534Smckusick * it clears the bottom line of the terminal. 109422534Smckusick */ 109522534Smckusick clearbotl() 109622534Smckusick { 109722534Smckusick register int fd; 109822534Smckusick int exit(); 109922534Smckusick 110022534Smckusick signal(SIGALRM, exit); 110122534Smckusick alarm(30); /* if can't open in 30 secs, just die */ 110222534Smckusick if (!emacs && (fd = open(ourtty, 1)) >= 0) { 110322534Smckusick write(fd, dis_status_line, strlen(dis_status_line)); 110422534Smckusick close(fd); 110522534Smckusick } 110622534Smckusick #ifdef PROF 110722534Smckusick if (chdir("/usr/src/ucb/sysline") < 0) 110822534Smckusick (void) chdir("/tmp"); 110922534Smckusick #endif 111022534Smckusick exit(0); 111122534Smckusick } 111222534Smckusick 111322534Smckusick #ifdef TERMINFO 111422534Smckusick initterm() 111522534Smckusick { 111622534Smckusick static char standbuf[40]; 111722534Smckusick 111822534Smckusick setupterm(0, 1, 0); 111922534Smckusick if (!window && !has_status_line) { 112022534Smckusick /* not an appropriate terminal */ 112122534Smckusick if (!quiet) 112222534Smckusick fprintf(stderr, "sysline: no status capability for %s\n", 112322534Smckusick getenv("TERM")); 112422534Smckusick exit(1); 112522534Smckusick } 112622534Smckusick if (window || status_line_esc_ok) { 112722534Smckusick if (set_attributes) { 112822534Smckusick /* reverse video mode */ 112922534Smckusick strcpy(standbuf, 113022534Smckusick tparm(set_attributes,0,0,1,0,0,0,0,0,0)); 113122534Smckusick rev_out = standbuf; 113222534Smckusick rev_end = exit_attribute_mode; 113322534Smckusick } else if (enter_standout_mode && exit_standout_mode) { 113422534Smckusick rev_out = enter_standout_mode; 113522534Smckusick rev_end = exit_standout_mode; 113622534Smckusick } else 113722534Smckusick rev_out = rev_end = ""; 113822534Smckusick } else 113922534Smckusick rev_out = rev_end = ""; 114022534Smckusick columns--; /* avoid cursor wraparound */ 114122534Smckusick } 114222534Smckusick 114322534Smckusick #else /* TERMCAP */ 114422534Smckusick 114522534Smckusick initterm() 114622534Smckusick { 114722534Smckusick char *term, *cp; 114822534Smckusick static char tbuf[1024]; 114922534Smckusick char is2[40]; 115022534Smckusick extern char *UP; 115122534Smckusick 115222534Smckusick if ((term = getenv("TERM")) == NULL) { 115322534Smckusick if (!quiet) 115422534Smckusick fprintf(stderr, 115522534Smckusick "sysline: No TERM variable in enviroment\n"); 115622534Smckusick exit(1); 115722534Smckusick } 115822534Smckusick if (tgetent(tbuf, term) <= 0) { 115922534Smckusick if (!quiet) 116022534Smckusick fprintf(stderr, 116122534Smckusick "sysline: Unknown terminal type: %s\n", term); 116222534Smckusick exit(1); 116322534Smckusick } 116422534Smckusick if (!window && tgetflag("hs") <= 0) { 116522534Smckusick if (!strncmp(term, "h19", 3)) { 116622534Smckusick /* for upward compatability with h19sys */ 116722534Smckusick strcpy(to_status_line, 116822534Smckusick "\033j\033x5\033x1\033Y8%+ \033o"); 116922534Smckusick strcpy(from_status_line, "\033k\033y5"); 117022534Smckusick strcpy(dis_status_line, "\033y1"); 117122534Smckusick strcpy(rev_out, "\033p"); 117222534Smckusick strcpy(rev_end, "\033q"); 117322534Smckusick arrows = "\033Fhh\033G"; 117422534Smckusick columns = 80; 117522534Smckusick UP = "\b"; 117622534Smckusick return; 117722534Smckusick } 117822534Smckusick if (!quiet) 117922534Smckusick fprintf(stderr, 118022534Smckusick "sysline: No status capability for %s\n", term); 118122534Smckusick exit(1); 118222534Smckusick } 118322534Smckusick cp = is2; 118422534Smckusick if (tgetstr("i2", &cp) != NULL) { 118522534Smckusick /* someday tset will do this */ 118622534Smckusick tputs(is2, 1, erroutc); 118722534Smckusick fflush(stdout); 118822534Smckusick } 118922534Smckusick 119022534Smckusick /* the "-1" below is to avoid cursor wraparound problems */ 119122534Smckusick columns = tgetnum("co") - 1; 119222534Smckusick if (window) { 119322534Smckusick strcpy(to_status_line, "\r"); 119422534Smckusick strcpy(from_status_line, ""); 119522534Smckusick cp = dis_status_line; /* use the clear line sequence */ 119622534Smckusick *cp++ = '\r'; 119722534Smckusick tgetstr("ce", &cp); 119822534Smckusick } else { 119922534Smckusick cp = to_status_line; 120022534Smckusick tgetstr("ts", &cp); 120122534Smckusick cp = from_status_line; 120222534Smckusick tgetstr("fs", &cp); 120322534Smckusick cp = dis_status_line; 120422534Smckusick tgetstr("ds", &cp); 120522534Smckusick eslok = tgetflag("es"); 120622534Smckusick } 120722534Smckusick if (eslok || window) { 120822534Smckusick cp = rev_out; 120922534Smckusick tgetstr("so", &cp); 121022534Smckusick cp = rev_end; 121122534Smckusick tgetstr("se", &cp); 121222534Smckusick cp = clr_eol; 121322534Smckusick tgetstr("ce", &cp); 121422534Smckusick } else 121522534Smckusick reverse = 0; /* turn off reverse video */ 121622534Smckusick UP = "\b"; 121722534Smckusick if (!strncmp(term, "h19", 3)) 121822534Smckusick arrows = "\033Fhh\033G"; /* "two tiny graphic arrows" */ 121922534Smckusick else 122022534Smckusick arrows = "->"; 122122534Smckusick } 122222534Smckusick #endif TERMINFO 122322534Smckusick 122422534Smckusick #ifdef pdp11 122522534Smckusick loadav(ap) 122622534Smckusick double ap[]; 122722534Smckusick { 122822534Smckusick register int i; 122922534Smckusick short s_avenrun[3]; 123022534Smckusick 123122534Smckusick lseek(kmem, (long)nl[NL_AVEN].n_value, 0); 123222534Smckusick read(kmem, s_avenrun, sizeof(s_avenrun)); 123322534Smckusick for (i=0; i < (sizeof(s_avenrun)/sizeof(s_avenrun[0])); i++) 123422534Smckusick ap[i] = s_avenrun[i] / 256.0; 123522534Smckusick } 123622534Smckusick #endif 123722534Smckusick 123822534Smckusick #ifdef RWHO 123922534Smckusick char * 124022534Smckusick sysrup(hp) 124122534Smckusick register struct remotehost *hp; 124222534Smckusick { 124322534Smckusick char filename[100]; 124422534Smckusick struct whod wd; 124522534Smckusick static char buffer[50]; 124622534Smckusick time_t now; 124722534Smckusick 124822534Smckusick /* 124922534Smckusick * rh_file is initially 0. 125022534Smckusick * This is ok since standard input is assumed to exist. 125122534Smckusick */ 125222534Smckusick if (hp->rh_file == 0) { 125322534Smckusick /* 125422534Smckusick * Try rwho hostname file, and if that fails try ucbhostname. 125522534Smckusick */ 125622534Smckusick (void) strcpy1(strcpy1(filename, RWHOLEADER), hp->rh_host); 125722534Smckusick if ((hp->rh_file = open(filename, 0)) < 0) { 125822534Smckusick (void) strcpy1(strcpy1(strcpy1(filename, RWHOLEADER), 125922534Smckusick NETPREFIX), hp->rh_host); 126022534Smckusick hp->rh_file = open(filename, 0); 126122534Smckusick } 126222534Smckusick } 126322534Smckusick if (hp->rh_file < 0) 126422534Smckusick return sprintf(buffer, "%s?", hp->rh_host); 126522534Smckusick (void) lseek(hp->rh_file, (off_t)0, 0); 126622534Smckusick if (read(hp->rh_file, (char *)&wd, sizeof wd) != sizeof wd) 126722534Smckusick return sprintf(buffer, "%s ?", hp->rh_host); 126822534Smckusick (void) time(&now); 126922534Smckusick if (now - wd.wd_recvtime > DOWN_THRESHOLD) { 127022534Smckusick long interval; 127122534Smckusick long days, hours, minutes; 127222534Smckusick 127322534Smckusick interval = now - wd.wd_recvtime; 127422534Smckusick minutes = (interval + 59) / 60; /* round to minutes */ 127522534Smckusick hours = minutes / 60; /* extract hours from minutes */ 127622534Smckusick minutes %= 60; /* remove hours from minutes */ 127722534Smckusick days = hours / 24; /* extract days from hours */ 127822534Smckusick hours %= 24; /* remove days from hours */ 127922534Smckusick if (days > 7 || days < 0) 128022534Smckusick (void) sprintf(buffer, "%s down", hp->rh_host); 128122534Smckusick else if (days > 0) 128222534Smckusick (void) sprintf(buffer, "%s %d+%d:%02d", 128322534Smckusick hp->rh_host, days, hours, minutes); 128422534Smckusick else 128522534Smckusick (void) sprintf(buffer, "%s %d:%02d", 128622534Smckusick hp->rh_host, hours, minutes); 128722534Smckusick } else 128822534Smckusick (void) sprintf(buffer, "%s %.1f", 128922534Smckusick hp->rh_host, wd.wd_loadav[0]/100.0); 129022534Smckusick return buffer; 129122534Smckusick } 129222534Smckusick #endif RWHO 129322534Smckusick 129422534Smckusick getwinsize() 129522534Smckusick { 129622534Smckusick #ifdef TIOCGWINSZ 129722534Smckusick struct winsize winsize; 129822534Smckusick 129922534Smckusick /* the "-1" below is to avoid cursor wraparound problems */ 130022534Smckusick if (ioctl(2, TIOCGWINSZ, (char *)&winsize) >= 0 && winsize.ws_col != 0) 130122534Smckusick columns = winsize.ws_col - 1; 130222534Smckusick #endif 130322534Smckusick } 130422534Smckusick 130522534Smckusick #ifdef SIGWINCH 130622534Smckusick sigwinch() 130722534Smckusick { 130822534Smckusick winchanged++; 130922534Smckusick } 131022534Smckusick #endif 131122534Smckusick 131222534Smckusick char * 131322534Smckusick strcpy1(p, q) 131422534Smckusick register char *p, *q; 131522534Smckusick { 131622534Smckusick 131722534Smckusick while (*p++ = *q++) 131822534Smckusick ; 131922534Smckusick return p - 1; 132022534Smckusick } 132122534Smckusick 132222534Smckusick outc(c) 132322534Smckusick char c; 132422534Smckusick { 132522534Smckusick if (dbug) 132622534Smckusick printf("%s", unctrl(c)); 132722534Smckusick else 132822534Smckusick putchar(c); 132922534Smckusick } 133022534Smckusick 133122534Smckusick erroutc(c) 133222534Smckusick char c; 133322534Smckusick { 133422534Smckusick if (dbug) 133522534Smckusick fprintf(stderr, "%s", unctrl(c)); 133622534Smckusick else 133722534Smckusick putc(c, stderr); 133822534Smckusick } 1339