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