1 /* vi: set sw=4 ts=4: */
3 * Mini run-parts implementation for busybox
5 * Copyright (C) 2007 Bernhard Reutner-Fischer
7 * Based on a older version that was in busybox which was 1k big.
8 * Copyright (C) 2001 by Emanuele Aina <emanuele.aina@tiscali.it>
10 * Based on the Debian run-parts program, version 1.15
11 * Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
12 * Copyright (C) 1996-1999 Guy Maor <maor@debian.org>
14 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
17 /* This is my first attempt to write a program in C (well, this is my first
18 * attempt to write a program! :-) . */
20 /* This piece of code is heavily based on the original version of run-parts,
21 * taken from debian-utils. I've only removed the long options and the
22 * report mode. As the original run-parts support only long options, I've
23 * broken compatibility because the BusyBox policy doesn't allow them.
24 * The supported options are:
25 * -t test. Print the name of the files to be executed, without
27 * -a ARG argument. Pass ARG as an argument the program executed. It can
28 * be repeated to pass multiple arguments.
29 * -u MASK umask. Set the umask of the program executed to MASK.
32 //usage:#define run_parts_trivial_usage
33 //usage: "[-t"IF_FEATURE_RUN_PARTS_FANCY("l")"] [-a ARG]... [-u MASK] DIRECTORY"
34 //usage:#define run_parts_full_usage "\n\n"
35 //usage: "Run a bunch of scripts in DIRECTORY\n"
36 //usage: "\n -t Dry run"
37 //usage: IF_FEATURE_RUN_PARTS_FANCY(
38 //usage: "\n -l Print names of matching files even if they are not executable"
40 //usage: "\n -a ARG Pass ARG as argument to programs"
41 //usage: "\n -u MASK Set umask to MASK before running programs"
43 //usage:#define run_parts_example_usage
44 //usage: "$ run-parts -a start /etc/init.d\n"
45 //usage: "$ run-parts -a stop=now /etc/init.d\n\n"
46 //usage: "Let's assume you have a script foo/dosomething:\n"
47 //usage: "#!/bin/sh\n"
48 //usage: "for i in $*; do eval $i; done; unset i\n"
49 //usage: "case \"$1\" in\n"
50 //usage: "start*) echo starting something;;\n"
51 //usage: "stop*) set -x; shutdown -h $stop;;\n"
53 //usage: "Running this yields:\n"
54 //usage: "$run-parts -a stop=+4m foo/\n"
55 //usage: "+ shutdown -h +4m"
64 #define G (*(struct globals*)&bb_common_bufsiz1)
65 #define names (G.names)
68 #define INIT_G() do { } while (0)
70 enum { NUM_CMD
= (COMMON_BUFSIZE
- sizeof(G
)) / sizeof(cmd
[0]) - 1 };
77 OPT_l
= (1 << 4) * ENABLE_FEATURE_RUN_PARTS_FANCY
,
80 #if ENABLE_FEATURE_RUN_PARTS_FANCY
81 #define list_mode (option_mask32 & OPT_l)
86 /* Is this a valid filename (upper/lower alpha, digits,
87 * underscores, and hyphens only?)
89 static bool invalid_name(const char *c
)
93 while (*c
&& (isalnum(*c
) || *c
== '_' || *c
== '-'))
96 return *c
; /* TRUE (!0) if terminating NUL is not reached */
99 static int bb_alphasort(const void *p1
, const void *p2
)
101 int r
= strcmp(*(char **) p1
, *(char **) p2
);
102 return (option_mask32
& OPT_r
) ? -r
: r
;
105 static int FAST_FUNC
act(const char *file
, struct stat
*statbuf
, void *args UNUSED_PARAM
, int depth
)
111 && ( !(statbuf
->st_mode
& (S_IFREG
| S_IFLNK
))
112 || invalid_name(file
)
113 || (!list_mode
&& access(file
, X_OK
) != 0))
118 names
= xrealloc_vector(names
, 4, cur
);
119 names
[cur
++] = xstrdup(file
);
120 /*names[cur] = NULL; - xrealloc_vector did it */
125 #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
126 static const char runparts_longopts
[] ALIGN1
=
127 "arg\0" Required_argument
"a"
128 "umask\0" Required_argument
"u"
129 "test\0" No_argument
"t"
130 #if ENABLE_FEATURE_RUN_PARTS_FANCY
131 "list\0" No_argument
"l"
132 "reverse\0" No_argument
"r"
133 //TODO: "verbose\0" No_argument "v"
138 int run_parts_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
139 int run_parts_main(int argc UNUSED_PARAM
, char **argv
)
141 const char *umask_p
= "22";
142 llist_t
*arg_list
= NULL
;
148 #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
149 applet_long_options
= runparts_longopts
;
151 /* We require exactly one argument: the directory name */
152 opt_complementary
= "=1:a::";
153 getopt32(argv
, "ra:u:t"IF_FEATURE_RUN_PARTS_FANCY("l"), &arg_list
, &umask_p
);
155 umask(xstrtou_range(umask_p
, 8, 0, 07777));
158 while (arg_list
&& n
< NUM_CMD
) {
159 cmd
[n
++] = llist_pop(&arg_list
);
161 /* cmd[n] = NULL; - is already zeroed out */
163 /* run-parts has to sort executables by name before running them */
165 recursive_action(argv
[optind
],
166 ACTION_RECURSE
|ACTION_FOLLOWLINKS
,
167 act
, /* file action */
168 act
, /* dir action */
169 NULL
, /* user data */
176 qsort(names
, cur
, sizeof(char *), bb_alphasort
);
180 char *name
= *names
++;
183 if (option_mask32
& (OPT_t
| OPT_l
)) {
188 ret
= spawn_and_wait(cmd
);
193 bb_perror_msg("can't execute '%s'", name
);
195 bb_error_msg("%s exited with code %d", name
, ret
& 0xff);