1 /* vi: set sw=4 ts=4: */
3 * public domain -- Dave 'Kill a Cop' Cinege <dcinege@psychosis.com>
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.
11 * Modified to support all sorts of libcs by
12 * Erik Andersen <andersen@lineo.com>
16 #include <sys/types.h>
20 #define BB_DECLARE_EXTERN
21 #define bb_need_io_error
25 extern int dutmp_main(int argc, char **argv)
33 } else if (*argv[1] == '-' ) {
36 file = open(argv[1], O_RDONLY);
38 error_msg_and_die(io_error, argv[1], strerror(errno));
42 /* Kludge around the fact that the binary format for utmp has changed, and the
43 * fact the stupid libc doesn't have a reliable #define to announce that libc5
44 * is being used. sigh.
46 #if ! defined __GLIBC__
47 while (read(file, (void*)&ut, sizeof(struct utmp))) {
48 printf("%d|%d|%s|%s|%s|%s|%s|%lx\n",
49 ut.ut_type, ut.ut_pid, ut.ut_line,
50 ut.ut_id, ut.ut_user, ut.ut_host,
55 while (read(file, (void*)&ut, sizeof(struct utmp))) {
56 printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
57 ut.ut_type, ut.ut_pid, ut.ut_line,
58 ut.ut_id, ut.ut_user, ut.ut_host,
59 ut.ut_exit.e_termination, ut.ut_exit.e_exit,
61 ut.ut_tv.tv_sec, ut.ut_tv.tv_usec,