source: MondoRescue/branches/2.2.9/mindi-busybox/findutils/xargs.c@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 14.3 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Mini xargs implementation for busybox
4 *
5 * (C) 2002,2003 by Vladimir Oleynik <dzo@simtreas.ru>
6 *
7 * Special thanks
8 * - Mark Whitley and Glenn McGrath for stimulus to rewrite :)
9 * - Mike Rendell <michael@cs.mun.ca>
10 * and David MacKenzie <djm@gnu.ai.mit.edu>.
11 *
[2725]12 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]13 *
14 * xargs is described in the Single Unix Specification v3 at
15 * http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html
16 */
17
[2725]18//applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, _BB_DIR_USR_BIN, _BB_SUID_DROP, xargs))
19
20//kbuild:lib-$(CONFIG_XARGS) += xargs.o
21
22//config:config XARGS
23//config: bool "xargs"
24//config: default y
25//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"
31//config: default y
32//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"
39//config: default y
40//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"
46//config: default y
47//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"
54//config: default y
55//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
[1765]61#include "libbb.h"
[821]62
[1765]63/* This is a NOEXEC applet. Be very careful! */
64
65
[2725]66//#define dbg_msg(...) bb_error_msg(__VA_ARGS__)
67#define dbg_msg(...) ((void)0)
[821]68
69
70#ifdef TEST
[1765]71# ifndef ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION
72# define ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION 1
[821]73# endif
[1765]74# ifndef ENABLE_FEATURE_XARGS_SUPPORT_QUOTES
75# define ENABLE_FEATURE_XARGS_SUPPORT_QUOTES 1
[821]76# endif
[1765]77# ifndef ENABLE_FEATURE_XARGS_SUPPORT_TERMOPT
78# define ENABLE_FEATURE_XARGS_SUPPORT_TERMOPT 1
[821]79# endif
[1765]80# ifndef ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
81# define ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM 1
[821]82# endif
83#endif
84
[2725]85
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
[821]95/*
[2725]96 * This function has special algorithm.
97 * Don't use fork and include to main!
98 */
99static int xargs_exec(void)
[821]100{
[1765]101 int status;
[821]102
[2725]103 status = spawn_and_wait(G.args);
[1765]104 if (status < 0) {
[2725]105 bb_simple_perror_msg(G.args[0]);
[1765]106 return errno == ENOENT ? 127 : 126;
[821]107 }
[1765]108 if (status == 255) {
[2725]109 bb_error_msg("%s: exited with status 255; aborting", G.args[0]);
[1765]110 return 124;
111 }
[2725]112 if (status >= 0x180) {
[1765]113 bb_error_msg("%s: terminated by signal %d",
[2725]114 G.args[0], status - 0x180);
[1765]115 return 125;
116 }
117 if (status)
118 return 123;
119 return 0;
[821]120}
121
[2725]122/* 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); })
[821]126
[2725]127static 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}
[821]136
[2725]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.
145 * On entry, buf[] may contain some "seed chars" which are to become
146 * the beginning of the first parameter.
147 */
[821]148
[1765]149#if ENABLE_FEATURE_XARGS_SUPPORT_QUOTES
[2725]150static char* FAST_FUNC process_stdin(int n_max_chars, int n_max_arg, char *buf)
[821]151{
152#define NORM 0
153#define QUOTE 1
154#define BACKSLASH 2
155#define SPACE 4
[2725]156 char q = '\0'; /* quote char */
[821]157 char state = NORM;
[2725]158 char *s = buf; /* start of the word */
159 char *p = s + strlen(buf); /* end of the word */
[821]160
[2725]161 buf += n_max_chars; /* past buffer's end */
162
163 /* "goto ret" is used instead of "break" to make control flow
164 * more obvious: */
165
[1765]166 while (1) {
[2725]167 int c = getchar();
[821]168 if (c == EOF) {
[2725]169 if (p != s)
170 goto close_word;
171 goto ret;
[821]172 }
173 if (state == BACKSLASH) {
174 state = NORM;
175 goto set;
[2725]176 }
177 if (state == QUOTE) {
[1765]178 if (c != q)
[821]179 goto set;
[1765]180 q = '\0';
181 state = NORM;
182 } else { /* if (state == NORM) */
[821]183 if (ISSPACE(c)) {
[2725]184 if (p != s) {
185 close_word:
[821]186 state = SPACE;
[1765]187 c = '\0';
[821]188 goto set;
189 }
190 } else {
191 if (c == '\\') {
192 state = BACKSLASH;
193 } else if (c == '\'' || c == '"') {
194 q = c;
195 state = QUOTE;
196 } else {
[1765]197 set:
[821]198 *p++ = c;
199 }
200 }
201 }
202 if (state == SPACE) { /* word's delimiter or EOF detected */
203 if (q) {
204 bb_error_msg_and_die("unmatched %s quote",
205 q == '\'' ? "single" : "double");
206 }
[2725]207 /* A full word is loaded */
208 if (G.eof_str) {
209 if (strcmp(s, G.eof_str) == 0) {
210 while (getchar() != EOF)
211 continue;
212 p = s;
213 goto ret;
[821]214 }
215 }
[2725]216 store_param(s);
217 dbg_msg("args[]:'%s'", s);
218 s = p;
219 n_max_arg--;
220 if (n_max_arg == 0) {
221 goto ret;
222 }
[821]223 state = NORM;
224 }
[2725]225 if (p == buf) {
226 goto ret;
227 }
[821]228 }
[2725]229 ret:
230 *p = '\0';
231 /* store_param(NULL) - caller will do it */
232 dbg_msg("return:'%s'", s);
233 return s;
[821]234}
235#else
236/* The variant does not support single quotes, double quotes or backslash */
[2725]237static char* FAST_FUNC process_stdin(int n_max_chars, int n_max_arg, char *buf)
[821]238{
[2725]239 char *s = buf; /* start of the word */
240 char *p = s + strlen(buf); /* end of the word */
[821]241
[2725]242 buf += n_max_chars; /* past buffer's end */
[821]243
[1765]244 while (1) {
[2725]245 int c = getchar();
[821]246 if (c == EOF) {
[2725]247 if (p == s)
248 goto ret;
[821]249 }
250 if (c == EOF || ISSPACE(c)) {
[2725]251 if (p == s)
[821]252 continue;
253 c = EOF;
254 }
[1765]255 *p++ = (c == EOF ? '\0' : c);
[821]256 if (c == EOF) { /* word's delimiter or EOF detected */
[2725]257 /* A full word is loaded */
258 if (G.eof_str) {
259 if (strcmp(s, G.eof_str) == 0) {
260 while (getchar() != EOF)
261 continue;
262 p = s;
263 goto ret;
[821]264 }
265 }
[2725]266 store_param(s);
267 dbg_msg("args[]:'%s'", s);
268 s = p;
269 n_max_arg--;
270 if (n_max_arg == 0) {
271 goto ret;
272 }
[821]273 }
[2725]274 if (p == buf) {
275 goto ret;
276 }
[821]277 }
[2725]278 ret:
279 *p = '\0';
280 /* store_param(NULL) - caller will do it */
281 dbg_msg("return:'%s'", s);
282 return s;
[821]283}
[1765]284#endif /* FEATURE_XARGS_SUPPORT_QUOTES */
[821]285
[2725]286#if ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
287static char* FAST_FUNC process0_stdin(int n_max_chars, int n_max_arg, char *buf)
288{
289 char *s = buf; /* start of the word */
290 char *p = s + strlen(buf); /* end of the word */
[821]291
[2725]292 buf += n_max_chars; /* past buffer's end */
293
294 while (1) {
295 int c = getchar();
296 if (c == EOF) {
297 if (p == s)
298 goto ret;
299 c = '\0';
300 }
301 *p++ = c;
302 if (c == '\0') { /* word's delimiter or EOF detected */
303 /* A full word is loaded */
304 store_param(s);
305 dbg_msg("args[]:'%s'", s);
306 s = p;
307 n_max_arg--;
308 if (n_max_arg == 0) {
309 goto ret;
310 }
311 }
312 if (p == buf) {
313 goto ret;
314 }
315 }
316 ret:
317 *p = '\0';
318 /* store_param(NULL) - caller will do it */
319 dbg_msg("return:'%s'", s);
320 return s;
321}
322#endif /* FEATURE_XARGS_SUPPORT_ZERO_TERM */
323
[1765]324#if ENABLE_FEATURE_XARGS_SUPPORT_CONFIRMATION
[821]325/* Prompt the user for a response, and
326 if the user responds affirmatively, return true;
[1765]327 otherwise, return false. Uses "/dev/tty", not stdin. */
[821]328static int xargs_ask_confirmation(void)
329{
[1765]330 FILE *tty_stream;
[821]331 int c, savec;
332
[2725]333 tty_stream = xfopen_for_read(CURRENT_TTY);
[821]334 fputs(" ?...", stderr);
[2725]335 fflush_all();
[821]336 c = savec = getc(tty_stream);
337 while (c != EOF && c != '\n')
338 c = getc(tty_stream);
[1765]339 fclose(tty_stream);
340 return (savec == 'y' || savec == 'Y');
[821]341}
342#else
343# define xargs_ask_confirmation() 1
[2725]344#endif
[821]345
[2725]346//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"
[821]368
[1765]369/* 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,
[2725]376 OPTBIT_EOF_STRING1,
377 IF_FEATURE_XARGS_SUPPORT_CONFIRMATION(OPTBIT_INTERACTIVE,)
378 IF_FEATURE_XARGS_SUPPORT_TERMOPT( OPTBIT_TERMINATE ,)
379 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( OPTBIT_ZEROTERM ,)
[821]380
[2725]381 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> */
387 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,
[1765]390};
[2725]391#define OPTION_STR "+trn:s:e::E:" \
392 IF_FEATURE_XARGS_SUPPORT_CONFIRMATION("p") \
393 IF_FEATURE_XARGS_SUPPORT_TERMOPT( "x") \
394 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( "0")
[821]395
[2725]396int xargs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
[821]397int xargs_main(int argc, char **argv)
398{
[2725]399 int i;
[821]400 int child_error = 0;
[2725]401 char *max_args;
402 char *max_chars;
403 char *buf;
404 unsigned opt;
405 int n_max_chars;
[821]406 int n_max_arg;
[1765]407#if ENABLE_FEATURE_XARGS_SUPPORT_ZERO_TERM
[2725]408 char* FAST_FUNC (*read_args)(int, int, char*) = process_stdin;
[1765]409#else
410#define read_args process_stdin
[821]411#endif
412
[2725]413 INIT_G();
[821]414
[2725]415 G.eof_str = NULL;
416 opt = getopt32(argv, OPTION_STR, &max_args, &max_chars, &G.eof_str, &G.eof_str);
417
418 /* -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 */
421 if ((opt & OPT_EOF_STRING1) && G.eof_str[0] == '\0')
422 G.eof_str = NULL;
423
[1765]424 if (opt & OPT_ZEROTERM)
[2725]425 IF_FEATURE_XARGS_SUPPORT_ZERO_TERM(read_args = process0_stdin);
[821]426
427 argv += optind;
[1765]428 argc -= optind;
[2725]429 if (!argv[0]) {
[821]430 /* default behavior is to echo all the filenames */
[2725]431 *--argv = (char*)"echo";
[1765]432 argc++;
[821]433 }
434
[2725]435 /* -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:
442 * "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 */
448 {
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 }
[1765]458 if (opt & OPT_UPTO_SIZE) {
[2725]459 n_max_chars = xatou_range(max_chars, 1, INT_MAX);
460 }
461 /* Account for prepended fixed arguments */
462 {
463 size_t n_chars = 0;
464 for (i = 0; argv[i]; i++) {
465 n_chars += strlen(argv[i]) + 1;
[821]466 }
467 n_max_chars -= n_chars;
468 }
[2725]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");
472 }
[821]473
[2725]474 buf = xzalloc(n_max_chars + 1);
475
476 n_max_arg = n_max_chars;
[1765]477 if (opt & OPT_UPTO_NUMBER) {
[2725]478 n_max_arg = xatou_range(max_args, 1, INT_MAX);
479 /* Not necessary, we use growable args[]: */
480 /* if (n_max_arg > n_max_chars) n_max_arg = n_max_chars */
[821]481 }
482
[2725]483 /* 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));
[821]493
[2725]494 /* Store the command to be executed, part 1 */
495 for (i = 0; argv[i]; i++)
496 G.args[i] = argv[i];
[821]497
[2725]498 while (1) {
499 char *rem;
500
501 G.idx = argc;
502 rem = read_args(n_max_chars, n_max_arg, buf);
503 store_param(NULL);
504
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;
[821]510 }
[2725]511 opt |= OPT_NO_EMPTY;
[821]512
[1765]513 if (opt & (OPT_INTERACTIVE | OPT_VERBOSE)) {
[2725]514 const char *fmt = " %s" + 1;
515 char **args = G.args;
[821]516 for (i = 0; args[i]; i++) {
[2725]517 fprintf(stderr, fmt, args[i]);
518 fmt = " %s";
[821]519 }
[1765]520 if (!(opt & OPT_INTERACTIVE))
[2725]521 bb_putchar_stderr('\n');
[821]522 }
[2725]523
[1765]524 if (!(opt & OPT_INTERACTIVE) || xargs_ask_confirmation()) {
[2725]525 child_error = xargs_exec();
[821]526 }
527
528 if (child_error > 0 && child_error != 123) {
529 break;
530 }
[2725]531
532 overlapping_strcpy(buf, rem);
533 } /* while */
534
535 if (ENABLE_FEATURE_CLEAN_UP) {
536 free(G.args);
537 free(buf);
[821]538 }
[2725]539
[821]540 return child_error;
541}
542
543
544#ifdef TEST
545
[1765]546const char *applet_name = "debug stuff usage";
[821]547
548void bb_show_usage(void)
549{
550 fprintf(stderr, "Usage: %s [-p] [-r] [-t] -[x] [-n max_arg] [-s max_chars]\n",
[1765]551 applet_name);
[2725]552 exit(EXIT_FAILURE);
[821]553}
554
555int main(int argc, char **argv)
556{
557 return xargs_main(argc, argv);
558}
559#endif /* TEST */
Note: See TracBrowser for help on using the repository browser.