xref: /freebsd/usr.bin/rwho/rwho.c (revision 0de89efe5c443f213c7ea28773ef2dc6cf3af2ed)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1983, 1993\n\
37 	The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39 
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)rwho.c	8.1 (Berkeley) 6/6/93";
43 #endif
44 static const char rcsid[] =
45 	"$Id$";
46 #endif /* not lint */
47 
48 #include <sys/param.h>
49 #include <sys/file.h>
50 #include <protocols/rwhod.h>
51 #include <dirent.h>
52 #include <err.h>
53 #include <locale.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <time.h>
58 #include <unistd.h>
59 #include <utmp.h>
60 
61 DIR	*dirp;
62 
63 struct	whod wd;
64 int	utmpcmp();
65 #define	NUSERS	1000
66 struct	myutmp {
67 	char    myhost[sizeof(wd.wd_hostname)];
68 	int	myidle;
69 	struct	outmp myutmp;
70 } myutmp[NUSERS];
71 int	nusers;
72 
73 #define	WHDRSIZE	(sizeof (wd) - sizeof (wd.wd_we))
74 /*
75  * this macro should be shared with ruptime.
76  */
77 #define	down(w,now)	((now) - (w)->wd_recvtime > 11 * 60)
78 
79 time_t	now;
80 int	aflg;
81 
82 static void usage __P((void));
83 int utmpcmp __P((struct myutmp *, struct myutmp *));
84 
85 int
86 main(argc, argv)
87 	int argc;
88 	char **argv;
89 {
90 	int ch;
91 	struct dirent *dp;
92 	int cc, width;
93 	register struct whod *w = &wd;
94 	register struct whoent *we;
95 	register struct myutmp *mp;
96 	int f, n, i;
97 
98 	(void) setlocale(LC_TIME, "");
99 
100 	while ((ch = getopt(argc, argv, "a")) != -1)
101 		switch((char)ch) {
102 		case 'a':
103 			aflg = 1;
104 			break;
105 		case '?':
106 		default:
107 			usage();
108 		}
109 	if (chdir(_PATH_RWHODIR) || (dirp = opendir(".")) == NULL)
110 		err(1, "%s", _PATH_RWHODIR);
111 	mp = myutmp;
112 	(void)time(&now);
113 	while ((dp = readdir(dirp))) {
114 		if (dp->d_ino == 0 || strncmp(dp->d_name, "whod.", 5))
115 			continue;
116 		f = open(dp->d_name, O_RDONLY);
117 		if (f < 0)
118 			continue;
119 		cc = read(f, (char *)&wd, sizeof (struct whod));
120 		if (cc < WHDRSIZE) {
121 			(void) close(f);
122 			continue;
123 		}
124 		if (down(w,now)) {
125 			(void) close(f);
126 			continue;
127 		}
128 		cc -= WHDRSIZE;
129 		we = w->wd_we;
130 		for (n = cc / sizeof (struct whoent); n > 0; n--) {
131 			if (aflg == 0 && we->we_idle >= 60*60) {
132 				we++;
133 				continue;
134 			}
135 			if (nusers >= NUSERS)
136 				errx(1, "too many users");
137 			mp->myutmp = we->we_utmp; mp->myidle = we->we_idle;
138 			(void) strcpy(mp->myhost, w->wd_hostname);
139 			nusers++; we++; mp++;
140 		}
141 		(void) close(f);
142 	}
143 	qsort((char *)myutmp, nusers, sizeof (struct myutmp), utmpcmp);
144 	mp = myutmp;
145 	width = 0;
146 	for (i = 0; i < nusers; i++) {
147 		/* append one for the blank and use 8 for the out_line */
148 		int j = strlen(mp->myhost) + 1 + sizeof(mp->myutmp.out_line);
149 		if (j > width)
150 			width = j;
151 		mp++;
152 	}
153 	mp = myutmp;
154 	for (i = 0; i < nusers; i++) {
155 		char buf[BUFSIZ], cbuf[80];
156 		strftime(cbuf, sizeof(cbuf), "%c", localtime((time_t *)&mp->myutmp.out_time));
157 		(void)sprintf(buf, "%s:%-.*s", mp->myhost,
158 		   sizeof(mp->myutmp.out_line), mp->myutmp.out_line);
159 		printf("%-*.*s %-*s %.12s",
160 		   UT_NAMESIZE, sizeof(mp->myutmp.out_name),
161 		   mp->myutmp.out_name,
162 		   width,
163 		   buf,
164 		   cbuf + 4);
165 		mp->myidle /= 60;
166 		if (mp->myidle) {
167 			if (aflg) {
168 				if (mp->myidle >= 100*60)
169 					mp->myidle = 100*60 - 1;
170 				if (mp->myidle >= 60)
171 					printf(" %2d", mp->myidle / 60);
172 				else
173 					printf("   ");
174 			} else
175 				printf(" ");
176 			printf(":%02d", mp->myidle % 60);
177 		}
178 		printf("\n");
179 		mp++;
180 	}
181 	exit(0);
182 }
183 
184 
185 static void
186 usage()
187 {
188 	fprintf(stderr, "usage: rwho [-a]\n");
189 	exit(1);
190 }
191 
192 int
193 utmpcmp(u1, u2)
194 	struct myutmp *u1, *u2;
195 {
196 	int rc;
197 
198 	rc = strncmp(u1->myutmp.out_name, u2->myutmp.out_name, sizeof(u2->myutmp.out_name));
199 	if (rc)
200 		return (rc);
201 	rc = strcmp(u1->myhost, u2->myhost);
202 	if (rc)
203 		return (rc);
204 	return (strncmp(u1->myutmp.out_line, u2->myutmp.out_line, sizeof(u2->myutmp.out_line)));
205 }
206