blob: a73a837d8f78a3a70b307abfca928f633f51bd53 [file] [log] [blame]
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +00001/* vi: set sw=4 ts=4: */
Denis Vlasenkob44c7902008-03-17 09:29:43 +00002/* 'time' utility to display resource usage of processes.
Eric Andersenc3657422001-11-30 07:54:32 +00003 Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc.
4
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 Licensed under GPLv2, see file LICENSE in this source tree.
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +00006*/
Eric Andersenc3657422001-11-30 07:54:32 +00007/* Originally written by David Keppel <pardo@cs.washington.edu>.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00008 Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>.
Eric Andersenc3657422001-11-30 07:54:32 +00009 Heavily modified for busybox by Erik Andersen <andersen@codepoet.org>
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000010*/
Denys Vlasenkofb4da162016-11-22 23:14:24 +010011//config:config TIME
12//config: bool "time"
13//config: default y
14//config: help
15//config: The time command runs the specified program with the given arguments.
16//config: When the command finishes, time writes a message to standard output
17//config: giving timing statistics about this program run.
Eric Andersenc3657422001-11-30 07:54:32 +000018
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010019//applet:IF_TIME(APPLET(time, BB_DIR_USR_BIN, BB_SUID_DROP))
20
21//kbuild:lib-$(CONFIG_TIME) += time.o
22
Pere Orga5bc8c002011-04-11 03:29:49 +020023//usage:#define time_trivial_usage
24//usage: "[-v] PROG ARGS"
25//usage:#define time_full_usage "\n\n"
26//usage: "Run PROG, display resource usage when it exits\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020027//usage: "\n -v Verbose"
28
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000029#include "libbb.h"
Mike Frysingerc5fe9f72012-07-05 23:19:09 -040030#include <sys/resource.h> /* getrusage */
Eric Andersenc3657422001-11-30 07:54:32 +000031
Eric Andersenc3657422001-11-30 07:54:32 +000032/* Information on the resources used by a child process. */
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000033typedef struct {
34 int waitstatus;
35 struct rusage ru;
Denis Vlasenko459be352007-06-17 19:09:05 +000036 unsigned elapsed_ms; /* Wallclock time of process. */
Eric Andersenc3657422001-11-30 07:54:32 +000037} resource_t;
38
39/* msec = milliseconds = 1/1,000 (1*10e-3) second.
40 usec = microseconds = 1/1,000,000 (1*10e-6) second. */
41
Eric Andersenc3657422001-11-30 07:54:32 +000042#define UL unsigned long
43
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000044static const char default_format[] ALIGN1 = "real\t%E\nuser\t%u\nsys\t%T";
Eric Andersenc3657422001-11-30 07:54:32 +000045
46/* The output format for the -p option .*/
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000047static const char posix_format[] ALIGN1 = "real %e\nuser %U\nsys %S";
Eric Andersenc3657422001-11-30 07:54:32 +000048
Eric Andersenc3657422001-11-30 07:54:32 +000049/* Format string for printing all statistics verbosely.
50 Keep this output to 24 lines so users on terminals can see it all.*/
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000051static const char long_format[] ALIGN1 =
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000052 "\tCommand being timed: \"%C\"\n"
53 "\tUser time (seconds): %U\n"
54 "\tSystem time (seconds): %S\n"
55 "\tPercent of CPU this job got: %P\n"
56 "\tElapsed (wall clock) time (h:mm:ss or m:ss): %E\n"
57 "\tAverage shared text size (kbytes): %X\n"
58 "\tAverage unshared data size (kbytes): %D\n"
59 "\tAverage stack size (kbytes): %p\n"
60 "\tAverage total size (kbytes): %K\n"
61 "\tMaximum resident set size (kbytes): %M\n"
62 "\tAverage resident set size (kbytes): %t\n"
63 "\tMajor (requiring I/O) page faults: %F\n"
64 "\tMinor (reclaiming a frame) page faults: %R\n"
65 "\tVoluntary context switches: %w\n"
66 "\tInvoluntary context switches: %c\n"
67 "\tSwaps: %W\n"
68 "\tFile system inputs: %I\n"
69 "\tFile system outputs: %O\n"
70 "\tSocket messages sent: %s\n"
71 "\tSocket messages received: %r\n"
72 "\tSignals delivered: %k\n"
Denis Vlasenkof93ab472006-12-22 12:36:13 +000073 "\tPage size (bytes): %Z\n"
74 "\tExit status: %x";
Eric Andersenc3657422001-11-30 07:54:32 +000075
Denis Vlasenkof93ab472006-12-22 12:36:13 +000076/* Wait for and fill in data on child process PID.
77 Return 0 on error, 1 if ok. */
Eric Andersenc3657422001-11-30 07:54:32 +000078/* pid_t is short on BSDI, so don't try to promote it. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +000079static void resuse_end(pid_t pid, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +000080{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000081 pid_t caught;
Eric Andersenc3657422001-11-30 07:54:32 +000082
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000083 /* Ignore signals, but don't ignore the children. When wait3
Denys Vlasenko6830ade2013-01-15 13:58:01 +010084 * returns the child process, set the time the command finished. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +000085 while ((caught = wait3(&resp->waitstatus, 0, &resp->ru)) != pid) {
86 if (caught == -1 && errno != EINTR) {
87 bb_perror_msg("wait");
88 return;
89 }
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000090 }
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +010091 resp->elapsed_ms = monotonic_ms() - resp->elapsed_ms;
Eric Andersenc3657422001-11-30 07:54:32 +000092}
93
Denis Vlasenkob44c7902008-03-17 09:29:43 +000094static void printargv(char *const *argv)
Eric Andersenc3657422001-11-30 07:54:32 +000095{
Denis Vlasenkob44c7902008-03-17 09:29:43 +000096 const char *fmt = " %s" + 1;
97 do {
98 printf(fmt, *argv);
99 fmt = " %s";
100 } while (*++argv);
Eric Andersenc3657422001-11-30 07:54:32 +0000101}
102
103/* Return the number of kilobytes corresponding to a number of pages PAGES.
104 (Actually, we use it to convert pages*ticks into kilobytes*ticks.)
105
106 Try to do arithmetic so that the risk of overflow errors is minimized.
107 This is funky since the pagesize could be less than 1K.
108 Note: Some machines express getrusage statistics in terms of K,
109 others in terms of pages. */
Bernhard Reutner-Fischer0adf7f22009-02-23 16:51:25 +0000110static unsigned long ptok(const unsigned pagesize, const unsigned long pages)
Eric Andersenc3657422001-11-30 07:54:32 +0000111{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000112 unsigned long tmp;
Eric Andersenc3657422001-11-30 07:54:32 +0000113
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000114 /* Conversion. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000115 if (pages > (LONG_MAX / pagesize)) { /* Could overflow. */
116 tmp = pages / 1024; /* Smaller first, */
117 return tmp * pagesize; /* then larger. */
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000118 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000119 /* Could underflow. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000120 tmp = pages * pagesize; /* Larger first, */
121 return tmp / 1024; /* then smaller. */
Eric Andersenc3657422001-11-30 07:54:32 +0000122}
123
124/* summarize: Report on the system use of a command.
125
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000126 Print the FMT argument except that `%' sequences
Eric Andersenc3657422001-11-30 07:54:32 +0000127 have special meaning, and `\n' and `\t' are translated into
128 newline and tab, respectively, and `\\' is translated into `\'.
129
130 The character following a `%' can be:
131 (* means the tcsh time builtin also recognizes it)
132 % == a literal `%'
133 C == command name and arguments
134* D == average unshared data size in K (ru_idrss+ru_isrss)
135* E == elapsed real (wall clock) time in [hour:]min:sec
136* F == major page faults (required physical I/O) (ru_majflt)
137* I == file system inputs (ru_inblock)
138* K == average total mem usage (ru_idrss+ru_isrss+ru_ixrss)
139* M == maximum resident set size in K (ru_maxrss)
140* O == file system outputs (ru_oublock)
141* P == percent of CPU this job got (total cpu time / elapsed time)
142* R == minor page faults (reclaims; no physical I/O involved) (ru_minflt)
143* S == system (kernel) time (seconds) (ru_stime)
144* T == system time in [hour:]min:sec
145* U == user time (seconds) (ru_utime)
146* u == user time in [hour:]min:sec
147* W == times swapped out (ru_nswap)
148* X == average amount of shared text in K (ru_ixrss)
149 Z == page size
150* c == involuntary context switches (ru_nivcsw)
151 e == elapsed real time in seconds
152* k == signals delivered (ru_nsignals)
153 p == average unshared stack size in K (ru_isrss)
154* r == socket messages received (ru_msgrcv)
155* s == socket messages sent (ru_msgsnd)
156 t == average resident set size in K (ru_idrss)
157* w == voluntary context switches (ru_nvcsw)
158 x == exit status of command
159
160 Various memory usages are found by converting from page-seconds
161 to kbytes by multiplying by the page size, dividing by 1024,
162 and dividing by elapsed real time.
163
Eric Andersenc3657422001-11-30 07:54:32 +0000164 FMT is the format string, interpreted as described above.
165 COMMAND is the command and args that are being summarized.
166 RESP is resource information on the command. */
167
Denis Vlasenko459be352007-06-17 19:09:05 +0000168#ifndef TICKS_PER_SEC
169#define TICKS_PER_SEC 100
170#endif
171
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000172static void summarize(const char *fmt, char **command, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +0000173{
Denis Vlasenko459be352007-06-17 19:09:05 +0000174 unsigned vv_ms; /* Elapsed virtual (CPU) milliseconds */
175 unsigned cpu_ticks; /* Same, in "CPU ticks" */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000176 unsigned pagesize = getpagesize();
Eric Andersenc3657422001-11-30 07:54:32 +0000177
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000178 /* Impossible: we do not use WUNTRACED flag in wait()...
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000179 if (WIFSTOPPED(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000180 printf("Command stopped by signal %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000181 WSTOPSIG(resp->waitstatus));
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000182 else */
183 if (WIFSIGNALED(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000184 printf("Command terminated by signal %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000185 WTERMSIG(resp->waitstatus));
186 else if (WIFEXITED(resp->waitstatus) && WEXITSTATUS(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000187 printf("Command exited with non-zero status %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000188 WEXITSTATUS(resp->waitstatus));
Eric Andersenc3657422001-11-30 07:54:32 +0000189
Denis Vlasenko459be352007-06-17 19:09:05 +0000190 vv_ms = (resp->ru.ru_utime.tv_sec + resp->ru.ru_stime.tv_sec) * 1000
191 + (resp->ru.ru_utime.tv_usec + resp->ru.ru_stime.tv_usec) / 1000;
Eric Andersenc3657422001-11-30 07:54:32 +0000192
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000193#if (1000 / TICKS_PER_SEC) * TICKS_PER_SEC == 1000
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000194 /* 1000 is exactly divisible by TICKS_PER_SEC (typical) */
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000195 cpu_ticks = vv_ms / (1000 / TICKS_PER_SEC);
196#else
197 cpu_ticks = vv_ms * (unsigned long long)TICKS_PER_SEC / 1000;
198#endif
Denis Vlasenko459be352007-06-17 19:09:05 +0000199 if (!cpu_ticks) cpu_ticks = 1; /* we divide by it, must be nonzero */
Eric Andersenc3657422001-11-30 07:54:32 +0000200
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000201 while (*fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000202 /* Handle leading literal part */
203 int n = strcspn(fmt, "%\\");
204 if (n) {
205 printf("%.*s", n, fmt);
206 fmt += n;
207 continue;
208 }
209
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000210 switch (*fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000211#ifdef NOT_NEEDED
212 /* Handle literal char */
213 /* Usually we optimize for size, but there is a limit
214 * for everything. With this we do a lot of 1-byte writes */
215 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000216 bb_putchar(*fmt);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000217 break;
218#endif
219
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000220 case '%':
221 switch (*++fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000222#ifdef NOT_NEEDED_YET
223 /* Our format strings do not have these */
224 /* and we do not take format str from user */
225 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000226 bb_putchar('%');
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000227 /*FALLTHROUGH*/
228 case '%':
229 if (!*fmt) goto ret;
Denis Vlasenko4daad902007-09-27 10:20:47 +0000230 bb_putchar(*fmt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000231 break;
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000232#endif
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000233 case 'C': /* The command that got timed. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000234 printargv(command);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000235 break;
236 case 'D': /* Average unshared data size. */
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000237 printf("%lu",
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000238 (ptok(pagesize, (UL) resp->ru.ru_idrss) +
239 ptok(pagesize, (UL) resp->ru.ru_isrss)) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000240 break;
Denis Vlasenko459be352007-06-17 19:09:05 +0000241 case 'E': { /* Elapsed real (wall clock) time. */
242 unsigned seconds = resp->elapsed_ms / 1000;
243 if (seconds >= 3600) /* One hour -> h:m:s. */
244 printf("%uh %um %02us",
245 seconds / 3600,
246 (seconds % 3600) / 60,
247 seconds % 60);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000248 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000249 printf("%um %u.%02us", /* -> m:s. */
250 seconds / 60,
251 seconds % 60,
252 (unsigned)(resp->elapsed_ms / 10) % 100);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000253 break;
Denis Vlasenko459be352007-06-17 19:09:05 +0000254 }
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000255 case 'F': /* Major page faults. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000256 printf("%lu", resp->ru.ru_majflt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000257 break;
258 case 'I': /* Inputs. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000259 printf("%lu", resp->ru.ru_inblock);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000260 break;
261 case 'K': /* Average mem usage == data+stack+text. */
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000262 printf("%lu",
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000263 (ptok(pagesize, (UL) resp->ru.ru_idrss) +
264 ptok(pagesize, (UL) resp->ru.ru_isrss) +
265 ptok(pagesize, (UL) resp->ru.ru_ixrss)) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000266 break;
267 case 'M': /* Maximum resident set size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000268 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_maxrss));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000269 break;
270 case 'O': /* Outputs. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000271 printf("%lu", resp->ru.ru_oublock);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000272 break;
273 case 'P': /* Percent of CPU this job got. */
274 /* % cpu is (total cpu time)/(elapsed time). */
Denis Vlasenko459be352007-06-17 19:09:05 +0000275 if (resp->elapsed_ms > 0)
276 printf("%u%%", (unsigned)(vv_ms * 100 / resp->elapsed_ms));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000277 else
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000278 printf("?%%");
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000279 break;
280 case 'R': /* Minor page faults (reclaims). */
Denis Vlasenko459be352007-06-17 19:09:05 +0000281 printf("%lu", resp->ru.ru_minflt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000282 break;
283 case 'S': /* System time. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000284 printf("%u.%02u",
285 (unsigned)resp->ru.ru_stime.tv_sec,
286 (unsigned)(resp->ru.ru_stime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000287 break;
288 case 'T': /* System time. */
289 if (resp->ru.ru_stime.tv_sec >= 3600) /* One hour -> h:m:s. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000290 printf("%uh %um %02us",
291 (unsigned)(resp->ru.ru_stime.tv_sec / 3600),
292 (unsigned)(resp->ru.ru_stime.tv_sec % 3600) / 60,
293 (unsigned)(resp->ru.ru_stime.tv_sec % 60));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000294 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000295 printf("%um %u.%02us", /* -> m:s. */
296 (unsigned)(resp->ru.ru_stime.tv_sec / 60),
297 (unsigned)(resp->ru.ru_stime.tv_sec % 60),
298 (unsigned)(resp->ru.ru_stime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000299 break;
300 case 'U': /* User time. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000301 printf("%u.%02u",
302 (unsigned)resp->ru.ru_utime.tv_sec,
303 (unsigned)(resp->ru.ru_utime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000304 break;
305 case 'u': /* User time. */
306 if (resp->ru.ru_utime.tv_sec >= 3600) /* One hour -> h:m:s. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000307 printf("%uh %um %02us",
308 (unsigned)(resp->ru.ru_utime.tv_sec / 3600),
309 (unsigned)(resp->ru.ru_utime.tv_sec % 3600) / 60,
310 (unsigned)(resp->ru.ru_utime.tv_sec % 60));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000311 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000312 printf("%um %u.%02us", /* -> m:s. */
313 (unsigned)(resp->ru.ru_utime.tv_sec / 60),
314 (unsigned)(resp->ru.ru_utime.tv_sec % 60),
315 (unsigned)(resp->ru.ru_utime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000316 break;
317 case 'W': /* Times swapped out. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000318 printf("%lu", resp->ru.ru_nswap);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000319 break;
320 case 'X': /* Average shared text size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000321 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_ixrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000322 break;
323 case 'Z': /* Page size. */
Bernhard Reutner-Fischer0adf7f22009-02-23 16:51:25 +0000324 printf("%u", pagesize);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000325 break;
326 case 'c': /* Involuntary context switches. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000327 printf("%lu", resp->ru.ru_nivcsw);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000328 break;
329 case 'e': /* Elapsed real time in seconds. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000330 printf("%u.%02u",
331 (unsigned)resp->elapsed_ms / 1000,
332 (unsigned)(resp->elapsed_ms / 10) % 100);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000333 break;
334 case 'k': /* Signals delivered. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000335 printf("%lu", resp->ru.ru_nsignals);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000336 break;
337 case 'p': /* Average stack segment. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000338 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_isrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000339 break;
340 case 'r': /* Incoming socket messages received. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000341 printf("%lu", resp->ru.ru_msgrcv);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000342 break;
343 case 's': /* Outgoing socket messages sent. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000344 printf("%lu", resp->ru.ru_msgsnd);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000345 break;
346 case 't': /* Average resident set size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000347 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_idrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000348 break;
349 case 'w': /* Voluntary context switches. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000350 printf("%lu", resp->ru.ru_nvcsw);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000351 break;
352 case 'x': /* Exit status. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000353 printf("%u", WEXITSTATUS(resp->waitstatus));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000354 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000355 }
Eric Andersenc3657422001-11-30 07:54:32 +0000356 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000357
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000358#ifdef NOT_NEEDED_YET
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000359 case '\\': /* Format escape. */
360 switch (*++fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000361 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000362 bb_putchar('\\');
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000363 /*FALLTHROUGH*/
364 case '\\':
365 if (!*fmt) goto ret;
Denis Vlasenko4daad902007-09-27 10:20:47 +0000366 bb_putchar(*fmt);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000367 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000368 case 't':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000369 bb_putchar('\t');
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000370 break;
371 case 'n':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000372 bb_putchar('\n');
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000373 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000374 }
Eric Andersenc3657422001-11-30 07:54:32 +0000375 break;
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000376#endif
Eric Andersenc3657422001-11-30 07:54:32 +0000377 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000378 ++fmt;
Eric Andersenc3657422001-11-30 07:54:32 +0000379 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000380 /* ret: */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000381 bb_putchar('\n');
Eric Andersenc3657422001-11-30 07:54:32 +0000382}
383
384/* Run command CMD and return statistics on it.
385 Put the statistics in *RESP. */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000386static void run_command(char *const *cmd, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +0000387{
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200388 pid_t pid;
Denis Vlasenko25591c32008-02-16 22:58:56 +0000389 void (*interrupt_signal)(int);
390 void (*quit_signal)(int);
Eric Andersenc3657422001-11-30 07:54:32 +0000391
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100392 resp->elapsed_ms = monotonic_ms();
Pascal Bellard926031b2010-07-04 15:32:38 +0200393 pid = xvfork();
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200394 if (pid == 0) {
395 /* Child */
396 BB_EXECVP_or_die((char**)cmd);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000397 }
Eric Andersenc3657422001-11-30 07:54:32 +0000398
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000399 /* Have signals kill the child but not self (if possible). */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000400//TODO: just block all sigs? and reenable them in the very end in main?
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000401 interrupt_signal = signal(SIGINT, SIG_IGN);
402 quit_signal = signal(SIGQUIT, SIG_IGN);
Eric Andersenc3657422001-11-30 07:54:32 +0000403
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000404 resuse_end(pid, resp);
Eric Andersenc3657422001-11-30 07:54:32 +0000405
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000406 /* Re-enable signals. */
407 signal(SIGINT, interrupt_signal);
408 signal(SIGQUIT, quit_signal);
Eric Andersenc3657422001-11-30 07:54:32 +0000409}
410
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000411int time_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000412int time_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenc3657422001-11-30 07:54:32 +0000413{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000414 resource_t res;
415 const char *output_format = default_format;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000416 int opt;
Eric Andersenc3657422001-11-30 07:54:32 +0000417
Denis Vlasenko94884eb2008-07-11 15:05:51 +0000418 opt_complementary = "-1"; /* at least one arg */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000419 /* "+": stop on first non-option */
420 opt = getopt32(argv, "+vp");
421 argv += optind;
422 if (opt & 1)
423 output_format = long_format;
424 if (opt & 2)
425 output_format = posix_format;
Eric Andersenc3657422001-11-30 07:54:32 +0000426
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000427 run_command(argv, &res);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000428
429 /* Cheat. printf's are shorter :) */
Denys Vlasenkoc0664722010-01-02 18:49:22 +0100430 xdup2(STDERR_FILENO, STDOUT_FILENO);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000431 summarize(output_format, argv, &res);
Eric Andersenc3657422001-11-30 07:54:32 +0000432
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000433 if (WIFSTOPPED(res.waitstatus))
Denis Vlasenkof93ab472006-12-22 12:36:13 +0000434 return WSTOPSIG(res.waitstatus);
435 if (WIFSIGNALED(res.waitstatus))
436 return WTERMSIG(res.waitstatus);
437 if (WIFEXITED(res.waitstatus))
438 return WEXITSTATUS(res.waitstatus);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000439 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersenc3657422001-11-30 07:54:32 +0000440}