13617c6e16195022443a43211e38e4946926a5ca
[oweals/busybox.git] / debianutils / run_parts.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini run-parts implementation for busybox
4  *
5  * Copyright (C) 2007 Bernhard Reutner-Fischer
6  *
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>
9  *
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>
13  *
14  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
15  */
16
17 /* This is my first attempt to write a program in C (well, this is my first
18  * attempt to write a program! :-) . */
19
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  */
25 //config:config RUN_PARTS
26 //config:       bool "run-parts"
27 //config:       default y
28 //config:       help
29 //config:         run-parts is a utility designed to run all the scripts in a directory.
30 //config:
31 //config:         It is useful to set up a directory like cron.daily, where you need to
32 //config:         execute all the scripts in that directory.
33 //config:
34 //config:         In this implementation of run-parts some features (such as report
35 //config:         mode) are not implemented.
36 //config:
37 //config:         Unless you know that run-parts is used in some of your scripts
38 //config:         you can safely say N here.
39 //config:
40 //config:config FEATURE_RUN_PARTS_LONG_OPTIONS
41 //config:       bool "Enable long options"
42 //config:       default y
43 //config:       depends on RUN_PARTS && LONG_OPTS
44 //config:       help
45 //config:         Support long options for the run-parts applet.
46 //config:
47 //config:config FEATURE_RUN_PARTS_FANCY
48 //config:       bool "Support additional arguments"
49 //config:       default y
50 //config:       depends on RUN_PARTS
51 //config:       help
52 //config:         Support additional options:
53 //config:         -l --list print the names of the all matching files (not
54 //config:                   limited to executables), but don't actually run them.
55
56 //applet:IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, BB_DIR_BIN, BB_SUID_DROP, run_parts))
57
58 //kbuild:lib-$(CONFIG_RUN_PARTS) += run_parts.o
59
60 //usage:#define run_parts_trivial_usage
61 //usage:       "[-a ARG]... [-u UMASK] "
62 //usage:       IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [--exit-on-error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] "))
63 //usage:       "DIRECTORY"
64 //usage:#define run_parts_full_usage "\n\n"
65 //usage:       "Run a bunch of scripts in DIRECTORY\n"
66 //usage:     "\n        -a ARG          Pass ARG as argument to scripts"
67 //usage:     "\n        -u UMASK        Set UMASK before running scripts"
68 //usage:        IF_FEATURE_RUN_PARTS_LONG_OPTIONS(
69 //usage:     "\n        --reverse       Reverse execution order"
70 //usage:     "\n        --test          Dry run"
71 //usage:     "\n        --exit-on-error Exit if a script exits with non-zero"
72 //usage:        IF_FEATURE_RUN_PARTS_FANCY(
73 //usage:     "\n        --list          Print names of matching files even if they are not executable"
74 //usage:        )
75 //usage:        )
76 //usage:
77 //usage:#define run_parts_example_usage
78 //usage:       "$ run-parts -a start /etc/init.d\n"
79 //usage:       "$ run-parts -a stop=now /etc/init.d\n\n"
80 //usage:       "Let's assume you have a script foo/dosomething:\n"
81 //usage:       "#!/bin/sh\n"
82 //usage:       "for i in $*; do eval $i; done; unset i\n"
83 //usage:       "case \"$1\" in\n"
84 //usage:       "start*) echo starting something;;\n"
85 //usage:       "stop*) set -x; shutdown -h $stop;;\n"
86 //usage:       "esac\n\n"
87 //usage:       "Running this yields:\n"
88 //usage:       "$run-parts -a stop=+4m foo/\n"
89 //usage:       "+ shutdown -h +4m"
90
91 #include "libbb.h"
92
93 struct globals {
94         char **names;
95         int    cur;
96         char  *cmd[2 /* using 1 provokes compiler warning */];
97 } FIX_ALIASING;
98 #define G (*(struct globals*)&bb_common_bufsiz1)
99 #define names (G.names)
100 #define cur   (G.cur  )
101 #define cmd   (G.cmd  )
102 #define INIT_G() do { } while (0)
103
104 enum { NUM_CMD = (COMMON_BUFSIZE - sizeof(G)) / sizeof(cmd[0]) - 1 };
105
106 enum {
107         OPT_a = (1 << 0),
108         OPT_u = (1 << 1),
109         OPT_r = (1 << 2) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS,
110         OPT_t = (1 << 3) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS,
111         OPT_e = (1 << 4) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS,
112         OPT_l = (1 << 5) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
113                         * ENABLE_FEATURE_RUN_PARTS_FANCY,
114 };
115
116 /* Is this a valid filename (upper/lower alpha, digits,
117  * underscores, and hyphens only?)
118  */
119 static bool invalid_name(const char *c)
120 {
121         c = bb_basename(c);
122
123         while (*c && (isalnum(*c) || *c == '_' || *c == '-'))
124                 c++;
125
126         return *c; /* TRUE (!0) if terminating NUL is not reached */
127 }
128
129 static int bb_alphasort(const void *p1, const void *p2)
130 {
131         int r = strcmp(*(char **) p1, *(char **) p2);
132         return (option_mask32 & OPT_r) ? -r : r;
133 }
134
135 static int FAST_FUNC act(const char *file, struct stat *statbuf, void *args UNUSED_PARAM, int depth)
136 {
137         if (depth == 1)
138                 return TRUE;
139
140         if (depth == 2
141          && (  !(statbuf->st_mode & (S_IFREG | S_IFLNK))
142             || invalid_name(file)
143             || (!(option_mask32 & OPT_l) && access(file, X_OK) != 0))
144         ) {
145                 return SKIP;
146         }
147
148         names = xrealloc_vector(names, 4, cur);
149         names[cur++] = xstrdup(file);
150         /*names[cur] = NULL; - xrealloc_vector did it */
151
152         return TRUE;
153 }
154
155 #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
156 static const char runparts_longopts[] ALIGN1 =
157         "arg\0"     Required_argument "a"
158         "umask\0"   Required_argument "u"
159 //TODO: "verbose\0" No_argument       "v"
160         "reverse\0" No_argument       "\xf0"
161         "test\0"    No_argument       "\xf1"
162         "exit-on-error\0" No_argument "\xf2"
163 #if ENABLE_FEATURE_RUN_PARTS_FANCY
164         "list\0"    No_argument       "\xf3"
165 #endif
166         ;
167 #endif
168
169 int run_parts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
170 int run_parts_main(int argc UNUSED_PARAM, char **argv)
171 {
172         const char *umask_p = "22";
173         llist_t *arg_list = NULL;
174         unsigned n;
175         int ret;
176
177         INIT_G();
178
179 #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
180         applet_long_options = runparts_longopts;
181 #endif
182         /* We require exactly one argument: the directory name */
183         opt_complementary = "=1:a::";
184         getopt32(argv, "a:u:", &arg_list, &umask_p);
185
186         umask(xstrtou_range(umask_p, 8, 0, 07777));
187
188         n = 1;
189         while (arg_list && n < NUM_CMD) {
190                 cmd[n++] = llist_pop(&arg_list);
191         }
192         /* cmd[n] = NULL; - is already zeroed out */
193
194         /* run-parts has to sort executables by name before running them */
195
196         recursive_action(argv[optind],
197                         ACTION_RECURSE|ACTION_FOLLOWLINKS,
198                         act,            /* file action */
199                         act,            /* dir action */
200                         NULL,           /* user data */
201                         1               /* depth */
202                 );
203
204         if (!names)
205                 return 0;
206
207         qsort(names, cur, sizeof(char *), bb_alphasort);
208
209         n = 0;
210         while (1) {
211                 char *name = *names++;
212                 if (!name)
213                         break;
214                 if (option_mask32 & (OPT_t | OPT_l)) {
215                         puts(name);
216                         continue;
217                 }
218                 cmd[0] = name;
219                 ret = spawn_and_wait(cmd);
220                 if (ret == 0)
221                         continue;
222                 n = 1;
223                 if (ret < 0)
224                         bb_perror_msg("can't execute '%s'", name);
225                 else /* ret > 0 */
226                         bb_error_msg("%s: exit status %u", name, ret & 0xff);
227
228                 if (option_mask32 & OPT_e)
229                         xfunc_die();
230         }
231
232         return n;
233 }