blob: d73fad9de62088d79a21a5017939f0489cb4b0d1 [file] [log] [blame]
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00001/* vi: set sw=4 ts=4: */
Eric Andersen5b176932000-09-22 20:22:28 +00002/*
Eric Andersena37d5b72000-09-23 06:10:14 +00003 * Mini xargs implementation for busybox
Eric Andersen5b176932000-09-22 20:22:28 +00004 *
Glenn L McGrath61796942003-10-10 12:10:18 +00005 * (C) 2002,2003 by Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrathf57674e2002-11-10 21:47:17 +00006 *
Glenn L McGrath61796942003-10-10 12:10:18 +00007 * Special thanks
Eric Andersenaff114c2004-04-14 17:51:38 +00008 * - Mark Whitley and Glenn McGrath for stimulus to rewrite :)
Glenn L McGrath61796942003-10-10 12:10:18 +00009 * - Mike Rendell <michael@cs.mun.ca>
10 * and David MacKenzie <djm@gnu.ai.mit.edu>.
Eric Andersen5b176932000-09-22 20:22:28 +000011 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020012 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersena37d5b72000-09-23 06:10:14 +000013 *
Glenn L McGrath40c94892003-10-30 22:51:33 +000014 * xargs is described in the Single Unix Specification v3 at
15 * http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html
Eric Andersen5b176932000-09-22 20:22:28 +000016 */
Eric Andersen92a61c12000-09-22 20:01:23 +000017
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020018//applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, _BB_DIR_USR_BIN, _BB_SUID_DROP, xargs))
19
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020020//kbuild:lib-$(CONFIG_XARGS) += xargs.o
Denys Vlasenko237aece2010-06-15 10:18:01 +020021
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020022//config:config XARGS
23//config: bool "xargs"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020024//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020025//config: help
26//config: xargs is used to execute a specified command for
27//config: every item from standard input.
28//config:
29//config:config FEATURE_XARGS_SUPPORT_CONFIRMATION
30//config: bool "Enable -p: prompt and confirmation"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020031//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020032//config: depends on XARGS
33//config: help
34//config: Support -p: prompt the user whether to run each command
35//config: line and read a line from the terminal.
36//config:
37//config:config FEATURE_XARGS_SUPPORT_QUOTES
38//config: bool "Enable single and double quotes and backslash"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020039//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020040//config: depends on XARGS
41//config: help
42//config: Support quoting in the input.
43//config:
44//config:config FEATURE_XARGS_SUPPORT_TERMOPT
45//config: bool "Enable -x: exit if -s or -n is exceeded"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020046//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020047//config: depends on XARGS
48//config: help
49//config: Support -x: exit if the command size (see the -s or -n option)
50//config: is exceeded.
51//config:
52//config:config FEATURE_XARGS_SUPPORT_ZERO_TERM
53//config: bool "Enable -0: NUL-terminated input"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020054//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020055//config: depends on XARGS
56//config: help
57//config: Support -0: input items are terminated by a NUL character
58//config: instead of whitespace, and the quotes and backslash
59//config: are not special.
60
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000061#include "libbb.h"
Glenn L McGrath61796942003-10-10 12:10:18 +000062
Denys Vlasenko7a4021d2010-06-14 00:57:05 +020063/* This is a NOEXEC applet. Be very careful! */
64
65
66//#define dbg_msg(...) bb_error_msg(__VA_ARGS__)
67#define dbg_msg(...) ((void)0)
68
Glenn L McGrath61796942003-10-10 12:10:18 +000069
70#ifdef TEST
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +000071# ifndef ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION
72# define ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION 1
Glenn L McGrath61796942003-10-10 12:10:18 +000073# endif
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +000074# ifndef ENABLE_FEATURE_XARGS_SUPPORT_QUOTES
75# define ENABLE_FEATURE_XARGS_SUPPORT_QUOTES 1
Glenn L McGrath61796942003-10-10 12:10:18 +000076# endif
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +000077# ifndef ENABLE_FEATURE_XARGS_SUPPORT_TERMOPT
78# define ENABLE_FEATURE_XARGS_SUPPORT_TERMOPT 1
Glenn L McGrath61796942003-10-10 12:10:18 +000079# endif
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +000080# ifndef ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
81# define ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM 1
Glenn L McGrath61796942003-10-10 12:10:18 +000082# endif
83#endif
84
Denys Vlasenko7a4021d2010-06-14 00:57:05 +020085
86struct globals {
87 char **args;
88 const char *eof_str;
89 int idx;
90} FIX_ALIASING;
91#define G (*(struct globals*)&bb_common_bufsiz1)
92#define INIT_G() do { } while (0)
93
94
Glenn L McGrathf57674e2002-11-10 21:47:17 +000095/*
Denys Vlasenkoaaa24e02010-06-13 12:43:54 +020096 * This function has special algorithm.
97 * Don't use fork and include to main!
98 */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +020099static int xargs_exec(void)
Glenn L McGrathf57674e2002-11-10 21:47:17 +0000100{
Denis Vlasenko6248a732006-09-29 08:20:30 +0000101 int status;
Glenn L McGrath61796942003-10-10 12:10:18 +0000102
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200103 status = spawn_and_wait(G.args);
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000104 if (status < 0) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200105 bb_simple_perror_msg(G.args[0]);
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000106 return errno == ENOENT ? 127 : 126;
Denis Vlasenko6248a732006-09-29 08:20:30 +0000107 }
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000108 if (status == 255) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200109 bb_error_msg("%s: exited with status 255; aborting", G.args[0]);
Denis Vlasenko6248a732006-09-29 08:20:30 +0000110 return 124;
111 }
Denys Vlasenko8531d762010-03-18 22:44:00 +0100112 if (status >= 0x180) {
Denis Vlasenko6248a732006-09-29 08:20:30 +0000113 bb_error_msg("%s: terminated by signal %d",
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200114 G.args[0], status - 0x180);
Denis Vlasenko6248a732006-09-29 08:20:30 +0000115 return 125;
116 }
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000117 if (status)
Denis Vlasenko6248a732006-09-29 08:20:30 +0000118 return 123;
119 return 0;
Glenn L McGrath61796942003-10-10 12:10:18 +0000120}
Glenn L McGrath99825962003-10-09 11:06:45 +0000121
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200122/* In POSIX/C locale isspace is only these chars: "\t\n\v\f\r" and space.
123 * "\t\n\v\f\r" happen to have ASCII codes 9,10,11,12,13.
124 */
125#define ISSPACE(a) ({ unsigned char xargs__isspace = (a) - 9; xargs__isspace == (' ' - 9) || xargs__isspace <= (13 - 9); })
Glenn L McGrath61796942003-10-10 12:10:18 +0000126
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200127static void store_param(char *s)
128{
129 /* Grow by 256 elements at once */
130 if (!(G.idx & 0xff)) { /* G.idx == N*256 */
131 /* Enlarge, make G.args[(N+1)*256 - 1] last valid idx */
132 G.args = xrealloc(G.args, sizeof(G.args[0]) * (G.idx + 0x100));
133 }
134 G.args[G.idx++] = s;
135}
136
137/* process[0]_stdin:
138 * Read characters into buf[n_max_chars+1], and when parameter delimiter
139 * is seen, store the address of a new parameter to args[].
140 * If reading discovers that last chars do not form the complete
141 * parameter, the pointer to the first such "tail character" is returned.
142 * (buf has extra byte at the end to accomodate terminating NUL
143 * of "tail characters" string).
144 * Otherwise, the returned pointer points to NUL byte.
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200145 * On entry, buf[] may contain some "seed chars" which are to become
146 * the beginning of the first parameter.
147 */
148
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000149#if ENABLE_FEATURE_XARGS_SUPPORT_QUOTES
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200150static char* FAST_FUNC process_stdin(int n_max_chars, int n_max_arg, char *buf)
Glenn L McGrath61796942003-10-10 12:10:18 +0000151{
152#define NORM 0
153#define QUOTE 1
154#define BACKSLASH 2
155#define SPACE 4
Denys Vlasenko237aece2010-06-15 10:18:01 +0200156 char q = '\0'; /* quote char */
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000157 char state = NORM;
Denys Vlasenko237aece2010-06-15 10:18:01 +0200158 char *s = buf; /* start of the word */
159 char *p = s + strlen(buf); /* end of the word */
Glenn L McGrath61796942003-10-10 12:10:18 +0000160
Denys Vlasenko237aece2010-06-15 10:18:01 +0200161 buf += n_max_chars; /* past buffer's end */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200162
163 /* "goto ret" is used instead of "break" to make control flow
164 * more obvious: */
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000165
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200166 while (1) {
167 int c = getchar();
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000168 if (c == EOF) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200169 if (p != s)
170 goto close_word;
171 goto ret;
Glenn L McGrath61796942003-10-10 12:10:18 +0000172 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000173 if (state == BACKSLASH) {
174 state = NORM;
175 goto set;
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200176 }
177 if (state == QUOTE) {
Denis Vlasenko58394b12007-04-15 08:38:50 +0000178 if (c != q)
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000179 goto set;
Denis Vlasenko58394b12007-04-15 08:38:50 +0000180 q = '\0';
181 state = NORM;
Denis Vlasenko51742f42007-04-12 00:32:05 +0000182 } else { /* if (state == NORM) */
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000183 if (ISSPACE(c)) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200184 if (p != s) {
185 close_word:
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000186 state = SPACE;
Denis Vlasenko58394b12007-04-15 08:38:50 +0000187 c = '\0';
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000188 goto set;
189 }
190 } else {
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000191 if (c == '\\') {
192 state = BACKSLASH;
193 } else if (c == '\'' || c == '"') {
194 q = c;
195 state = QUOTE;
196 } else {
Denis Vlasenko58394b12007-04-15 08:38:50 +0000197 set:
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000198 *p++ = c;
199 }
200 }
201 }
"Vladimir N. Oleynik"59c4e5c2006-01-30 13:51:50 +0000202 if (state == SPACE) { /* word's delimiter or EOF detected */
Eric Andersen252183e2003-10-31 08:19:44 +0000203 if (q) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000204 bb_error_msg_and_die("unmatched %s quote",
Eric Andersen252183e2003-10-31 08:19:44 +0000205 q == '\'' ? "single" : "double");
206 }
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200207 /* A full word is loaded */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200208 if (G.eof_str) {
209 if (strcmp(s, G.eof_str) == 0) {
210 while (getchar() != EOF)
211 continue;
212 p = s;
213 goto ret;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000214 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000215 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200216 store_param(s);
217 dbg_msg("args[]:'%s'", s);
218 s = p;
219 n_max_arg--;
Denys Vlasenko237aece2010-06-15 10:18:01 +0200220 if (n_max_arg == 0) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200221 goto ret;
222 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000223 state = NORM;
Denys Vlasenko237aece2010-06-15 10:18:01 +0200224 }
225 if (p == buf) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200226 goto ret;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000227 }
Glenn L McGrath61796942003-10-10 12:10:18 +0000228 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200229 ret:
230 *p = '\0';
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200231 /* store_param(NULL) - caller will do it */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200232 dbg_msg("return:'%s'", s);
233 return s;
Glenn L McGrathf57674e2002-11-10 21:47:17 +0000234}
Glenn L McGrath61796942003-10-10 12:10:18 +0000235#else
Eric Andersen252183e2003-10-31 08:19:44 +0000236/* The variant does not support single quotes, double quotes or backslash */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200237static char* FAST_FUNC process_stdin(int n_max_chars, int n_max_arg, char *buf)
Eric Andersen92a61c12000-09-22 20:01:23 +0000238{
Denys Vlasenko237aece2010-06-15 10:18:01 +0200239 char *s = buf; /* start of the word */
240 char *p = s + strlen(buf); /* end of the word */
Glenn L McGrathadd3ead2003-10-04 14:44:27 +0000241
Denys Vlasenko237aece2010-06-15 10:18:01 +0200242 buf += n_max_chars; /* past buffer's end */
Eric Andersen92a61c12000-09-22 20:01:23 +0000243
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200244 while (1) {
245 int c = getchar();
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000246 if (c == EOF) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200247 if (p == s)
248 goto ret;
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200249 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000250 if (c == EOF || ISSPACE(c)) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200251 if (p == s)
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000252 continue;
253 c = EOF;
Glenn L McGrath61796942003-10-10 12:10:18 +0000254 }
Denis Vlasenko58394b12007-04-15 08:38:50 +0000255 *p++ = (c == EOF ? '\0' : c);
"Vladimir N. Oleynik"59c4e5c2006-01-30 13:51:50 +0000256 if (c == EOF) { /* word's delimiter or EOF detected */
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200257 /* A full word is loaded */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200258 if (G.eof_str) {
259 if (strcmp(s, G.eof_str) == 0) {
260 while (getchar() != EOF)
261 continue;
262 p = s;
263 goto ret;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000264 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000265 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200266 store_param(s);
267 dbg_msg("args[]:'%s'", s);
268 s = p;
269 n_max_arg--;
Denys Vlasenko237aece2010-06-15 10:18:01 +0200270 if (n_max_arg == 0) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200271 goto ret;
272 }
Denys Vlasenko237aece2010-06-15 10:18:01 +0200273 }
274 if (p == buf) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200275 goto ret;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000276 }
Glenn L McGrath61796942003-10-10 12:10:18 +0000277 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200278 ret:
279 *p = '\0';
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200280 /* store_param(NULL) - caller will do it */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200281 dbg_msg("return:'%s'", s);
282 return s;
Eric Andersen92a61c12000-09-22 20:01:23 +0000283}
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000284#endif /* FEATURE_XARGS_SUPPORT_QUOTES */
Glenn L McGrath61796942003-10-10 12:10:18 +0000285
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000286#if ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200287static char* FAST_FUNC process0_stdin(int n_max_chars, int n_max_arg, char *buf)
Glenn L McGrath61796942003-10-10 12:10:18 +0000288{
Denys Vlasenko237aece2010-06-15 10:18:01 +0200289 char *s = buf; /* start of the word */
290 char *p = s + strlen(buf); /* end of the word */
Glenn L McGrath61796942003-10-10 12:10:18 +0000291
Denys Vlasenko237aece2010-06-15 10:18:01 +0200292 buf += n_max_chars; /* past buffer's end */
Glenn L McGrath61796942003-10-10 12:10:18 +0000293
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200294 while (1) {
295 int c = getchar();
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000296 if (c == EOF) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200297 if (p == s)
298 goto ret;
Denis Vlasenko58394b12007-04-15 08:38:50 +0000299 c = '\0';
Glenn L McGrath61796942003-10-10 12:10:18 +0000300 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000301 *p++ = c;
Denis Vlasenko58394b12007-04-15 08:38:50 +0000302 if (c == '\0') { /* word's delimiter or EOF detected */
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200303 /* A full word is loaded */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200304 store_param(s);
305 dbg_msg("args[]:'%s'", s);
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200306 s = p;
Denys Vlasenkof7e929e2010-06-15 10:02:04 +0200307 n_max_arg--;
Denys Vlasenko237aece2010-06-15 10:18:01 +0200308 if (n_max_arg == 0) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200309 goto ret;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000310 }
Denys Vlasenko237aece2010-06-15 10:18:01 +0200311 }
312 if (p == buf) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200313 goto ret;
Glenn L McGrath61796942003-10-10 12:10:18 +0000314 }
Glenn L McGrath61796942003-10-10 12:10:18 +0000315 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200316 ret:
317 *p = '\0';
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200318 /* store_param(NULL) - caller will do it */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200319 dbg_msg("return:'%s'", s);
320 return s;
Glenn L McGrath61796942003-10-10 12:10:18 +0000321}
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000322#endif /* FEATURE_XARGS_SUPPORT_ZERO_TERM */
Glenn L McGrath61796942003-10-10 12:10:18 +0000323
Denys Vlasenkoaaa24e02010-06-13 12:43:54 +0200324#if ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION
325/* Prompt the user for a response, and
326 if the user responds affirmatively, return true;
327 otherwise, return false. Uses "/dev/tty", not stdin. */
328static int xargs_ask_confirmation(void)
329{
330 FILE *tty_stream;
331 int c, savec;
332
333 tty_stream = xfopen_for_read(CURRENT_TTY);
334 fputs(" ?...", stderr);
335 fflush_all();
336 c = savec = getc(tty_stream);
337 while (c != EOF && c != '\n')
338 c = getc(tty_stream);
339 fclose(tty_stream);
340 return (savec == 'y' || savec == 'Y');
341}
342#else
343# define xargs_ask_confirmation() 1
344#endif
345
Denys Vlasenko4f731ce2010-06-15 15:40:16 +0200346//usage:#define xargs_trivial_usage
347//usage: "[OPTIONS] [PROG ARGS]"
348//usage:#define xargs_full_usage "\n\n"
349//usage: "Run PROG on every item given by stdin\n"
350//usage: "\nOptions:"
351//usage: IF_FEATURE_XARGS_SUPPORT_CONFIRMATION(
352//usage: "\n -p Ask user whether to run each command"
353//usage: )
354//usage: "\n -r Don't run command if input is empty"
355//usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM(
356//usage: "\n -0 Input is separated by NUL characters"
357//usage: )
358//usage: "\n -t Print the command on stderr before execution"
359//usage: "\n -e[STR] STR stops input processing"
360//usage: "\n -n N Pass no more than N args to PROG"
361//usage: "\n -s N Pass command line of no more than N bytes"
362//usage: IF_FEATURE_XARGS_SUPPORT_TERMOPT(
363//usage: "\n -x Exit if size is exceeded"
364//usage: )
365//usage:#define xargs_example_usage
366//usage: "$ ls | xargs gzip\n"
367//usage: "$ find . -name '*.c' -print | xargs rm\n"
368
Denis Vlasenko6248a732006-09-29 08:20:30 +0000369/* Correct regardless of combination of CONFIG_xxx */
370enum {
371 OPTBIT_VERBOSE = 0,
372 OPTBIT_NO_EMPTY,
373 OPTBIT_UPTO_NUMBER,
374 OPTBIT_UPTO_SIZE,
375 OPTBIT_EOF_STRING,
Denis Vlasenko82ad0322008-08-04 21:30:55 +0000376 OPTBIT_EOF_STRING1,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000377 IF_FEATURE_XARGS_SUPPORT_CONFIRMATION(OPTBIT_INTERACTIVE,)
378 IF_FEATURE_XARGS_SUPPORT_TERMOPT( OPTBIT_TERMINATE ,)
379 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( OPTBIT_ZEROTERM ,)
Glenn L McGrath61796942003-10-10 12:10:18 +0000380
Denis Vlasenko82ad0322008-08-04 21:30:55 +0000381 OPT_VERBOSE = 1 << OPTBIT_VERBOSE ,
382 OPT_NO_EMPTY = 1 << OPTBIT_NO_EMPTY ,
383 OPT_UPTO_NUMBER = 1 << OPTBIT_UPTO_NUMBER,
384 OPT_UPTO_SIZE = 1 << OPTBIT_UPTO_SIZE ,
385 OPT_EOF_STRING = 1 << OPTBIT_EOF_STRING , /* GNU: -e[<param>] */
386 OPT_EOF_STRING1 = 1 << OPTBIT_EOF_STRING1, /* SUS: -E<param> */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000387 OPT_INTERACTIVE = IF_FEATURE_XARGS_SUPPORT_CONFIRMATION((1 << OPTBIT_INTERACTIVE)) + 0,
388 OPT_TERMINATE = IF_FEATURE_XARGS_SUPPORT_TERMOPT( (1 << OPTBIT_TERMINATE )) + 0,
389 OPT_ZEROTERM = IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( (1 << OPTBIT_ZEROTERM )) + 0,
Denis Vlasenko6248a732006-09-29 08:20:30 +0000390};
Denis Vlasenko82ad0322008-08-04 21:30:55 +0000391#define OPTION_STR "+trn:s:e::E:" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000392 IF_FEATURE_XARGS_SUPPORT_CONFIRMATION("p") \
393 IF_FEATURE_XARGS_SUPPORT_TERMOPT( "x") \
394 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( "0")
Glenn L McGrath61796942003-10-10 12:10:18 +0000395
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000396int xargs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000397int xargs_main(int argc, char **argv)
Glenn L McGrath61796942003-10-10 12:10:18 +0000398{
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200399 int i;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000400 int child_error = 0;
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200401 char *max_args;
402 char *max_chars;
403 char *buf;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000404 unsigned opt;
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200405 int n_max_chars;
406 int n_max_arg;
Denis Vlasenko6248a732006-09-29 08:20:30 +0000407#if ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200408 char* FAST_FUNC (*read_args)(int, int, char*) = process_stdin;
Denis Vlasenko6248a732006-09-29 08:20:30 +0000409#else
410#define read_args process_stdin
Glenn L McGrath61796942003-10-10 12:10:18 +0000411#endif
412
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200413 INIT_G();
414
415 G.eof_str = NULL;
416 opt = getopt32(argv, OPTION_STR, &max_args, &max_chars, &G.eof_str, &G.eof_str);
Glenn L McGrath61796942003-10-10 12:10:18 +0000417
Denis Vlasenko82ad0322008-08-04 21:30:55 +0000418 /* -E ""? You may wonder why not just omit -E?
419 * This is used for portability:
420 * old xargs was using "_" as default for -E / -e */
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200421 if ((opt & OPT_EOF_STRING1) && G.eof_str[0] == '\0')
422 G.eof_str = NULL;
Denis Vlasenkocc08ad22008-08-03 19:12:25 +0000423
Denis Vlasenko6248a732006-09-29 08:20:30 +0000424 if (opt & OPT_ZEROTERM)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000425 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM(read_args = process0_stdin);
Glenn L McGrath61796942003-10-10 12:10:18 +0000426
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000427 argv += optind;
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000428 argc -= optind;
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200429 if (!argv[0]) {
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000430 /* default behavior is to echo all the filenames */
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200431 *--argv = (char*)"echo";
Denis Vlasenko6248a732006-09-29 08:20:30 +0000432 argc++;
Glenn L McGrath61796942003-10-10 12:10:18 +0000433 }
434
Denys Vlasenko4a966172010-06-19 21:44:01 +0200435 /* -s NUM default. fileutils-4.4.2 uses 128k, but I heasitate
436 * to use such a big value - first need to change code to use
437 * growable buffer instead of fixed one.
438 */
439 n_max_chars = 32 * 1024;
440 /* Make smaller if system does not allow our default value.
441 * The Open Group Base Specifications Issue 6:
Denys Vlasenkod7b52892010-04-09 14:58:40 +0200442 * "The xargs utility shall limit the command line length such that
443 * when the command line is invoked, the combined argument
444 * and environment lists (see the exec family of functions
445 * in the System Interfaces volume of IEEE Std 1003.1-2001)
446 * shall not exceed {ARG_MAX}-2048 bytes".
447 */
Denys Vlasenko4a966172010-06-19 21:44:01 +0200448 {
449 long arg_max = 0;
450#if defined _SC_ARG_MAX
451 arg_max = sysconf(_SC_ARG_MAX) - 2048;
452#elif defined ARG_MAX
453 arg_max = ARG_MAX - 2048;
454#endif
455 if (arg_max > 0 && n_max_chars > arg_max)
456 n_max_chars = arg_max;
457 }
Denis Vlasenko6248a732006-09-29 08:20:30 +0000458 if (opt & OPT_UPTO_SIZE) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200459 n_max_chars = xatou_range(max_chars, 1, INT_MAX);
Denys Vlasenko4a966172010-06-19 21:44:01 +0200460 }
461 /* Account for prepended fixed arguments */
462 {
463 size_t n_chars = 0;
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200464 for (i = 0; argv[i]; i++) {
465 n_chars += strlen(argv[i]) + 1;
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000466 }
467 n_max_chars -= n_chars;
Denys Vlasenko4a966172010-06-19 21:44:01 +0200468 }
469 /* Sanity check */
470 if (n_max_chars <= 0) {
471 bb_error_msg_and_die("can't fit single argument within argument list size limit");
Glenn L McGrath61796942003-10-10 12:10:18 +0000472 }
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200473
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200474 buf = xzalloc(n_max_chars + 1);
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000475
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200476 n_max_arg = n_max_chars;
Denis Vlasenko6248a732006-09-29 08:20:30 +0000477 if (opt & OPT_UPTO_NUMBER) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200478 n_max_arg = xatou_range(max_args, 1, INT_MAX);
Denys Vlasenko4a966172010-06-19 21:44:01 +0200479 /* Not necessary, we use growable args[]: */
480 /* if (n_max_arg > n_max_chars) n_max_arg = n_max_chars */
Glenn L McGrath61796942003-10-10 12:10:18 +0000481 }
482
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200483 /* Allocate pointers for execvp */
484 /* We can statically allocate (argc + n_max_arg + 1) elements
485 * and do not bother with resizing args[], but on 64-bit machines
486 * this results in args[] vector which is ~8 times bigger
487 * than n_max_chars! That is, with n_max_chars == 20k,
488 * args[] will take 160k (!), which will most likely be
489 * almost entirely unused.
490 */
491 /* See store_param() for matching 256-step growth logic */
492 G.args = xmalloc(sizeof(G.args[0]) * ((argc + 0xff) & ~0xff));
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200493
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200494 /* Store the command to be executed, part 1 */
495 for (i = 0; argv[i]; i++)
496 G.args[i] = argv[i];
497
498 while (1) {
499 char *rem;
500
501 G.idx = argc;
502 rem = read_args(n_max_chars, n_max_arg, buf);
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200503 store_param(NULL);
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200504
505 if (!G.args[argc]) {
506 if (*rem != '\0')
507 bb_error_msg_and_die("argument line too long");
508 if (opt & OPT_NO_EMPTY)
509 break;
510 }
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000511 opt |= OPT_NO_EMPTY;
Denys Vlasenkoaaa24e02010-06-13 12:43:54 +0200512
Denis Vlasenko6248a732006-09-29 08:20:30 +0000513 if (opt & (OPT_INTERACTIVE | OPT_VERBOSE)) {
Denys Vlasenkoc28cafb2010-06-14 12:38:36 +0200514 const char *fmt = " %s" + 1;
515 char **args = G.args;
516 for (i = 0; args[i]; i++) {
517 fprintf(stderr, fmt, args[i]);
518 fmt = " %s";
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000519 }
Denis Vlasenko6248a732006-09-29 08:20:30 +0000520 if (!(opt & OPT_INTERACTIVE))
Denys Vlasenko19ced5c2010-06-06 21:53:09 +0200521 bb_putchar_stderr('\n');
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000522 }
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200523
Denis Vlasenko6248a732006-09-29 08:20:30 +0000524 if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) {
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200525 child_error = xargs_exec();
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000526 }
527
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000528 if (child_error > 0 && child_error != 123) {
529 break;
530 }
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200531
532 overlapping_strcpy(buf, rem);
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000533 } /* while */
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200534
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200535 if (ENABLE_FEATURE_CLEAN_UP) {
536 free(G.args);
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200537 free(buf);
Denys Vlasenko7a4021d2010-06-14 00:57:05 +0200538 }
Denys Vlasenkod5fa1a02010-06-13 03:43:43 +0200539
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000540 return child_error;
Glenn L McGrath61796942003-10-10 12:10:18 +0000541}
542
543
544#ifdef TEST
545
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000546const char *applet_name = "debug stuff usage";
Glenn L McGrath61796942003-10-10 12:10:18 +0000547
548void bb_show_usage(void)
549{
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000550 fprintf(stderr, "Usage: %s [-p] [-r] [-t] -[x] [-n max_arg] [-s max_chars]\n",
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000551 applet_name);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000552 exit(EXIT_FAILURE);
Glenn L McGrath61796942003-10-10 12:10:18 +0000553}
554
555int main(int argc, char **argv)
556{
Glenn L McGrath09c295a2003-10-30 22:47:16 +0000557 return xargs_main(argc, argv);
Glenn L McGrath61796942003-10-10 12:10:18 +0000558}
Eric Andersen252183e2003-10-31 08:19:44 +0000559#endif /* TEST */