Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.bin / w / w.c
1 /*-
2  * Copyright (c) 1980, 1991, 1993, 1994
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) 1980, 1991, 1993, 1994\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[] = "@(#)w.c 8.4 (Berkeley) 4/16/94";
43 #endif
44 static const char rcsid[] =
45   "$FreeBSD: src/usr.bin/w/w.c,v 1.38.2.6 2002/03/12 19:51:51 phantom Exp $";
46 #endif /* not lint */
47
48 /*
49  * w - print system status (who and what)
50  *
51  * This program is similar to the systat command on Tenex/Tops 10/20
52  *
53  */
54 #include <sys/param.h>
55 #include <sys/time.h>
56 #include <sys/stat.h>
57 #include <sys/sysctl.h>
58 #include <sys/proc.h>
59 #include <sys/user.h>
60 #include <sys/ioctl.h>
61 #include <sys/socket.h>
62 #include <sys/tty.h>
63
64 #include <machine/cpu.h>
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 <langinfo.h>
75 #include <locale.h>
76 #include <netdb.h>
77 #include <nlist.h>
78 #include <paths.h>
79 #include <stdio.h>
80 #include <stdlib.h>
81 #include <string.h>
82 #include <unistd.h>
83 #include <utmp.h>
84 #include <vis.h>
85
86 #include <arpa/nameser.h>
87 #include <resolv.h>
88
89 #include "extern.h"
90
91 struct timeval  boottime;
92 struct utmp     utmp;
93 struct winsize  ws;
94 kvm_t          *kd;
95 time_t          now;            /* the current time of day */
96 time_t          uptime;         /* time of last reboot & elapsed time since */
97 int             ttywidth;       /* width of tty */
98 int             argwidth;       /* width of tty */
99 int             header = 1;     /* true if -h flag: don't print heading */
100 int             nflag;          /* true if -n flag: don't convert addrs */
101 int             dflag;          /* true if -d flag: output debug info */
102 int             sortidle;       /* sort by idle time */
103 int             use_ampm;       /* use AM/PM time */
104 int             use_comma;      /* use comma as floats separator */
105 char          **sel_users;      /* login array of particular users selected */
106 char            domain[MAXHOSTNAMELEN];
107
108 /*
109  * One of these per active utmp entry.
110  */
111 struct  entry {
112         struct  entry *next;
113         struct  utmp utmp;
114         dev_t   tdev;                   /* dev_t of terminal */
115         time_t  idle;                   /* idle time of terminal in seconds */
116         struct  kinfo_proc *kp;         /* `most interesting' proc */
117         char    *args;                  /* arg list of interesting process */
118         struct  kinfo_proc *dkp;        /* debug option proc list */
119 } *ep, *ehead = NULL, **nextp = &ehead;
120
121 #define debugproc(p) *((struct kinfo_proc **)&(p)->kp_eproc.e_spare[0])
122
123 static void              pr_header __P((time_t *, int));
124 static struct stat      *ttystat __P((char *, int));
125 static void              usage __P((int));
126 static int               this_is_uptime __P((const char *s));
127
128 char *fmt_argv __P((char **, char *, int));     /* ../../bin/ps/fmt.c */
129
130 int
131 main(argc, argv)
132         int argc;
133         char **argv;
134 {
135         struct kinfo_proc *kp;
136         struct kinfo_proc *dkp;
137         struct hostent *hp;
138         struct stat *stp;
139         FILE *ut;
140         in_addr_t l;
141         time_t touched;
142         int ch, i, nentries, nusers, wcmd, longidle, dropgid;
143         char *memf, *nlistf, *p, *x;
144         char buf[MAXHOSTNAMELEN], errbuf[_POSIX2_LINE_MAX];
145
146         (void)setlocale(LC_ALL, "");
147         use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0');
148         use_comma = (*nl_langinfo(RADIXCHAR) != ',');
149
150         /* Are we w(1) or uptime(1)? */
151         if (this_is_uptime(argv[0]) == 0) {
152                 wcmd = 0;
153                 p = "";
154         } else {
155                 wcmd = 1;
156                 p = "dhiflM:N:nsuw";
157         }
158
159         dropgid = 0;
160         memf = nlistf = _PATH_DEVNULL;
161         while ((ch = getopt(argc, argv, p)) != -1)
162                 switch (ch) {
163                 case 'd':
164                         dflag = 1;
165                         break;
166                 case 'h':
167                         header = 0;
168                         break;
169                 case 'i':
170                         sortidle = 1;
171                         break;
172                 case 'M':
173                         header = 0;
174                         memf = optarg;
175                         dropgid = 1;
176                         break;
177                 case 'N':
178                         nlistf = optarg;
179                         dropgid = 1;
180                         break;
181                 case 'n':
182                         nflag = 1;
183                         break;
184                 case 'f': case 'l': case 's': case 'u': case 'w':
185                         warnx("[-flsuw] no longer supported");
186                         /* FALLTHROUGH */
187                 case '?':
188                 default:
189                         usage(wcmd);
190                 }
191         argc -= optind;
192         argv += optind;
193
194         if (!(_res.options & RES_INIT))
195                 res_init();
196         _res.retrans = 2;       /* resolver timeout to 2 seconds per try */
197         _res.retry = 1;         /* only try once.. */
198
199         /*
200          * Discard setgid privileges if not the running kernel so that bad
201          * guys can't print interesting stuff from kernel memory.
202          */
203         if (dropgid)
204                 setgid(getgid());
205
206         if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf)) == NULL)
207                 errx(1, "%s", errbuf);
208
209         (void)time(&now);
210         if ((ut = fopen(_PATH_UTMP, "r")) == NULL)
211                 err(1, "%s", _PATH_UTMP);
212
213         if (*argv)
214                 sel_users = argv;
215
216         for (nusers = 0; fread(&utmp, sizeof(utmp), 1, ut);) {
217                 if (utmp.ut_name[0] == '\0')
218                         continue;
219                 if (!(stp = ttystat(utmp.ut_line, UT_LINESIZE)))
220                         continue;       /* corrupted record */
221                 ++nusers;
222                 if (wcmd == 0)
223                         continue;
224                 if (sel_users) {
225                         int usermatch;
226                         char **user;
227
228                         usermatch = 0;
229                         for (user = sel_users; !usermatch && *user; user++)
230                                 if (!strncmp(utmp.ut_name, *user, UT_NAMESIZE))
231                                         usermatch = 1;
232                         if (!usermatch)
233                                 continue;
234                 }
235                 if ((ep = calloc(1, sizeof(struct entry))) == NULL)
236                         errx(1, "calloc");
237                 *nextp = ep;
238                 nextp = &ep->next;
239                 memmove(&ep->utmp, &utmp, sizeof(struct utmp));
240                 ep->tdev = stp->st_rdev;
241 #ifdef CPU_CONSDEV
242                 /*
243                  * If this is the console device, attempt to ascertain
244                  * the true console device dev_t.
245                  */
246                 if (ep->tdev == 0) {
247                         int mib[2];
248                         size_t size;
249
250                         mib[0] = CTL_MACHDEP;
251                         mib[1] = CPU_CONSDEV;
252                         size = sizeof(dev_t);
253                         (void)sysctl(mib, 2, &ep->tdev, &size, NULL, 0);
254                 }
255 #endif
256                 touched = stp->st_atime;
257                 if (touched < ep->utmp.ut_time) {
258                         /* tty untouched since before login */
259                         touched = ep->utmp.ut_time;
260                 }
261                 if ((ep->idle = now - touched) < 0)
262                         ep->idle = 0;
263         }
264         (void)fclose(ut);
265
266         if (header || wcmd == 0) {
267                 pr_header(&now, nusers);
268                 if (wcmd == 0) {
269                         (void)kvm_close(kd);
270                         exit(0);
271                 }
272
273 #define HEADER_USER             "USER"
274 #define HEADER_TTY              "TTY"
275 #define HEADER_FROM             "FROM"
276 #define HEADER_LOGIN_IDLE       "LOGIN@  IDLE "
277 #define HEADER_WHAT             "WHAT\n"
278 #define WUSED  (UT_NAMESIZE + UT_LINESIZE + UT_HOSTSIZE + \
279                 sizeof(HEADER_LOGIN_IDLE) + 3)  /* header width incl. spaces */ 
280                 (void)printf("%-*.*s %-*.*s %-*.*s  %s", 
281                                 UT_NAMESIZE, UT_NAMESIZE, HEADER_USER,
282                                 UT_LINESIZE, UT_LINESIZE, HEADER_TTY,
283                                 UT_HOSTSIZE, UT_HOSTSIZE, HEADER_FROM,
284                                 HEADER_LOGIN_IDLE HEADER_WHAT);
285         }
286
287         if ((kp = kvm_getprocs(kd, KERN_PROC_ALL, 0, &nentries)) == NULL)
288                 err(1, "%s", kvm_geterr(kd));
289         for (i = 0; i < nentries; i++, kp++) {
290                 struct proc *pr = &kp->kp_proc;
291                 struct eproc *e;
292
293                 if (pr->p_stat == SIDL || pr->p_stat == SZOMB)
294                         continue;
295                 e = &kp->kp_eproc;
296                 for (ep = ehead; ep != NULL; ep = ep->next) {
297                         if (ep->tdev == e->e_tdev) {
298                                 /*
299                                  * proc is associated with this terminal
300                                  */
301                                 if (ep->kp == NULL && e->e_pgid == e->e_tpgid) {
302                                         /*
303                                          * Proc is 'most interesting'
304                                          */
305                                         if (proc_compare(&ep->kp->kp_proc, pr))
306                                                 ep->kp = kp;
307                                 }
308                                 /*
309                                  * Proc debug option info; add to debug
310                                  * list using kinfo_proc kp_eproc.e_spare
311                                  * as next pointer; ptr to ptr avoids the
312                                  * ptr = long assumption.
313                                  */
314                                 dkp = ep->dkp;
315                                 ep->dkp = kp;
316                                 debugproc(kp) = dkp;
317                         }
318                 }
319         }
320         if ((ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 &&
321              ioctl(STDERR_FILENO, TIOCGWINSZ, &ws) == -1 &&
322              ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) == -1) || ws.ws_col == 0)
323                ttywidth = 79;
324         else
325                ttywidth = ws.ws_col - 1;
326         argwidth = ttywidth - WUSED;
327         if (argwidth < 4)
328                 argwidth = 8;
329         for (ep = ehead; ep != NULL; ep = ep->next) {
330                 if (ep->kp == NULL) {
331                         ep->args = "-";
332                         continue;
333                 }
334                 ep->args = fmt_argv(kvm_getargv(kd, ep->kp, argwidth),
335                     ep->kp->kp_proc.p_comm, MAXCOMLEN);
336                 if (ep->args == NULL)
337                         err(1, NULL);
338         }
339         /* sort by idle time */
340         if (sortidle && ehead != NULL) {
341                 struct entry *from, *save;
342
343                 from = ehead;
344                 ehead = NULL;
345                 while (from != NULL) {
346                         for (nextp = &ehead;
347                             (*nextp) && from->idle >= (*nextp)->idle;
348                             nextp = &(*nextp)->next)
349                                 continue;
350                         save = from;
351                         from = from->next;
352                         save->next = *nextp;
353                         *nextp = save;
354                 }
355         }
356
357         if (!nflag) {
358                 if (gethostname(domain, sizeof(domain) - 1) < 0 ||
359                     (p = strchr(domain, '.')) == NULL)
360                         domain[0] = '\0';
361                 else {
362                         domain[sizeof(domain) - 1] = '\0';
363                         memmove(domain, p, strlen(p) + 1);
364                 }
365         }
366
367         for (ep = ehead; ep != NULL; ep = ep->next) {
368                 char host_buf[UT_HOSTSIZE + 1];
369
370                 host_buf[UT_HOSTSIZE] = '\0';
371                 strncpy(host_buf, ep->utmp.ut_host, UT_HOSTSIZE);
372                 p = *host_buf ? host_buf : "-";
373                 if ((x = strchr(p, ':')) != NULL)
374                         *x++ = '\0';
375                 if (!nflag && isdigit(*p) && (l = inet_addr(p)) != -1 &&
376                     (hp = gethostbyaddr((char *)&l, sizeof(l), AF_INET))) {
377                         if (domain[0] != '\0') {
378                                 p = hp->h_name;
379                                 p += strlen(hp->h_name);
380                                 p -= strlen(domain);
381                                 if (p > hp->h_name &&
382                                     strcasecmp(p, domain) == 0)
383                                         *p = '\0';
384                         }
385                         p = hp->h_name;
386                 }
387                 if (nflag && *p && strcmp(p, "-") &&
388                     inet_addr(p) == INADDR_NONE) {
389                         hp = gethostbyname(p);
390
391                         if (hp != NULL) {
392                                 struct in_addr in;
393
394                                 memmove(&in, hp->h_addr, sizeof(in));
395                                 p = inet_ntoa(in);
396                         }
397                 }
398                 if (x) {
399                         (void)snprintf(buf, sizeof(buf), "%s:%s", p, x);
400                         p = buf;
401                 }
402                 if (dflag) {
403                         for (dkp = ep->dkp; dkp != NULL; dkp = debugproc(dkp)) {
404                                 char *ptr;
405
406                                 ptr = fmt_argv(kvm_getargv(kd, dkp, argwidth),
407                                     dkp->kp_proc.p_comm, MAXCOMLEN);
408                                 if (ptr == NULL)
409                                         ptr = "-";
410                                 (void)printf("\t\t%-9d %s\n",
411                                     dkp->kp_proc.p_pid, ptr);
412                         }
413                 }
414                 (void)printf("%-*.*s %-*.*s %-*.*s ",
415                     UT_NAMESIZE, UT_NAMESIZE, ep->utmp.ut_name,
416                     UT_LINESIZE, UT_LINESIZE,
417                     strncmp(ep->utmp.ut_line, "tty", 3) &&
418                     strncmp(ep->utmp.ut_line, "cua", 3) ?
419                     ep->utmp.ut_line : ep->utmp.ut_line + 3,
420                     UT_HOSTSIZE, UT_HOSTSIZE, *p ? p : "-");
421                 pr_attime(&ep->utmp.ut_time, &now);
422                 longidle = pr_idle(ep->idle);
423                 (void)printf("%.*s\n", argwidth - longidle, ep->args);
424         }
425         (void)kvm_close(kd);
426         exit(0);
427 }
428
429 static void
430 pr_header(nowp, nusers)
431         time_t *nowp;
432         int nusers;
433 {
434         double avenrun[3];
435         time_t uptime;
436         int days, hrs, i, mins, secs;
437         int mib[2];
438         size_t size;
439         char buf[256];
440
441         /*
442          * Print time of day.
443          */
444         (void)strftime(buf, sizeof(buf) - 1,
445                        use_ampm ? "%l:%M%p" : "%k:%M", localtime(nowp));
446         buf[sizeof(buf) - 1] = '\0';
447         (void)printf("%s ", buf);
448
449         /*
450          * Print how long system has been up.
451          * (Found by looking getting "boottime" from the kernel)
452          */
453         mib[0] = CTL_KERN;
454         mib[1] = KERN_BOOTTIME;
455         size = sizeof(boottime);
456         if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1 &&
457             boottime.tv_sec != 0) {
458                 uptime = now - boottime.tv_sec;
459                 if (uptime > 60)
460                         uptime += 30;
461                 days = uptime / 86400;
462                 uptime %= 86400;
463                 hrs = uptime / 3600;
464                 uptime %= 3600;
465                 mins = uptime / 60;
466                 secs = uptime % 60;
467                 (void)printf(" up");
468                 if (days > 0)
469                         (void)printf(" %d day%s,", days, days > 1 ? "s" : "");
470                 if (hrs > 0 && mins > 0)
471                         (void)printf(" %2d:%02d,", hrs, mins);
472                 else if (hrs > 0)
473                         (void)printf(" %d hr%s,", hrs, hrs > 1 ? "s" : "");
474                 else if (mins > 0)
475                         (void)printf(" %d min%s,", mins, mins > 1 ? "s" : "");
476                 else
477                         (void)printf(" %d sec%s,", secs, secs > 1 ? "s" : "");
478         }
479
480         /* Print number of users logged in to system */
481         (void)printf(" %d user%s", nusers, nusers == 1 ? "" : "s");
482
483         /*
484          * Print 1, 5, and 15 minute load averages.
485          */
486         if (getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0])) == -1)
487                 (void)printf(", no load average information available\n");
488         else {
489                 (void)printf(", load averages:");
490                 for (i = 0; i < (sizeof(avenrun) / sizeof(avenrun[0])); i++) {
491                         if (use_comma && i > 0)
492                                 (void)printf(",");
493                         (void)printf(" %.2f", avenrun[i]);
494                 }
495                 (void)printf("\n");
496         }
497 }
498
499 static struct stat *
500 ttystat(line, sz)
501         char *line;
502         int sz;
503 {
504         static struct stat sb;
505         char ttybuf[MAXPATHLEN];
506
507         (void)snprintf(ttybuf, sizeof(ttybuf), "%s%.*s", _PATH_DEV, sz, line);
508         if (stat(ttybuf, &sb)) {
509                 warn("%s", ttybuf);
510                 return (NULL);
511         }
512         return (&sb);
513 }
514
515 static void
516 usage(wcmd)
517         int wcmd;
518 {
519         if (wcmd)
520                 (void)fprintf(stderr,
521                     "usage: w [-dhin] [-M core] [-N system] [user ...]\n");
522         else
523                 (void)fprintf(stderr, "usage: uptime\n");
524         exit(1);
525 }
526
527 static int 
528 this_is_uptime(s)
529         const char *s;
530 {
531         const char *u;
532
533         if ((u = strrchr(s, '/')) != NULL)
534                 ++u;
535         else
536                 u = s;
537         if (strcmp(u, "uptime") == 0)
538                 return (0);
539         return (-1);
540 }