Pavel Roskin <proski@gnu.org> just found a nasty memory
[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  * Modified to support all sort of libcs by 
12  * Erik Andersen <andersen@lineo.com>
13  */
14
15 #include "internal.h"
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <fcntl.h>
19
20 #include <errno.h>
21 #define BB_DECLARE_EXTERN
22 #define bb_need_io_error
23 #include "messages.c"
24 #include <utmp.h>
25
26
27 static const char dutmp_usage[] = "dutmp [FILE]\n"
28 #ifndef BB_FEATURE_TRIVIAL_HELP
29         "\nDump utmp file format (pipe delimited) from FILE\n"
30         "or stdin to stdout.  (i.e. 'dutmp /var/run/utmp')\n"
31 #endif
32         ;
33
34 extern int dutmp_main(int argc, char **argv)
35 {
36
37         int file;
38         struct utmp ut;
39
40         if (argc<2) {
41                 file = fileno(stdin);
42         } else if (*argv[1] == '-' ) {
43                 usage(dutmp_usage);
44         } else  {
45                 file = open(argv[1], O_RDONLY);
46                 if (file < 0) {
47                         fatalError(io_error, argv[1], strerror(errno));
48                 }
49         }
50
51         while (read(file, (void*)&ut, sizeof(struct utmp))) {
52                 printf("%d|%d|%s|%s|%s|%s|%s|%lx\n",
53                                 ut.ut_type, ut.ut_pid, ut.ut_line,
54                                 ut.ut_id, ut.ut_user, ut.ut_host,
55                                 ctime(&(ut.ut_time)), 
56                                 (long)ut.ut_addr);
57         }
58
59         return(TRUE);
60 }