+ in the interest of robustness, I added
[oweals/busybox.git] / dutmp.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * public domain -- Dave 'Kill a Cop' Cinege <dcinege@psychosis.com>
4  * 
5  * dutmp
6  * Takes utmp formated file on stdin and dumps it's contents 
7  * out in colon delimited fields. Easy to 'cut' for shell based 
8  * versions of 'who', 'last', etc. IP Addr is output in hex, 
9  * little endian on x86.
10  * 
11  * made against libc6
12  */
13
14 #include "internal.h"
15 #include <stdio.h>
16 #include <errno.h>
17 #include <utmp.h>
18 #define BB_DECLARE_EXTERN
19 #define bb_need_io_error
20 #include "messages.c"
21
22 static const char dutmp_usage[] = "dutmp [FILE]\n\n"
23         "Dump utmp file format (pipe delimited) from FILE\n"
24         "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n";
25
26 extern int dutmp_main(int argc, char **argv)
27 {
28
29         FILE *f;
30         struct utmp ut;
31
32         if (argc<2) {
33                 f = stdin;
34         } else if (*argv[1] == '-' ) {
35                 usage(dutmp_usage);
36         } else  {
37                 f = fopen(argv[1], "r");
38                 if (f == NULL) {
39                         fatalError(io_error, argv[1], strerror(errno));
40                 }
41         }
42
43         while (fread(&ut, sizeof(struct utmp), 1, f)) {
44                 printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
45                            ut.ut_type, ut.ut_pid, ut.ut_line,
46                            ut.ut_id, ut.ut_user, ut.ut_host,
47                            ut.ut_exit.e_termination, ut.ut_exit.e_exit,
48                            ut.ut_session,
49                            ut.ut_tv.tv_sec, ut.ut_tv.tv_usec, ut.ut_addr);
50         }
51
52         exit(TRUE);
53 }