blob: 1dfa20deb58e0b01dcdf5627267c4ccdfe0cd421 [file] [log] [blame]
Rob Landley787eac52012-09-08 01:27:54 -05001/* switch_root.c - Switch from rootfs/initramfs to another filesystem
2 *
3 * Copyright 2005 Rob Landley <rob@landley.net>
4
5USE_SWITCH_ROOT(NEWTOY(switch_root, "<2c:h", TOYFLAG_SBIN))
6
7config SWITCH_ROOT
Rob Landley7aa651a2012-11-13 17:14:08 -06008 bool "switch_root"
9 default y
10 help
11 usage: switch_root [-c /dev/console] NEW_ROOT NEW_INIT...
Rob Landley787eac52012-09-08 01:27:54 -050012
Rob Landley7aa651a2012-11-13 17:14:08 -060013 Use from PID 1 under initramfs to free initramfs, chroot to NEW_ROOT,
14 and exec NEW_INIT.
Rob Landley787eac52012-09-08 01:27:54 -050015
Rob Landley7aa651a2012-11-13 17:14:08 -060016 -c Redirect console to device in NEW_ROOT
17 -h Hang instead of exiting on failure (avoids kernel panic)
Rob Landley787eac52012-09-08 01:27:54 -050018*/
19
Rob Landleyc0e56ed2012-10-08 00:02:30 -050020#define FOR_switch_root
Rob Landley787eac52012-09-08 01:27:54 -050021#include "toys.h"
22#include <sys/vfs.h>
23
Rob Landleyc0e56ed2012-10-08 00:02:30 -050024GLOBALS(
Rob Landley7aa651a2012-11-13 17:14:08 -060025 char *console;
Rob Landley787eac52012-09-08 01:27:54 -050026
Rob Landley7aa651a2012-11-13 17:14:08 -060027 dev_t rootdev;
Rob Landley787eac52012-09-08 01:27:54 -050028)
29
Rob Landley787eac52012-09-08 01:27:54 -050030static int del_node(struct dirtree *node)
31{
Rob Landley7aa651a2012-11-13 17:14:08 -060032 if (node->st.st_dev == TT.rootdev && dirtree_notdotdot(node)) {
33 int flag = 0;
34 if (S_ISDIR(node->st.st_mode)) {
35 if (node->data != -1) return DIRTREE_COMEAGAIN;
36 flag = AT_REMOVEDIR;
37 }
38 unlinkat(dirtree_parentfd(node), node->name, flag);
39 }
Rob Landley787eac52012-09-08 01:27:54 -050040
Rob Landley7aa651a2012-11-13 17:14:08 -060041 return 0;
Rob Landley787eac52012-09-08 01:27:54 -050042}
43
44void switch_root_main(void)
45{
Rob Landley7aa651a2012-11-13 17:14:08 -060046 char *newroot = *toys.optargs, **cmdline = toys.optargs+1;
47 struct stat st1, st2;
48 struct statfs stfs;
49 int console = console; // gcc's "may be used" warnings are broken.
Rob Landley787eac52012-09-08 01:27:54 -050050
Rob Landley7aa651a2012-11-13 17:14:08 -060051 if (getpid() != 1) error_exit("not pid 1");
Rob Landley787eac52012-09-08 01:27:54 -050052
Rob Landley7aa651a2012-11-13 17:14:08 -060053 // Root filesystem we're leaving must be ramfs or tmpfs
54 if (statfs("/", &stfs) ||
55 (stfs.f_type != 0x858458f6 && stfs.f_type != 0x01021994))
56 {
57 error_msg("not ramfs");
58 goto panic;
59 }
Rob Landley787eac52012-09-08 01:27:54 -050060
Rob Landley7aa651a2012-11-13 17:14:08 -060061 // New directory must be different filesystem instance
62 if (chdir(newroot) || stat(".", &st1) || stat("/", &st2) ||
63 st1.st_dev == st2.st_dev)
64 {
65 error_msg("bad newroot '%s'", newroot);
66 goto panic;
67 }
68 TT.rootdev=st2.st_dev;
Rob Landley787eac52012-09-08 01:27:54 -050069
Rob Landley7aa651a2012-11-13 17:14:08 -060070 // init program must exist and be an executable file
71 if (stat("init", &st1) || !S_ISREG(st1.st_mode) || !(st1.st_mode&0100)) {
72 error_msg("bad init");
73 goto panic;
74 }
Rob Landley787eac52012-09-08 01:27:54 -050075
Rob Landley7aa651a2012-11-13 17:14:08 -060076 if (TT.console && -1 == (console = open(TT.console, O_RDWR))) {
77 perror_msg("bad console '%s'", TT.console);
78 goto panic;
79 }
Rob Landley787eac52012-09-08 01:27:54 -050080
Rob Landley7aa651a2012-11-13 17:14:08 -060081 // Ok, enough safety checks: wipe root partition.
82 dirtree_read("/", del_node);
Rob Landley787eac52012-09-08 01:27:54 -050083
Rob Landley7aa651a2012-11-13 17:14:08 -060084 if (TT.console) {
85 int i;
86 for (i=0; i<3; i++) if (console != i) dup2(console, i);
87 if (console>2) close(console);
88 }
89 execv(*cmdline, cmdline);
90 perror_msg("Failed to exec '%s'", *cmdline);
Rob Landley787eac52012-09-08 01:27:54 -050091panic:
Rob Landley7aa651a2012-11-13 17:14:08 -060092 if (toys.optflags & FLAG_h) for (;;) wait(NULL);
Rob Landley787eac52012-09-08 01:27:54 -050093}