Changed getopt so that options can be grouped together, the source
[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  * 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 <fcntl.h>
18
19 #include <errno.h>
20 #define BB_DECLARE_EXTERN
21 #define bb_need_io_error
22 #include "messages.c"
23 #include <utmp.h>
24
25 extern int dutmp_main(int argc, char **argv)
26 {
27
28         int file;
29         struct utmp ut;
30
31         if (argc<2) {
32                 file = fileno(stdin);
33         } else if (*argv[1] == '-' ) {
34                 usage(dutmp_usage);
35         } else  {
36                 file = open(argv[1], O_RDONLY);
37                 if (file < 0) {
38                         fatalError(io_error, argv[1], strerror(errno));
39                 }
40         }
41
42         while (read(file, (void*)&ut, sizeof(struct utmp))) {
43                 printf("%d|%d|%s|%s|%s|%s|%s|%lx\n",
44                                 ut.ut_type, ut.ut_pid, ut.ut_line,
45                                 ut.ut_id, ut.ut_user, ut.ut_host,
46                                 ctime(&(ut.ut_time)), 
47                                 (long)ut.ut_addr);
48         }
49
50         return(TRUE);
51 }