]> git.proxmox.com Git - mirror_iproute2.git/blob - misc/ifstat.c
Add ip rule flush capabilty and fix all the prototype changes
[mirror_iproute2.git] / misc / ifstat.c
1 /*
2 * ifstat.c handy utility to read net interface statistics
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <fcntl.h>
16 #include <string.h>
17 #include <errno.h>
18 #include <time.h>
19 #include <sys/time.h>
20 #include <fnmatch.h>
21 #include <sys/file.h>
22 #include <sys/socket.h>
23 #include <sys/un.h>
24 #include <sys/poll.h>
25 #include <sys/wait.h>
26 #include <sys/stat.h>
27 #include <signal.h>
28 #include <math.h>
29 #include <getopt.h>
30
31 #include <libnetlink.h>
32 #include <linux/netdevice.h>
33
34 #include <SNAPSHOT.h>
35
36 int dump_zeros = 0;
37 int reset_history = 0;
38 int ignore_history = 0;
39 int no_output = 0;
40 int no_update = 0;
41 int scan_interval = 0;
42 int time_constant = 0;
43 int show_errors = 0;
44 double W;
45 char **patterns;
46 int npatterns;
47
48 char info_source[128];
49 int source_mismatch;
50
51 #define MAXS (sizeof(struct net_device_stats)/sizeof(unsigned long))
52
53 struct ifstat_ent
54 {
55 struct ifstat_ent *next;
56 char *name;
57 int ifindex;
58 unsigned long long val[MAXS];
59 double rate[MAXS];
60 unsigned long ival[MAXS];
61 };
62
63 struct ifstat_ent *kern_db;
64 struct ifstat_ent *hist_db;
65
66 static int match(const char *id)
67 {
68 int i;
69
70 if (npatterns == 0)
71 return 1;
72
73 for (i=0; i<npatterns; i++) {
74 if (!fnmatch(patterns[i], id, 0))
75 return 1;
76 }
77 return 0;
78 }
79
80 static int get_nlmsg(const struct sockaddr_nl *who,
81 struct nlmsghdr *m, void *arg)
82 {
83 struct ifinfomsg *ifi = NLMSG_DATA(m);
84 struct rtattr * tb[IFLA_MAX+1];
85 int len = m->nlmsg_len;
86 struct ifstat_ent *n;
87 int i;
88
89 if (m->nlmsg_type != RTM_NEWLINK)
90 return 0;
91
92 len -= NLMSG_LENGTH(sizeof(*ifi));
93 if (len < 0)
94 return -1;
95
96 if (!(ifi->ifi_flags&IFF_UP))
97 return 0;
98
99 memset(tb, 0, sizeof(tb));
100 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
101 if (tb[IFLA_IFNAME] == NULL || tb[IFLA_STATS] == NULL)
102 return 0;
103
104 n = malloc(sizeof(*n));
105 if (!n)
106 abort();
107 n->ifindex = ifi->ifi_index;
108 n->name = strdup(RTA_DATA(tb[IFLA_IFNAME]));
109 memcpy(&n->ival, RTA_DATA(tb[IFLA_STATS]), sizeof(n->ival));
110 memset(&n->rate, 0, sizeof(n->rate));
111 for (i=0; i<MAXS; i++)
112 n->val[i] = n->ival[i];
113 n->next = kern_db;
114 kern_db = n;
115 return 0;
116 }
117
118 void load_info(void)
119 {
120 struct ifstat_ent *db, *n;
121 struct rtnl_handle rth;
122
123 if (rtnl_open(&rth, 0) < 0)
124 exit(1);
125
126 if (rtnl_wilddump_request(&rth, AF_INET, RTM_GETLINK) < 0) {
127 perror("Cannot send dump request");
128 exit(1);
129 }
130
131 if (rtnl_dump_filter(&rth, get_nlmsg, NULL, NULL, NULL) < 0) {
132 fprintf(stderr, "Dump terminated\n");
133 exit(1);
134 }
135
136 rtnl_close(&rth);
137
138 db = kern_db;
139 kern_db = NULL;
140
141 while (db) {
142 n = db;
143 db = db->next;
144 n->next = kern_db;
145 kern_db = n;
146 }
147 }
148
149 void load_raw_table(FILE *fp)
150 {
151 char buf[4096];
152 struct ifstat_ent *db = NULL;
153 struct ifstat_ent *n;
154
155 while (fgets(buf, sizeof(buf), fp) != NULL) {
156 char *p;
157 char *next;
158 int i;
159
160 if (buf[0] == '#') {
161 buf[strlen(buf)-1] = 0;
162 if (info_source[0] && strcmp(info_source, buf+1))
163 source_mismatch = 1;
164 strncpy(info_source, buf+1, sizeof(info_source)-1);
165 continue;
166 }
167 if ((n = malloc(sizeof(*n))) == NULL)
168 abort();
169
170 if (!(p = strchr(buf, ' ')))
171 abort();
172 *p++ = 0;
173
174 if (sscanf(buf, "%d", &n->ifindex) != 1)
175 abort();
176 if (!(next = strchr(p, ' ')))
177 abort();
178 *next++ = 0;
179
180 n->name = strdup(p);
181 p = next;
182
183 for (i=0; i<MAXS; i++) {
184 unsigned rate;
185 if (!(next = strchr(p, ' ')))
186 abort();
187 *next++ = 0;
188 if (sscanf(p, "%llu", n->val+i) != 1)
189 abort();
190 n->ival[i] = (unsigned long)n->val[i];
191 p = next;
192 if (!(next = strchr(p, ' ')))
193 abort();
194 *next++ = 0;
195 if (sscanf(p, "%u", &rate) != 1)
196 abort();
197 n->rate[i] = rate;
198 p = next;
199 }
200 n->next = db;
201 db = n;
202 }
203
204 while (db) {
205 n = db;
206 db = db->next;
207 n->next = kern_db;
208 kern_db = n;
209 }
210 }
211
212 void dump_raw_db(FILE *fp, int to_hist)
213 {
214 struct ifstat_ent *n, *h;
215 h = hist_db;
216 fprintf(fp, "#%s\n", info_source);
217
218 for (n=kern_db; n; n=n->next) {
219 int i;
220 unsigned long long *vals = n->val;
221 double *rates = n->rate;
222 if (!match(n->name)) {
223 struct ifstat_ent *h1;
224 if (!to_hist)
225 continue;
226 for (h1 = h; h1; h1 = h1->next) {
227 if (h1->ifindex == n->ifindex) {
228 vals = h1->val;
229 rates = h1->rate;
230 h = h1->next;
231 break;
232 }
233 }
234 }
235 fprintf(fp, "%d %s ", n->ifindex, n->name);
236 for (i=0; i<MAXS; i++)
237 fprintf(fp, "%llu %u ", vals[i], (unsigned)rates[i]);
238 fprintf(fp, "\n");
239 }
240 }
241
242 /* use communication definitions of meg/kilo etc */
243 static const unsigned long long giga = 1000000000ull;
244 static const unsigned long long mega = 1000000;
245 static const unsigned long long kilo = 1000;
246
247 void format_rate(FILE *fp, unsigned long long *vals, double *rates, int i)
248 {
249 char temp[64];
250 if (vals[i] > giga)
251 fprintf(fp, "%7lluM ", vals[i]/mega);
252 else if (vals[i] > mega)
253 fprintf(fp, "%7lluK ", vals[i]/kilo);
254 else
255 fprintf(fp, "%8llu ", vals[i]);
256
257 if (rates[i] > mega) {
258 sprintf(temp, "%uM", (unsigned)(rates[i]/mega));
259 fprintf(fp, "%-6s ", temp);
260 } else if (rates[i] > kilo) {
261 sprintf(temp, "%uK", (unsigned)(rates[i]/kilo));
262 fprintf(fp, "%-6s ", temp);
263 } else
264 fprintf(fp, "%-6u ", (unsigned)rates[i]);
265 }
266
267 void format_pair(FILE *fp, unsigned long long *vals, int i, int k)
268 {
269 char temp[64];
270 if (vals[i] > giga)
271 fprintf(fp, "%7lluM ", vals[i]/mega);
272 else if (vals[i] > mega)
273 fprintf(fp, "%7lluK ", vals[i]/kilo);
274 else
275 fprintf(fp, "%8llu ", vals[i]);
276
277 if (vals[k] > giga) {
278 sprintf(temp, "%uM", (unsigned)(vals[k]/mega));
279 fprintf(fp, "%-6s ", temp);
280 } else if (vals[k] > mega) {
281 sprintf(temp, "%uK", (unsigned)(vals[k]/kilo));
282 fprintf(fp, "%-6s ", temp);
283 } else
284 fprintf(fp, "%-6u ", (unsigned)vals[k]);
285 }
286
287 void print_head(FILE *fp)
288 {
289 fprintf(fp, "#%s\n", info_source);
290 fprintf(fp, "%-15s ", "Interface");
291
292 fprintf(fp, "%8s/%-6s ", "RX Pkts", "Rate");
293 fprintf(fp, "%8s/%-6s ", "TX Pkts", "Rate");
294 fprintf(fp, "%8s/%-6s ", "RX Data", "Rate");
295 fprintf(fp, "%8s/%-6s\n","TX Data", "Rate");
296
297 if (!show_errors) {
298 fprintf(fp, "%-15s ", "");
299 fprintf(fp, "%8s/%-6s ", "RX Errs", "Drop");
300 fprintf(fp, "%8s/%-6s ", "TX Errs", "Drop");
301 fprintf(fp, "%8s/%-6s ", "RX Over", "Rate");
302 fprintf(fp, "%8s/%-6s\n","TX Coll", "Rate");
303 } else {
304 fprintf(fp, "%-15s ", "");
305 fprintf(fp, "%8s/%-6s ", "RX Errs", "Rate");
306 fprintf(fp, "%8s/%-6s ", "RX Drop", "Rate");
307 fprintf(fp, "%8s/%-6s ", "RX Over", "Rate");
308 fprintf(fp, "%8s/%-6s\n","RX Leng", "Rate");
309
310 fprintf(fp, "%-15s ", "");
311 fprintf(fp, "%8s/%-6s ", "RX Crc", "Rate");
312 fprintf(fp, "%8s/%-6s ", "RX Frm", "Rate");
313 fprintf(fp, "%8s/%-6s ", "RX Fifo", "Rate");
314 fprintf(fp, "%8s/%-6s\n","RX Miss", "Rate");
315
316 fprintf(fp, "%-15s ", "");
317 fprintf(fp, "%8s/%-6s ", "TX Errs", "Rate");
318 fprintf(fp, "%8s/%-6s ", "TX Drop", "Rate");
319 fprintf(fp, "%8s/%-6s ", "TX Coll", "Rate");
320 fprintf(fp, "%8s/%-6s\n","TX Carr", "Rate");
321
322 fprintf(fp, "%-15s ", "");
323 fprintf(fp, "%8s/%-6s ", "TX Abrt", "Rate");
324 fprintf(fp, "%8s/%-6s ", "TX Fifo", "Rate");
325 fprintf(fp, "%8s/%-6s ", "TX Hear", "Rate");
326 fprintf(fp, "%8s/%-6s\n","TX Wind", "Rate");
327 }
328 }
329
330 void print_one_if(FILE *fp, struct ifstat_ent *n, unsigned long long *vals)
331 {
332 int i;
333 fprintf(fp, "%-15s ", n->name);
334 for (i=0; i<4; i++)
335 format_rate(fp, vals, n->rate, i);
336 fprintf(fp, "\n");
337
338 if (!show_errors) {
339 fprintf(fp, "%-15s ", "");
340 format_pair(fp, vals, 4, 6);
341 format_pair(fp, vals, 5, 7);
342 format_rate(fp, vals, n->rate, 11);
343 format_rate(fp, vals, n->rate, 9);
344 fprintf(fp, "\n");
345 } else {
346 fprintf(fp, "%-15s ", "");
347 format_rate(fp, vals, n->rate, 4);
348 format_rate(fp, vals, n->rate, 6);
349 format_rate(fp, vals, n->rate, 11);
350 format_rate(fp, vals, n->rate, 10);
351 fprintf(fp, "\n");
352
353 fprintf(fp, "%-15s ", "");
354 format_rate(fp, vals, n->rate, 12);
355 format_rate(fp, vals, n->rate, 13);
356 format_rate(fp, vals, n->rate, 14);
357 format_rate(fp, vals, n->rate, 15);
358 fprintf(fp, "\n");
359
360 fprintf(fp, "%-15s ", "");
361 format_rate(fp, vals, n->rate, 5);
362 format_rate(fp, vals, n->rate, 7);
363 format_rate(fp, vals, n->rate, 9);
364 format_rate(fp, vals, n->rate, 17);
365 fprintf(fp, "\n");
366
367 fprintf(fp, "%-15s ", "");
368 format_rate(fp, vals, n->rate, 16);
369 format_rate(fp, vals, n->rate, 18);
370 format_rate(fp, vals, n->rate, 19);
371 format_rate(fp, vals, n->rate, 20);
372 fprintf(fp, "\n");
373 }
374 }
375
376
377 void dump_kern_db(FILE *fp)
378 {
379 struct ifstat_ent *n, *h;
380 h = hist_db;
381
382 print_head(fp);
383
384 for (n=kern_db; n; n=n->next) {
385 if (!match(n->name))
386 continue;
387 print_one_if(fp, n, n->val);
388 }
389 }
390
391
392 void dump_incr_db(FILE *fp)
393 {
394 struct ifstat_ent *n, *h;
395 h = hist_db;
396
397 print_head(fp);
398
399 for (n=kern_db; n; n=n->next) {
400 int i;
401 unsigned long long vals[MAXS];
402 struct ifstat_ent *h1;
403
404 memcpy(vals, n->val, sizeof(vals));
405
406 for (h1 = h; h1; h1 = h1->next) {
407 if (h1->ifindex == n->ifindex) {
408 for (i = 0; i < MAXS; i++)
409 vals[i] -= h1->val[i];
410 h = h1->next;
411 break;
412 }
413 }
414 if (!match(n->name))
415 continue;
416 print_one_if(fp, n, vals);
417 }
418 }
419
420
421 static int children;
422
423 void sigchild(int signo)
424 {
425 }
426
427 void update_db(int interval)
428 {
429 struct ifstat_ent *n, *h;
430
431 n = kern_db;
432 kern_db = NULL;
433
434 load_info();
435
436 h = kern_db;
437 kern_db = n;
438
439 for (n = kern_db; n; n = n->next) {
440 struct ifstat_ent *h1;
441 for (h1 = h; h1; h1 = h1->next) {
442 if (h1->ifindex == n->ifindex) {
443 int i;
444 for (i = 0; i < MAXS; i++) {
445 if ((long)(h1->ival[i] - n->ival[i]) < 0) {
446 memset(n->ival, 0, sizeof(n->ival));
447 break;
448 }
449 }
450 for (i = 0; i < MAXS; i++) {
451 double sample;
452 unsigned long incr = h1->ival[i] - n->ival[i];
453 n->val[i] += incr;
454 n->ival[i] = h1->ival[i];
455 sample = (double)(incr*1000)/interval;
456 if (interval >= scan_interval) {
457 n->rate[i] += W*(sample-n->rate[i]);
458 } else if (interval >= 1000) {
459 if (interval >= time_constant) {
460 n->rate[i] = sample;
461 } else {
462 double w = W*(double)interval/scan_interval;
463 n->rate[i] += w*(sample-n->rate[i]);
464 }
465 }
466 }
467
468 while (h != h1) {
469 struct ifstat_ent *tmp = h;
470 h = h->next;
471 free(tmp->name);
472 free(tmp);
473 };
474 h = h1->next;
475 free(h1->name);
476 free(h1);
477 break;
478 }
479 }
480 }
481 }
482
483 #define T_DIFF(a,b) (((a).tv_sec-(b).tv_sec)*1000 + ((a).tv_usec-(b).tv_usec)/1000)
484
485
486 void server_loop(int fd)
487 {
488 struct timeval snaptime;
489 struct pollfd p;
490 p.fd = fd;
491 p.events = p.revents = POLLIN;
492
493 sprintf(info_source, "%d.%lu sampling_interval=%d time_const=%d",
494 getpid(), (unsigned long)random(), scan_interval/1000, time_constant/1000);
495
496 load_info();
497
498 for (;;) {
499 int status;
500 int tdiff;
501 struct timeval now;
502 gettimeofday(&now, NULL);
503 tdiff = T_DIFF(now, snaptime);
504 if (tdiff >= scan_interval) {
505 update_db(tdiff);
506 snaptime = now;
507 tdiff = 0;
508 }
509 if (poll(&p, 1, tdiff + scan_interval) > 0
510 && (p.revents&POLLIN)) {
511 int clnt = accept(fd, NULL, NULL);
512 if (clnt >= 0) {
513 pid_t pid;
514 if (children >= 5) {
515 close(clnt);
516 } else if ((pid = fork()) != 0) {
517 if (pid>0)
518 children++;
519 close(clnt);
520 } else {
521 FILE *fp = fdopen(clnt, "w");
522 if (fp) {
523 if (tdiff > 0)
524 update_db(tdiff);
525 dump_raw_db(fp, 0);
526 }
527 exit(0);
528 }
529 }
530 }
531 while (children && waitpid(-1, &status, WNOHANG) > 0)
532 children--;
533 }
534 }
535
536 int verify_forging(int fd)
537 {
538 struct ucred cred;
539 int olen = sizeof(cred);
540 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, (void*)&cred, &olen) ||
541 olen < sizeof(cred))
542 return -1;
543 if (cred.uid == getuid() || cred.uid == 0)
544 return 0;
545 return -1;
546 }
547
548 static void usage(void) __attribute__((noreturn));
549
550 static void usage(void)
551 {
552 fprintf(stderr,
553 "Usage: ifstat [OPTION] [ PATTERN [ PATTERN ] ]\n"
554 " -h, --help this message\n"
555 " -a, --ignore ignore history\n"
556 " -d, --scan=SECS sample every statistics every SECS\n"
557 " -e, --errors show errors\n"
558 " -n, --nooutput do history only\n"
559 " -r, --reset reset history\n"
560 " -s, --noupdate don;t update history\n"
561 " -t, --interval=SECS report average over the last SECS\n"
562 " -V, --version output version information\n"
563 " -z, --zeros show entries with zero activity\n"
564 " -e, --errors show errors\n"
565 " -z, --zeros show entries with zero activity\n");
566
567 exit(-1);
568 }
569
570 static const struct option longopts[] = {
571 { "help", 0, 0, 'h' },
572 { "ignore", 0, 0, 'a' },
573 { "scan", 1, 0, 'd'},
574 { "errors", 0, 0, 'e' },
575 { "nooutput", 0, 0, 'n' },
576 { "reset", 0, 0, 'r' },
577 { "noupdate", 0, 0, 's' },
578 { "interval", 1, 0, 't' },
579 { "version", 0, 0, 'V' },
580 { "zeros", 0, 0, 'z' },
581 { "errors", 0, 0, 'e' },
582 { "zeros", 0, 0, 'z' },
583 { 0 }
584 };
585
586 int main(int argc, char *argv[])
587 {
588 char hist_name[128];
589 struct sockaddr_un sun;
590 FILE *hist_fp = NULL;
591 int ch;
592 int fd;
593
594 while ((ch = getopt_long(argc, argv, "hvVzrnasd:t:eK",
595 longopts, NULL)) != EOF) {
596 switch(ch) {
597 case 'z':
598 dump_zeros = 1;
599 break;
600 case 'r':
601 reset_history = 1;
602 break;
603 case 'a':
604 ignore_history = 1;
605 break;
606 case 's':
607 no_update = 1;
608 break;
609 case 'n':
610 no_output = 1;
611 break;
612 case 'e':
613 show_errors = 1;
614 break;
615 case 'd':
616 scan_interval = atoi(optarg) * 1000;
617 if (scan_interval <= 0) {
618 fprintf(stderr, "ifstat: invalid scan interval\n");
619 exit(-1);
620 }
621 break;
622 case 't':
623 time_constant = atoi(optarg);
624 if (time_constant <= 0) {
625 fprintf(stderr, "ifstat: invalid time constant divisor\n");
626 exit(-1);
627 }
628 break;
629 case 'v':
630 case 'V':
631 printf("ifstat utility, iproute2-ss%s\n", SNAPSHOT);
632 exit(0);
633 case 'h':
634 case '?':
635 default:
636 usage();
637 }
638 }
639
640 argc -= optind;
641 argv += optind;
642
643 sun.sun_family = AF_UNIX;
644 sun.sun_path[0] = 0;
645 sprintf(sun.sun_path+1, "ifstat%d", getuid());
646
647 if (scan_interval > 0) {
648 if (time_constant == 0)
649 time_constant = 60;
650 time_constant *= 1000;
651 W = 1 - 1/exp(log(10)*(double)scan_interval/time_constant);
652 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
653 perror("ifstat: socket");
654 exit(-1);
655 }
656 if (bind(fd, (struct sockaddr*)&sun, 2+1+strlen(sun.sun_path+1)) < 0) {
657 perror("ifstat: bind");
658 exit(-1);
659 }
660 if (listen(fd, 5) < 0) {
661 perror("ifstat: listen");
662 exit(-1);
663 }
664 if (fork())
665 exit(0);
666 chdir("/");
667 close(0); close(1); close(2); setsid();
668 signal(SIGPIPE, SIG_IGN);
669 signal(SIGCHLD, sigchild);
670 server_loop(fd);
671 exit(0);
672 }
673
674 patterns = argv;
675 npatterns = argc;
676
677 if (getenv("IFSTAT_HISTORY"))
678 snprintf(hist_name, sizeof(hist_name), getenv("IFSTAT_HISTORY"));
679 else
680 sprintf(hist_name, "%s/.ifstat.u%d", P_tmpdir, getuid());
681
682 if (reset_history)
683 unlink(hist_name);
684
685 if (!ignore_history || !no_update) {
686 struct stat stb;
687
688 fd = open(hist_name, O_RDWR|O_CREAT|O_NOFOLLOW, 0600);
689 if (fd < 0) {
690 perror("ifstat: open history file");
691 exit(-1);
692 }
693 if ((hist_fp = fdopen(fd, "r+")) == NULL) {
694 perror("ifstat: fdopen history file");
695 exit(-1);
696 }
697 if (flock(fileno(hist_fp), LOCK_EX)) {
698 perror("ifstat: flock history file");
699 exit(-1);
700 }
701 if (fstat(fileno(hist_fp), &stb) != 0) {
702 perror("ifstat: fstat history file");
703 exit(-1);
704 }
705 if (stb.st_nlink != 1 || stb.st_uid != getuid()) {
706 fprintf(stderr, "ifstat: something is so wrong with history file, that I prefer not to proceed.\n");
707 exit(-1);
708 }
709 if (!ignore_history) {
710 FILE *tfp;
711 long uptime;
712 if ((tfp = fopen("/proc/uptime", "r")) != NULL) {
713 if (fscanf(tfp, "%ld", &uptime) != 1)
714 uptime = -1;
715 fclose(tfp);
716 }
717 if (uptime >= 0 && time(NULL) >= stb.st_mtime+uptime) {
718 fprintf(stderr, "ifstat: history is aged out, resetting\n");
719 ftruncate(fileno(hist_fp), 0);
720 }
721 }
722
723 load_raw_table(hist_fp);
724
725 hist_db = kern_db;
726 kern_db = NULL;
727 }
728
729 if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) >= 0 &&
730 (connect(fd, (struct sockaddr*)&sun, 2+1+strlen(sun.sun_path+1)) == 0
731 || (strcpy(sun.sun_path+1, "ifstat0"),
732 connect(fd, (struct sockaddr*)&sun, 2+1+strlen(sun.sun_path+1)) == 0))
733 && verify_forging(fd) == 0) {
734 FILE *sfp = fdopen(fd, "r");
735 load_raw_table(sfp);
736 if (hist_db && source_mismatch) {
737 fprintf(stderr, "ifstat: history is stale, ignoring it.\n");
738 hist_db = NULL;
739 }
740 fclose(sfp);
741 } else {
742 if (fd >= 0)
743 close(fd);
744 if (hist_db && info_source[0] && strcmp(info_source, "kernel")) {
745 fprintf(stderr, "ifstat: history is stale, ignoring it.\n");
746 hist_db = NULL;
747 info_source[0] = 0;
748 }
749 load_info();
750 if (info_source[0] == 0)
751 strcpy(info_source, "kernel");
752 }
753
754 if (!no_output) {
755 if (ignore_history || hist_db == NULL)
756 dump_kern_db(stdout);
757 else
758 dump_incr_db(stdout);
759 }
760 if (!no_update) {
761 ftruncate(fileno(hist_fp), 0);
762 rewind(hist_fp);
763 dump_raw_db(hist_fp, 1);
764 fflush(hist_fp);
765 }
766 exit(0);
767 }