Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini run-parts implementation for busybox |
| 4 | * |
Bernhard Reutner-Fischer | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 5 | * Copyright (C) 2007 Bernhard Reutner-Fischer |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 6 | * |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 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> |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 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> |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 13 | * |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 14 | * |
Bernhard Reutner-Fischer | 7fee0c4 | 2006-09-13 16:39:19 +0000 | [diff] [blame] | 15 | * Licensed under GPL v2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | /* This is my first attempt to write a program in C (well, this is my first |
| 19 | * attempt to write a program! :-) . */ |
| 20 | |
| 21 | /* This piece of code is heavily based on the original version of run-parts, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 22 | * taken from debian-utils. I've only removed the long options and a the |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 23 | * report mode. As the original run-parts support only long options, I've |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 24 | * broken compatibility because the BusyBox policy doesn't allow them. |
| 25 | * The supported options are: |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 26 | * -t test. Print the name of the files to be executed, without |
| 27 | * execute them. |
| 28 | * -a ARG argument. Pass ARG as an argument the program executed. It can |
| 29 | * be repeated to pass multiple arguments. |
| 30 | * -u MASK umask. Set the umask of the program executed to MASK. |
Eric Andersen | fb74a45 | 2001-12-18 14:06:03 +0000 | [diff] [blame] | 31 | */ |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 32 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 33 | #include "libbb.h" |
| 34 | |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 35 | struct globals { |
| 36 | char **names; |
| 37 | int cur; |
| 38 | char *cmd[1]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame^] | 39 | } FIX_ALIASING; |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 40 | #define G (*(struct globals*)&bb_common_bufsiz1) |
| 41 | #define names (G.names) |
| 42 | #define cur (G.cur ) |
| 43 | #define cmd (G.cmd ) |
| 44 | |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 45 | enum { NUM_CMD = (COMMON_BUFSIZE - sizeof(G)) / sizeof(cmd[0]) - 1 }; |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 46 | |
| 47 | enum { |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 48 | OPT_r = (1 << 0), |
| 49 | OPT_a = (1 << 1), |
| 50 | OPT_u = (1 << 2), |
| 51 | OPT_t = (1 << 3), |
| 52 | OPT_l = (1 << 4) * ENABLE_FEATURE_RUN_PARTS_FANCY, |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | #if ENABLE_FEATURE_RUN_PARTS_FANCY |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 56 | #define list_mode (option_mask32 & OPT_l) |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 57 | #else |
| 58 | #define list_mode 0 |
| 59 | #endif |
| 60 | |
| 61 | /* Is this a valid filename (upper/lower alpha, digits, |
| 62 | * underscores, and hyphens only?) |
| 63 | */ |
| 64 | static bool invalid_name(const char *c) |
| 65 | { |
| 66 | c = bb_basename(c); |
| 67 | |
| 68 | while (*c && (isalnum(*c) || *c == '_' || *c == '-')) |
| 69 | c++; |
| 70 | |
| 71 | return *c; /* TRUE (!0) if terminating NUL is not reached */ |
| 72 | } |
| 73 | |
| 74 | static int bb_alphasort(const void *p1, const void *p2) |
| 75 | { |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 76 | int r = strcmp(*(char **) p1, *(char **) p2); |
| 77 | return (option_mask32 & OPT_r) ? -r : r; |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 80 | static int FAST_FUNC act(const char *file, struct stat *statbuf, void *args UNUSED_PARAM, int depth) |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 81 | { |
| 82 | if (depth == 1) |
| 83 | return TRUE; |
| 84 | |
| 85 | if (depth == 2 |
| 86 | && ( !(statbuf->st_mode & (S_IFREG | S_IFLNK)) |
| 87 | || invalid_name(file) |
| 88 | || (!list_mode && access(file, X_OK) != 0)) |
| 89 | ) { |
| 90 | return SKIP; |
| 91 | } |
| 92 | |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 93 | names = xrealloc_vector(names, 4, cur); |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 94 | names[cur++] = xstrdup(file); |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 95 | /*names[cur] = NULL; - xrealloc_vector did it */ |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 96 | |
| 97 | return TRUE; |
| 98 | } |
| 99 | |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 100 | #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 101 | static const char runparts_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 102 | "arg\0" Required_argument "a" |
| 103 | "umask\0" Required_argument "u" |
| 104 | "test\0" No_argument "t" |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 105 | #if ENABLE_FEATURE_RUN_PARTS_FANCY |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 106 | "list\0" No_argument "l" |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 107 | "reverse\0" No_argument "r" |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 108 | //TODO: "verbose\0" No_argument "v" |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 109 | #endif |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 110 | ; |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 111 | #endif |
| 112 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 113 | int run_parts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 114 | int run_parts_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 115 | { |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 116 | const char *umask_p = "22"; |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 117 | llist_t *arg_list = NULL; |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 118 | unsigned n; |
| 119 | int ret; |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 120 | |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 121 | #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 122 | applet_long_options = runparts_longopts; |
Bernhard Reutner-Fischer | b7cffd4 | 2007-03-28 20:35:13 +0000 | [diff] [blame] | 123 | #endif |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 124 | /* We require exactly one argument: the directory name */ |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 125 | /* We require exactly one argument: the directory name */ |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 126 | opt_complementary = "=1:a::"; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 127 | getopt32(argv, "ra:u:t"IF_FEATURE_RUN_PARTS_FANCY("l"), &arg_list, &umask_p); |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 128 | |
| 129 | umask(xstrtou_range(umask_p, 8, 0, 07777)); |
| 130 | |
| 131 | n = 1; |
| 132 | while (arg_list && n < NUM_CMD) { |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 133 | cmd[n++] = llist_pop(&arg_list); |
Glenn L McGrath | 545106f | 2002-11-11 06:21:00 +0000 | [diff] [blame] | 134 | } |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 135 | /* cmd[n] = NULL; - is already zeroed out */ |
| 136 | |
| 137 | /* run-parts has to sort executables by name before running them */ |
| 138 | |
| 139 | recursive_action(argv[optind], |
Denis Vlasenko | bbd695d | 2007-04-08 10:52:28 +0000 | [diff] [blame] | 140 | ACTION_RECURSE|ACTION_FOLLOWLINKS, |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 141 | act, /* file action */ |
| 142 | act, /* dir action */ |
| 143 | NULL, /* user data */ |
| 144 | 1 /* depth */ |
| 145 | ); |
| 146 | |
| 147 | if (!names) |
| 148 | return 0; |
| 149 | |
| 150 | qsort(names, cur, sizeof(char *), bb_alphasort); |
| 151 | |
| 152 | n = 0; |
| 153 | while (1) { |
| 154 | char *name = *names++; |
| 155 | if (!name) |
| 156 | break; |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 157 | if (option_mask32 & (OPT_t | OPT_l)) { |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 158 | puts(name); |
| 159 | continue; |
| 160 | } |
| 161 | cmd[0] = name; |
| 162 | ret = wait4pid(spawn(cmd)); |
| 163 | if (ret == 0) |
| 164 | continue; |
| 165 | n = 1; |
| 166 | if (ret < 0) |
Denis Vlasenko | f9d4fc3 | 2009-04-21 20:40:51 +0000 | [diff] [blame] | 167 | bb_perror_msg("can't execute '%s'", name); |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 168 | else /* ret > 0 */ |
Denis Vlasenko | 19fb67e | 2008-02-28 21:30:22 +0000 | [diff] [blame] | 169 | bb_error_msg("%s exited with code %d", name, ret); |
Denis Vlasenko | 2a1d024 | 2007-09-23 18:34:49 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | return n; |
Eric Andersen | 7d68290 | 2001-10-31 10:59:29 +0000 | [diff] [blame] | 173 | } |