cf0d466ef0e40d4d3f30c125619f017917c98e35
[oweals/busybox.git] / miscutils / 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\n"
23         "\n"
24         "\tDump file or stdin utmp file format to stdout, pipe delimited.\n"
25         "\tdutmp /var/run/utmp\n";
26
27 extern int dutmp_main(int argc, char **argv)
28 {
29
30         FILE *f;
31         struct utmp ut;
32
33         if (argc<2) {
34                 f = stdin;
35         } else if (*argv[1] == '-' ) {
36                 usage(dutmp_usage);
37         } else  {
38                 f = fopen(argv[1], "r");
39                 if (f == NULL) {
40                         fatalError(io_error, argv[1], strerror(errno));
41                 }
42         }
43
44         while (fread(&ut, sizeof(struct utmp), 1, f)) {
45                 printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
46                            ut.ut_type, ut.ut_pid, ut.ut_line,
47                            ut.ut_id, ut.ut_user, ut.ut_host,
48                            ut.ut_exit.e_termination, ut.ut_exit.e_exit,
49                            ut.ut_session,
50                            ut.ut_tv.tv_sec, ut.ut_tv.tv_usec, ut.ut_addr);
51         }
52
53         exit(TRUE);
54 }