ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/statgrab/statgrab.c
(Generate patch)

Comparing projects/libstatgrab/src/statgrab/statgrab.c (file contents):
Revision 1.8 by ats, Fri Aug 29 06:56:12 2003 UTC vs.
Revision 1.21 by ats, Wed Feb 18 17:29:15 2004 UTC

# Line 1 | Line 1
1   /*
2   * i-scream central monitoring system
3   * http://www.i-scream.org
4 < * Copyright (C) 2000-2003 i-scream
4 > * Copyright (C) 2000-2004 i-scream
5   *
6   * This program is free software; you can redistribute it and/or
7   * modify it under the terms of the GNU General Public License
# Line 16 | Line 16
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 + * $Id$
21   */
22  
23   #ifdef HAVE_CONFIG_H
# Line 35 | Line 37 | typedef enum {
37          FLOAT,
38          DOUBLE,
39          STRING,
40 <        INT
40 >        INT,
41 >        BOOL,
42 >        DUPLEX
43   } stat_type;
44  
45   typedef enum {
# Line 140 | Line 144 | void add_stat(stat_type type, void *stat, ...) {
144          ++num_stats;
145   }
146  
147 < /* Compare two stats by name, for sorting purposes. */
147 > /* Compare two stats by name for qsort and bsearch. */
148   int stats_compare(const void *a, const void *b) {
149          return strcmp(((stat *)a)->name, ((stat *)b)->name);
150   }
151  
152 + /* Compare up to the length of the key for bsearch. */
153 + int stats_compare_prefix(const void *key, const void *item) {
154 +        const char *kn = ((stat *)key)->name;
155 +        const char *in = ((stat *)item)->name;
156 +
157 +        return strncmp(kn, in, strlen(kn));
158 + }
159 +
160   void populate_const() {
161          static int zero = 0;
162  
# Line 260 | Line 272 | void populate_fs() {
272          if (disk != NULL) {
273                  for (i = 0; i < n; i++) {
274                          /* FIXME it'd be nicer if libstatgrab did this */
275 <                        const char *name = disk[i].device_name,
276 <                                   *p = strrchr(name, '/');
277 <                        if (p != NULL)
278 <                                name = p + 1;
279 <                        if (*name == '\0')
280 <                                name = "root";
281 <        
275 >                        char *buf, *name, *p;
276 >                        const char *device = disk[i].device_name;
277 >
278 >                        if (strcmp(device, "/") == 0)
279 >                                device = "root";
280 >
281 >                        buf = strdup(device);
282 >                        if (buf == NULL)
283 >                                die("out of memory");
284 >
285 >                        name = buf;
286 >                        if (strlen(name) == 2 && name[1] == ':')
287 >                                name[1] = '\0';
288 >                        if (strncmp(name, "/dev/", 5) == 0)
289 >                                name += 5;
290 >                        while ((p = strchr(name, '/')) != NULL)
291 >                                *p = '_';
292 >
293                          add_stat(STRING, &disk[i].device_name,
294                                   "fs", name, "device_name", NULL);
295                          add_stat(STRING, &disk[i].fs_type,
# Line 285 | Line 308 | void populate_fs() {
308                                   "fs", name, "used_inodes", NULL);
309                          add_stat(LONG_LONG, &disk[i].free_inodes,
310                                   "fs", name, "free_inodes", NULL);
311 +
312 +                        free(buf);
313                  }
314          }
315   }
# Line 325 | Line 350 | void populate_proc() {
350   void populate_net() {
351          int n, i;
352          network_stat_t *net;
353 +        network_iface_stat_t *iface;
354  
355          net = use_diffs ? get_network_stats_diff(&n) : get_network_stats(&n);
356          if (net != NULL) {
# Line 341 | Line 367 | void populate_net() {
367                                   "net", name, "systime", NULL);
368                  }
369          }
370 +
371 +        iface = get_network_iface_stats(&n);
372 +        if (iface != NULL) {
373 +                for (i = 0; i < n; i++) {
374 +                        const char *name = iface[i].interface_name;
375 +
376 +                        add_stat(INT, &iface[i].speed,
377 +                                 "net", name, "speed", NULL);
378 +                        add_stat(BOOL, &iface[i].up,
379 +                                 "net", name, "up", NULL);
380 +                        add_stat(DUPLEX, &iface[i].dup,
381 +                                 "net", name, "duplex", NULL);
382 +                }
383 +        }
384   }
385  
386   void populate_page() {
# Line 350 | Line 390 | void populate_page() {
390          if (page != NULL) {
391                  add_stat(LONG_LONG, &page->pages_pagein, "page", "in", NULL);
392                  add_stat(LONG_LONG, &page->pages_pageout, "page", "out", NULL);
393 <                add_stat(LONG_LONG, &page->systime, "page", "systime", NULL);
393 >                add_stat(TIME_T, &page->systime, "page", "systime", NULL);
394          }
395   }
396  
# Line 409 | Line 449 | void get_stats() {
449                          t->populate();
450          }
451  
452 <        qsort(stats, num_stats, sizeof *stats, stats_compare);
452 >        if (stats != NULL)
453 >                qsort(stats, num_stats, sizeof *stats, stats_compare);
454   }
455  
456   /* Print the value of a stat. */
# Line 437 | Line 478 | void print_stat_value(const stat *s) {
478          case INT:
479                  printf("%d", *(int *)v);
480                  break;
481 +        case BOOL:
482 +                printf("%s", *(int *)v ? "true" : "false");
483 +                break;
484 +        case DUPLEX:
485 +                switch (*(statgrab_duplex *) v) {
486 +                case FULL_DUPLEX:
487 +                        printf("full");
488 +                        break;
489 +                case HALF_DUPLEX:
490 +                        printf("half");
491 +                        break;
492 +                default:
493 +                        printf("unknown");
494 +                        break;
495 +                }
496 +                break;
497          }
498   }
499  
# Line 468 | Line 525 | void print_stats(int argc, char **argv) {
525          } else {
526                  /* Print selected stats. */
527                  for (i = optind; i < argc; i++) {
528 +                        char *name = argv[i];
529                          stat key;
530 <                        const stat *s;
530 >                        const stat *s, *end;
531 >                        int (*compare)(const void *, const void *);
532  
533 <                        key.name = argv[i];
534 <                        s = (const stat *)bsearch(&key, stats, num_stats,
535 <                                                  sizeof *stats,
536 <                                                  stats_compare);
537 <                        if (s != NULL) {
533 >                        key.name = name;
534 >                        if (name[strlen(name) - 1] == '.')
535 >                                compare = stats_compare_prefix;
536 >                        else
537 >                                compare = stats_compare;
538 >
539 >                        if (stats == NULL) {
540 >                                s = NULL;
541 >                        } else {
542 >                                s = (const stat *)bsearch(&key, stats,
543 >                                                          num_stats,
544 >                                                          sizeof *stats,
545 >                                                          compare);
546 >                        }
547 >
548 >                        if (s == NULL) {
549 >                                printf("Unknown stat %s\n", name);
550 >                                continue;
551 >                        }
552 >
553 >                        /* Find the range of stats the user wanted. */
554 >                        for (; s >= stats; s--) {
555 >                                if (compare(&key, s) != 0)
556 >                                        break;
557 >                        }
558 >                        s++;
559 >                        for (end = s; end < &stats[num_stats]; end++) {
560 >                                if (compare(&key, end) != 0)
561 >                                        break;
562 >                        }
563 >
564 >                        /* And print them. */
565 >                        for (; s < end; s++) {
566                                  print_stat(s);
567                          }
568                  }
# Line 484 | Line 571 | void print_stats(int argc, char **argv) {
571  
572   void usage() {
573          printf("Usage: statgrab [OPTION]... [STAT]...\n"
574 <               "Display system statistics (all statistics by default).\n"
574 >               "Display system statistics.\n"
575 >               "\n"
576 >               "If no STATs are given, all will be displayed. Specify 'STAT.' to display all\n"
577 >               "statistics starting with that prefix.\n"
578                 "\n");
579          printf("  -l         Linux sysctl-style output (default)\n"
580                 "  -b         BSD sysctl-style output\n"
# Line 557 | Line 647 | int main(int argc, char **argv) {
647                  use_diffs = 1;
648  
649          select_interesting(argc - optind, &argv[optind]);
650 +
651 +        /* We don't care if statgrab_init fails, because we can just display
652 +           the statistics that can be read as non-root. */
653 +        statgrab_init();
654 +        if (statgrab_drop_privileges() != 0)
655 +                die("Failed to drop setuid/setgid privileges");
656  
657          switch (repeat_mode) {
658          case REPEAT_NONE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines