init.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini init implementation for busybox
  4. *
  5. * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
  6. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  7. * Adjusted by so many folks, it's impossible to keep track.
  8. *
  9. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  10. */
  11. //config:config INIT
  12. //config: bool "init (10 kb)"
  13. //config: default y
  14. //config: select FEATURE_SYSLOG
  15. //config: help
  16. //config: init is the first program run when the system boots.
  17. //config:
  18. //config:config LINUXRC
  19. //config: bool "linuxrc: support running init from initrd (not initramfs)"
  20. //config: default y
  21. //config: select FEATURE_SYSLOG
  22. //config: help
  23. //config: Legacy support for running init under the old-style initrd. Allows
  24. //config: the name linuxrc to act as init, and it doesn't assume init is PID 1.
  25. //config:
  26. //config: This does not apply to initramfs, which runs /init as PID 1 and
  27. //config: requires no special support.
  28. //config:
  29. //config:config FEATURE_USE_INITTAB
  30. //config: bool "Support reading an inittab file"
  31. //config: default y
  32. //config: depends on INIT || LINUXRC
  33. //config: help
  34. //config: Allow init to read an inittab file when the system boot.
  35. //config:
  36. //config:config FEATURE_KILL_REMOVED
  37. //config: bool "Support killing processes that have been removed from inittab"
  38. //config: default n
  39. //config: depends on FEATURE_USE_INITTAB
  40. //config: help
  41. //config: When respawn entries are removed from inittab and a SIGHUP is
  42. //config: sent to init, this option will make init kill the processes
  43. //config: that have been removed.
  44. //config:
  45. //config:config FEATURE_KILL_DELAY
  46. //config: int "How long to wait between TERM and KILL (0 - send TERM only)" if FEATURE_KILL_REMOVED
  47. //config: range 0 1024
  48. //config: default 0
  49. //config: depends on FEATURE_KILL_REMOVED
  50. //config: help
  51. //config: With nonzero setting, init sends TERM, forks, child waits N
  52. //config: seconds, sends KILL and exits. Setting it too high is unwise
  53. //config: (child will hang around for too long and could actually kill
  54. //config: the wrong process!)
  55. //config:
  56. //config:config FEATURE_INIT_SCTTY
  57. //config: bool "Run commands with leading dash with controlling tty"
  58. //config: default y
  59. //config: depends on INIT || LINUXRC
  60. //config: help
  61. //config: If this option is enabled, init will try to give a controlling
  62. //config: tty to any command which has leading hyphen (often it's "-/bin/sh").
  63. //config: More precisely, init will do "ioctl(STDIN_FILENO, TIOCSCTTY, 0)".
  64. //config: If device attached to STDIN_FILENO can be a ctty but is not yet
  65. //config: a ctty for other session, it will become this process' ctty.
  66. //config: This is not the traditional init behavour, but is often what you want
  67. //config: in an embedded system where the console is only accessed during
  68. //config: development or for maintenance.
  69. //config: NB: using cttyhack applet may work better.
  70. //config:
  71. //config:config FEATURE_INIT_SYSLOG
  72. //config: bool "Enable init to write to syslog"
  73. //config: default y
  74. //config: depends on INIT || LINUXRC
  75. //config: help
  76. //config: If selected, some init messages are sent to syslog.
  77. //config: Otherwise, they are sent to VT #5 if linux virtual tty is detected
  78. //config: (if not, no separate logging is done).
  79. //config:
  80. //config:config FEATURE_INIT_QUIET
  81. //config: bool "Be quiet on boot (no 'init started:' message)"
  82. //config: default y
  83. //config: depends on INIT || LINUXRC
  84. //config:
  85. //config:config FEATURE_INIT_COREDUMPS
  86. //config: bool "Support dumping core for child processes (debugging only)"
  87. //config: default n # not Y because this is a debug option
  88. //config: depends on INIT || LINUXRC
  89. //config: help
  90. //config: If this option is enabled and the file /.init_enable_core
  91. //config: exists, then init will call setrlimit() to allow unlimited
  92. //config: core file sizes. If this option is disabled, processes
  93. //config: will not generate any core files.
  94. //config:
  95. //config:config INIT_TERMINAL_TYPE
  96. //config: string "Initial terminal type"
  97. //config: default "linux"
  98. //config: depends on INIT || LINUXRC
  99. //config: help
  100. //config: This is the initial value set by init for the TERM environment
  101. //config: variable. This variable is used by programs which make use of
  102. //config: extended terminal capabilities.
  103. //config:
  104. //config: Note that on Linux, init attempts to detect serial terminal and
  105. //config: sets TERM to "vt102" if one is found.
  106. //config:
  107. //config:config FEATURE_INIT_MODIFY_CMDLINE
  108. //config: bool "Clear init's command line"
  109. //config: default y
  110. //config: depends on INIT || LINUXRC
  111. //config: help
  112. //config: When launched as PID 1 and after parsing its arguments, init
  113. //config: wipes all the arguments but argv[0] and rewrites argv[0] to
  114. //config: contain only "init", so that its command line appears solely as
  115. //config: "init" in tools such as ps.
  116. //config: If this option is set to Y, init will keep its original behavior,
  117. //config: otherwise, all the arguments including argv[0] will be preserved,
  118. //config: be they parsed or ignored by init.
  119. //config: The original command-line used to launch init can then be
  120. //config: retrieved in /proc/1/cmdline on Linux, for example.
  121. //applet:IF_INIT(APPLET(init, BB_DIR_SBIN, BB_SUID_DROP))
  122. //applet:IF_LINUXRC(APPLET_ODDNAME(linuxrc, init, BB_DIR_ROOT, BB_SUID_DROP, linuxrc))
  123. //kbuild:lib-$(CONFIG_INIT) += init.o
  124. //kbuild:lib-$(CONFIG_LINUXRC) += init.o
  125. #define DEBUG_SEGV_HANDLER 0
  126. #include "libbb.h"
  127. #include "common_bufsiz.h"
  128. #include <syslog.h>
  129. #ifdef __linux__
  130. # include <linux/vt.h>
  131. # include <sys/sysinfo.h>
  132. #endif
  133. #include "reboot.h" /* reboot() constants */
  134. #if DEBUG_SEGV_HANDLER
  135. # undef _GNU_SOURCE
  136. # define _GNU_SOURCE 1
  137. # undef __USE_GNU
  138. # define __USE_GNU 1
  139. # include <execinfo.h>
  140. # include <sys/ucontext.h>
  141. #endif
  142. /* Was a CONFIG_xxx option. A lot of people were building
  143. * not fully functional init by switching it on! */
  144. #define DEBUG_INIT 0
  145. #define CONSOLE_NAME_SIZE 32
  146. /* Default sysinit script. */
  147. #ifndef INIT_SCRIPT
  148. # define INIT_SCRIPT "/etc/init.d/rcS"
  149. #endif
  150. /* Each type of actions can appear many times. They will be
  151. * handled in order. RESTART is an exception, only 1st is used.
  152. */
  153. /* Start these actions first and wait for completion */
  154. #define SYSINIT 0x01
  155. /* Start these after SYSINIT and wait for completion */
  156. #define WAIT 0x02
  157. /* Start these after WAIT and *dont* wait for completion */
  158. #define ONCE 0x04
  159. /*
  160. * NB: while SYSINIT/WAIT/ONCE are being processed,
  161. * SIGHUP ("reread /etc/inittab") will be processed only after
  162. * each group of actions. If new inittab adds, say, a SYSINIT action,
  163. * it will not be run, since init is already "past SYSINIT stage".
  164. */
  165. /* Start these after ONCE are started, restart on exit */
  166. #define RESPAWN 0x08
  167. /* Like RESPAWN, but wait for <Enter> to be pressed on tty */
  168. #define ASKFIRST 0x10
  169. /*
  170. * Start these on SIGINT, and wait for completion.
  171. * Then go back to respawning RESPAWN and ASKFIRST actions.
  172. * NB: kernel sends SIGINT to us if Ctrl-Alt-Del was pressed.
  173. */
  174. #define CTRLALTDEL 0x20
  175. /*
  176. * Start these before killing all processes in preparation for
  177. * running RESTART actions or doing low-level halt/reboot/poweroff
  178. * (initiated by SIGUSR1/SIGTERM/SIGUSR2).
  179. * Wait for completion before proceeding.
  180. */
  181. #define SHUTDOWN 0x40
  182. /*
  183. * exec() on SIGQUIT. SHUTDOWN actions are started and waited for,
  184. * then all processes are killed, then init exec's 1st RESTART action,
  185. * replacing itself by it. If no RESTART action specified,
  186. * SIGQUIT has no effect.
  187. */
  188. #define RESTART 0x80
  189. /* A linked list of init_actions, to be read from inittab */
  190. struct init_action {
  191. struct init_action *next;
  192. pid_t pid;
  193. uint8_t action_type;
  194. char terminal[CONSOLE_NAME_SIZE];
  195. char command[1];
  196. };
  197. struct globals {
  198. struct init_action *init_action_list;
  199. #if !ENABLE_FEATURE_INIT_SYSLOG
  200. const char *log_console;
  201. #endif
  202. } FIX_ALIASING;
  203. #define G (*(struct globals*)bb_common_bufsiz1)
  204. #define INIT_G() do { \
  205. setup_common_bufsiz(); \
  206. IF_NOT_FEATURE_INIT_SYSLOG(G.log_console = VC_5;) \
  207. } while (0)
  208. enum {
  209. L_LOG = 0x1,
  210. L_CONSOLE = 0x2,
  211. };
  212. /* Print a message to the specified device.
  213. * "where" may be bitwise-or'd from L_LOG | L_CONSOLE
  214. * NB: careful, we can be called after vfork!
  215. */
  216. #define dbg_message(...) do { if (DEBUG_INIT) message(__VA_ARGS__); } while (0)
  217. static void message(int where, const char *fmt, ...)
  218. __attribute__ ((format(printf, 2, 3)));
  219. static void message(int where, const char *fmt, ...)
  220. {
  221. va_list arguments;
  222. unsigned l;
  223. char msg[128];
  224. msg[0] = '\r';
  225. va_start(arguments, fmt);
  226. l = 1 + vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
  227. if (l > sizeof(msg) - 2)
  228. l = sizeof(msg) - 2;
  229. va_end(arguments);
  230. #if ENABLE_FEATURE_INIT_SYSLOG
  231. msg[l] = '\0';
  232. if (where & L_LOG) {
  233. /* Log the message to syslogd */
  234. openlog(applet_name, 0, LOG_DAEMON);
  235. /* don't print "\r" */
  236. syslog(LOG_INFO, "%s", msg + 1);
  237. closelog();
  238. }
  239. msg[l++] = '\n';
  240. msg[l] = '\0';
  241. #else
  242. msg[l++] = '\n';
  243. msg[l] = '\0';
  244. if (where & L_LOG) {
  245. /* Take full control of the log tty, and never close it.
  246. * It's mine, all mine! Muhahahaha! */
  247. static int log_fd = -1;
  248. if (log_fd < 0) {
  249. log_fd = STDERR_FILENO;
  250. if (G.log_console) {
  251. log_fd = device_open(G.log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
  252. if (log_fd < 0) {
  253. bb_error_msg("can't log to %s", G.log_console);
  254. where = L_CONSOLE;
  255. } else {
  256. close_on_exec_on(log_fd);
  257. }
  258. }
  259. }
  260. full_write(log_fd, msg, l);
  261. if (log_fd == STDERR_FILENO)
  262. return; /* don't print dup messages */
  263. }
  264. #endif
  265. if (where & L_CONSOLE) {
  266. /* Send console messages to console so people will see them. */
  267. full_write(STDERR_FILENO, msg, l);
  268. }
  269. }
  270. static void console_init(void)
  271. {
  272. #ifdef VT_OPENQRY
  273. int vtno;
  274. #endif
  275. char *s;
  276. s = getenv("CONSOLE");
  277. if (!s)
  278. s = getenv("console");
  279. #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  280. /* BSD people say their kernels do not open fd 0,1,2; they need this: */
  281. if (!s)
  282. s = (char*)"/dev/console";
  283. #endif
  284. if (s) {
  285. int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
  286. if (fd >= 0) {
  287. dup2(fd, STDIN_FILENO);
  288. dup2(fd, STDOUT_FILENO);
  289. xmove_fd(fd, STDERR_FILENO);
  290. }
  291. dbg_message(L_LOG, "console='%s'", s);
  292. } else {
  293. /* Make sure fd 0,1,2 are not closed
  294. * (so that they won't be used by future opens) */
  295. bb_sanitize_stdio();
  296. // Users report problems
  297. // /* Make sure init can't be blocked by writing to stderr */
  298. // fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK);
  299. }
  300. s = getenv("TERM");
  301. #ifdef VT_OPENQRY
  302. if (ioctl(STDIN_FILENO, VT_OPENQRY, &vtno) != 0) {
  303. /* Not a linux terminal, probably serial console.
  304. * Force the TERM setting to vt102
  305. * if TERM is set to linux (the default) */
  306. if (!s || strcmp(s, "linux") == 0)
  307. putenv((char*)"TERM=vt102");
  308. # if !ENABLE_FEATURE_INIT_SYSLOG
  309. G.log_console = NULL;
  310. # endif
  311. } else
  312. #endif
  313. if (!s)
  314. putenv((char*)"TERM=" CONFIG_INIT_TERMINAL_TYPE);
  315. }
  316. /* Set terminal settings to reasonable defaults.
  317. * NB: careful, we can be called after vfork! */
  318. static void set_sane_term(void)
  319. {
  320. struct termios tty;
  321. if (tcgetattr(STDIN_FILENO, &tty) != 0)
  322. return;
  323. /* set control chars */
  324. tty.c_cc[VINTR] = 3; /* C-c */
  325. tty.c_cc[VQUIT] = 28; /* C-\ */
  326. tty.c_cc[VERASE] = 127; /* C-? */
  327. tty.c_cc[VKILL] = 21; /* C-u */
  328. tty.c_cc[VEOF] = 4; /* C-d */
  329. tty.c_cc[VSTART] = 17; /* C-q */
  330. tty.c_cc[VSTOP] = 19; /* C-s */
  331. tty.c_cc[VSUSP] = 26; /* C-z */
  332. #ifdef __linux__
  333. /* use line discipline 0 */
  334. tty.c_line = 0;
  335. #endif
  336. /* Make it be sane */
  337. /* On systems where the baud rate is stored in a separate field, we can safely disable these. */
  338. #ifndef CBAUD
  339. # define CBAUD 0
  340. # define CBAUDEX 0
  341. #endif
  342. /* Added CRTSCTS to fix Debian bug 528560 */
  343. #ifndef CRTSCTS
  344. # define CRTSCTS 0
  345. #endif
  346. tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD | CRTSCTS;
  347. tty.c_cflag |= CREAD | HUPCL | CLOCAL;
  348. /* input modes */
  349. tty.c_iflag = ICRNL | IXON | IXOFF;
  350. /* output modes */
  351. tty.c_oflag = OPOST | ONLCR;
  352. /* local modes */
  353. tty.c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
  354. tcsetattr_stdin_TCSANOW(&tty);
  355. }
  356. /* Open the new terminal device.
  357. * NB: careful, we can be called after vfork! */
  358. static int open_stdio_to_tty(const char* tty_name)
  359. {
  360. /* empty tty_name means "use init's tty", else... */
  361. if (tty_name[0]) {
  362. int fd;
  363. close(STDIN_FILENO);
  364. /* fd can be only < 0 or 0: */
  365. fd = device_open(tty_name, O_RDWR);
  366. if (fd) {
  367. message(L_LOG | L_CONSOLE, "can't open %s: "STRERROR_FMT,
  368. tty_name
  369. STRERROR_ERRNO
  370. );
  371. return 0; /* failure */
  372. }
  373. dup2(STDIN_FILENO, STDOUT_FILENO);
  374. dup2(STDIN_FILENO, STDERR_FILENO);
  375. }
  376. set_sane_term();
  377. return 1; /* success */
  378. }
  379. static void reset_sighandlers_and_unblock_sigs(void)
  380. {
  381. bb_signals(0
  382. + (1 << SIGUSR1)
  383. + (1 << SIGUSR2)
  384. + (1 << SIGTERM)
  385. + (1 << SIGQUIT)
  386. + (1 << SIGINT)
  387. + (1 << SIGHUP)
  388. + (1 << SIGTSTP)
  389. + (1 << SIGSTOP)
  390. , SIG_DFL);
  391. sigprocmask_allsigs(SIG_UNBLOCK);
  392. }
  393. /* Wrapper around exec:
  394. * Takes string.
  395. * If chars like '>' detected, execs '[-]/bin/sh -c "exec ......."'.
  396. * Otherwise splits words on whitespace, deals with leading dash,
  397. * and uses plain exec().
  398. * NB: careful, we can be called after vfork!
  399. */
  400. static void init_exec(const char *command)
  401. {
  402. /* +8 allows to write VLA sizes below more efficiently: */
  403. unsigned command_size = strlen(command) + 8;
  404. /* strlen(command) + strlen("exec ")+1: */
  405. char buf[command_size];
  406. /* strlen(command) / 2 + 4: */
  407. char *cmd[command_size / 2];
  408. int dash;
  409. dash = (command[0] == '-' /* maybe? && command[1] == '/' */);
  410. command += dash;
  411. /* See if any special /bin/sh requiring characters are present */
  412. if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
  413. sprintf(buf, "exec %s", command); /* excluding "-" */
  414. /* NB: LIBBB_DEFAULT_LOGIN_SHELL define has leading dash */
  415. cmd[0] = (char*)(LIBBB_DEFAULT_LOGIN_SHELL + !dash);
  416. cmd[1] = (char*)"-c";
  417. cmd[2] = buf;
  418. cmd[3] = NULL;
  419. command = LIBBB_DEFAULT_LOGIN_SHELL + 1;
  420. } else {
  421. /* Convert command (char*) into cmd (char**, one word per string) */
  422. char *word, *next;
  423. int i = 0;
  424. next = strcpy(buf, command - dash); /* command including "-" */
  425. command = next + dash;
  426. while ((word = strsep(&next, " \t")) != NULL) {
  427. if (*word != '\0') { /* not two spaces/tabs together? */
  428. cmd[i] = word;
  429. i++;
  430. }
  431. }
  432. cmd[i] = NULL;
  433. }
  434. /* If we saw leading "-", it is interactive shell.
  435. * Try harder to give it a controlling tty.
  436. */
  437. if (ENABLE_FEATURE_INIT_SCTTY && dash) {
  438. /* _Attempt_ to make stdin a controlling tty. */
  439. ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/);
  440. }
  441. /* Here command never contains the dash, cmd[0] might */
  442. BB_EXECVP(command, cmd);
  443. message(L_LOG | L_CONSOLE, "can't run '%s': "STRERROR_FMT, command STRERROR_ERRNO);
  444. /* returns if execvp fails */
  445. }
  446. /* Used only by run_actions */
  447. static pid_t run(const struct init_action *a)
  448. {
  449. pid_t pid;
  450. /* Careful: don't be affected by a signal in vforked child */
  451. sigprocmask_allsigs(SIG_BLOCK);
  452. if (BB_MMU && (a->action_type & ASKFIRST))
  453. pid = fork();
  454. else
  455. pid = vfork();
  456. if (pid < 0)
  457. message(L_LOG | L_CONSOLE, "can't fork");
  458. if (pid) {
  459. sigprocmask_allsigs(SIG_UNBLOCK);
  460. return pid; /* Parent or error */
  461. }
  462. /* Child */
  463. /* Reset signal handlers that were set by the parent process */
  464. reset_sighandlers_and_unblock_sigs();
  465. /* Create a new session and make ourself the process group leader */
  466. setsid();
  467. /* Open the new terminal device */
  468. if (!open_stdio_to_tty(a->terminal))
  469. _exit(EXIT_FAILURE);
  470. /* NB: on NOMMU we can't wait for input in child, so
  471. * "askfirst" will work the same as "respawn". */
  472. if (BB_MMU && (a->action_type & ASKFIRST)) {
  473. static const char press_enter[] ALIGN1 =
  474. #ifdef CUSTOMIZED_BANNER
  475. #include CUSTOMIZED_BANNER
  476. #endif
  477. "\nPlease press Enter to activate this console. ";
  478. char c;
  479. /*
  480. * Save memory by not exec-ing anything large (like a shell)
  481. * before the user wants it. This is critical if swap is not
  482. * enabled and the system has low memory. Generally this will
  483. * be run on the second virtual console, and the first will
  484. * be allowed to start a shell or whatever an init script
  485. * specifies.
  486. */
  487. dbg_message(L_LOG, "waiting for enter to start '%s'"
  488. "(pid %d, tty '%s')\n",
  489. a->command, getpid(), a->terminal);
  490. full_write(STDOUT_FILENO, press_enter, sizeof(press_enter) - 1);
  491. while (safe_read(STDIN_FILENO, &c, 1) == 1 && c != '\n')
  492. continue;
  493. }
  494. /*
  495. * When a file named /.init_enable_core exists, setrlimit is called
  496. * before processes are spawned to set core file size as unlimited.
  497. * This is for debugging only. Don't use this is production, unless
  498. * you want core dumps lying about....
  499. */
  500. if (ENABLE_FEATURE_INIT_COREDUMPS) {
  501. if (access("/.init_enable_core", F_OK) == 0) {
  502. struct rlimit limit;
  503. limit.rlim_cur = RLIM_INFINITY;
  504. limit.rlim_max = RLIM_INFINITY;
  505. setrlimit(RLIMIT_CORE, &limit);
  506. }
  507. }
  508. /* Log the process name and args */
  509. message(L_LOG, "starting pid %u, tty '%s': '%s'",
  510. (int)getpid(), a->terminal, a->command);
  511. /* Now run it. The new program will take over this PID,
  512. * so nothing further in init.c should be run. */
  513. init_exec(a->command);
  514. /* We're still here? Some error happened. */
  515. _exit(-1);
  516. }
  517. static struct init_action *mark_terminated(pid_t pid)
  518. {
  519. struct init_action *a;
  520. if (pid > 0) {
  521. update_utmp_DEAD_PROCESS(pid);
  522. for (a = G.init_action_list; a; a = a->next) {
  523. if (a->pid == pid) {
  524. a->pid = 0;
  525. return a;
  526. }
  527. }
  528. }
  529. return NULL;
  530. }
  531. static void waitfor(pid_t pid)
  532. {
  533. /* waitfor(run(x)): protect against failed fork inside run() */
  534. if (pid <= 0)
  535. return;
  536. /* Wait for any child (prevent zombies from exiting orphaned processes)
  537. * but exit the loop only when specified one has exited. */
  538. while (1) {
  539. pid_t wpid = wait(NULL);
  540. mark_terminated(wpid);
  541. /* Unsafe. SIGTSTP handler might have wait'ed it already */
  542. /*if (wpid == pid) break;*/
  543. /* More reliable: */
  544. if (kill(pid, 0))
  545. break;
  546. }
  547. }
  548. /* Run all commands of a particular type */
  549. static void run_actions(int action_type)
  550. {
  551. struct init_action *a;
  552. for (a = G.init_action_list; a; a = a->next) {
  553. if (!(a->action_type & action_type))
  554. continue;
  555. if (a->action_type & (SYSINIT | WAIT | ONCE | CTRLALTDEL | SHUTDOWN)) {
  556. pid_t pid = run(a);
  557. if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN))
  558. waitfor(pid);
  559. }
  560. if (a->action_type & (RESPAWN | ASKFIRST)) {
  561. /* Only run stuff with pid == 0. If pid != 0,
  562. * it is already running
  563. */
  564. if (a->pid == 0)
  565. a->pid = run(a);
  566. }
  567. }
  568. }
  569. static void new_init_action(uint8_t action_type, const char *command, const char *cons)
  570. {
  571. struct init_action *a, **nextp;
  572. /* Scenario:
  573. * old inittab:
  574. * ::shutdown:umount -a -r
  575. * ::shutdown:swapoff -a
  576. * new inittab:
  577. * ::shutdown:swapoff -a
  578. * ::shutdown:umount -a -r
  579. * On reload, we must ensure entries end up in correct order.
  580. * To achieve that, if we find a matching entry, we move it
  581. * to the end.
  582. */
  583. nextp = &G.init_action_list;
  584. while ((a = *nextp) != NULL) {
  585. /* Don't enter action if it's already in the list.
  586. * This prevents losing running RESPAWNs.
  587. */
  588. if (strcmp(a->command, command) == 0
  589. && strcmp(a->terminal, cons) == 0
  590. ) {
  591. /* Remove from list */
  592. *nextp = a->next;
  593. /* Find the end of the list */
  594. while (*nextp != NULL)
  595. nextp = &(*nextp)->next;
  596. a->next = NULL;
  597. goto append;
  598. }
  599. nextp = &a->next;
  600. }
  601. a = xzalloc(sizeof(*a) + strlen(command));
  602. /* Append to the end of the list */
  603. append:
  604. *nextp = a;
  605. a->action_type = action_type;
  606. strcpy(a->command, command);
  607. safe_strncpy(a->terminal, cons, sizeof(a->terminal));
  608. dbg_message(L_LOG | L_CONSOLE, "command='%s' action=%x tty='%s'\n",
  609. a->command, a->action_type, a->terminal);
  610. }
  611. /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
  612. * then parse_inittab() simply adds in some default
  613. * actions (i.e., runs INIT_SCRIPT and then starts a pair
  614. * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
  615. * _is_ defined, but /etc/inittab is missing, this
  616. * results in the same set of default behaviors.
  617. */
  618. static void parse_inittab(void)
  619. {
  620. #if ENABLE_FEATURE_USE_INITTAB
  621. char *token[4];
  622. parser_t *parser = config_open2("/etc/inittab", fopen_for_read);
  623. if (parser == NULL)
  624. #endif
  625. {
  626. /* No inittab file - set up some default behavior */
  627. /* Sysinit */
  628. new_init_action(SYSINIT, INIT_SCRIPT, "");
  629. /* Askfirst shell on tty1-4 */
  630. new_init_action(ASKFIRST, bb_default_login_shell, "");
  631. //TODO: VC_1 instead of ""? "" is console -> ctty problems -> angry users
  632. new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
  633. new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
  634. new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
  635. /* Reboot on Ctrl-Alt-Del */
  636. new_init_action(CTRLALTDEL, "reboot", "");
  637. /* Umount all filesystems on halt/reboot */
  638. new_init_action(SHUTDOWN, "umount -a -r", "");
  639. /* Swapoff on halt/reboot */
  640. new_init_action(SHUTDOWN, "swapoff -a", "");
  641. /* Restart init when a QUIT is received */
  642. new_init_action(RESTART, "init", "");
  643. return;
  644. }
  645. #if ENABLE_FEATURE_USE_INITTAB
  646. /* optional_tty:ignored_runlevel:action:command
  647. * Delims are not to be collapsed and need exactly 4 tokens
  648. */
  649. while (config_read(parser, token, 4, 0, "#:",
  650. PARSE_NORMAL & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
  651. /* order must correspond to SYSINIT..RESTART constants */
  652. static const char actions[] ALIGN1 =
  653. "sysinit\0""wait\0""once\0""respawn\0""askfirst\0"
  654. "ctrlaltdel\0""shutdown\0""restart\0";
  655. int action;
  656. char *tty = token[0];
  657. if (!token[3]) /* less than 4 tokens */
  658. goto bad_entry;
  659. action = index_in_strings(actions, token[2]);
  660. if (action < 0 || !token[3][0]) /* token[3]: command */
  661. goto bad_entry;
  662. /* turn .*TTY -> /dev/TTY */
  663. if (tty[0]) {
  664. tty = concat_path_file("/dev/", skip_dev_pfx(tty));
  665. }
  666. new_init_action(1 << action, token[3], tty);
  667. if (tty[0])
  668. free(tty);
  669. continue;
  670. bad_entry:
  671. message(L_LOG | L_CONSOLE, "Bad inittab entry at line %d",
  672. parser->lineno);
  673. }
  674. config_close(parser);
  675. #endif
  676. }
  677. static void pause_and_low_level_reboot(unsigned magic) NORETURN;
  678. static void pause_and_low_level_reboot(unsigned magic)
  679. {
  680. pid_t pid;
  681. /* Allow time for last message to reach serial console, etc */
  682. sleep(1);
  683. /* We have to fork here, since the kernel calls do_exit(EXIT_SUCCESS)
  684. * in linux/kernel/sys.c, which can cause the machine to panic when
  685. * the init process exits... */
  686. pid = vfork();
  687. if (pid == 0) { /* child */
  688. reboot(magic);
  689. _exit(EXIT_SUCCESS);
  690. }
  691. /* Used to have "while (1) sleep(1)" here.
  692. * However, in containers reboot() call is ignored, and with that loop
  693. * we would eternally sleep here - not what we want.
  694. */
  695. waitpid(pid, NULL, 0);
  696. sleep(1); /* paranoia */
  697. _exit(EXIT_SUCCESS);
  698. }
  699. static void run_shutdown_and_kill_processes(void)
  700. {
  701. /* Run everything to be run at "shutdown". This is done _prior_
  702. * to killing everything, in case people wish to use scripts to
  703. * shut things down gracefully... */
  704. run_actions(SHUTDOWN);
  705. message(L_CONSOLE | L_LOG, "The system is going down NOW!");
  706. /* Send signals to every process _except_ pid 1 */
  707. kill(-1, SIGTERM);
  708. message(L_CONSOLE, "Sent SIG%s to all processes", "TERM");
  709. sync();
  710. sleep(1);
  711. kill(-1, SIGKILL);
  712. message(L_CONSOLE, "Sent SIG%s to all processes", "KILL");
  713. sync();
  714. /*sleep(1); - callers take care about making a pause */
  715. }
  716. /* Signal handling by init:
  717. *
  718. * For process with PID==1, on entry kernel sets all signals to SIG_DFL
  719. * and unmasks all signals. However, for process with PID==1,
  720. * default action (SIG_DFL) on any signal is to ignore it,
  721. * even for special signals SIGKILL and SIGCONT.
  722. * Also, any signal can be caught or blocked.
  723. * (but SIGSTOP is still handled specially, at least in 2.6.20)
  724. *
  725. * We install two kinds of handlers, "immediate" and "delayed".
  726. *
  727. * Immediate handlers execute at any time, even while, say, sysinit
  728. * is running.
  729. *
  730. * Delayed handlers just set a flag variable. The variable is checked
  731. * in the main loop and acted upon.
  732. *
  733. * halt/poweroff/reboot and restart have immediate handlers.
  734. * They only traverse linked list of struct action's, never modify it,
  735. * this should be safe to do even in signal handler. Also they
  736. * never return.
  737. *
  738. * SIGSTOP and SIGTSTP have immediate handlers. They just wait
  739. * for SIGCONT to happen.
  740. *
  741. * SIGHUP has a delayed handler, because modifying linked list
  742. * of struct action's from a signal handler while it is manipulated
  743. * by the program may be disastrous.
  744. *
  745. * Ctrl-Alt-Del has a delayed handler. Not a must, but allowing
  746. * it to happen even somewhere inside "sysinit" would be a bit awkward.
  747. *
  748. * There is a tiny probability that SIGHUP and Ctrl-Alt-Del will collide
  749. * and only one will be remembered and acted upon.
  750. */
  751. /* The SIGPWR/SIGUSR[12]/SIGTERM handler */
  752. static void halt_reboot_pwoff(int sig) NORETURN;
  753. static void halt_reboot_pwoff(int sig)
  754. {
  755. const char *m;
  756. unsigned rb;
  757. /* We may call run() and it unmasks signals,
  758. * including the one masked inside this signal handler.
  759. * Testcase which would start multiple reboot scripts:
  760. * while true; do reboot; done
  761. * Preventing it:
  762. */
  763. reset_sighandlers_and_unblock_sigs();
  764. run_shutdown_and_kill_processes();
  765. m = "halt";
  766. rb = RB_HALT_SYSTEM;
  767. if (sig == SIGTERM) {
  768. m = "reboot";
  769. rb = RB_AUTOBOOT;
  770. } else if (sig == SIGUSR2) {
  771. m = "poweroff";
  772. rb = RB_POWER_OFF;
  773. }
  774. message(L_CONSOLE, "Requesting system %s", m);
  775. pause_and_low_level_reboot(rb);
  776. /* not reached */
  777. }
  778. /* Handler for QUIT - exec "restart" action,
  779. * else (no such action defined) do nothing */
  780. static void exec_restart_action(void)
  781. {
  782. struct init_action *a;
  783. for (a = G.init_action_list; a; a = a->next) {
  784. if (!(a->action_type & RESTART))
  785. continue;
  786. /* Starting from here, we won't return.
  787. * Thus don't need to worry about preserving errno
  788. * and such.
  789. */
  790. reset_sighandlers_and_unblock_sigs();
  791. run_shutdown_and_kill_processes();
  792. #ifdef RB_ENABLE_CAD
  793. /* Allow Ctrl-Alt-Del to reboot the system.
  794. * This is how kernel sets it up for init, we follow suit.
  795. */
  796. reboot(RB_ENABLE_CAD); /* misnomer */
  797. #endif
  798. if (open_stdio_to_tty(a->terminal)) {
  799. dbg_message(L_CONSOLE, "Trying to re-exec %s", a->command);
  800. /* Theoretically should be safe.
  801. * But in practice, kernel bugs may leave
  802. * unkillable processes, and wait() may block forever.
  803. * Oh well. Hoping "new" init won't be too surprised
  804. * by having children it didn't create.
  805. */
  806. //while (wait(NULL) > 0)
  807. // continue;
  808. init_exec(a->command);
  809. }
  810. /* Open or exec failed */
  811. pause_and_low_level_reboot(RB_HALT_SYSTEM);
  812. /* not reached */
  813. }
  814. }
  815. /* The SIGSTOP/SIGTSTP handler
  816. * NB: inside it, all signals except SIGCONT are masked
  817. * via appropriate setup in sigaction().
  818. */
  819. static void stop_handler(int sig UNUSED_PARAM)
  820. {
  821. smallint saved_bb_got_signal;
  822. int saved_errno;
  823. saved_bb_got_signal = bb_got_signal;
  824. saved_errno = errno;
  825. signal(SIGCONT, record_signo);
  826. while (1) {
  827. pid_t wpid;
  828. if (bb_got_signal == SIGCONT)
  829. break;
  830. /* NB: this can accidentally wait() for a process
  831. * which we waitfor() elsewhere! waitfor() must have
  832. * code which is resilient against this.
  833. */
  834. wpid = wait_any_nohang(NULL);
  835. mark_terminated(wpid);
  836. sleep(1);
  837. }
  838. signal(SIGCONT, SIG_DFL);
  839. errno = saved_errno;
  840. bb_got_signal = saved_bb_got_signal;
  841. }
  842. #if ENABLE_FEATURE_USE_INITTAB
  843. static void reload_inittab(void)
  844. {
  845. struct init_action *a, **nextp;
  846. message(L_LOG, "reloading /etc/inittab");
  847. /* Disable old entries */
  848. for (a = G.init_action_list; a; a = a->next)
  849. a->action_type = 0;
  850. /* Append new entries, or modify existing entries
  851. * (incl. setting a->action_type) if cmd and device name
  852. * match new ones. End result: only entries with
  853. * a->action_type == 0 are stale.
  854. */
  855. parse_inittab();
  856. #if ENABLE_FEATURE_KILL_REMOVED
  857. /* Kill stale entries */
  858. /* Be nice and send SIGTERM first */
  859. for (a = G.init_action_list; a; a = a->next)
  860. if (a->action_type == 0 && a->pid != 0)
  861. kill(a->pid, SIGTERM);
  862. if (CONFIG_FEATURE_KILL_DELAY) {
  863. /* NB: parent will wait in NOMMU case */
  864. if ((BB_MMU ? fork() : vfork()) == 0) { /* child */
  865. sleep(CONFIG_FEATURE_KILL_DELAY);
  866. for (a = G.init_action_list; a; a = a->next)
  867. if (a->action_type == 0 && a->pid != 0)
  868. kill(a->pid, SIGKILL);
  869. _exit(EXIT_SUCCESS);
  870. }
  871. }
  872. #endif
  873. /* Remove stale entries and SYSINIT entries.
  874. * We never rerun SYSINIT entries anyway,
  875. * removing them too saves a few bytes
  876. */
  877. nextp = &G.init_action_list;
  878. while ((a = *nextp) != NULL) {
  879. /*
  880. * Why pid == 0 check?
  881. * Process can be removed from inittab and added *later*.
  882. * If we delete its entry but process still runs,
  883. * duplicate is spawned when the entry is re-added.
  884. */
  885. if ((a->action_type & ~SYSINIT) == 0 && a->pid == 0) {
  886. *nextp = a->next;
  887. free(a);
  888. } else {
  889. nextp = &a->next;
  890. }
  891. }
  892. /* Not needed: */
  893. /* run_actions(RESPAWN | ASKFIRST); */
  894. /* - we return to main loop, which does this automagically */
  895. }
  896. #endif
  897. static int check_delayed_sigs(void)
  898. {
  899. int sigs_seen = 0;
  900. while (1) {
  901. smallint sig = bb_got_signal;
  902. if (!sig)
  903. return sigs_seen;
  904. bb_got_signal = 0;
  905. sigs_seen = 1;
  906. #if ENABLE_FEATURE_USE_INITTAB
  907. if (sig == SIGHUP)
  908. reload_inittab();
  909. #endif
  910. if (sig == SIGINT)
  911. run_actions(CTRLALTDEL);
  912. if (sig == SIGQUIT) {
  913. exec_restart_action();
  914. /* returns only if no restart action defined */
  915. }
  916. if ((1 << sig) & (0
  917. #ifdef SIGPWR
  918. + (1 << SIGPWR)
  919. #endif
  920. + (1 << SIGUSR1)
  921. + (1 << SIGUSR2)
  922. + (1 << SIGTERM)
  923. )) {
  924. halt_reboot_pwoff(sig);
  925. }
  926. }
  927. }
  928. #if DEBUG_SEGV_HANDLER
  929. static
  930. void handle_sigsegv(int sig, siginfo_t *info, void *ucontext)
  931. {
  932. long ip;
  933. ucontext_t *uc;
  934. uc = ucontext;
  935. ip = uc->uc_mcontext.gregs[REG_EIP];
  936. fdprintf(2, "signal:%d address:0x%lx ip:0x%lx\n",
  937. sig,
  938. /* this is void*, but using %p would print "(null)"
  939. * even for ptrs which are not exactly 0, but, say, 0x123:
  940. */
  941. (long)info->si_addr,
  942. ip);
  943. {
  944. /* glibc extension */
  945. void *array[50];
  946. int size;
  947. size = backtrace(array, 50);
  948. backtrace_symbols_fd(array, size, 2);
  949. }
  950. for (;;) sleep(9999);
  951. }
  952. #endif
  953. static void sleep_much(void)
  954. {
  955. sleep(30 * 24*60*60);
  956. }
  957. int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  958. int init_main(int argc UNUSED_PARAM, char **argv)
  959. {
  960. INIT_G();
  961. if (argv[1] && strcmp(argv[1], "-q") == 0) {
  962. return kill(1, SIGHUP);
  963. }
  964. #if DEBUG_SEGV_HANDLER
  965. {
  966. struct sigaction sa;
  967. memset(&sa, 0, sizeof(sa));
  968. sa.sa_sigaction = handle_sigsegv;
  969. sa.sa_flags = SA_SIGINFO;
  970. sigaction(SIGSEGV, &sa, NULL);
  971. sigaction(SIGILL, &sa, NULL);
  972. sigaction(SIGFPE, &sa, NULL);
  973. sigaction(SIGBUS, &sa, NULL);
  974. }
  975. #endif
  976. if (!DEBUG_INIT) {
  977. /* Some users send poweroff signals to init VERY early.
  978. * To handle this, mask signals early,
  979. * and unmask them only after signal handlers are installed.
  980. */
  981. sigprocmask_allsigs(SIG_BLOCK);
  982. /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
  983. if (getpid() != 1
  984. && (!ENABLE_LINUXRC || applet_name[0] != 'l') /* not linuxrc? */
  985. ) {
  986. bb_simple_error_msg_and_die("must be run as PID 1");
  987. }
  988. #ifdef RB_DISABLE_CAD
  989. /* Turn off rebooting via CTL-ALT-DEL - we get a
  990. * SIGINT on CAD so we can shut things down gracefully... */
  991. reboot(RB_DISABLE_CAD); /* misnomer */
  992. #endif
  993. }
  994. /* If, say, xmalloc would ever die, we don't want to oops kernel
  995. * by exiting.
  996. * NB: we set die_func *after* PID 1 check and bb_show_usage.
  997. * Otherwise, for example, "init u" ("please rexec yourself"
  998. * command for sysvinit) will show help text (which isn't too bad),
  999. * *and sleep forever* (which is bad!)
  1000. */
  1001. die_func = sleep_much;
  1002. /* Figure out where the default console should be */
  1003. console_init();
  1004. set_sane_term();
  1005. xchdir("/");
  1006. setsid();
  1007. /* Make sure environs is set to something sane */
  1008. putenv((char *) "HOME=/");
  1009. putenv((char *) bb_PATH_root_path);
  1010. putenv((char *) "SHELL=/bin/sh");
  1011. putenv((char *) "USER=root"); /* needed? why? */
  1012. if (argv[1])
  1013. xsetenv("RUNLEVEL", argv[1]);
  1014. #if !ENABLE_FEATURE_INIT_QUIET
  1015. /* Hello world */
  1016. message(L_CONSOLE | L_LOG, "init started: %s", bb_banner);
  1017. #endif
  1018. /* Check if we are supposed to be in single user mode */
  1019. if (argv[1]
  1020. && (strcmp(argv[1], "single") == 0 || strcmp(argv[1], "-s") == 0 || LONE_CHAR(argv[1], '1'))
  1021. ) {
  1022. /* ??? shouldn't we set RUNLEVEL="b" here? */
  1023. /* Start a shell on console */
  1024. new_init_action(RESPAWN, bb_default_login_shell, "");
  1025. } else {
  1026. /* Not in single user mode - see what inittab says */
  1027. /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
  1028. * then parse_inittab() simply adds in some default
  1029. * actions (i.e., INIT_SCRIPT and a pair
  1030. * of "askfirst" shells) */
  1031. parse_inittab();
  1032. }
  1033. #if ENABLE_SELINUX
  1034. if (getenv("SELINUX_INIT") == NULL) {
  1035. int enforce = 0;
  1036. putenv((char*)"SELINUX_INIT=YES");
  1037. if (selinux_init_load_policy(&enforce) == 0) {
  1038. BB_EXECVP(argv[0], argv);
  1039. } else if (enforce > 0) {
  1040. /* SELinux in enforcing mode but load_policy failed */
  1041. message(L_CONSOLE, "can't load SELinux Policy. "
  1042. "Machine is in enforcing mode. Halting now.");
  1043. return EXIT_FAILURE;
  1044. }
  1045. }
  1046. #endif
  1047. if (ENABLE_FEATURE_INIT_MODIFY_CMDLINE) {
  1048. /* Make the command line just say "init" - that's all, nothing else */
  1049. strncpy(argv[0], "init", strlen(argv[0]));
  1050. /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
  1051. while (*++argv)
  1052. nuke_str(*argv);
  1053. }
  1054. /* Set up signal handlers */
  1055. if (!DEBUG_INIT) {
  1056. struct sigaction sa;
  1057. /* Stop handler must allow only SIGCONT inside itself */
  1058. memset(&sa, 0, sizeof(sa));
  1059. sigfillset(&sa.sa_mask);
  1060. sigdelset(&sa.sa_mask, SIGCONT);
  1061. sa.sa_handler = stop_handler;
  1062. /* NB: sa_flags doesn't have SA_RESTART.
  1063. * It must be able to interrupt wait().
  1064. */
  1065. sigaction_set(SIGTSTP, &sa); /* pause */
  1066. /* Does not work as intended, at least in 2.6.20.
  1067. * SIGSTOP is simply ignored by init:
  1068. */
  1069. sigaction_set(SIGSTOP, &sa); /* pause */
  1070. /* These signals must interrupt wait(),
  1071. * setting handler without SA_RESTART flag.
  1072. */
  1073. bb_signals_recursive_norestart(0
  1074. + (1 << SIGINT) /* Ctrl-Alt-Del */
  1075. + (1 << SIGQUIT) /* re-exec another init */
  1076. #ifdef SIGPWR
  1077. + (1 << SIGPWR) /* halt */
  1078. #endif
  1079. + (1 << SIGUSR1) /* halt */
  1080. + (1 << SIGTERM) /* reboot */
  1081. + (1 << SIGUSR2) /* poweroff */
  1082. #if ENABLE_FEATURE_USE_INITTAB
  1083. + (1 << SIGHUP) /* reread /etc/inittab */
  1084. #endif
  1085. , record_signo);
  1086. sigprocmask_allsigs(SIG_UNBLOCK);
  1087. }
  1088. /* Now run everything that needs to be run */
  1089. /* First run the sysinit command */
  1090. run_actions(SYSINIT);
  1091. check_delayed_sigs();
  1092. /* Next run anything that wants to block */
  1093. run_actions(WAIT);
  1094. check_delayed_sigs();
  1095. /* Next run anything to be run only once */
  1096. run_actions(ONCE);
  1097. /* Now run the looping stuff for the rest of forever.
  1098. */
  1099. while (1) {
  1100. int maybe_WNOHANG;
  1101. maybe_WNOHANG = check_delayed_sigs();
  1102. /* (Re)run the respawn/askfirst stuff */
  1103. run_actions(RESPAWN | ASKFIRST);
  1104. maybe_WNOHANG |= check_delayed_sigs();
  1105. /* Don't consume all CPU time - sleep a bit */
  1106. sleep(1);
  1107. maybe_WNOHANG |= check_delayed_sigs();
  1108. /* Wait for any child process(es) to exit.
  1109. *
  1110. * If check_delayed_sigs above reported that a signal
  1111. * was caught, wait will be nonblocking. This ensures
  1112. * that if SIGHUP has reloaded inittab, respawn and askfirst
  1113. * actions will not be delayed until next child death.
  1114. */
  1115. if (maybe_WNOHANG)
  1116. maybe_WNOHANG = WNOHANG;
  1117. while (1) {
  1118. pid_t wpid;
  1119. struct init_action *a;
  1120. /* If signals happen _in_ the wait, they interrupt it,
  1121. * bb_signals_recursive_norestart set them up that way
  1122. */
  1123. wpid = waitpid(-1, NULL, maybe_WNOHANG);
  1124. if (wpid <= 0)
  1125. break;
  1126. a = mark_terminated(wpid);
  1127. if (a) {
  1128. message(L_LOG, "process '%s' (pid %d) exited. "
  1129. "Scheduling for restart.",
  1130. a->command, wpid);
  1131. }
  1132. /* See if anyone else is waiting to be reaped */
  1133. maybe_WNOHANG = WNOHANG;
  1134. }
  1135. } /* while (1) */
  1136. }
  1137. //usage:#define linuxrc_trivial_usage NOUSAGE_STR
  1138. //usage:#define linuxrc_full_usage ""
  1139. //usage:#define init_trivial_usage
  1140. //usage: ""
  1141. //usage:#define init_full_usage "\n\n"
  1142. //usage: "Init is the first process started during boot. It never exits."
  1143. //usage: IF_FEATURE_USE_INITTAB(
  1144. //usage: "\n""It (re)spawns children according to /etc/inittab."
  1145. //usage: )
  1146. //usage: IF_NOT_FEATURE_USE_INITTAB(
  1147. //usage: "\n""This version of init doesn't use /etc/inittab,"
  1148. //usage: "\n""has fixed set of processed to run."
  1149. //usage: )
  1150. //usage:
  1151. //usage:#define init_notes_usage
  1152. //usage: "This version of init is designed to be run only by the kernel.\n"
  1153. //usage: "\n"
  1154. //usage: "BusyBox init doesn't support multiple runlevels. The runlevels field of\n"
  1155. //usage: "the /etc/inittab file is completely ignored by BusyBox init. If you want\n"
  1156. //usage: "runlevels, use sysvinit.\n"
  1157. //usage: "\n"
  1158. //usage: "BusyBox init works just fine without an inittab. If no inittab is found,\n"
  1159. //usage: "it has the following default behavior:\n"
  1160. //usage: "\n"
  1161. //usage: " ::sysinit:/etc/init.d/rcS\n"
  1162. //usage: " ::askfirst:/bin/sh\n"
  1163. //usage: " ::ctrlaltdel:/sbin/reboot\n"
  1164. //usage: " ::shutdown:/sbin/swapoff -a\n"
  1165. //usage: " ::shutdown:/bin/umount -a -r\n"
  1166. //usage: " ::restart:/sbin/init\n"
  1167. //usage: " tty2::askfirst:/bin/sh\n"
  1168. //usage: " tty3::askfirst:/bin/sh\n"
  1169. //usage: " tty4::askfirst:/bin/sh\n"
  1170. //usage: "\n"
  1171. //usage: "If you choose to use an /etc/inittab file, the inittab entry format is as follows:\n"
  1172. //usage: "\n"
  1173. //usage: " <id>:<runlevels>:<action>:<process>\n"
  1174. //usage: "\n"
  1175. //usage: " <id>:\n"
  1176. //usage: "\n"
  1177. //usage: " WARNING: This field has a non-traditional meaning for BusyBox init!\n"
  1178. //usage: " The id field is used by BusyBox init to specify the controlling tty for\n"
  1179. //usage: " the specified process to run on. The contents of this field are\n"
  1180. //usage: " appended to \"/dev/\" and used as-is. There is no need for this field to\n"
  1181. //usage: " be unique, although if it isn't you may have strange results. If this\n"
  1182. //usage: " field is left blank, then the init's stdin/out will be used.\n"
  1183. //usage: "\n"
  1184. //usage: " <runlevels>:\n"
  1185. //usage: "\n"
  1186. //usage: " The runlevels field is completely ignored.\n"
  1187. //usage: "\n"
  1188. //usage: " <action>:\n"
  1189. //usage: "\n"
  1190. //usage: " Valid actions include: sysinit, respawn, askfirst, wait,\n"
  1191. //usage: " once, restart, ctrlaltdel, and shutdown.\n"
  1192. //usage: "\n"
  1193. //usage: " The available actions can be classified into two groups: actions\n"
  1194. //usage: " that are run only once, and actions that are re-run when the specified\n"
  1195. //usage: " process exits.\n"
  1196. //usage: "\n"
  1197. //usage: " Run only-once actions:\n"
  1198. //usage: "\n"
  1199. //usage: " 'sysinit' is the first item run on boot. init waits until all\n"
  1200. //usage: " sysinit actions are completed before continuing. Following the\n"
  1201. //usage: " completion of all sysinit actions, all 'wait' actions are run.\n"
  1202. //usage: " 'wait' actions, like 'sysinit' actions, cause init to wait until\n"
  1203. //usage: " the specified task completes. 'once' actions are asynchronous,\n"
  1204. //usage: " therefore, init does not wait for them to complete. 'restart' is\n"
  1205. //usage: " the action taken to restart the init process. By default this should\n"
  1206. //usage: " simply run /sbin/init, but can be a script which runs pivot_root or it\n"
  1207. //usage: " can do all sorts of other interesting things. The 'ctrlaltdel' init\n"
  1208. //usage: " actions are run when the system detects that someone on the system\n"
  1209. //usage: " console has pressed the CTRL-ALT-DEL key combination. Typically one\n"
  1210. //usage: " wants to run 'reboot' at this point to cause the system to reboot.\n"
  1211. //usage: " Finally the 'shutdown' action specifies the actions to taken when\n"
  1212. //usage: " init is told to reboot. Unmounting filesystems and disabling swap\n"
  1213. //usage: " is a very good here.\n"
  1214. //usage: "\n"
  1215. //usage: " Run repeatedly actions:\n"
  1216. //usage: "\n"
  1217. //usage: " 'respawn' actions are run after the 'once' actions. When a process\n"
  1218. //usage: " started with a 'respawn' action exits, init automatically restarts\n"
  1219. //usage: " it. Unlike sysvinit, BusyBox init does not stop processes from\n"
  1220. //usage: " respawning out of control. The 'askfirst' actions acts just like\n"
  1221. //usage: " respawn, except that before running the specified process it\n"
  1222. //usage: " displays the line \"Please press Enter to activate this console.\"\n"
  1223. //usage: " and then waits for the user to press enter before starting the\n"
  1224. //usage: " specified process.\n"
  1225. //usage: "\n"
  1226. //usage: " Unrecognized actions (like initdefault) will cause init to emit an\n"
  1227. //usage: " error message, and then go along with its business. All actions are\n"
  1228. //usage: " run in the order they appear in /etc/inittab.\n"
  1229. //usage: "\n"
  1230. //usage: " <process>:\n"
  1231. //usage: "\n"
  1232. //usage: " Specifies the process to be executed and its command line.\n"
  1233. //usage: "\n"
  1234. //usage: "Example /etc/inittab file:\n"
  1235. //usage: "\n"
  1236. //usage: " # This is run first except when booting in single-user mode\n"
  1237. //usage: " #\n"
  1238. //usage: " ::sysinit:/etc/init.d/rcS\n"
  1239. //usage: " \n"
  1240. //usage: " # /bin/sh invocations on selected ttys\n"
  1241. //usage: " #\n"
  1242. //usage: " # Start an \"askfirst\" shell on the console (whatever that may be)\n"
  1243. //usage: " ::askfirst:-/bin/sh\n"
  1244. //usage: " # Start an \"askfirst\" shell on /dev/tty2-4\n"
  1245. //usage: " tty2::askfirst:-/bin/sh\n"
  1246. //usage: " tty3::askfirst:-/bin/sh\n"
  1247. //usage: " tty4::askfirst:-/bin/sh\n"
  1248. //usage: " \n"
  1249. //usage: " # /sbin/getty invocations for selected ttys\n"
  1250. //usage: " #\n"
  1251. //usage: " tty4::respawn:/sbin/getty 38400 tty4\n"
  1252. //usage: " tty5::respawn:/sbin/getty 38400 tty5\n"
  1253. //usage: " \n"
  1254. //usage: " \n"
  1255. //usage: " # Example of how to put a getty on a serial line (for a terminal)\n"
  1256. //usage: " #\n"
  1257. //usage: " #::respawn:/sbin/getty -L ttyS0 9600 vt100\n"
  1258. //usage: " #::respawn:/sbin/getty -L ttyS1 9600 vt100\n"
  1259. //usage: " #\n"
  1260. //usage: " # Example how to put a getty on a modem line\n"
  1261. //usage: " #::respawn:/sbin/getty 57600 ttyS2\n"
  1262. //usage: " \n"
  1263. //usage: " # Stuff to do when restarting the init process\n"
  1264. //usage: " ::restart:/sbin/init\n"
  1265. //usage: " \n"
  1266. //usage: " # Stuff to do before rebooting\n"
  1267. //usage: " ::ctrlaltdel:/sbin/reboot\n"
  1268. //usage: " ::shutdown:/bin/umount -a -r\n"
  1269. //usage: " ::shutdown:/sbin/swapoff -a\n"