]>
git.saurik.com Git - apple/shell_cmds.git/blob - xargs/xargs.c
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * $xMach: xargs.c,v 1.6 2002/02/23 05:27:47 tim Exp $
41 static const char copyright
[] =
42 "@(#) Copyright (c) 1990, 1993\n\
43 The Regents of the University of California. All rights reserved.\n";
47 static char sccsid
[] = "@(#)xargs.c 8.1 (Berkeley) 6/6/93";
50 #include <sys/cdefs.h>
51 __FBSDID("$FreeBSD: src/usr.bin/xargs/xargs.c,v 1.57 2005/02/27 02:01:31 gad Exp $");
53 #include <sys/param.h>
68 #include "pathnames.h"
71 #include <get_compat.h>
73 #define COMPAT_MODE(a,b) (1)
74 #endif /* __APPLE__ */
76 static void parse_input(int, char *[]);
77 static void prerun(int, char *[]);
78 static int prompt(void);
79 static void run(char **);
80 static void usage(void);
81 void strnsubst(char **, const char *, const char *, size_t);
82 static void waitchildren(const char *, int);
84 static int last_was_newline
= 1;
85 static int last_was_blank
= 0;
87 static char echo
[] = _PATH_ECHO
;
88 static char **av
, **bxp
, **ep
, **endxp
, **xp
;
89 static char *argp
, *bbp
, *ebp
, *inpline
, *p
, *replstr
;
90 static const char *eofstr
;
91 static int count
, insingle
, indouble
, oflag
, pflag
, tflag
, Rflag
, rval
, zflag
;
92 static int cnt
, Iflag
, jfound
, Lflag
, wasquoted
, xflag
;
93 static int curprocs
, maxprocs
;
95 static volatile int childerr
;
97 extern char **environ
;
100 main(int argc
, char *argv
[])
103 int ch
, Jflag
, nargs
, nflag
, nline
;
107 inpline
= replstr
= NULL
;
112 (void)setlocale(LC_ALL
, "");
115 * POSIX.2 limits the exec line length to ARG_MAX - 2K. Running that
116 * caused some E2BIG errors, so it was changed to ARG_MAX - 4K. Given
117 * that the smallest argument is 2 bytes in length, this means that
118 * the number of arguments is limited to:
120 * (ARG_MAX - 4K - LENGTH(utility + arguments)) / 2.
122 * We arbitrarily limit the number of arguments to 5000. This is
123 * allowed by POSIX.2 as long as the resulting minimum exec line is
124 * at least LINE_MAX. Realloc'ing as necessary is possible, but
125 * probably not worthwhile.
128 if ((arg_max
= sysconf(_SC_ARG_MAX
)) == -1)
129 errx(1, "sysconf(_SC_ARG_MAX) failed");
130 nline
= arg_max
- 4 * 1024;
131 while (*ep
!= NULL
) {
132 /* 1 byte for each '\0' */
133 nline
-= strlen(*ep
++) + 1 + sizeof(*ep
);
136 while ((ch
= getopt(argc
, argv
, "0E:I:J:L:n:oP:pR:s:tx")) != -1)
153 Lflag
= atoi(optarg
);
154 if (COMPAT_MODE("bin/xargs", "Unix2003")) {
155 nflag
= 0; /* Override */
161 if ((nargs
= atoi(optarg
)) <= 0)
162 errx(1, "illegal argument count");
163 if (COMPAT_MODE("bin/xargs", "Unix2003")) {
164 Lflag
= 0; /* Override */
171 if ((maxprocs
= atoi(optarg
)) <= 0)
172 errx(1, "max. processes must be >0");
178 Rflag
= strtol(optarg
, &endptr
, 10);
180 errx(1, "replacements must be a number");
183 nline
= atoi(optarg
);
209 if (replstr
!= NULL
&& *replstr
== '\0')
210 errx(1, "replstr may not be empty");
213 * Allocate pointers for the utility name, the utility arguments,
214 * the maximum arguments to be read from stdin and the trailing
217 linelen
= 1 + argc
+ nargs
+ 1;
218 if ((av
= bxp
= malloc(linelen
* sizeof(char **))) == NULL
)
219 errx(1, "malloc failed");
222 * Use the user's name for the utility as argv[0], just like the
223 * shell. Echo is the default. Set up pointers for the user's
227 cnt
= strlen(*bxp
++ = echo
);
230 if (Jflag
&& strcmp(*argv
, replstr
) == 0) {
234 for (avj
= argv
; *avj
; avj
++)
235 cnt
+= strlen(*avj
) + 1;
238 cnt
+= strlen(*bxp
++ = *argv
) + 1;
239 } while (*++argv
!= NULL
);
243 * Set up begin/end/traversing pointers into the array. The -n
244 * count doesn't include the trailing NULL pointer, so the malloc
245 * added in an extra slot.
247 endxp
= (xp
= bxp
) + nargs
;
250 * Allocate buffer space for the arguments read from stdin and the
251 * trailing NULL. Buffer space is defined as the default or specified
252 * space, minus the length of the utility name and arguments. Set up
253 * begin/end/traversing pointers into the array. The -s count does
254 * include the trailing NULL, so the malloc didn't add in an extra
259 errx(1, "insufficient space for command");
261 if ((bbp
= malloc((size_t)(nline
+ 1))) == NULL
)
262 errx(1, "malloc failed");
263 ebp
= (argp
= p
= bbp
) + nline
- 1;
265 parse_input(argc
, argv
);
269 parse_input(int argc
, char *argv
[])
273 int last_was_backslashed
= 0;
277 switch(ch
= getchar()) {
279 /* No arguments since last exec. */
281 waitchildren(*argv
, 1);
288 /* Quotes escape tabs and spaces. */
289 if (insingle
|| indouble
|| zflag
)
295 * Increment 'count', so that nulls will be treated
296 * as end-of-line, as well as end-of-argument. This
297 * is needed so -0 works properly with -I and -L.
306 if (COMPAT_MODE("bin/xargs", "Unix2003")) {
307 if (last_was_newline
) {
308 /* don't count empty line */
311 if (!last_was_blank
) {
312 /* only count if NOT continuation line */
318 last_was_newline
= 1;
320 /* Quotes do not escape newlines. */
321 arg1
: if (insingle
|| indouble
)
322 errx(1, "unterminated quote");
324 foundeof
= *eofstr
!= '\0' &&
325 strcmp(argp
, eofstr
) == 0;
327 /* Do not make empty args unless they are quoted */
328 if ((argp
!= p
|| wasquoted
) && !foundeof
) {
338 * If this string is not zero
339 * length, append a space for
340 * separation before the next
343 if ((curlen
= strlen(inpline
)))
344 strcat(inpline
, " ");
348 * Allocate enough to hold what we will
349 * be holding in a second, and to append
350 * a space next time through, if we have
353 inpline
= realloc(inpline
, curlen
+ 2 +
356 errx(1, "realloc failed");
358 strcpy(inpline
, argp
);
360 strcat(inpline
, argp
);
365 * If max'd out on args or buffer, or reached EOF,
366 * run the command. If xflag and max'd out on buffer
367 * but not on args, object. Having reached the limit
368 * of input lines, as specified by -L is the same as
369 * maxing out on arguments.
371 if (xp
== endxp
|| p
> ebp
|| ch
== EOF
||
372 (Lflag
<= count
&& xflag
) || foundeof
) {
373 if (xflag
&& xp
!= endxp
&& p
> ebp
)
374 errx(1, "insufficient space for arguments");
376 for (avj
= argv
; *avj
; avj
++)
380 if (ch
== EOF
|| foundeof
) {
381 waitchildren(*argv
, 1);
392 if (indouble
|| zflag
)
394 insingle
= !insingle
;
398 if (insingle
|| zflag
)
400 indouble
= !indouble
;
404 last_was_backslashed
= 1;
407 /* Backslash escapes anything, is escaped by quotes. */
408 if (!insingle
&& !indouble
&& (ch
= getchar()) == EOF
)
409 errx(1, "backslash at EOF");
412 addch
: if (p
< ebp
) {
417 /* If only one argument, not enough buffer space. */
419 errx(1, "insufficient space for argument");
420 /* Didn't hit argument limit, so if xflag object. */
422 errx(1, "insufficient space for arguments");
425 for (avj
= argv
; *avj
; avj
++)
431 memcpy(bbp
, argp
, (size_t)cnt
);
432 p
= (argp
= bbp
) + cnt
;
438 if (ch
!= '\n' || last_was_backslashed
)
439 last_was_newline
= 0;
443 * Do things necessary before run()'ing, such as -I substitution,
444 * and then call run().
447 prerun(int argc
, char *argv
[])
449 char **tmp
, **tmp2
, **avj
;
454 if (argc
== 0 || repls
== 0) {
463 * Allocate memory to hold the argument list, and
464 * a NULL at the tail.
466 tmp
= malloc((argc
+ 1) * sizeof(char**));
468 errx(1, "malloc failed");
472 * Save the first argument and iterate over it, we
473 * cannot do strnsubst() to it.
475 if ((*tmp
++ = strdup(*avj
++)) == NULL
)
476 errx(1, "strdup failed");
479 * For each argument to utility, if we have not used up
480 * the number of replacements we are allowed to do, and
481 * if the argument contains at least one occurrence of
482 * replstr, call strnsubst(), else just save the string.
483 * Iterations over elements of avj and tmp are done
488 if (repls
&& strstr(*tmp
, replstr
) != NULL
) {
489 strnsubst(tmp
++, replstr
, inpline
, (size_t)255);
493 if ((*tmp
= strdup(*tmp
)) == NULL
)
494 errx(1, "strdup failed");
506 * Walk from the tail to the head, free along the way.
508 for (; tmp2
!= tmp
; tmp
--)
511 * Now free the list itself.
516 * Free the input line buffer, if we have one.
518 if (inpline
!= NULL
) {
532 * If the user wants to be notified of each command before it is
533 * executed, notify them. If they want the notification to be
534 * followed by a prompt, then prompt them.
536 if (tflag
|| pflag
) {
537 (void)fprintf(stderr
, "%s", *argv
);
538 for (avec
= argv
+ 1; *avec
!= NULL
; ++avec
)
539 (void)fprintf(stderr
, " %s", *avec
);
541 * If the user has asked to be prompted, do so.
545 * If they asked not to exec, return without execution
546 * but if they asked to, go to the execution. If we
547 * could not open their tty, break the switch and drop
548 * back to -t behaviour.
558 (void)fprintf(stderr
, "\n");
559 (void)fflush(stderr
);
563 switch(pid
= vfork()) {
568 if ((fd
= open(_PATH_TTY
, O_RDONLY
)) == -1)
569 err(1, "can't open /dev/tty");
571 fd
= open(_PATH_DEVNULL
, O_RDONLY
);
573 if (fd
> STDIN_FILENO
) {
574 if (dup2(fd
, STDIN_FILENO
) != 0)
575 err(1, "can't dup2 to stdin");
578 execvp(argv
[0], argv
);
583 waitchildren(*argv
, 0);
587 waitchildren(const char *name
, int waitall
)
592 while ((pid
= waitpid(-1, &status
, !waitall
&& curprocs
< maxprocs
?
595 /* If we couldn't invoke the utility, exit. */
598 err(errno
== ENOENT
? 127 : 126, "%s", name
);
601 * If utility signaled or exited with a value of 255,
604 if (WIFSIGNALED(status
) || WEXITSTATUS(status
) == 255)
606 if (WEXITSTATUS(status
))
609 if (pid
== -1 && errno
!= ECHILD
)
614 * Prompt the user about running a command.
625 if ((ttyfp
= fopen(_PATH_TTY
, "r")) == NULL
)
626 return (2); /* Indicate that the TTY failed to open. */
627 (void)fprintf(stderr
, "?...");
628 (void)fflush(stderr
);
629 if ((response
= fgetln(ttyfp
, &rsize
)) == NULL
||
630 regcomp(&cre
, nl_langinfo(YESEXPR
), REG_BASIC
) != 0) {
634 match
= regexec(&cre
, response
, 0, NULL
, 0);
644 "usage: xargs [-0opt] [-E eofstr] [-I replstr [-R replacements]] [-J replstr]\n"
645 " [-L number] [-n number [-x]] [-P maxprocs] [-s size]\n"
646 " [utility [argument ...]]\n");