7e2e0296abfd7641a52cfb97b4ef2c7648228a22
[util-vserver.git] / util-vserver / src / vserver-stat.c
1 // $Id$
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 // based on vserver-stat.cc by Guillaum Dallaire and Jacques Gelinas
5 //  
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10 //  
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //  
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 /*
21         vserver-stat help you to see all the active context currently in the kernel
22         with some useful stat
23
24         Changelog:
25
26         2003-01-08 Jacques Gelinas: Shows vserver description
27         2002-02-28 Jacques Gelinas: Use dynamic system call
28         2002-06-05 Martial Rioux : fix memory output error
29         2002-12-05 Martial Rioux : fix output glitch
30         2001-11-29 added uptime/ctx stat
31         2001-11-20 added vmsize, rss, stime and utime stat
32 */
33 #ifdef HAVE_CONFIG_H
34 #  include <config.h>
35 #endif
36
37 #include "vserver.h"
38 #include "util.h"
39 #include "internal.h"
40 #include "wrappers.h"
41 #include "wrappers-dirent.h"
42 #include "wrappers-vserver.h"
43
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <unistd.h>
47 #include <fcntl.h>
48 #include <ctype.h>
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #include <dirent.h>
52 #include <string.h>
53 #include <errno.h>
54 #include <syscall.h>
55 #include <time.h>
56 #include <stdbool.h>
57
58 #define PROC_DIR_NAME "/proc"
59 #define CTX_DIR_NAME "/var/run/vservers/"
60 #define CTX_NAME_MAX_LEN 50
61
62 int     wrapper_exit_code = 1;
63
64 struct ctx_list
65 {
66         int ctx;
67         int process_count;
68         int VmSize_total;
69         int VmRSS_total;
70         long start_time_oldest;
71         long stime_total, utime_total;
72         char name[CTX_NAME_MAX_LEN];
73         struct ctx_list *next;
74 } *my_ctx_list;
75
76 struct process_info
77 {
78         long VmSize;            // number of pages of virtual memory
79         long VmRSS;             // resident set size from /proc/#/stat
80         long start_time;        // start time of process -- seconds since 1-1-70
81         long stime, utime;      // kernel & user-mode CPU time accumulated by process
82         long cstime, cutime;    // cumulative time of process and reaped children
83         int s_context;
84 };
85
86 char *process_name;
87
88 struct ArgInfo {
89     enum { tpUNSET, tpCTX, tpPID }      type;
90     xid_t               ctx;
91     pid_t               pid;
92     unsigned int        interval;
93     bool                shutdown;
94     bool                omit_init;
95     size_t              argc;
96     char * const *      argv;
97 };
98
99 static void
100 showHelp(int fd, char const *cmd, int res)
101 {
102   WRITE_MSG(fd, "Usage:  ");
103   WRITE_STR(fd, cmd);
104   WRITE_MSG(fd,
105             "\n"
106             "Show informations about all the active context.\n\n"
107             "   CTX#            Context number\n"
108             "                   #0 = root context\n"
109             "                   #1 = monitoring context\n"
110             "   PROC QTY        Quantity of processes in each context\n"
111             "   VSZ             Number of pages of virtual memory\n"
112             "   RSS             Resident set size\n"
113             "   userTIME        User-mode CPU time accumulated\n"
114             "   sysTIME         Kernel-mode CPU time accumulated\n"
115             "   UPTIME          Uptime/context\n"
116             "   NAME            Virtual server name\n"
117             "\n");
118   exit(res);
119 }
120
121 static void
122 showVersion()
123 {
124   WRITE_MSG(1,
125             "vserver-stat " VERSION " -- show virtual context statistics\n"
126             "This program is part of " PACKAGE_STRING "\n\n"
127             "Copyright (C) 2003 Enrico Scholz\n"
128             VERSION_COPYRIGHT_DISCLAIMER);
129   exit(0);
130 }
131
132
133 // return uptime (in ms) from /proc/uptime
134 static uint64_t
135 getUptime()
136 {
137   int           fd;
138   char          buffer[64];
139   char *        errptr;
140   size_t        len;
141   time_t        secs;
142   uint32_t      msecs=0;
143
144     // open the /proc/uptime file
145   fd  = Eopen("/proc/uptime", O_RDONLY, 0);
146   len = Eread(fd, buffer, sizeof buffer);
147
148   if (len==sizeof(buffer)) {
149     WRITE_MSG(2, "Too much data in /proc/uptime; aborting...\n");
150     exit(1);
151   }
152   Eclose(fd);
153
154   while (len>0 && buffer[len-1]=='\n') --len;
155   buffer[len] = '\0';
156
157   secs = strtol(buffer, &errptr, 10);
158   if (*errptr!='.') errptr = buffer;
159   else              msecs = strtol(errptr+1, &errptr, 10);
160
161   if ((*errptr!='\0' && *errptr!=' ') || errptr==buffer) {
162     WRITE_MSG(2, "Bad data in /proc/uptime\n");
163     exit(1);
164   }
165
166   return secs*100 + msecs;
167 }
168
169 // insert a new record to the list
170 static struct ctx_list *
171 insert_ctx(int ctx, struct ctx_list *next)
172 {
173         struct ctx_list *new;
174
175         new = (struct ctx_list *)malloc(sizeof(struct ctx_list));
176         new->ctx = ctx;
177         new->process_count = 0;
178         new->VmSize_total = 0;
179         new->VmRSS_total = 0;
180         new->utime_total = 0;
181         new->stime_total = 0;
182         new->start_time_oldest = 0;
183         new->next = next;
184         new->name[0] = '\0';
185
186         return new;
187 }
188
189 // compute the process info into the list
190 static void
191 add_ctx(struct ctx_list *list, struct process_info *process)
192 {
193         list->process_count ++;
194         list->VmSize_total += process->VmSize;
195         list->VmRSS_total += process->VmRSS;
196         list->utime_total += process->utime + process->cutime;
197         list->stime_total += process->stime + process->cstime;
198
199         if (list->start_time_oldest == 0) // first entry
200                 list->start_time_oldest = process->start_time;
201         else
202                 if (list->start_time_oldest > process->start_time)
203                         list->start_time_oldest = process->start_time;
204 }
205
206 // increment the count number in the ctx record using ctx number
207 static void
208 count_ctx(struct ctx_list *list, struct process_info *process)
209 {
210         struct ctx_list *prev = list;
211
212         if (process == NULL) return;
213
214         // search
215         while(list != NULL)
216         {
217                 // find
218                 if (list->ctx == process->s_context)
219                 {
220                         add_ctx(list, process);
221                         return;
222                 }
223                 // insert between
224                 if (list->ctx > process->s_context)
225                 {
226                         prev->next = insert_ctx(process->s_context, list);
227                         add_ctx(prev->next, process);
228                         return;
229                 }
230                 // ++
231                 prev = list;
232                 list = list->next;
233         }
234         // add at the end
235         prev->next = insert_ctx(process->s_context, NULL);
236         add_ctx(prev->next, process);
237 }
238
239 // free mem
240 static void
241 free_ctx(struct ctx_list *list)
242 {
243         struct ctx_list *prev;
244
245         for(;list != NULL; list = prev)
246         {
247                 prev = list->next;              
248                 free(list);
249         }
250 }
251
252
253 // open the process's status file to get the ctx number, and other stat
254 struct process_info *get_process_info(char *pid)
255 {
256   int           fd;
257   char          buffer[1024];
258   char          *p;
259   size_t                idx, l=strlen(pid);
260   static struct process_info process;
261
262   process.s_context = vc_X_getctx(atoi(pid));
263
264   
265   memcpy(buffer,     "/proc/", 6); idx  = 6;
266   memcpy(buffer+idx, pid,      l); idx += l;
267   memcpy(buffer+idx, "/stat",  6);
268         
269     // open the /proc/#/stat file
270   if ((fd = open(buffer, O_RDONLY, 0)) == -1)
271     return NULL;
272     // put the file in a buffer
273   if (read(fd, buffer, sizeof(buffer)) < 1)
274     return NULL;
275
276   close(fd);
277
278   p   = strchr(buffer, ')');            // go after the PID (process_name)
279   for (idx = 0; idx<12 && *p!='\0'; ++p)
280     if ((*p)==' ') ++idx;
281
282   process.utime  = strtol(p,   &p, 10);
283   process.stime  = strtol(p+1, &p, 10);
284   process.cutime = strtol(p+1, &p, 10);
285   process.cstime = strtol(p+1, &p, 10);
286
287   for (idx = 0; idx<5 && *p!='\0'; ++p)
288     if ((*p)==' ') ++idx;
289
290   process.start_time = strtol(p,   &p, 10);
291   process.VmSize     = strtol(p+1, &p, 10);
292   process.VmRSS      = strtol(p+1, &p, 10);
293         
294   return &process;
295 }
296
297
298
299 static size_t
300 fillUintZero(char *buf, unsigned long val, size_t cnt)
301 {
302   size_t        l;
303   
304   l = utilvserver_fmt_ulong(buf, val);
305   if (l<cnt) {
306     memmove(buf+cnt-l, buf, l);
307     memset(buf, '0', cnt-l);
308   }
309   buf[cnt] = '\0';
310
311   return cnt;
312 }
313
314 static void
315 shortenMem(char *buf, unsigned long val)
316 {
317   char const *  SUFFIXES[] = { " ", "K", "M", "G", "T", "+" };
318   char          tmp[16];
319   char const *  suffix = "+";
320   size_t        i, l;
321   unsigned int  mod = 0;
322
323   for (i=0; i<6; ++i) {
324     if (val<1000) {
325       suffix = SUFFIXES[i];
326       break;
327     }
328     mod   = 10*(val & 1023)/1024;
329     val >>= 10;
330   }
331
332   if (val >9999) val=9999;
333   if (val>=1000) mod=0;
334
335   l = utilvserver_fmt_ulong(tmp, val);
336   if (mod!=0) {
337     tmp[l++] = '.';
338     l += utilvserver_fmt_ulong(tmp+l, mod);
339   }
340   i = 7-l-strlen(suffix);
341   
342   memcpy(buf+i,   tmp, l);
343   memcpy(buf+i+l, suffix, strlen(suffix));
344 }
345
346 static void
347 shortenTime(char *buf, uint64_t t)
348 {
349   char          tmp[32];
350   char          *ptr = tmp;
351
352   unsigned long hh, mm, ss, ms;
353
354   ms = t % 100;
355   t /= 100;
356
357   ss = t%60;
358   t /= 60;
359   mm = t%60;
360   t /= 60;
361   hh = t%60;
362   t /= 24;
363
364   if (t>0) {
365     ptr   += utilvserver_fmt_ulong(ptr, t);
366     *ptr++ = 'd';
367     ptr   += fillUintZero(ptr, hh, 2);
368     *ptr++ = 'h';
369     ptr   += fillUintZero(ptr, mm, 2);
370   }
371   else if (hh>0) {
372     ptr   += utilvserver_fmt_ulong(ptr, hh);
373     *ptr++ = 'h';
374     ptr   += fillUintZero(ptr, mm, 2);
375     *ptr++ = 'm';
376     ptr   += fillUintZero(ptr, ss, 2);    
377   }
378   else {
379     ptr   += utilvserver_fmt_ulong(ptr, mm);
380     *ptr++ = 'm';
381     ptr   += fillUintZero(ptr, ss, 2);
382     *ptr++ = 's';
383     ptr   += fillUintZero(ptr, ms, 2);
384   }
385
386   *ptr = ' ';
387   memcpy(buf+10-(ptr-tmp), tmp, ptr-tmp);
388 }
389
390 void showContexts(struct ctx_list *list)
391 {
392   uint64_t      uptime = getUptime();
393
394   WRITE_MSG(1, "CTX   PROC    VSZ    RSS  userTIME   sysTIME    UPTIME NAME\n");
395   while (list!=0) {
396     char        buf[512];
397     char        tmp[32];
398     size_t      l;
399
400     memset(buf, ' ', sizeof(buf));
401     l = utilvserver_fmt_ulong(buf, list->ctx);
402     l = utilvserver_fmt_ulong(tmp, list->process_count);
403     memcpy(buf+10-l, tmp, l);
404
405     shortenMem (buf+10, list->VmSize_total);
406     shortenMem (buf+17, list->VmRSS_total);
407     shortenTime(buf+24, list->utime_total);
408     shortenTime(buf+34, list->stime_total);
409     shortenTime(buf+44, uptime - list->start_time_oldest);
410
411     switch (list->ctx) {
412       case 0            :  strncpy(buf+55, "root server",       20); break;
413       case 1            :  strncpy(buf+55, "monitoring server", 20); break;
414       default           : {
415         char *  name     = 0;
416         char *  cfgpath  = 0;
417         vcCfgStyle      cfgstyle = vcCFG_AUTO;
418
419         if ((cfgpath = vc_getVserverByCtx(list->ctx, &cfgstyle, 0))!=0 &&
420             (name    = vc_getVserverName(cfgpath, cfgstyle))!=0)
421           strncpy(buf+55, name, 20);
422         free(name);
423         free(cfgpath);
424       }
425     }
426
427     write(1, buf, 80);
428     write(1, "\n", 1);
429
430     list = list->next;
431   }
432 }
433
434 int main(int argc, char **argv)
435 {
436   DIR *proc_dir;
437   struct dirent *dir_entry;
438   pid_t my_pid;
439
440     // for error msg
441   process_name = argv[0];
442
443   if (argc==2) {
444     if (strcmp(argv[1], "--help")   ==0) showHelp(1, argv[0], 0);
445     if (strcmp(argv[1], "--version")==0) showVersion();
446   }
447   if (argc!=1) {
448     WRITE_MSG(2, "Unknown parameter, use '--help' for more information\n");
449     return EXIT_FAILURE;
450   }
451
452     // do not include own stat
453   my_pid = getpid();
454
455 #if 1
456     // try to switch in context 1
457   Evc_new_s_context(1, 0,0);
458 #endif
459         
460     // create the fist...
461   my_ctx_list = insert_ctx(0, NULL);
462     // init with the default name for the context 0
463   strncpy(my_ctx_list->name, "root server", CTX_NAME_MAX_LEN);
464
465
466   Echdir(PROC_DIR_NAME);
467   proc_dir = Eopendir(".");
468   while ((dir_entry = readdir(proc_dir)) != NULL)
469   {
470       // select only process file
471     if (!isdigit(*dir_entry->d_name))
472       continue;
473
474     if (atoi(dir_entry->d_name) != my_pid)
475       count_ctx(my_ctx_list, get_process_info(dir_entry->d_name));
476                 
477   }
478   closedir(proc_dir);
479
480     // output the ctx_list      
481   showContexts(my_ctx_list);
482
483     // free the ctx_list
484   free_ctx(my_ctx_list);
485
486   return 0;
487 }