init.c 41 KB

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