run_parts.c 6.8 KB

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