2000-09-23 01:52:28 +05:30
|
|
|
/*
|
2000-09-23 11:40:14 +05:30
|
|
|
* Mini xargs implementation for busybox
|
2003-10-10 17:40:18 +05:30
|
|
|
* Options are supported: "-prtx -n max_arg -s max_chars -e[ouf_str]"
|
2000-09-23 11:40:14 +05:30
|
|
|
*
|
2003-10-10 17:40:18 +05:30
|
|
|
* (C) 2002,2003 by Vladimir Oleynik <dzo@simtreas.ru>
|
2002-11-11 03:17:17 +05:30
|
|
|
*
|
2003-10-10 17:40:18 +05:30
|
|
|
* Special thanks
|
|
|
|
* - Mark Whitley and Glenn McGrath for stimul to rewrote :)
|
|
|
|
* - Mike Rendell <michael@cs.mun.ca>
|
|
|
|
* and David MacKenzie <djm@gnu.ai.mit.edu>.
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2003-10-31 04:21:33 +05:30
|
|
|
* xargs is described in the Single Unix Specification v3 at
|
|
|
|
* http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html
|
|
|
|
*
|
2000-09-23 01:52:28 +05:30
|
|
|
*/
|
2000-09-23 01:31:23 +05:30
|
|
|
|
2000-09-23 01:52:28 +05:30
|
|
|
#include <stdio.h>
|
2000-11-15 04:13:21 +05:30
|
|
|
#include <stdlib.h>
|
2003-10-04 20:14:27 +05:30
|
|
|
#include <string.h>
|
2002-11-11 03:17:17 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <errno.h>
|
2003-10-10 17:40:18 +05:30
|
|
|
#include <fcntl.h>
|
2002-11-11 03:17:17 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-09-23 01:31:23 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
/* COMPAT: SYSV version defaults size (and has a max value of) to 470.
|
|
|
|
We try to make it as large as possible. */
|
|
|
|
#if !defined(ARG_MAX) && defined(_SC_ARG_MAX)
|
|
|
|
#define ARG_MAX sysconf (_SC_ARG_MAX)
|
|
|
|
#endif
|
|
|
|
#ifndef ARG_MAX
|
|
|
|
#define ARG_MAX 470
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
# ifndef CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
|
|
|
# define CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
|
|
|
# endif
|
|
|
|
# ifndef CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
|
|
|
|
# define CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
|
|
|
|
# endif
|
|
|
|
# ifndef CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
|
|
|
# define CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
|
|
|
# endif
|
|
|
|
# ifndef CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
|
|
|
# define CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2002-11-11 03:17:17 +05:30
|
|
|
/*
|
|
|
|
This function have special algorithm.
|
|
|
|
Don`t use fork and include to main!
|
|
|
|
*/
|
2003-10-31 04:17:16 +05:30
|
|
|
static int xargs_exec(char *const *args)
|
2002-11-11 03:17:17 +05:30
|
|
|
{
|
2003-10-31 04:17:16 +05:30
|
|
|
pid_t p;
|
|
|
|
volatile int exec_errno = 0; /* shared vfork stack */
|
|
|
|
|
|
|
|
if ((p = vfork()) >= 0) {
|
|
|
|
if (p == 0) {
|
|
|
|
/* vfork -- child */
|
|
|
|
execvp(args[0], args);
|
|
|
|
exec_errno = errno; /* set error to shared stack */
|
|
|
|
_exit(1);
|
|
|
|
} else {
|
|
|
|
/* vfork -- parent */
|
|
|
|
int status;
|
|
|
|
|
|
|
|
while (wait(&status) == (pid_t) - 1)
|
|
|
|
if (errno != EINTR)
|
|
|
|
break;
|
|
|
|
if (exec_errno) {
|
|
|
|
errno = exec_errno;
|
|
|
|
bb_perror_msg("%s", args[0]);
|
|
|
|
return exec_errno == ENOENT ? 127 : 126;
|
|
|
|
} else {
|
|
|
|
if (WEXITSTATUS(status) == 255) {
|
2003-10-31 13:49:44 +05:30
|
|
|
bb_error_msg("%s: exited with status 255; aborting", args[0]);
|
2003-10-31 04:17:16 +05:30
|
|
|
return 124;
|
|
|
|
}
|
|
|
|
if (WIFSTOPPED(status)) {
|
2003-10-31 13:49:44 +05:30
|
|
|
bb_error_msg("%s: stopped by signal %d",
|
|
|
|
args[0], WSTOPSIG(status));
|
2003-10-31 04:17:16 +05:30
|
|
|
return 125;
|
|
|
|
}
|
|
|
|
if (WIFSIGNALED(status)) {
|
2003-10-31 13:49:44 +05:30
|
|
|
bb_error_msg("%s: terminated by signal %d",
|
|
|
|
args[0], WTERMSIG(status));
|
2003-10-31 04:17:16 +05:30
|
|
|
return 125;
|
|
|
|
}
|
|
|
|
if (WEXITSTATUS(status) != 0)
|
|
|
|
return 123;
|
|
|
|
return 0;
|
|
|
|
}
|
2003-10-09 16:36:45 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
} else {
|
|
|
|
bb_perror_msg_and_die("vfork");
|
2002-11-11 03:17:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-03 18:45:44 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
typedef struct xlist_s {
|
|
|
|
char *data;
|
|
|
|
size_t lenght;
|
|
|
|
struct xlist_s *link;
|
|
|
|
} xlist_t;
|
|
|
|
|
|
|
|
static int eof_stdin_detected;
|
|
|
|
|
|
|
|
#define ISBLANK(c) ((c) == ' ' || (c) == '\t')
|
|
|
|
#define ISSPACE(c) (ISBLANK (c) || (c) == '\n' || (c) == '\r' \
|
|
|
|
|| (c) == '\f' || (c) == '\v')
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
|
2003-10-31 13:49:44 +05:30
|
|
|
static xlist_t *process_stdin(xlist_t * list_arg,
|
|
|
|
const char *eof_str, size_t mc, char *buf)
|
2000-09-23 01:31:23 +05:30
|
|
|
{
|
2003-10-10 17:40:18 +05:30
|
|
|
#define NORM 0
|
|
|
|
#define QUOTE 1
|
|
|
|
#define BACKSLASH 2
|
|
|
|
#define SPACE 4
|
|
|
|
|
2003-10-31 04:17:16 +05:30
|
|
|
char *s = NULL; /* start word */
|
|
|
|
char *p = NULL; /* pointer to end word */
|
2003-10-31 13:49:44 +05:30
|
|
|
char q = 0; /* quote char */
|
2003-10-31 04:17:16 +05:30
|
|
|
char state = NORM;
|
|
|
|
char eof_str_detected = 0;
|
|
|
|
size_t line_l = 0; /* size loaded args line */
|
2003-10-31 13:49:44 +05:30
|
|
|
int c; /* current char */
|
2003-10-31 04:17:16 +05:30
|
|
|
xlist_t *cur;
|
|
|
|
xlist_t *prev;
|
|
|
|
|
|
|
|
for (prev = cur = list_arg; cur; cur = cur->link) {
|
|
|
|
line_l += cur->lenght; /* previous allocated */
|
|
|
|
if (prev != cur)
|
|
|
|
prev = prev->link;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
while (!eof_stdin_detected) {
|
|
|
|
c = getchar();
|
|
|
|
if (c == EOF) {
|
|
|
|
eof_stdin_detected++;
|
|
|
|
if (s)
|
|
|
|
goto unexpected_eof;
|
|
|
|
break;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
if (eof_str_detected)
|
|
|
|
continue;
|
|
|
|
if (state == BACKSLASH) {
|
|
|
|
state = NORM;
|
|
|
|
goto set;
|
|
|
|
} else if (state == QUOTE) {
|
|
|
|
if (c == q) {
|
|
|
|
q = 0;
|
|
|
|
state = NORM;
|
|
|
|
} else {
|
|
|
|
goto set;
|
|
|
|
}
|
2003-10-31 13:49:44 +05:30
|
|
|
} else { /* if(state == NORM) */
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
if (ISSPACE(c)) {
|
|
|
|
if (s) {
|
2003-10-31 13:49:44 +05:30
|
|
|
unexpected_eof:
|
2003-10-31 04:17:16 +05:30
|
|
|
state = SPACE;
|
|
|
|
c = 0;
|
|
|
|
goto set;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (s == NULL)
|
|
|
|
s = p = buf;
|
|
|
|
if (c == '\\') {
|
|
|
|
state = BACKSLASH;
|
|
|
|
} else if (c == '\'' || c == '"') {
|
|
|
|
q = c;
|
|
|
|
state = QUOTE;
|
|
|
|
} else {
|
2003-10-31 13:49:44 +05:30
|
|
|
set:
|
2003-10-31 04:17:16 +05:30
|
|
|
if ((p - buf) >= mc)
|
|
|
|
bb_error_msg_and_die("argument line too long");
|
|
|
|
*p++ = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (state == SPACE) { /* word's delimiter or EOF detected */
|
2003-10-31 13:49:44 +05:30
|
|
|
if (q) {
|
|
|
|
bb_error_msg_and_die("unmatched %s quote",
|
|
|
|
q == '\'' ? "single" : "double");
|
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
/* word loaded */
|
|
|
|
if (eof_str) {
|
|
|
|
eof_str_detected = strcmp(s, eof_str) == 0;
|
|
|
|
}
|
|
|
|
if (!eof_str_detected) {
|
|
|
|
size_t lenght = (p - buf);
|
|
|
|
|
|
|
|
cur = xmalloc(sizeof(xlist_t) + lenght);
|
|
|
|
cur->data = memcpy(cur + 1, s, lenght);
|
|
|
|
cur->lenght = lenght;
|
|
|
|
cur->link = NULL;
|
|
|
|
if (prev == NULL) {
|
|
|
|
list_arg = cur;
|
|
|
|
} else {
|
|
|
|
prev->link = cur;
|
|
|
|
}
|
|
|
|
prev = cur;
|
|
|
|
line_l += lenght;
|
|
|
|
if (line_l > mc) {
|
|
|
|
/* stop memory usage :-) */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s = NULL;
|
|
|
|
state = NORM;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
return list_arg;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
|
|
|
#else
|
2003-10-31 13:49:44 +05:30
|
|
|
/* The variant does not support single quotes, double quotes or backslash */
|
|
|
|
static xlist_t *process_stdin(xlist_t * list_arg,
|
|
|
|
const char *eof_str, size_t mc, char *buf)
|
2003-10-10 17:40:18 +05:30
|
|
|
{
|
2003-10-04 20:14:27 +05:30
|
|
|
|
2003-10-31 13:49:44 +05:30
|
|
|
int c; /* current char */
|
2003-10-31 04:17:16 +05:30
|
|
|
int eof_str_detected = 0;
|
|
|
|
char *s = NULL; /* start word */
|
|
|
|
char *p = NULL; /* pointer to end word */
|
|
|
|
size_t line_l = 0; /* size loaded args line */
|
|
|
|
xlist_t *cur;
|
|
|
|
xlist_t *prev;
|
|
|
|
|
|
|
|
for (prev = cur = list_arg; cur; cur = cur->link) {
|
|
|
|
line_l += cur->lenght; /* previous allocated */
|
|
|
|
if (prev != cur)
|
|
|
|
prev = prev->link;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
while (!eof_stdin_detected) {
|
|
|
|
c = getchar();
|
|
|
|
if (c == EOF) {
|
|
|
|
eof_stdin_detected++;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
if (eof_str_detected)
|
|
|
|
continue;
|
|
|
|
if (c == EOF || ISSPACE(c)) {
|
|
|
|
if (s == NULL)
|
|
|
|
continue;
|
|
|
|
c = EOF;
|
|
|
|
}
|
|
|
|
if (s == NULL)
|
|
|
|
s = p = buf;
|
|
|
|
if ((p - buf) >= mc)
|
|
|
|
bb_error_msg_and_die("argument line too long");
|
|
|
|
*p++ = c == EOF ? 0 : c;
|
|
|
|
if (c == EOF) { /* word's delimiter or EOF detected */
|
|
|
|
/* word loaded */
|
|
|
|
if (eof_str) {
|
|
|
|
eof_str_detected = strcmp(s, eof_str) == 0;
|
|
|
|
}
|
|
|
|
if (!eof_str_detected) {
|
|
|
|
size_t lenght = (p - buf);
|
|
|
|
|
|
|
|
cur = xmalloc(sizeof(xlist_t) + lenght);
|
|
|
|
cur->data = memcpy(cur + 1, s, lenght);
|
|
|
|
cur->lenght = lenght;
|
|
|
|
cur->link = NULL;
|
|
|
|
if (prev == NULL) {
|
|
|
|
list_arg = cur;
|
|
|
|
} else {
|
|
|
|
prev->link = cur;
|
|
|
|
}
|
|
|
|
prev = cur;
|
|
|
|
line_l += lenght;
|
|
|
|
if (line_l > mc) {
|
|
|
|
/* stop memory usage :-) */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s = NULL;
|
|
|
|
}
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-09 16:36:45 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
return list_arg;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 13:49:44 +05:30
|
|
|
#endif /* CONFIG_FEATURE_XARGS_SUPPORT_QUOTES */
|
2003-10-10 17:40:18 +05:30
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
|
|
|
/* Prompt the user for a response, and
|
|
|
|
if the user responds affirmatively, return true;
|
|
|
|
otherwise, return false. Used "/dev/tty", not stdin. */
|
2003-10-31 04:17:16 +05:30
|
|
|
static int xargs_ask_confirmation(void)
|
2003-10-10 17:40:18 +05:30
|
|
|
{
|
2003-10-31 04:17:16 +05:30
|
|
|
static FILE *tty_stream;
|
|
|
|
int c, savec;
|
|
|
|
|
|
|
|
if (!tty_stream) {
|
|
|
|
tty_stream = fopen("/dev/tty", "r");
|
|
|
|
if (!tty_stream)
|
|
|
|
bb_perror_msg_and_die("/dev/tty");
|
|
|
|
/* pranoidal security by vodz */
|
|
|
|
fcntl(fileno(tty_stream), F_SETFD, FD_CLOEXEC);
|
|
|
|
}
|
|
|
|
fputs(" ?...", stderr);
|
|
|
|
fflush(stderr);
|
|
|
|
c = savec = getc(tty_stream);
|
|
|
|
while (c != EOF && c != '\n')
|
|
|
|
c = getc(tty_stream);
|
|
|
|
if (savec == 'y' || savec == 'Y')
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
# define OPT_INC_P 1
|
2003-10-09 16:36:45 +05:30
|
|
|
#else
|
2003-10-10 17:40:18 +05:30
|
|
|
# define OPT_INC_P 0
|
|
|
|
# define xargs_ask_confirmation() 1
|
2003-10-31 13:49:44 +05:30
|
|
|
#endif /* CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION */
|
2003-10-10 17:40:18 +05:30
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
|
|
|
# define OPT_INC_X 1
|
2003-10-09 16:36:45 +05:30
|
|
|
#else
|
2003-10-10 17:40:18 +05:30
|
|
|
# define OPT_INC_X 0
|
|
|
|
#endif
|
2003-10-04 20:14:27 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
2003-10-31 04:17:16 +05:30
|
|
|
static xlist_t *process0_stdin(xlist_t * list_arg, const char *eof_str,
|
|
|
|
size_t mc, char *buf)
|
2003-10-10 17:40:18 +05:30
|
|
|
{
|
2003-10-31 13:49:44 +05:30
|
|
|
int c; /* current char */
|
2003-10-31 04:17:16 +05:30
|
|
|
char *s = NULL; /* start word */
|
|
|
|
char *p = NULL; /* pointer to end word */
|
|
|
|
size_t line_l = 0; /* size loaded args line */
|
|
|
|
xlist_t *cur;
|
|
|
|
xlist_t *prev;
|
|
|
|
|
|
|
|
for (prev = cur = list_arg; cur; cur = cur->link) {
|
|
|
|
line_l += cur->lenght; /* previous allocated */
|
|
|
|
if (prev != cur)
|
|
|
|
prev = prev->link;
|
2003-10-09 16:36:45 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
while (!eof_stdin_detected) {
|
|
|
|
c = getchar();
|
|
|
|
if (c == EOF) {
|
|
|
|
eof_stdin_detected++;
|
|
|
|
if (s == NULL)
|
|
|
|
break;
|
|
|
|
c = 0;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
if (s == NULL)
|
|
|
|
s = p = buf;
|
|
|
|
if ((p - buf) >= mc)
|
|
|
|
bb_error_msg_and_die("argument line too long");
|
|
|
|
*p++ = c;
|
|
|
|
if (c == 0) { /* word's delimiter or EOF detected */
|
|
|
|
/* word loaded */
|
|
|
|
size_t lenght = (p - buf);
|
|
|
|
|
|
|
|
cur = xmalloc(sizeof(xlist_t) + lenght);
|
|
|
|
cur->data = memcpy(cur + 1, s, lenght);
|
|
|
|
cur->lenght = lenght;
|
|
|
|
cur->link = NULL;
|
|
|
|
if (prev == NULL) {
|
|
|
|
list_arg = cur;
|
|
|
|
} else {
|
|
|
|
prev->link = cur;
|
|
|
|
}
|
|
|
|
prev = cur;
|
|
|
|
line_l += lenght;
|
|
|
|
if (line_l > mc) {
|
|
|
|
/* stop memory usage :-) */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s = NULL;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-04 20:14:27 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
return list_arg;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
# define READ_ARGS(l, e, nmc, mc) (*read_args)(l, e, nmc, mc)
|
2003-10-31 04:17:16 +05:30
|
|
|
# define OPT_INC_0 1 /* future use */
|
2003-10-10 17:40:18 +05:30
|
|
|
#else
|
2003-10-31 04:17:16 +05:30
|
|
|
# define OPT_INC_0 0 /* future use */
|
2003-10-10 17:40:18 +05:30
|
|
|
# define READ_ARGS(l, e, nmc, mc) process_stdin(l, e, nmc, mc)
|
2003-10-31 13:49:44 +05:30
|
|
|
#endif /* CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM */
|
2003-10-10 17:40:18 +05:30
|
|
|
|
|
|
|
|
|
|
|
#define OPT_VERBOSE (1<<0)
|
|
|
|
#define OPT_NO_EMPTY (1<<1)
|
|
|
|
#define OPT_UPTO_NUMBER (1<<2)
|
|
|
|
#define OPT_UPTO_SIZE (1<<3)
|
|
|
|
#define OPT_EOF_STRING (1<<4)
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
|
|
|
#define OPT_INTERACTIVE (1<<5)
|
|
|
|
#else
|
2003-10-31 04:17:16 +05:30
|
|
|
#define OPT_INTERACTIVE (0) /* require for algorithm &| */
|
2003-10-09 16:36:45 +05:30
|
|
|
#endif
|
2003-10-10 17:40:18 +05:30
|
|
|
#define OPT_TERMINATE (1<<(5+OPT_INC_P))
|
|
|
|
#define OPT_ZEROTERM (1<<(5+OPT_INC_P+OPT_INC_X))
|
|
|
|
/* next future
|
|
|
|
#define OPT_NEXT_OTHER (1<<(5+OPT_INC_P+OPT_INC_X+OPT_INC_0))
|
|
|
|
*/
|
2000-09-23 01:52:28 +05:30
|
|
|
|
2003-10-31 04:17:16 +05:30
|
|
|
int xargs_main(int argc, char **argv)
|
2003-10-10 17:40:18 +05:30
|
|
|
{
|
2003-10-31 04:17:16 +05:30
|
|
|
char **args;
|
|
|
|
int i, a, n;
|
|
|
|
xlist_t *list = NULL;
|
|
|
|
xlist_t *cur;
|
|
|
|
int child_error = 0;
|
|
|
|
char *max_args, *max_chars;
|
|
|
|
int n_max_arg;
|
|
|
|
size_t n_chars = 0;
|
|
|
|
long orig_arg_max;
|
|
|
|
const char *eof_str = "_";
|
|
|
|
unsigned long opt;
|
|
|
|
size_t n_max_chars;
|
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
2003-10-31 13:49:44 +05:30
|
|
|
xlist_t *(*read_args) (xlist_t *, const char *, size_t, char *) = process_stdin;
|
2003-10-10 17:40:18 +05:30
|
|
|
#endif
|
2002-11-11 03:17:17 +05:30
|
|
|
|
2003-10-10 17:40:18 +05:30
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
2003-10-31 04:17:16 +05:30
|
|
|
bb_opt_complementaly = "pt";
|
2003-10-10 17:40:18 +05:30
|
|
|
#endif
|
|
|
|
|
2003-10-31 04:17:16 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv, "+trn:s:e::"
|
2003-10-10 17:40:18 +05:30
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
2003-10-31 13:49:44 +05:30
|
|
|
"p"
|
2003-10-10 17:40:18 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
2003-10-31 13:49:44 +05:30
|
|
|
"x"
|
2003-10-10 17:40:18 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
2003-10-31 13:49:44 +05:30
|
|
|
"0"
|
2003-10-10 17:40:18 +05:30
|
|
|
#endif
|
2003-10-31 13:49:44 +05:30
|
|
|
,&max_args, &max_chars, &eof_str);
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
a = argc - optind;
|
|
|
|
argv += optind;
|
|
|
|
if (a == 0) {
|
|
|
|
/* default behavior is to echo all the filenames */
|
|
|
|
*argv = "echo";
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
|
|
|
|
orig_arg_max = ARG_MAX;
|
|
|
|
if (orig_arg_max == -1)
|
|
|
|
orig_arg_max = LONG_MAX;
|
|
|
|
orig_arg_max -= 2048; /* POSIX.2 requires subtracting 2048. */
|
|
|
|
if ((opt & OPT_UPTO_SIZE)) {
|
|
|
|
n_max_chars = bb_xgetularg10_bnd(max_chars, 1, orig_arg_max);
|
|
|
|
for (i = 0; i < a; i++) {
|
|
|
|
n_chars += strlen(*argv) + 1;
|
|
|
|
}
|
|
|
|
if (n_max_chars < n_chars) {
|
2003-10-31 13:49:44 +05:30
|
|
|
bb_error_msg_and_die("can not fit single argument within argument list size limit");
|
2003-10-31 04:17:16 +05:30
|
|
|
}
|
|
|
|
n_max_chars -= n_chars;
|
|
|
|
} else {
|
|
|
|
/* Sanity check for systems with huge ARG_MAX defines (e.g., Suns which
|
|
|
|
have it at 1 meg). Things will work fine with a large ARG_MAX but it
|
|
|
|
will probably hurt the system more than it needs to; an array of this
|
|
|
|
size is allocated. */
|
|
|
|
if (orig_arg_max > 20 * 1024)
|
|
|
|
orig_arg_max = 20 * 1024;
|
|
|
|
n_max_chars = orig_arg_max;
|
2003-10-04 20:14:27 +05:30
|
|
|
}
|
2003-10-31 04:17:16 +05:30
|
|
|
max_chars = xmalloc(n_max_chars);
|
|
|
|
|
|
|
|
if ((opt & OPT_UPTO_NUMBER)) {
|
|
|
|
n_max_arg = bb_xgetularg10_bnd(max_args, 1, INT_MAX);
|
|
|
|
} else {
|
|
|
|
n_max_arg = n_max_chars;
|
2003-10-04 20:14:27 +05:30
|
|
|
}
|
2003-10-10 17:40:18 +05:30
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
2003-10-31 04:17:16 +05:30
|
|
|
if (opt & OPT_ZEROTERM)
|
|
|
|
read_args = process0_stdin;
|
2003-10-09 16:36:45 +05:30
|
|
|
#endif
|
2003-10-10 17:40:18 +05:30
|
|
|
|
2003-10-31 13:49:44 +05:30
|
|
|
while ((list = READ_ARGS(list, eof_str, n_max_chars, max_chars)) != NULL ||
|
|
|
|
(opt & OPT_NO_EMPTY) == 0)
|
|
|
|
{
|
2003-10-31 04:17:16 +05:30
|
|
|
opt |= OPT_NO_EMPTY;
|
|
|
|
n = 0;
|
|
|
|
n_chars = 0;
|
2003-10-10 17:40:18 +05:30
|
|
|
#ifdef CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
2003-10-31 04:17:16 +05:30
|
|
|
for (cur = list; cur;) {
|
|
|
|
n_chars += cur->lenght;
|
|
|
|
n++;
|
|
|
|
cur = cur->link;
|
|
|
|
if (n_chars > n_max_chars || (n == n_max_arg && cur)) {
|
|
|
|
if (opt & OPT_TERMINATE)
|
|
|
|
bb_error_msg_and_die("argument list too long");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-10-09 16:36:45 +05:30
|
|
|
#else
|
2003-10-31 04:17:16 +05:30
|
|
|
for (cur = list; cur; cur = cur->link) {
|
|
|
|
n_chars += cur->lenght;
|
|
|
|
n++;
|
|
|
|
if (n_chars > n_max_chars || n == n_max_arg) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-10-31 13:49:44 +05:30
|
|
|
#endif /* CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT */
|
2003-10-31 04:17:16 +05:30
|
|
|
|
|
|
|
/* allocating pointers for execvp:
|
|
|
|
a*arg, n*arg from stdin, NULL */
|
|
|
|
args = xcalloc(n + a + 1, sizeof(char *));
|
|
|
|
|
|
|
|
/* Store the command to be executed
|
|
|
|
(taken from the command line) */
|
|
|
|
for (i = 0; i < a; i++)
|
|
|
|
args[i] = argv[i];
|
|
|
|
/* (taken from stdin) */
|
|
|
|
for (cur = list; n; cur = cur->link) {
|
|
|
|
args[i++] = cur->data;
|
|
|
|
n--;
|
|
|
|
}
|
2003-10-10 17:40:18 +05:30
|
|
|
|
2003-10-31 04:17:16 +05:30
|
|
|
if ((opt & (OPT_INTERACTIVE | OPT_VERBOSE))) {
|
|
|
|
for (i = 0; args[i]; i++) {
|
|
|
|
if (i)
|
|
|
|
fputc(' ', stderr);
|
|
|
|
fputs(args[i], stderr);
|
|
|
|
}
|
|
|
|
if ((opt & OPT_INTERACTIVE) == 0)
|
|
|
|
fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
if ((opt & OPT_INTERACTIVE) == 0 || xargs_ask_confirmation() != 0) {
|
|
|
|
child_error = xargs_exec(args);
|
2000-09-26 06:30:15 +05:30
|
|
|
}
|
2003-10-04 20:14:27 +05:30
|
|
|
|
2003-10-31 04:17:16 +05:30
|
|
|
/* clean up */
|
|
|
|
for (i = a; args[i]; i++) {
|
|
|
|
cur = list;
|
|
|
|
list = list->link;
|
|
|
|
free(cur);
|
|
|
|
}
|
|
|
|
free(args);
|
|
|
|
if (child_error > 0 && child_error != 123) {
|
|
|
|
break;
|
|
|
|
}
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
2003-10-31 04:17:16 +05:30
|
|
|
free(max_chars);
|
2000-09-23 11:40:14 +05:30
|
|
|
#endif
|
2003-10-31 04:17:16 +05:30
|
|
|
return child_error;
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
|
|
|
|
const char *bb_applet_name = "debug stuff usage";
|
|
|
|
|
|
|
|
void bb_show_usage(void)
|
|
|
|
{
|
2003-10-31 13:49:44 +05:30
|
|
|
fprintf(stderr, "Usage: %s [-p] [-r] [-t] -[x] [-n max_arg] [-s max_chars]\n",
|
|
|
|
bb_applet_name);
|
2003-10-31 04:17:16 +05:30
|
|
|
exit(1);
|
2003-10-10 17:40:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2003-10-31 04:17:16 +05:30
|
|
|
return xargs_main(argc, argv);
|
2000-09-23 01:31:23 +05:30
|
|
|
}
|
2003-10-31 13:49:44 +05:30
|
|
|
#endif /* TEST */
|