Minor fixes to being a standalone shell.
[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 #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"
30 #ifndef BB_FEATURE_TRIVIAL_HELP
31         "\nDump utmp file format (pipe delimited) from FILE\n"
32         "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
33 #endif
34         ;
35
36 extern int dutmp_main(int argc, char **argv)
37 {
38
39         FILE *f;
40         struct utmp ut;
41
42         if (argc<2) {
43                 f = stdin;
44         } else if (*argv[1] == '-' ) {
45                 usage(dutmp_usage);
46         } else  {
47                 f = fopen(argv[1], "r");
48                 if (f == NULL) {
49                         fatalError(io_error, argv[1], strerror(errno));
50                 }
51         }
52
53         while (fread(&ut, sizeof(struct utmp), 1, f)) {
54                 printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
55                            ut.ut_type, ut.ut_pid, ut.ut_line,
56                            ut.ut_id, ut.ut_user, ut.ut_host,
57                            ut.ut_exit.e_termination, ut.ut_exit.e_exit,
58                            ut.ut_session, ut.ut_tv.tv_sec, ut.ut_tv.tv_usec, 
59                            ut.ut_addr_v6[0]);
60         }
61
62         exit(TRUE);
63 }