]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/lastcomm/lastcomm.c
MFC r235541:
[FreeBSD/stable/8.git] / usr.bin / lastcomm / lastcomm.c
1 /*
2  * Copyright (c) 1980, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1980, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)lastcomm.c  8.1 (Berkeley) 6/6/93";
43 #endif
44 #endif /* not lint */
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
47
48 #include <sys/param.h>
49 #include <sys/stat.h>
50 #include <sys/acct.h>
51
52 #include <ctype.h>
53 #include <err.h>
54 #include <errno.h>
55 #include <pwd.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <time.h>
60 #include <unistd.h>
61 #include <utmp.h>
62 #include "pathnames.h"
63
64 /*XXX*/#include <inttypes.h>
65
66 time_t   expand(u_int);
67 char    *flagbits(int);
68 const    char *getdev(dev_t);
69 int      readrec_forward(FILE *f, struct acctv2 *av2);
70 int      readrec_backward(FILE *f, struct acctv2 *av2);
71 int      requested(char *[], struct acctv2 *);
72 static   void usage(void);
73
74 #define AC_UTIME 1 /* user */
75 #define AC_STIME 2 /* system */
76 #define AC_ETIME 4 /* elapsed */
77 #define AC_CTIME 8 /* user + system time, default */
78
79 #define AC_BTIME 16 /* starting time */
80 #define AC_FTIME 32 /* exit time (starting time + elapsed time )*/
81
82 int
83 main(int argc, char *argv[])
84 {
85         struct acctv2 ab;
86         char *p;
87         FILE *fp;
88         int (*readrec)(FILE *f, struct acctv2 *av2);
89         time_t t;
90         int ch, rv;
91         const char *acctfile, *format;
92         char buf[1024];
93         int flags = 0;
94
95         acctfile = _PATH_ACCT;
96         format = NULL;
97         while ((ch = getopt(argc, argv, "f:usecSE")) != -1)
98                 switch((char)ch) {
99                 case 'f':
100                         acctfile = optarg;
101                         break;
102
103                 case 'u': 
104                         flags |= AC_UTIME; /* user time */
105                         break;
106                 case 's':
107                         flags |= AC_STIME; /* system time */
108                         break;
109                 case 'e':
110                         flags |= AC_ETIME; /* elapsed time */
111                         break;
112                 case 'c':
113                         flags |= AC_CTIME; /* user + system time */
114                         break;
115
116                 case 'S':
117                         flags |= AC_BTIME; /* starting time */
118                         break;
119                 case 'E':
120                         /* exit time (starting time + elapsed time )*/
121                         flags |= AC_FTIME; 
122                         break;
123
124                 case '?':
125                 default:
126                         usage();
127                 }
128
129         /* default user + system time and starting time */
130         if (!flags) {
131             flags = AC_CTIME | AC_BTIME;
132         }
133
134         argc -= optind;
135         argv += optind;
136
137         if (argc > 0 && **argv == '+') {
138                 format = *argv + 1; /* skip + */
139                 argc--;
140                 argv++;
141         }
142
143         if (strcmp(acctfile, "-") == 0) {
144                 fp = stdin;
145                 readrec = readrec_forward;
146         } else {
147                 /* Open the file. */
148                 if ((fp = fopen(acctfile, "r")) == NULL)
149                         err(1, "could not open %s", acctfile);
150                 if (fseek(fp, 0l, SEEK_END) == -1)
151                         err(1, "seek to end of %s failed", acctfile);
152                 readrec = readrec_backward;
153         }
154
155         while ((rv = readrec(fp, &ab)) == 1) {
156                 for (p = &ab.ac_comm[0];
157                     p < &ab.ac_comm[AC_COMM_LEN] && *p; ++p)
158                         if (!isprint(*p))
159                                 *p = '?';
160
161                 if (*argv && !requested(argv, &ab))
162                         continue;
163
164                 (void)printf("%-*.*s %-7s %-*s %-*s",
165                              AC_COMM_LEN, AC_COMM_LEN, ab.ac_comm,
166                              flagbits(ab.ac_flagx),
167                              UT_NAMESIZE, user_from_uid(ab.ac_uid, 0),
168                              UT_LINESIZE, getdev(ab.ac_tty));
169                 
170                 
171                 /* user + system time */
172                 if (flags & AC_CTIME) {
173                         (void)printf(" %6.3f secs", 
174                             (ab.ac_utime + ab.ac_stime) / 1000000);
175                 }
176                 
177                 /* usr time */
178                 if (flags & AC_UTIME) {
179                         (void)printf(" %6.3f us", ab.ac_utime / 1000000);
180                 }
181                 
182                 /* system time */
183                 if (flags & AC_STIME) {
184                         (void)printf(" %6.3f sy", ab.ac_stime / 1000000);
185                 }
186                 
187                 /* elapsed time */
188                 if (flags & AC_ETIME) {
189                         (void)printf(" %8.3f es", ab.ac_etime / 1000000);
190                 }
191                 
192                 /* starting time */
193                 if (flags & AC_BTIME) {
194                         if (format != NULL) {
195                                 (void)strftime(buf, sizeof(buf), format,
196                                     localtime(&ab.ac_btime));
197                                 (void)printf(" %s", buf);
198                         } else
199                                 (void)printf(" %.16s", ctime(&ab.ac_btime));
200                 }
201                 
202                 /* exit time (starting time + elapsed time )*/
203                 if (flags & AC_FTIME) {
204                         t = ab.ac_btime;
205                         t += (time_t)(ab.ac_etime / 1000000);
206                         if (format != NULL) {
207                                 (void)strftime(buf, sizeof(buf), format,
208                                     localtime(&t));
209                                 (void)printf(" %s", buf);
210                         } else
211                                 (void)printf(" %.16s", ctime(&t));
212                 }
213                 printf("\n");
214         }
215         if (rv == EOF)
216                 err(1, "read record from %s failed", acctfile);
217
218         if (fflush(stdout))
219                 err(1, "stdout");
220         exit(0);
221 }
222
223 char *
224 flagbits(int f)
225 {
226         static char flags[20] = "-";
227         char *p;
228
229 #define BIT(flag, ch)   if (f & flag) *p++ = ch
230
231         p = flags + 1;
232         BIT(ASU, 'S');
233         BIT(AFORK, 'F');
234         BIT(ACOMPAT, 'C');
235         BIT(ACORE, 'D');
236         BIT(AXSIG, 'X');
237         *p = '\0';
238         return (flags);
239 }
240
241 int
242 requested(char *argv[], struct acctv2 *acp)
243 {
244         const char *p;
245
246         do {
247                 p = user_from_uid(acp->ac_uid, 0);
248                 if (!strcmp(p, *argv))
249                         return (1);
250                 if ((p = getdev(acp->ac_tty)) && !strcmp(p, *argv))
251                         return (1);
252                 if (!strncmp(acp->ac_comm, *argv, AC_COMM_LEN))
253                         return (1);
254         } while (*++argv);
255         return (0);
256 }
257
258 const char *
259 getdev(dev_t dev)
260 {
261         static dev_t lastdev = (dev_t)-1;
262         static const char *lastname;
263
264         if (dev == NODEV)                       /* Special case. */
265                 return ("__");
266         if (dev == lastdev)                     /* One-element cache. */
267                 return (lastname);
268         lastdev = dev;
269         lastname = devname(dev, S_IFCHR);
270         return (lastname);
271 }
272
273 static void
274 usage(void)
275 {
276         (void)fprintf(stderr,
277             "usage: lastcomm [-EScesu] [-f file] [+format] [command ...] "
278             "[user ...] [terminal ...]\n");
279         exit(1);
280 }