w.c revision 1.39 1 /* $NetBSD: w.c,v 1.39 2000/07/15 22:45:14 enami Exp $ */
2
3 /*-
4 * Copyright (c) 1980, 1991, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #include <sys/cdefs.h>
37 #ifndef lint
38 __COPYRIGHT("@(#) Copyright (c) 1980, 1991, 1993, 1994\n\
39 The Regents of the University of California. All rights reserved.\n");
40 #endif /* not lint */
41
42 #ifndef lint
43 #if 0
44 static char sccsid[] = "@(#)w.c 8.6 (Berkeley) 6/30/94";
45 #else
46 __RCSID("$NetBSD: w.c,v 1.39 2000/07/15 22:45:14 enami Exp $");
47 #endif
48 #endif /* not lint */
49
50 /*
51 * w - print system status (who and what)
52 *
53 * This program is similar to the systat command on Tenex/Tops 10/20
54 *
55 */
56 #include <sys/param.h>
57 #include <sys/time.h>
58 #include <sys/stat.h>
59 #include <sys/sysctl.h>
60 #include <sys/proc.h>
61 #include <sys/user.h>
62 #include <sys/ioctl.h>
63 #include <sys/socket.h>
64
65 #include <netinet/in.h>
66 #include <arpa/inet.h>
67
68 #include <ctype.h>
69 #include <err.h>
70 #include <errno.h>
71 #include <fcntl.h>
72 #include <kvm.h>
73 #include <limits.h>
74 #include <netdb.h>
75 #include <nlist.h>
76 #include <paths.h>
77 #include <stdio.h>
78 #include <stdlib.h>
79 #include <string.h>
80 #include <time.h>
81 #include <tzfile.h>
82 #include <unistd.h>
83 #include <utmp.h>
84 #include <vis.h>
85
86 #include "extern.h"
87
88 #define max(a,b) (((a)>(b))?(a):(b))
89
90 struct timeval boottime;
91 struct utmp utmp;
92 struct winsize ws;
93 kvm_t *kd;
94 time_t now; /* the current time of day */
95 time_t uptime; /* time of last reboot & elapsed time since */
96 int ttywidth; /* width of tty */
97 int argwidth; /* width of tty left to print process args */
98 int header = 1; /* true if -h flag: don't print heading */
99 int nflag; /* true if -n flag: don't convert addrs */
100 int sortidle; /* sort bu idle time */
101 char *sel_user; /* login of particular user selected */
102 char domain[MAXHOSTNAMELEN + 1];
103
104 /*
105 * One of these per active utmp entry.
106 */
107 struct entry {
108 struct entry *next;
109 struct utmp utmp;
110 dev_t tdev; /* dev_t of terminal */
111 time_t idle; /* idle time of terminal in seconds */
112 struct kinfo_proc2 *kp; /* `most interesting' proc */
113 } *ep, *ehead = NULL, **nextp = &ehead;
114
115 static void pr_args __P((struct kinfo_proc2 *));
116 static void pr_header __P((time_t *, int));
117 static struct stat
118 *ttystat __P((char *));
119 static void usage __P((int));
120 int main __P((int, char **));
121
122 int
123 main(argc, argv)
124 int argc;
125 char **argv;
126 {
127 extern char *__progname;
128 struct kinfo_proc2 *kp;
129 struct hostent *hp;
130 struct stat *stp;
131 FILE *ut;
132 struct in_addr l;
133 int ch, i, nentries, nusers, wcmd, lognamelen;
134 char *memf, *nlistf, *p, *x;
135 char buf[MAXHOSTNAMELEN], errbuf[_POSIX2_LINE_MAX];
136
137 /* Are we w(1) or uptime(1)? */
138 p = __progname;
139 if (*p == '-')
140 p++;
141 if (*p == 'u') {
142 wcmd = 0;
143 p = "";
144 } else {
145 wcmd = 1;
146 p = "hiflM:N:nsuw";
147 }
148
149 memf = nlistf = NULL;
150 while ((ch = getopt(argc, argv, p)) != -1)
151 switch (ch) {
152 case 'h':
153 header = 0;
154 break;
155 case 'i':
156 sortidle = 1;
157 break;
158 case 'M':
159 header = 0;
160 memf = optarg;
161 break;
162 case 'N':
163 nlistf = optarg;
164 break;
165 case 'n':
166 nflag = 1;
167 break;
168 case 'f': case 'l': case 's': case 'u': case 'w':
169 warnx("[-flsuw] no longer supported");
170 /* FALLTHROUGH */
171 case '?':
172 default:
173 usage(wcmd);
174 }
175 argc -= optind;
176 argv += optind;
177
178 if ((kd = kvm_openfiles(nlistf, memf, NULL,
179 memf == NULL ? KVM_NO_FILES : O_RDONLY, errbuf)) == NULL)
180 errx(1, "%s", errbuf);
181
182 (void)time(&now);
183 if ((ut = fopen(_PATH_UTMP, "r")) == NULL)
184 err(1, "%s", _PATH_UTMP);
185
186 if (*argv)
187 sel_user = *argv;
188
189 for (nusers = 0; fread(&utmp, sizeof(utmp), 1, ut);) {
190 if (utmp.ut_name[0] == '\0')
191 continue;
192 ++nusers;
193 if (wcmd == 0 || (sel_user &&
194 strncmp(utmp.ut_name, sel_user, UT_NAMESIZE) != 0))
195 continue;
196 if ((ep = calloc(1, sizeof(struct entry))) == NULL)
197 err(1, NULL);
198 *nextp = ep;
199 nextp = &(ep->next);
200 memmove(&(ep->utmp), &utmp, sizeof(struct utmp));
201 if (!(stp = ttystat(ep->utmp.ut_line)))
202 continue;
203 ep->tdev = stp->st_rdev;
204 /*
205 * If this is the console device, attempt to ascertain
206 * the true console device dev_t.
207 */
208 if (ep->tdev == 0) {
209 int mib[2];
210 size_t size;
211
212 mib[0] = CTL_KERN;
213 mib[1] = KERN_CONSDEV;
214 size = sizeof(dev_t);
215 (void) sysctl(mib, 2, &ep->tdev, &size, NULL, 0);
216 }
217 if ((ep->idle = now - stp->st_atime) < 0)
218 ep->idle = 0;
219 }
220 (void)fclose(ut);
221
222 if (header || wcmd == 0) {
223 pr_header(&now, nusers);
224 if (wcmd == 0)
225 exit (0);
226 }
227
228 if ((kp = kvm_getproc2(kd, KERN_PROC_ALL, 0,
229 sizeof(struct kinfo_proc2), &nentries)) == NULL)
230 errx(1, "%s", kvm_geterr(kd));
231 lognamelen = sizeof("USER") - 1 /* NUL */;
232 for (i = 0; i < nentries; i++, kp++) {
233
234 if (kp->p_stat == SIDL || kp->p_stat == SZOMB)
235 continue;
236 for (ep = ehead; ep != NULL; ep = ep->next) {
237 if (ep->tdev == kp->p_tdev &&
238 kp->p__pgid == kp->p_tpgid) {
239 /*
240 * Proc is in foreground of this terminal
241 */
242 if (proc_compare(ep->kp, kp)) {
243 ep->kp = kp;
244 lognamelen = max(lognamelen,
245 strlen(kp->p_login));
246 }
247 break;
248 }
249 }
250 }
251
252 argwidth = printf("%-*s TTY %-*s %*s IDLE WHAT\n",
253 lognamelen, "USER", UT_HOSTSIZE, "FROM",
254 7 /* "dddhhXm" */, "LOGIN@");
255 argwidth -= sizeof("WHAT\n") - 1 /* NUL */;
256
257 if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 &&
258 ioctl(STDERR_FILENO, TIOCGWINSZ, &ws) == -1 &&
259 ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) == -1) || ws.ws_col == 0)
260 ttywidth = 79;
261 else
262 ttywidth = ws.ws_col - 1;
263 argwidth = ttywidth - argwidth;
264 if (argwidth < 4)
265 argwidth = 8;
266 /* sort by idle time */
267 if (sortidle && ehead != NULL) {
268 struct entry *from = ehead, *save;
269
270 ehead = NULL;
271 while (from != NULL) {
272 for (nextp = &ehead;
273 (*nextp) && from->idle >= (*nextp)->idle;
274 nextp = &(*nextp)->next)
275 continue;
276 save = from;
277 from = from->next;
278 save->next = *nextp;
279 *nextp = save;
280 }
281 }
282
283 if (!nflag) {
284 int rv;
285
286 rv = gethostname(domain, sizeof(domain));
287 domain[sizeof(domain) - 1] = '\0';
288 if (rv < 0 || (p = strchr(domain, '.')) == 0)
289 domain[0] = '\0';
290 else
291 memmove(domain, p, strlen(p) + 1);
292 }
293
294 for (ep = ehead; ep != NULL; ep = ep->next) {
295 p = *ep->utmp.ut_host ? ep->utmp.ut_host : "-";
296 for (x = p; x < p + UT_HOSTSIZE; x++)
297 if (*x == '\0' || *x == ':')
298 break;
299 if (x == p + UT_HOSTSIZE || *x != ':')
300 x = NULL;
301 else
302 *x++ = '\0';
303
304 if (!nflag && inet_aton(p, &l) &&
305 (hp = gethostbyaddr((char *)&l, sizeof(l), AF_INET))) {
306 if (domain[0] != '\0') {
307 p = hp->h_name;
308 p += strlen(hp->h_name);
309 p -= strlen(domain);
310 if (p > hp->h_name && strcmp(p, domain) == 0)
311 *p = '\0';
312 }
313 p = hp->h_name;
314 }
315 if (x) {
316 (void)snprintf(buf, sizeof(buf), "%s:%.*s", p,
317 (int)(ep->utmp.ut_host + UT_HOSTSIZE - x), x);
318 p = buf;
319 }
320 (void)printf("%-*s %-3.3s %-*.*s ",
321 lognamelen, ep->kp->p_login,
322 (strncmp(ep->utmp.ut_line, "tty", 3) &&
323 strncmp(ep->utmp.ut_line, "dty", 3)) ?
324 ep->utmp.ut_line : ep->utmp.ut_line + 3,
325 UT_HOSTSIZE, UT_HOSTSIZE, *p ? p : "-");
326 pr_attime(&ep->utmp.ut_time, &now);
327 pr_idle(ep->idle);
328 pr_args(ep->kp);
329 (void)printf("\n");
330 }
331 exit(0);
332 }
333
334 static void
335 pr_args(kp)
336 struct kinfo_proc2 *kp;
337 {
338 char **argv;
339 int left;
340
341 if (kp == 0)
342 goto nothing;
343 left = argwidth;
344 argv = kvm_getargv2(kd, kp, argwidth);
345 if (argv == 0)
346 goto nothing;
347 while (*argv) {
348 fmt_puts(*argv, &left);
349 argv++;
350 fmt_putc(' ', &left);
351 }
352 return;
353 nothing:
354 putchar('-');
355 }
356
357 static void
358 pr_header(nowp, nusers)
359 time_t *nowp;
360 int nusers;
361 {
362 double avenrun[3];
363 time_t uptime;
364 int days, hrs, i, mins;
365 int mib[2];
366 size_t size;
367 char buf[256];
368
369 /*
370 * Print time of day.
371 *
372 * SCCS forces the string manipulation below, as it replaces
373 * %, M, and % in a character string with the file name.
374 */
375 (void)strftime(buf, sizeof(buf),
376 __CONCAT("%l:%","M%p"), localtime(nowp));
377 buf[sizeof(buf) - 1] = '\0';
378 (void)printf("%s ", buf);
379
380 /*
381 * Print how long system has been up.
382 * (Found by looking getting "boottime" from the kernel)
383 */
384 mib[0] = CTL_KERN;
385 mib[1] = KERN_BOOTTIME;
386 size = sizeof(boottime);
387 if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1 &&
388 boottime.tv_sec != 0) {
389 uptime = now - boottime.tv_sec;
390 uptime += 30;
391 if (uptime > SECSPERMIN) {
392 days = uptime / SECSPERDAY;
393 uptime %= SECSPERDAY;
394 hrs = uptime / SECSPERHOUR;
395 uptime %= SECSPERHOUR;
396 mins = uptime / SECSPERMIN;
397 (void)printf(" up");
398 if (days > 0)
399 (void)printf(" %d day%s,", days,
400 days > 1 ? "s" : "");
401 if (hrs > 0 && mins > 0)
402 (void)printf(" %2d:%02d,", hrs, mins);
403 else {
404 if (hrs > 0)
405 (void)printf(" %d hr%s,",
406 hrs, hrs > 1 ? "s" : "");
407 if (mins > 0)
408 (void)printf(" %d min%s,",
409 mins, mins > 1 ? "s" : "");
410 }
411 }
412 }
413
414 /* Print number of users logged in to system */
415 (void)printf(" %d user%s", nusers, nusers != 1 ? "s" : "");
416
417 /*
418 * Print 1, 5, and 15 minute load averages.
419 */
420 if (getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0])) == -1)
421 (void)printf(", no load average information available\n");
422 else {
423 (void)printf(", load averages:");
424 for (i = 0; i < (sizeof(avenrun) / sizeof(avenrun[0])); i++) {
425 if (i > 0)
426 (void)printf(",");
427 (void)printf(" %.2f", avenrun[i]);
428 }
429 (void)printf("\n");
430 }
431 }
432
433 static struct stat *
434 ttystat(line)
435 char *line;
436 {
437 static struct stat sb;
438 char ttybuf[MAXPATHLEN];
439
440 (void)snprintf(ttybuf, sizeof(ttybuf), "%s/%s", _PATH_DEV, line);
441 if (stat(ttybuf, &sb))
442 return (NULL);
443 return (&sb);
444 }
445
446 static void
447 usage(wcmd)
448 int wcmd;
449 {
450 if (wcmd)
451 (void)fprintf(stderr,
452 "usage: w: [-hin] [-M core] [-N system] [user]\n");
453 else
454 (void)fprintf(stderr, "uptime\n");
455 exit(1);
456 }
457