2000-09-23 06:10:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-22 20:22:28 +00:00
|
|
|
/*
|
2000-09-23 06:10:14 +00:00
|
|
|
* Mini xargs implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Lineo, inc.
|
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
2000-09-22 20:22:28 +00:00
|
|
|
*
|
2000-09-23 06:10:14 +00:00
|
|
|
* 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-22 20:22:28 +00:00
|
|
|
*
|
2000-09-23 06:10:14 +00:00
|
|
|
* 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-22 20:22:28 +00:00
|
|
|
*
|
2000-09-23 06:10:14 +00:00
|
|
|
* 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-22 20:22:28 +00:00
|
|
|
*
|
|
|
|
*/
|
2000-09-22 20:01:23 +00:00
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
2000-09-22 20:22:28 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2000-09-23 06:10:14 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2000-09-22 20:22:28 +00:00
|
|
|
#include <getopt.h>
|
2000-09-24 02:40:56 +00:00
|
|
|
#include <ctype.h>
|
2000-09-25 20:23:21 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2000-09-25 18:41:18 +00:00
|
|
|
|
2000-09-22 20:01:23 +00:00
|
|
|
|
2000-09-23 06:10:14 +00:00
|
|
|
int xargs_main(int argc, char **argv)
|
2000-09-22 20:01:23 +00:00
|
|
|
{
|
2000-09-23 06:10:14 +00:00
|
|
|
char *in_from_stdin = NULL;
|
2000-09-25 20:23:21 +00:00
|
|
|
char *args = NULL;
|
2000-09-23 06:10:14 +00:00
|
|
|
char *cmd_to_be_executed = NULL;
|
|
|
|
char traceflag = 0;
|
2000-09-25 22:53:05 +00:00
|
|
|
int len_args=2, len_cmd_to_be_executed, opt;
|
2000-09-25 20:23:21 +00:00
|
|
|
pid_t pid;
|
|
|
|
int wpid, status;
|
2000-09-22 20:22:28 +00:00
|
|
|
|
2000-09-24 01:12:54 +00:00
|
|
|
/* Note that we do not use getopt here, since
|
|
|
|
* we only want to interpret initial options,
|
|
|
|
* not options passed to commands */
|
|
|
|
while (--argc && **(++argv) == '-') {
|
|
|
|
while (*++(*argv)) {
|
|
|
|
switch (**argv) {
|
|
|
|
case 't':
|
|
|
|
traceflag=1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fatalError(xargs_usage);
|
2000-09-25 20:23:21 +00:00
|
|
|
}
|
2000-09-23 06:10:14 +00:00
|
|
|
}
|
|
|
|
}
|
2000-09-22 20:22:28 +00:00
|
|
|
|
2000-09-25 20:23:21 +00:00
|
|
|
/* Store the command to be executed (taken from the command line) */
|
2000-09-25 18:41:18 +00:00
|
|
|
if (argc == 0) {
|
2000-09-25 20:23:21 +00:00
|
|
|
len_cmd_to_be_executed=6;
|
|
|
|
cmd_to_be_executed = xmalloc(len_cmd_to_be_executed);
|
|
|
|
strcat(cmd_to_be_executed, "echo");
|
2000-09-23 06:10:14 +00:00
|
|
|
} else {
|
2000-09-24 01:12:54 +00:00
|
|
|
opt=strlen(*argv);
|
2000-09-25 20:23:21 +00:00
|
|
|
len_cmd_to_be_executed = (opt > 10)? opt : 10;
|
|
|
|
cmd_to_be_executed = xcalloc(len_cmd_to_be_executed, sizeof(char));
|
|
|
|
strcat(cmd_to_be_executed, *argv);
|
2000-09-23 06:10:14 +00:00
|
|
|
}
|
2000-09-22 20:22:28 +00:00
|
|
|
|
2000-09-25 22:53:05 +00:00
|
|
|
args=xrealloc(args, len_args);
|
|
|
|
strcpy(args, " ");
|
2000-09-22 20:22:28 +00:00
|
|
|
|
2000-09-25 22:53:05 +00:00
|
|
|
/* Now, read in one line at a time from stdin, and store this
|
|
|
|
* line to be used later as an argument to the command */
|
2000-09-25 20:23:21 +00:00
|
|
|
in_from_stdin = get_line_from_file(stdin);
|
2000-09-23 06:10:14 +00:00
|
|
|
for (;in_from_stdin!=NULL;) {
|
2000-09-23 19:53:31 +00:00
|
|
|
char *tmp;
|
2000-09-24 02:40:56 +00:00
|
|
|
opt = strlen(in_from_stdin);
|
2000-09-25 20:23:21 +00:00
|
|
|
len_args += opt + 3;
|
|
|
|
args=xrealloc(args, len_args);
|
2000-09-25 18:41:18 +00:00
|
|
|
|
2000-09-24 02:40:56 +00:00
|
|
|
/* Strip out the final \n */
|
|
|
|
in_from_stdin[opt-1]=' ';
|
2000-09-25 20:23:21 +00:00
|
|
|
|
|
|
|
/* Replace any tabs with spaces */
|
|
|
|
while( (tmp = strchr(in_from_stdin, '\t')) != NULL )
|
|
|
|
*tmp=' ';
|
|
|
|
|
|
|
|
/* Strip out any extra intra-word spaces */
|
|
|
|
while( (tmp = strstr(in_from_stdin, " ")) != NULL ) {
|
|
|
|
opt = strlen(in_from_stdin);
|
|
|
|
memmove(tmp, tmp+1, opt-(tmp-in_from_stdin));
|
|
|
|
}
|
|
|
|
|
2000-09-24 02:40:56 +00:00
|
|
|
/* trim trailing whitespace */
|
|
|
|
opt = strlen(in_from_stdin) - 1;
|
|
|
|
while (isspace(in_from_stdin[opt]))
|
|
|
|
opt--;
|
|
|
|
in_from_stdin[++opt] = 0;
|
|
|
|
|
|
|
|
/* Strip out any leading whitespace */
|
|
|
|
tmp=in_from_stdin;
|
|
|
|
while(isspace(*tmp))
|
|
|
|
tmp++;
|
|
|
|
|
2000-09-25 20:23:21 +00:00
|
|
|
strcat(args, tmp);
|
|
|
|
strcat(args, " ");
|
|
|
|
|
2000-09-23 06:10:14 +00:00
|
|
|
free(in_from_stdin);
|
2000-09-25 20:23:21 +00:00
|
|
|
in_from_stdin = get_line_from_file(stdin);
|
2000-09-23 06:10:14 +00:00
|
|
|
}
|
|
|
|
|
2000-09-25 20:23:21 +00:00
|
|
|
if (traceflag==1) {
|
2000-09-25 22:53:05 +00:00
|
|
|
fprintf(stderr, "%s%s\n", cmd_to_be_executed, args);
|
2000-09-25 20:23:21 +00:00
|
|
|
}
|
2000-09-23 06:10:14 +00:00
|
|
|
|
2000-09-25 20:23:21 +00:00
|
|
|
if ((pid = fork()) == 0) {
|
|
|
|
char *cmd[255];
|
|
|
|
int i=1;
|
|
|
|
|
|
|
|
//printf("argv[0]='%s'\n", cmd_to_be_executed);
|
|
|
|
cmd[0] = cmd_to_be_executed;
|
|
|
|
while (--argc && ++argv && *argv ) {
|
|
|
|
//printf("argv[%d]='%s'\n", i, *argv);
|
|
|
|
cmd[i++]=*argv;
|
|
|
|
}
|
|
|
|
//printf("argv[%d]='%s'\n", i, args);
|
|
|
|
cmd[i++] = args;
|
|
|
|
cmd[i] = NULL;
|
|
|
|
execvp(cmd_to_be_executed, cmd);
|
|
|
|
|
|
|
|
/* What? Still here? Exit with an error */
|
|
|
|
fatalError("%s: %s\n", cmd_to_be_executed, strerror(errno));
|
|
|
|
}
|
|
|
|
/* Wait for a child process to exit */
|
|
|
|
wpid = wait(&status);
|
2000-09-23 06:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef BB_FEATURE_CLEAN_UP
|
2000-09-25 20:23:21 +00:00
|
|
|
free(args);
|
2000-09-23 06:10:14 +00:00
|
|
|
free(cmd_to_be_executed);
|
|
|
|
#endif
|
|
|
|
|
2000-09-25 20:23:21 +00:00
|
|
|
if (wpid > 0)
|
|
|
|
return (WEXITSTATUS(status));
|
|
|
|
else
|
|
|
|
return EXIT_FAILURE;
|
2000-09-22 20:01:23 +00:00
|
|
|
}
|
2000-09-23 06:10:14 +00:00
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|