]> mj.ucw.cz Git - ywho.git/blob - ywho.c
Released version 1.10. See ChangeLog for changes.
[ywho.git] / ywho.c
1 /*
2  *      Extended `who' command, version 1.10.
3  *
4  *      (c) 1996--2002 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU General Public License. See file COPYING in any of the GNU packages.
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <unistd.h>
14 #include <fcntl.h>
15 #include <utmp.h>
16 #include <time.h>
17 #include <dirent.h>
18 #include <pwd.h>
19 #include <sys/stat.h>
20 #include <asm/param.h>
21 #include <sys/ioctl.h>
22 #include <ctype.h>
23
24 #undef DEBUG
25 #define MAXHOSTSIZE 24
26
27 #ifdef DEBUG
28 #define DBG(x,y...) printf(x,##y)
29 #else
30 #define DBG(x,y...) do { } while(0)
31 #endif
32
33 struct procrec {
34   struct procrec *next;
35   int pid, ppid, pgrp, sess;
36   int uid, state, distance;
37   time_t ctim, tim;
38   struct utrec *user;
39   char cmd_line[1];
40 };
41
42 static struct procrec *first_procrec;
43
44 struct utrec {
45   struct utrec *next;
46   pid_t login_pid;
47   char line[UT_LINESIZE];
48   time_t login_time, click_time, total_time;
49   char user_name[UT_NAMESIZE+1];
50   int uid;
51   char host_name[MAXHOSTSIZE+1];
52   int mesg, detach;
53   struct procrec *proc;
54 };
55
56 static struct utrec *first_utrec;
57 static int usercnt, zombies, maxhost = 10;
58 static time_t now;
59
60 static void *
61 xmalloc(int i)
62 {
63   void *z;
64   z = malloc(i);
65   if (!z)
66     {
67       fprintf(stderr, "ywho: out of memory!\n");
68       exit(1);
69     }
70   return z;
71 }
72
73 static void
74 strcpy_padded(char *to, char *from, int size)
75 {
76   memcpy(to, from, size);
77   to[size] = 0;
78 }
79
80 static void
81 readutmp(void)
82 {
83   static struct utmp *ut;
84   static struct passwd *pw;
85   char *z;
86   utmpname(UTMP_FILE);
87   while (ut = getutent())
88     if (ut->ut_type == USER_PROCESS && ut->ut_user[0])
89       {
90         struct utrec *u = xmalloc(sizeof(struct utrec));
91         struct stat st;
92         char device[32];
93         size_t hlen;
94         bzero(u, sizeof(*u));
95         u->next = first_utrec;
96         first_utrec = u;
97         u->login_pid = ut->ut_pid;
98         z = ut->ut_line;
99         if (!strncmp(z, "tty", 3))
100           {
101             if (z[3] >= '0' && z[3] <= '9')
102               sprintf(u->line, "c%s", z+3);
103             else
104               strcpy(u->line, z+3);
105           }
106         else if (!strncmp(z, "pts/", 4))
107           strcpy(u->line, z+4);
108         u->login_time = ut->ut_time;
109         strcpy_padded(u->user_name, ut->ut_user, UT_NAMESIZE);
110         pw = getpwnam(u->user_name);
111         if (pw)
112           u->uid = pw->pw_uid;
113         else
114           u->uid = -1;
115         strcpy_padded(u->host_name, ut->ut_host,
116           (MAXHOSTSIZE > UT_HOSTSIZE ? UT_HOSTSIZE : MAXHOSTSIZE));
117         if ((hlen = strlen(u->host_name)) > maxhost)
118           maxhost = hlen;
119         strcpy(u->line, ut->ut_line);
120         if (*u->line)
121           {
122             char *z = u->line;
123             if (!strncmp(z, "tty", 3))
124               {
125                 if (isdigit(z[3]))
126                   sprintf(u->line, "c%s", z+3);
127                 else
128                   strcpy(u->line, z+3);
129               }
130             else if (!strncmp(z, "pts/", 4))
131               strcpy(u->line, z+4);
132             else
133               strcpy(u->line, z);
134           }
135         strcpy(device, "/dev/");
136         strcat(device, ut->ut_line);
137         if (stat(device, &st))
138           u->mesg = 2;
139         else
140           {
141             u->mesg = !!(S_IWGRP & st.st_mode);
142             u->click_time = st.st_atime;
143 #if 0
144             if (u->click_time < st.st_mtime)
145               u->click_time = st.st_mtime;
146             if (u->click_time < st.st_ctime)
147               u->click_time = st.st_ctime;
148 #endif
149           }
150         u->detach = 0;
151         usercnt++;
152         DBG("UTMP: %s %s %d %d\n", u->user_name, u->host_name,
153             u->uid, u->login_pid);
154       }
155   endutent();
156 }
157
158 static void
159 puttime(int s)
160 {
161   int d, h, m;
162   if (s < 100)
163     printf("%4ds", s);
164   else
165     {
166       m = s/60;
167       s %= 60;
168       h = m/60;
169       m %= 60;
170       if (h < 100)
171         printf("%02d.%02d", h, m);
172       else
173         {
174           d = h/24;
175           h %= 24;
176           if (d < 100)
177             printf("%2dd%02d", d, h);
178           else
179             printf("%4dd", d);
180         }
181     }
182 }
183
184 static void
185 memory(unsigned int i)
186 {
187   if (i < 10240)
188     printf("%dB", i);
189   else
190     {
191       i = (i+511U)/1024U;
192       if (i < 2048)
193         printf("%dK", i);
194       else
195         {
196           i = (i+511)/1024;
197           if (i < 2048)
198             printf("%dM", i);
199           else
200             printf("%dG", (i+511U)/1024U);
201         }
202     }
203 }
204
205 static void
206 dispsys(void)
207 {
208   FILE *f;
209   char line[256];
210   char *z, *w;
211   w = NULL;
212   if (f = fopen("/proc/version", "r"))
213     {
214       fgets(line, 256, f);
215       z = strchr(line, '(');
216       if (z)
217         {
218           while (z != line && z[-1] == ' ')
219             z--;
220         }
221       else
222         z = line + strlen(line) - 1;
223       *z = 0;
224       z = strstr(line, " version");
225       if (z)
226         memmove(z, z+8, strlen(z+8)+1);
227       printf(line);
228       fclose(f);
229     }
230   if (f = fopen("/proc/cpuinfo", "r"))
231     {
232       char a[32], b[32], c[32];
233       strcpy(a, "???");
234       b[0] = 0;
235       c[0] = 0;
236       for(;;)
237         {
238           fgets(line, 256, f);
239           if (feof(f))
240             break;
241           if (!strncmp(line, "cpu\t\t: ", 7))
242             {
243               z = line+7;
244               w = a;
245             }
246           else if (!strncmp(line, "cpu family\t: ",13))
247             {
248               z = line+13; strcpy(z + 1, "86\n");
249               w = a;
250             }
251           else if (!strncmp(line, "model\t\t: ", 9))
252             {
253               z = line+9;
254               w = b;
255             }
256           else if (!strncmp(line, "model name\t: ", 13))
257             {
258               z = line+13;
259               if (!strncmp(z, "AMD-K6", 6))
260                 {
261                   z[3] = ' ';
262                   if ((w = strstr(z, "tm w/ multimedia")))
263                     strcpy(w, "-1\n");
264                   else if ((w = strstr(z, "(tm) 3D")))
265                     strcpy(w, "-2\n");
266                 }
267               w = b;
268             }
269           else if (!strncmp(line, "mask\t\t: ", 8))
270             {
271               z = line+8;
272               w = c;
273             }
274           else
275             z = NULL;
276           if (z)
277             {
278               line[strlen(line)-1] = 0;
279               strcpy(w, z);
280               if (!strcmp(w, "Unknown"))
281                 w[0] = 0;
282             }
283         }
284       printf(" on %s", *b ? b : a);
285       if (*c)
286         printf("/%s", c);
287       fclose(f);
288     }
289   if (f = fopen("/proc/uptime", "r"))
290     {
291       int p,q,p1,q1;
292       fgets(line, 256, f);
293       sscanf(line, "%d.%d%d.%d", &p, &p1, &q, &q1);
294       printf(" up ");
295       puttime(p);
296       printf(" run ");
297       puttime(p-q);
298       fclose(f);
299     }
300   {
301     struct tm *tm;
302     char *days[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
303     now = time(NULL);
304     tm = localtime(&now);
305     printf(" on %s %02d-%02d-%02d %02d.%02d:%02d", days[tm->tm_wday], tm->tm_mday, tm->tm_mon+1,
306            tm->tm_year%100, tm->tm_hour, tm->tm_min, tm->tm_sec);
307     printf(" (%u UE)\n", (unsigned int) now);
308   }
309   if (f = fopen("/proc/loadavg", "r"))
310     {
311       int i = 3;
312       fgets(line, 256, f);
313       *strchr(line, '\n') = 0;
314       z = line-1;
315       while (i-- && z)
316         {
317           *z = '/';
318           z = strchr(z, ' ');
319         }
320       if (z)
321         {
322           char *k;
323           *z++ = 0;
324           k = strchr(z, ' ');
325           if (k)
326             *k = 0;
327           printf("R/T=%s, ", z);
328         }
329       else
330         z = line;
331       printf("LAV=%s", line);
332       fclose(f);
333     }
334   if (f = fopen("/proc/meminfo", "r"))
335     {
336       int free, buffers, stotal, sfree;
337       free = buffers = stotal = sfree = 0;
338       while (fgets(line, 256, f))
339         {
340           if (!strncmp(line, "MemFree:", 8))
341             sscanf(line+8, "%d", &free);
342           else if (!strncmp(line, "Buffers:", 8))
343             sscanf(line+8, "%d", &buffers);
344           else if (!strncmp(line, "SwapTotal:", 10))
345             sscanf(line+10, "%d", &stotal);
346           else if (!strncmp(line, "SwapFree:", 9))
347             sscanf(line+9, "%d", &sfree);
348         }
349       printf(", free ");
350       memory(1024*(free+buffers));
351       printf(" of RAM");
352       if (stotal != sfree)
353         {
354           printf(", used ");
355           memory(1024*(stotal - sfree));
356           printf(" of swap");
357         }
358     }
359   printf(", %d user%s.\n", usercnt, usercnt == 1 ? "" : "s");
360 }
361
362 static void
363 readproc(void)
364 {
365   DIR *d;
366   struct dirent *e;
367   struct winsize win;
368   unsigned cmdcols = 0;
369 #define LEFTSIZE 29
370   
371   if (!ioctl(1, TIOCGWINSZ, &win) && win.ws_col >= LEFTSIZE + maxhost + 10 && win.ws_col < 1024)
372     cmdcols = win.ws_col;
373   else cmdcols = 80;
374   cmdcols -= LEFTSIZE + maxhost;
375   if (d = opendir("/proc"))
376     {
377       while (e = readdir(d))
378         {
379           int i;
380           if (sscanf(e->d_name, "%d", &i)==1)
381             {
382               struct procrec *p = xmalloc(sizeof(struct procrec) + cmdcols);
383               struct stat st;
384               char name[256], eman[1024];
385               int fil;
386               bzero(p, sizeof(*p));
387               p->pid = i;
388               strcpy(name, "/proc/");
389               strcat(name, e->d_name);
390               if (!stat(name, &st))
391                 {
392                   p->uid = st.st_uid;
393                   strcpy(eman, name);
394                   strcat(eman, "/cmdline");
395                   if ((fil = open(eman, O_RDONLY)) >= 0)
396                     {
397                       int y, z = read(fil, p->cmd_line, cmdcols);
398                       if (z < 0)
399                         z = 0;
400                       for (y=0; y<z; y++)
401                         if (!p->cmd_line[y])
402                           p->cmd_line[y] = ' ';
403                       p->cmd_line[z] = 0;
404                       close(fil);
405                     }
406                   strcpy(eman, name);
407                   strcat(eman, "/stat");
408                   if ((fil = open(eman, O_RDONLY)) >= 0)
409                     {
410                       int z = read(fil, eman, 1023);
411                       char *j, *k;
412                       int trash, utim, stim, cutim, cstim;
413                       if (z < 0)
414                         z = 0;
415                       eman[z] = 0;
416                       if ((j = strchr(eman, '(')) && (k = strchr(j+1, ')')))
417                         {
418                           *k = 0;
419                           if (!p->cmd_line[0])
420                             {
421                               strncpy(p->cmd_line, j+1, cmdcols);
422                               p->cmd_line[cmdcols] = 0;
423                             }
424                           p->state = k[2];
425                           if (p->state == 'Z')
426                             zombies++;
427                           sscanf(k+4, "%d%d%d%d%d%d%d%d%d%d%d%d%d%d",
428                                  &p->ppid, &p->pgrp, &p->sess, &trash, &trash,
429                                  &trash, &trash, &trash, &trash, &trash, &utim,
430                                  &stim, &cutim, &cstim);
431                           DBG("PROC: pid=%d ppid=%d pgrp=%d sess=%d uid=%d\n", p->pid, p->ppid, p->pgrp, p->sess, p->uid);
432                           p->next = first_procrec;
433                           first_procrec = p;
434                         }
435                       p->tim = utim + stim;
436                       p->ctim = cutim + cstim;
437                       close(fil);
438                     }
439                 }
440             }
441         }
442       closedir(d);
443     }
444   else
445     {
446       perror("unable to scan /proc");
447       exit(1);
448     }
449 }
450
451 static void
452 solve(void)
453 {
454   struct utrec *u;
455   struct procrec *m, *n;
456   struct passwd *pw;
457   int cnt;
458
459   /* Recognize login session process trees and find leaves of these trees */
460   for (u=first_utrec; u; u=u->next)
461     {
462       for (m=first_procrec; m; m=m->next)
463         if (m->pid == u->login_pid)
464           {
465             m->user = u;
466             u->total_time = m->ctim;
467             u->proc = m;
468             DBG("** %d is login process for %s@%s\n", m->pid, u->user_name, u->line);
469           }
470     }
471   do
472     {
473       cnt = 0;
474       for (m=first_procrec; m; m=m->next)
475         if (!m->user)
476           for (n=first_procrec; n; n=n->next)
477             if (n->pid == m->ppid && n->user)
478               {
479                 u = m->user = n->user;
480                 m->distance = n->distance + 1;
481                 if (!u->proc || u->proc->distance < m->distance)
482                   u->proc = m;
483                 cnt++;
484                 DBG("** %d at distance %d for %s@%s\n", m->pid, m->distance, u->user_name, u->line);
485                 break;
486               }
487     }
488   while (cnt);
489
490   /* Process the remaining processes */
491   for(m=first_procrec; m; m=m->next)
492     {
493       if (m->user)
494         continue;
495       for(u=first_utrec; u; u=u->next)
496         if (u->uid == m->uid)
497           break;
498       if (!u)
499         {
500           if (m->uid < 2 || m->ppid != 1)
501             continue;
502           u = xmalloc(sizeof(struct utrec));
503           bzero(u, sizeof(*u));
504           u->next = first_utrec;
505           first_utrec = u;
506           pw = getpwuid(u->uid = m->uid);
507           if (pw)
508             strcpy(u->user_name, pw->pw_name);
509           else
510             sprintf(u->user_name, "<%d>", m->uid);
511           u->mesg = 3;
512         }
513       if (!u->proc)
514         u->proc = m;
515       u->total_time += m->ctim;
516       u->detach++;
517       DBG("** daemon %s (%s)\n", m->cmd_line, u->user_name);
518     }
519 }
520
521 static inline int
522 comp(struct utrec *a, struct utrec *b)
523 {
524   int k;
525   if (b->mesg == 3)
526     return -1;
527   k = strcmp(a->user_name, b->user_name);
528   if (k)
529     return k;
530   if (!a->host_name[0] && b->host_name[0])
531     return -1;
532   return strcmp(a->line, b->line);
533 }
534
535 static void
536 sort(void)
537 {
538   struct utrec *fi = NULL;
539   struct utrec *z, **y, **m, **l;
540   l = &fi;
541   while (first_utrec)
542     {
543       y = &first_utrec;
544       m = y;
545       while (z = *y)
546         {
547           if (comp(z, *m) < 0)
548             m = y;
549           y = &z->next;
550         }
551       z = *m;
552       *m = z->next;
553       *l = z;
554       z->next = NULL;
555       l = &z->next;
556     }
557   first_utrec = fi;
558 }
559
560 static void
561 show(void)
562 {
563   struct utrec *u;
564   unsigned char *c;
565   printf("Name     Li  MD %-*s LogT  IdleT RunT  Command\n", maxhost, "From");
566   for(u=first_utrec; u; u=u->next)
567     {
568       if (!u->line[0])
569         strcpy(u->line, "--");
570       printf("%-8.8s %-3s %c%c %-*.*s ",
571              u->user_name,
572              u->line,
573              u->mesg ? ' ' : '-',
574              u->detach ? 'D' : ' ',
575              maxhost,
576              maxhost,
577              u->host_name);
578       if (u->mesg <= 1)
579         {
580           if (u->login_time > now)
581             u->login_time = now;
582           puttime(now - u->login_time);
583           putchar(' ');
584           if (u->click_time > now)
585             u->click_time = now;
586           if (now - u->click_time >= 60)
587             puttime(now - u->click_time);
588           else
589             printf("     ");
590         }
591       else
592         printf("?????      ");
593       if (u->proc)
594         {
595           putchar(' ');
596           puttime((unsigned)u->total_time/(unsigned)HZ);
597           putchar(' ');
598           for (c = u->proc->cmd_line; *c; c++)
599             {
600               if (*c < 0x20 || (*c >= 0x7f && *c < 0xa0))
601                 putchar(' ');
602               else
603                 putchar(*c);
604             }
605         }
606       else
607         printf(" <nothing>");
608       putchar('\n');
609     }
610 }
611
612 int main(void)
613 {
614   readutmp();
615   dispsys();
616   readproc();
617   solve();
618   sort();
619   show();
620   if (zombies)
621     {
622       printf("!!! There %s %d zombie%s walking around.\n",
623              zombies == 1 ? "is" : "are",
624              zombies,
625              zombies == 1 ? "" : "s" );
626     }
627   return 0;
628 }