2001-10-31 16:29:29 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini run-parts implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 by Emanuele Aina <emanuele.aina@tiscali.it>
|
|
|
|
*
|
|
|
|
* Based on the Debian run-parts program, version 1.15
|
|
|
|
* Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
|
|
|
|
* Copyright (C) 1996-1999 Guy Maor <maor@debian.org>
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
2001-10-31 16:29:29 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This is my first attempt to write a program in C (well, this is my first
|
|
|
|
* attempt to write a program! :-) . */
|
|
|
|
|
|
|
|
/* This piece of code is heavily based on the original version of run-parts,
|
2004-03-15 13:59:22 +05:30
|
|
|
* taken from debian-utils. I've only removed the long options and a the
|
2001-10-31 16:29:29 +05:30
|
|
|
* report mode. As the original run-parts support only long options, I've
|
2004-03-15 13:59:22 +05:30
|
|
|
* broken compatibility because the BusyBox policy doesn't allow them.
|
|
|
|
* The supported options are:
|
2001-10-31 16:29:29 +05:30
|
|
|
* -t test. Print the name of the files to be executed, without
|
2006-01-25 05:38:53 +05:30
|
|
|
* execute them.
|
2004-03-15 13:59:22 +05:30
|
|
|
* -a ARG argument. Pass ARG as an argument the program executed. It can
|
2006-01-25 05:38:53 +05:30
|
|
|
* be repeated to pass multiple arguments.
|
|
|
|
* -u MASK umask. Set the umask of the program executed to MASK. */
|
2001-10-31 16:29:29 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* TODO
|
2001-10-31 16:29:29 +05:30
|
|
|
* done - convert calls to error in perror... and remove error()
|
2004-03-15 13:59:22 +05:30
|
|
|
* done - convert malloc/realloc to their x... counterparts
|
2001-10-31 16:29:29 +05:30
|
|
|
* done - remove catch_sigchld
|
2004-03-15 13:59:22 +05:30
|
|
|
* done - use bb's concat_path_file()
|
2001-12-18 19:36:03 +05:30
|
|
|
* done - declare run_parts_main() as extern and any other function as static?
|
|
|
|
*/
|
2001-10-31 16:29:29 +05:30
|
|
|
|
|
|
|
#include <getopt.h>
|
2002-11-11 11:51:00 +05:30
|
|
|
#include <stdlib.h>
|
2001-10-31 16:29:29 +05:30
|
|
|
|
2005-10-06 20:48:09 +05:30
|
|
|
#include "busybox.h"
|
2001-10-31 16:29:29 +05:30
|
|
|
|
2003-07-26 14:46:00 +05:30
|
|
|
static const struct option runparts_long_options[] = {
|
|
|
|
{ "test", 0, NULL, 't' },
|
|
|
|
{ "umask", 1, NULL, 'u' },
|
|
|
|
{ "arg", 1, NULL, 'a' },
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
2003-07-29 12:35:40 +05:30
|
|
|
extern char **environ;
|
|
|
|
|
2001-10-31 16:29:29 +05:30
|
|
|
/* run_parts_main */
|
|
|
|
/* Process options */
|
2002-11-11 11:51:00 +05:30
|
|
|
int run_parts_main(int argc, char **argv)
|
2001-10-31 16:29:29 +05:30
|
|
|
{
|
2002-11-11 11:51:00 +05:30
|
|
|
char **args = xmalloc(2 * sizeof(char *));
|
|
|
|
unsigned char test_mode = 0;
|
|
|
|
unsigned short argcount = 1;
|
|
|
|
int opt;
|
|
|
|
|
|
|
|
umask(022);
|
|
|
|
|
2003-07-26 14:46:00 +05:30
|
|
|
while ((opt = getopt_long (argc, argv, "tu:a:",
|
|
|
|
runparts_long_options, NULL)) > 0)
|
|
|
|
{
|
2002-11-11 11:51:00 +05:30
|
|
|
switch (opt) {
|
2003-07-26 14:46:00 +05:30
|
|
|
/* Enable test mode */
|
|
|
|
case 't':
|
|
|
|
test_mode++;
|
|
|
|
break;
|
|
|
|
/* Set the umask of the programs executed */
|
|
|
|
case 'u':
|
|
|
|
/* Check and set the umask of the program executed. As stated in the original
|
2004-03-15 13:59:22 +05:30
|
|
|
* run-parts, the octal conversion in libc is not foolproof; it will take the
|
2003-07-26 14:46:00 +05:30
|
|
|
* 8 and 9 digits under some circumstances. We'll just have to live with it.
|
|
|
|
*/
|
|
|
|
umask(bb_xgetlarg(optarg, 8, 0, 07777));
|
|
|
|
break;
|
|
|
|
/* Pass an argument to the programs */
|
|
|
|
case 'a':
|
|
|
|
/* Add an argument to the commands that we will call.
|
|
|
|
* Called once for every argument. */
|
|
|
|
args = xrealloc(args, (argcount + 2) * (sizeof(char *)));
|
|
|
|
args[argcount++] = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bb_show_usage();
|
2002-11-11 11:51:00 +05:30
|
|
|
}
|
|
|
|
}
|
2001-10-31 16:29:29 +05:30
|
|
|
|
2002-11-11 11:51:00 +05:30
|
|
|
/* We require exactly one argument: the directory name */
|
|
|
|
if (optind != (argc - 1)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-11-11 11:51:00 +05:30
|
|
|
}
|
2001-10-31 16:29:29 +05:30
|
|
|
|
2002-11-11 11:51:00 +05:30
|
|
|
args[0] = argv[optind];
|
2003-01-08 08:56:47 +05:30
|
|
|
args[argcount] = 0;
|
|
|
|
|
2003-07-29 12:35:40 +05:30
|
|
|
return(run_parts(args, test_mode, environ));
|
2001-10-31 16:29:29 +05:30
|
|
|
}
|