blob: 0006c59d88c47bd61ea85c18beb44db4795b84d9 [file] [log] [blame]
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenkoebe6d9d2017-10-05 14:40:24 +02002/*
3 * 'time' utility to display resource usage of processes.
4 * Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc.
5 *
6 * Licensed under GPLv2, see file LICENSE in this source tree.
7 */
Eric Andersenc3657422001-11-30 07:54:32 +00008/* Originally written by David Keppel <pardo@cs.washington.edu>.
Denys Vlasenkoebe6d9d2017-10-05 14:40:24 +02009 * Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>.
10 * Heavily modified for busybox by Erik Andersen <andersen@codepoet.org>
11 */
Denys Vlasenkofb4da162016-11-22 23:14:24 +010012//config:config TIME
Denys Vlasenkob097a842018-12-28 03:20:17 +010013//config: bool "time (6.8 kb)"
Denys Vlasenkofb4da162016-11-22 23:14:24 +010014//config: default y
15//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020016//config: The time command runs the specified program with the given arguments.
17//config: When the command finishes, time writes a message to standard output
18//config: giving timing statistics about this program run.
Eric Andersenc3657422001-11-30 07:54:32 +000019
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010020//applet:IF_TIME(APPLET(time, BB_DIR_USR_BIN, BB_SUID_DROP))
21
22//kbuild:lib-$(CONFIG_TIME) += time.o
23
Pere Orga5bc8c002011-04-11 03:29:49 +020024//usage:#define time_trivial_usage
Tommi Rantala5fe5be22017-04-28 17:54:14 +020025//usage: "[-vpa] [-o FILE] PROG ARGS"
Pere Orga5bc8c002011-04-11 03:29:49 +020026//usage:#define time_full_usage "\n\n"
27//usage: "Run PROG, display resource usage when it exits\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020028//usage: "\n -v Verbose"
Tommi Rantala854174f2017-04-24 19:08:53 +030029//usage: "\n -p POSIX output format"
Denys Vlasenkoa1a3b592017-04-28 18:01:18 +020030//usage: "\n -f FMT Custom format"
Tommi Rantala5fe5be22017-04-28 17:54:14 +020031//usage: "\n -o FILE Write result to FILE"
32//usage: "\n -a Append (else overwrite)"
Pere Orga5bc8c002011-04-11 03:29:49 +020033
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000034#include "libbb.h"
Eric Andersenc3657422001-11-30 07:54:32 +000035
Eric Andersenc3657422001-11-30 07:54:32 +000036/* Information on the resources used by a child process. */
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000037typedef struct {
38 int waitstatus;
39 struct rusage ru;
Denis Vlasenko459be352007-06-17 19:09:05 +000040 unsigned elapsed_ms; /* Wallclock time of process. */
Eric Andersenc3657422001-11-30 07:54:32 +000041} resource_t;
42
43/* msec = milliseconds = 1/1,000 (1*10e-3) second.
44 usec = microseconds = 1/1,000,000 (1*10e-6) second. */
45
Eric Andersenc3657422001-11-30 07:54:32 +000046#define UL unsigned long
47
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000048static const char default_format[] ALIGN1 = "real\t%E\nuser\t%u\nsys\t%T";
Eric Andersenc3657422001-11-30 07:54:32 +000049
50/* The output format for the -p option .*/
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000051static const char posix_format[] ALIGN1 = "real %e\nuser %U\nsys %S";
Eric Andersenc3657422001-11-30 07:54:32 +000052
Eric Andersenc3657422001-11-30 07:54:32 +000053/* Format string for printing all statistics verbosely.
54 Keep this output to 24 lines so users on terminals can see it all.*/
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000055static const char long_format[] ALIGN1 =
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000056 "\tCommand being timed: \"%C\"\n"
57 "\tUser time (seconds): %U\n"
58 "\tSystem time (seconds): %S\n"
59 "\tPercent of CPU this job got: %P\n"
60 "\tElapsed (wall clock) time (h:mm:ss or m:ss): %E\n"
61 "\tAverage shared text size (kbytes): %X\n"
62 "\tAverage unshared data size (kbytes): %D\n"
63 "\tAverage stack size (kbytes): %p\n"
64 "\tAverage total size (kbytes): %K\n"
65 "\tMaximum resident set size (kbytes): %M\n"
66 "\tAverage resident set size (kbytes): %t\n"
67 "\tMajor (requiring I/O) page faults: %F\n"
68 "\tMinor (reclaiming a frame) page faults: %R\n"
69 "\tVoluntary context switches: %w\n"
70 "\tInvoluntary context switches: %c\n"
71 "\tSwaps: %W\n"
72 "\tFile system inputs: %I\n"
73 "\tFile system outputs: %O\n"
74 "\tSocket messages sent: %s\n"
75 "\tSocket messages received: %r\n"
76 "\tSignals delivered: %k\n"
Denis Vlasenkof93ab472006-12-22 12:36:13 +000077 "\tPage size (bytes): %Z\n"
78 "\tExit status: %x";
Eric Andersenc3657422001-11-30 07:54:32 +000079
Denis Vlasenkof93ab472006-12-22 12:36:13 +000080/* Wait for and fill in data on child process PID.
81 Return 0 on error, 1 if ok. */
Eric Andersenc3657422001-11-30 07:54:32 +000082/* pid_t is short on BSDI, so don't try to promote it. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +000083static void resuse_end(pid_t pid, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +000084{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000085 pid_t caught;
Eric Andersenc3657422001-11-30 07:54:32 +000086
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000087 /* Ignore signals, but don't ignore the children. When wait3
Denys Vlasenko6830ade2013-01-15 13:58:01 +010088 * returns the child process, set the time the command finished. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +000089 while ((caught = wait3(&resp->waitstatus, 0, &resp->ru)) != pid) {
90 if (caught == -1 && errno != EINTR) {
James Byrne69374872019-07-02 11:35:03 +020091 bb_simple_perror_msg("wait");
Denis Vlasenkob44c7902008-03-17 09:29:43 +000092 return;
93 }
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +000094 }
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +010095 resp->elapsed_ms = monotonic_ms() - resp->elapsed_ms;
Eric Andersenc3657422001-11-30 07:54:32 +000096}
97
Denis Vlasenkob44c7902008-03-17 09:29:43 +000098static void printargv(char *const *argv)
Eric Andersenc3657422001-11-30 07:54:32 +000099{
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000100 const char *fmt = " %s" + 1;
101 do {
102 printf(fmt, *argv);
103 fmt = " %s";
104 } while (*++argv);
Eric Andersenc3657422001-11-30 07:54:32 +0000105}
106
107/* Return the number of kilobytes corresponding to a number of pages PAGES.
108 (Actually, we use it to convert pages*ticks into kilobytes*ticks.)
109
110 Try to do arithmetic so that the risk of overflow errors is minimized.
111 This is funky since the pagesize could be less than 1K.
112 Note: Some machines express getrusage statistics in terms of K,
113 others in terms of pages. */
Denys Vlasenkoc7b858f2020-12-14 18:49:23 +0100114#ifdef BB_ARCH_FIXED_PAGESIZE
115# define pagesize BB_ARCH_FIXED_PAGESIZE
116# define ptok(pagesize, pages) ptok(pages)
117#endif
Bernhard Reutner-Fischer0adf7f22009-02-23 16:51:25 +0000118static unsigned long ptok(const unsigned pagesize, const unsigned long pages)
Eric Andersenc3657422001-11-30 07:54:32 +0000119{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000120 unsigned long tmp;
Eric Andersenc3657422001-11-30 07:54:32 +0000121
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000122 /* Conversion. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000123 if (pages > (LONG_MAX / pagesize)) { /* Could overflow. */
124 tmp = pages / 1024; /* Smaller first, */
125 return tmp * pagesize; /* then larger. */
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000126 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000127 /* Could underflow. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000128 tmp = pages * pagesize; /* Larger first, */
129 return tmp / 1024; /* then smaller. */
Eric Andersenc3657422001-11-30 07:54:32 +0000130}
Denys Vlasenkoc7b858f2020-12-14 18:49:23 +0100131#undef pagesize
Eric Andersenc3657422001-11-30 07:54:32 +0000132
133/* summarize: Report on the system use of a command.
134
Denys Vlasenko95f79532017-08-02 14:26:33 +0200135 Print the FMT argument except that '%' sequences
136 have special meaning, and '\n' and '\t' are translated into
137 newline and tab, respectively, and '\\' is translated into '\'.
Eric Andersenc3657422001-11-30 07:54:32 +0000138
Denys Vlasenko95f79532017-08-02 14:26:33 +0200139 The character following a '%' can be:
Eric Andersenc3657422001-11-30 07:54:32 +0000140 (* means the tcsh time builtin also recognizes it)
Denys Vlasenko95f79532017-08-02 14:26:33 +0200141 % == a literal '%'
Eric Andersenc3657422001-11-30 07:54:32 +0000142 C == command name and arguments
143* D == average unshared data size in K (ru_idrss+ru_isrss)
144* E == elapsed real (wall clock) time in [hour:]min:sec
145* F == major page faults (required physical I/O) (ru_majflt)
146* I == file system inputs (ru_inblock)
147* K == average total mem usage (ru_idrss+ru_isrss+ru_ixrss)
148* M == maximum resident set size in K (ru_maxrss)
149* O == file system outputs (ru_oublock)
150* P == percent of CPU this job got (total cpu time / elapsed time)
151* R == minor page faults (reclaims; no physical I/O involved) (ru_minflt)
152* S == system (kernel) time (seconds) (ru_stime)
153* T == system time in [hour:]min:sec
154* U == user time (seconds) (ru_utime)
155* u == user time in [hour:]min:sec
156* W == times swapped out (ru_nswap)
157* X == average amount of shared text in K (ru_ixrss)
158 Z == page size
159* c == involuntary context switches (ru_nivcsw)
160 e == elapsed real time in seconds
161* k == signals delivered (ru_nsignals)
162 p == average unshared stack size in K (ru_isrss)
163* r == socket messages received (ru_msgrcv)
164* s == socket messages sent (ru_msgsnd)
165 t == average resident set size in K (ru_idrss)
166* w == voluntary context switches (ru_nvcsw)
167 x == exit status of command
168
169 Various memory usages are found by converting from page-seconds
170 to kbytes by multiplying by the page size, dividing by 1024,
171 and dividing by elapsed real time.
172
Eric Andersenc3657422001-11-30 07:54:32 +0000173 FMT is the format string, interpreted as described above.
174 COMMAND is the command and args that are being summarized.
175 RESP is resource information on the command. */
176
Denis Vlasenko459be352007-06-17 19:09:05 +0000177#ifndef TICKS_PER_SEC
178#define TICKS_PER_SEC 100
179#endif
180
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000181static void summarize(const char *fmt, char **command, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +0000182{
Denis Vlasenko459be352007-06-17 19:09:05 +0000183 unsigned vv_ms; /* Elapsed virtual (CPU) milliseconds */
184 unsigned cpu_ticks; /* Same, in "CPU ticks" */
Denys Vlasenkoc7b858f2020-12-14 18:49:23 +0100185 unsigned pagesize = bb_getpagesize();
Eric Andersenc3657422001-11-30 07:54:32 +0000186
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000187 /* Impossible: we do not use WUNTRACED flag in wait()...
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000188 if (WIFSTOPPED(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000189 printf("Command stopped by signal %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000190 WSTOPSIG(resp->waitstatus));
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000191 else */
192 if (WIFSIGNALED(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000193 printf("Command terminated by signal %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000194 WTERMSIG(resp->waitstatus));
195 else if (WIFEXITED(resp->waitstatus) && WEXITSTATUS(resp->waitstatus))
Denis Vlasenko459be352007-06-17 19:09:05 +0000196 printf("Command exited with non-zero status %u\n",
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000197 WEXITSTATUS(resp->waitstatus));
Eric Andersenc3657422001-11-30 07:54:32 +0000198
Denis Vlasenko459be352007-06-17 19:09:05 +0000199 vv_ms = (resp->ru.ru_utime.tv_sec + resp->ru.ru_stime.tv_sec) * 1000
200 + (resp->ru.ru_utime.tv_usec + resp->ru.ru_stime.tv_usec) / 1000;
Eric Andersenc3657422001-11-30 07:54:32 +0000201
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000202#if (1000 / TICKS_PER_SEC) * TICKS_PER_SEC == 1000
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000203 /* 1000 is exactly divisible by TICKS_PER_SEC (typical) */
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000204 cpu_ticks = vv_ms / (1000 / TICKS_PER_SEC);
205#else
206 cpu_ticks = vv_ms * (unsigned long long)TICKS_PER_SEC / 1000;
207#endif
Denis Vlasenko459be352007-06-17 19:09:05 +0000208 if (!cpu_ticks) cpu_ticks = 1; /* we divide by it, must be nonzero */
Eric Andersenc3657422001-11-30 07:54:32 +0000209
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000210 while (*fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000211 /* Handle leading literal part */
212 int n = strcspn(fmt, "%\\");
213 if (n) {
214 printf("%.*s", n, fmt);
215 fmt += n;
216 continue;
217 }
218
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000219 switch (*fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000220#ifdef NOT_NEEDED
221 /* Handle literal char */
222 /* Usually we optimize for size, but there is a limit
223 * for everything. With this we do a lot of 1-byte writes */
224 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000225 bb_putchar(*fmt);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000226 break;
227#endif
228
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000229 case '%':
230 switch (*++fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000231#ifdef NOT_NEEDED_YET
232 /* Our format strings do not have these */
233 /* and we do not take format str from user */
234 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000235 bb_putchar('%');
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000236 /*FALLTHROUGH*/
237 case '%':
238 if (!*fmt) goto ret;
Denis Vlasenko4daad902007-09-27 10:20:47 +0000239 bb_putchar(*fmt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000240 break;
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000241#endif
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000242 case 'C': /* The command that got timed. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000243 printargv(command);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000244 break;
245 case 'D': /* Average unshared data size. */
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000246 printf("%lu",
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000247 (ptok(pagesize, (UL) resp->ru.ru_idrss) +
248 ptok(pagesize, (UL) resp->ru.ru_isrss)) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000249 break;
Denis Vlasenko459be352007-06-17 19:09:05 +0000250 case 'E': { /* Elapsed real (wall clock) time. */
251 unsigned seconds = resp->elapsed_ms / 1000;
252 if (seconds >= 3600) /* One hour -> h:m:s. */
253 printf("%uh %um %02us",
254 seconds / 3600,
255 (seconds % 3600) / 60,
256 seconds % 60);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000257 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000258 printf("%um %u.%02us", /* -> m:s. */
259 seconds / 60,
260 seconds % 60,
261 (unsigned)(resp->elapsed_ms / 10) % 100);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000262 break;
Denis Vlasenko459be352007-06-17 19:09:05 +0000263 }
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000264 case 'F': /* Major page faults. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000265 printf("%lu", resp->ru.ru_majflt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000266 break;
267 case 'I': /* Inputs. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000268 printf("%lu", resp->ru.ru_inblock);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000269 break;
270 case 'K': /* Average mem usage == data+stack+text. */
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000271 printf("%lu",
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000272 (ptok(pagesize, (UL) resp->ru.ru_idrss) +
273 ptok(pagesize, (UL) resp->ru.ru_isrss) +
274 ptok(pagesize, (UL) resp->ru.ru_ixrss)) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000275 break;
276 case 'M': /* Maximum resident set size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000277 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_maxrss));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000278 break;
279 case 'O': /* Outputs. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000280 printf("%lu", resp->ru.ru_oublock);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000281 break;
282 case 'P': /* Percent of CPU this job got. */
283 /* % cpu is (total cpu time)/(elapsed time). */
Denis Vlasenko459be352007-06-17 19:09:05 +0000284 if (resp->elapsed_ms > 0)
285 printf("%u%%", (unsigned)(vv_ms * 100 / resp->elapsed_ms));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000286 else
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000287 printf("?%%");
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000288 break;
289 case 'R': /* Minor page faults (reclaims). */
Denis Vlasenko459be352007-06-17 19:09:05 +0000290 printf("%lu", resp->ru.ru_minflt);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000291 break;
292 case 'S': /* System time. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000293 printf("%u.%02u",
294 (unsigned)resp->ru.ru_stime.tv_sec,
295 (unsigned)(resp->ru.ru_stime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000296 break;
297 case 'T': /* System time. */
298 if (resp->ru.ru_stime.tv_sec >= 3600) /* One hour -> h:m:s. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000299 printf("%uh %um %02us",
300 (unsigned)(resp->ru.ru_stime.tv_sec / 3600),
301 (unsigned)(resp->ru.ru_stime.tv_sec % 3600) / 60,
302 (unsigned)(resp->ru.ru_stime.tv_sec % 60));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000303 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000304 printf("%um %u.%02us", /* -> m:s. */
305 (unsigned)(resp->ru.ru_stime.tv_sec / 60),
306 (unsigned)(resp->ru.ru_stime.tv_sec % 60),
307 (unsigned)(resp->ru.ru_stime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000308 break;
309 case 'U': /* User time. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000310 printf("%u.%02u",
311 (unsigned)resp->ru.ru_utime.tv_sec,
312 (unsigned)(resp->ru.ru_utime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000313 break;
314 case 'u': /* User time. */
315 if (resp->ru.ru_utime.tv_sec >= 3600) /* One hour -> h:m:s. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000316 printf("%uh %um %02us",
317 (unsigned)(resp->ru.ru_utime.tv_sec / 3600),
318 (unsigned)(resp->ru.ru_utime.tv_sec % 3600) / 60,
319 (unsigned)(resp->ru.ru_utime.tv_sec % 60));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000320 else
Denis Vlasenko459be352007-06-17 19:09:05 +0000321 printf("%um %u.%02us", /* -> m:s. */
322 (unsigned)(resp->ru.ru_utime.tv_sec / 60),
323 (unsigned)(resp->ru.ru_utime.tv_sec % 60),
324 (unsigned)(resp->ru.ru_utime.tv_usec / 10000));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000325 break;
326 case 'W': /* Times swapped out. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000327 printf("%lu", resp->ru.ru_nswap);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000328 break;
329 case 'X': /* Average shared text size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000330 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_ixrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000331 break;
332 case 'Z': /* Page size. */
Bernhard Reutner-Fischer0adf7f22009-02-23 16:51:25 +0000333 printf("%u", pagesize);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000334 break;
335 case 'c': /* Involuntary context switches. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000336 printf("%lu", resp->ru.ru_nivcsw);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000337 break;
338 case 'e': /* Elapsed real time in seconds. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000339 printf("%u.%02u",
340 (unsigned)resp->elapsed_ms / 1000,
341 (unsigned)(resp->elapsed_ms / 10) % 100);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000342 break;
343 case 'k': /* Signals delivered. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000344 printf("%lu", resp->ru.ru_nsignals);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000345 break;
346 case 'p': /* Average stack segment. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000347 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_isrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000348 break;
349 case 'r': /* Incoming socket messages received. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000350 printf("%lu", resp->ru.ru_msgrcv);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000351 break;
352 case 's': /* Outgoing socket messages sent. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000353 printf("%lu", resp->ru.ru_msgsnd);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000354 break;
355 case 't': /* Average resident set size. */
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000356 printf("%lu", ptok(pagesize, (UL) resp->ru.ru_idrss) / cpu_ticks);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000357 break;
358 case 'w': /* Voluntary context switches. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000359 printf("%lu", resp->ru.ru_nvcsw);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000360 break;
361 case 'x': /* Exit status. */
Denis Vlasenko459be352007-06-17 19:09:05 +0000362 printf("%u", WEXITSTATUS(resp->waitstatus));
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000363 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000364 }
Eric Andersenc3657422001-11-30 07:54:32 +0000365 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000366
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000367#ifdef NOT_NEEDED_YET
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000368 case '\\': /* Format escape. */
369 switch (*++fmt) {
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000370 default:
Denis Vlasenko4daad902007-09-27 10:20:47 +0000371 bb_putchar('\\');
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000372 /*FALLTHROUGH*/
373 case '\\':
374 if (!*fmt) goto ret;
Denis Vlasenko4daad902007-09-27 10:20:47 +0000375 bb_putchar(*fmt);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000376 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000377 case 't':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000378 bb_putchar('\t');
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000379 break;
380 case 'n':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000381 bb_putchar('\n');
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000382 break;
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000383 }
Eric Andersenc3657422001-11-30 07:54:32 +0000384 break;
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000385#endif
Eric Andersenc3657422001-11-30 07:54:32 +0000386 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000387 ++fmt;
Eric Andersenc3657422001-11-30 07:54:32 +0000388 }
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000389 /* ret: */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000390 bb_putchar('\n');
Eric Andersenc3657422001-11-30 07:54:32 +0000391}
392
393/* Run command CMD and return statistics on it.
394 Put the statistics in *RESP. */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000395static void run_command(char *const *cmd, resource_t *resp)
Eric Andersenc3657422001-11-30 07:54:32 +0000396{
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200397 pid_t pid;
Denis Vlasenko25591c32008-02-16 22:58:56 +0000398 void (*interrupt_signal)(int);
399 void (*quit_signal)(int);
Eric Andersenc3657422001-11-30 07:54:32 +0000400
Denys Vlasenkof2c8aa62010-01-12 12:52:30 +0100401 resp->elapsed_ms = monotonic_ms();
Pascal Bellard926031b2010-07-04 15:32:38 +0200402 pid = xvfork();
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200403 if (pid == 0) {
404 /* Child */
405 BB_EXECVP_or_die((char**)cmd);
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000406 }
Eric Andersenc3657422001-11-30 07:54:32 +0000407
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000408 /* Have signals kill the child but not self (if possible). */
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200409//TODO: just block all sigs? and re-enable them in the very end in main?
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000410 interrupt_signal = signal(SIGINT, SIG_IGN);
411 quit_signal = signal(SIGQUIT, SIG_IGN);
Eric Andersenc3657422001-11-30 07:54:32 +0000412
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000413 resuse_end(pid, resp);
Eric Andersenc3657422001-11-30 07:54:32 +0000414
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000415 /* Re-enable signals. */
416 signal(SIGINT, interrupt_signal);
417 signal(SIGQUIT, quit_signal);
Eric Andersenc3657422001-11-30 07:54:32 +0000418}
419
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000420int time_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000421int time_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenc3657422001-11-30 07:54:32 +0000422{
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000423 resource_t res;
Denys Vlasenkoa1a3b592017-04-28 18:01:18 +0200424 /* $TIME has lowest prio (-v,-p,-f FMT overrride it) */
425 const char *output_format = getenv("TIME") ? : default_format;
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200426 char *output_filename;
427 int output_fd;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000428 int opt;
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200429 int ex;
430 enum {
431 OPT_v = (1 << 0),
432 OPT_p = (1 << 1),
433 OPT_a = (1 << 2),
434 OPT_o = (1 << 3),
Denys Vlasenkoa1a3b592017-04-28 18:01:18 +0200435 OPT_f = (1 << 4),
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200436 };
Eric Andersenc3657422001-11-30 07:54:32 +0000437
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000438 /* "+": stop on first non-option */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200439 opt = getopt32(argv, "^+" "vpao:f:" "\0" "-1"/*at least one arg*/,
440 &output_filename, &output_format
441 );
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000442 argv += optind;
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200443 if (opt & OPT_v)
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000444 output_format = long_format;
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200445 if (opt & OPT_p)
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000446 output_format = posix_format;
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200447 output_fd = STDERR_FILENO;
448 if (opt & OPT_o) {
Denys Vlasenkod3a7e882017-10-27 19:05:00 +0200449#ifndef O_CLOEXEC
450# define O_CLOEXEC 0
451#endif
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200452 output_fd = xopen(output_filename,
453 (opt & OPT_a) /* append? */
454 ? (O_CREAT | O_WRONLY | O_CLOEXEC | O_APPEND)
455 : (O_CREAT | O_WRONLY | O_CLOEXEC | O_TRUNC)
456 );
Denys Vlasenkod3a7e882017-10-27 19:05:00 +0200457 if (!O_CLOEXEC)
458 close_on_exec_on(output_fd);
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200459 }
Eric Andersenc3657422001-11-30 07:54:32 +0000460
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000461 run_command(argv, &res);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000462
463 /* Cheat. printf's are shorter :) */
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200464 xdup2(output_fd, STDOUT_FILENO);
Denis Vlasenkoc5cb38f2006-12-22 13:43:19 +0000465 summarize(output_format, argv, &res);
Eric Andersenc3657422001-11-30 07:54:32 +0000466
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200467 ex = WEXITSTATUS(res.waitstatus);
468 /* Impossible: we do not use WUNTRACED flag in wait()...
Bernhard Reutner-Fischerb1312c92006-06-03 20:09:02 +0000469 if (WIFSTOPPED(res.waitstatus))
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200470 ex = WSTOPSIG(res.waitstatus);
471 */
Denis Vlasenkof93ab472006-12-22 12:36:13 +0000472 if (WIFSIGNALED(res.waitstatus))
Tommi Rantala5fe5be22017-04-28 17:54:14 +0200473 ex = WTERMSIG(res.waitstatus);
474
475 fflush_stdout_and_exit(ex);
Eric Andersenc3657422001-11-30 07:54:32 +0000476}