192871f1e051291f14f0627cf06aa26c0c91df18
[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 #define BB_DECLARE_EXTERN
18 #define bb_need_io_error
19 #include "messages.c"
20
21 #if defined(__GLIBC__)
22 #include <utmp.h>
23 #else
24 #include <utmp-wrap.h>
25 #define utmp new_utmp
26 #endif
27
28
29 static const char dutmp_usage[] = "dutmp [FILE]\n\n"
30         "Dump utmp file format (pipe delimited) from FILE\n"
31         "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n";
32
33 extern int dutmp_main(int argc, char **argv)
34 {
35
36         FILE *f;
37         struct utmp ut;
38
39         if (argc<2) {
40                 f = stdin;
41         } else if (*argv[1] == '-' ) {
42                 usage(dutmp_usage);
43         } else  {
44                 f = fopen(argv[1], "r");
45                 if (f == NULL) {
46                         fatalError(io_error, argv[1], strerror(errno));
47                 }
48         }
49
50         while (fread(&ut, sizeof(struct utmp), 1, f)) {
51                 printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
52                            ut.ut_type, ut.ut_pid, ut.ut_line,
53                            ut.ut_id, ut.ut_user, ut.ut_host,
54                            ut.ut_exit.e_termination, ut.ut_exit.e_exit,
55                            ut.ut_session, ut.ut_tv.tv_sec, ut.ut_tv.tv_usec, 
56                            ut.ut_addr_v6[0]);
57         }
58
59         exit(TRUE);
60 }