blob: 411b738f066eaf0343d808cce5f9e998012660d3 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landley3ea05d32006-03-21 18:20:40 +00002/* Copyright 2005 Rob Landley <rob@landley.net>
3 *
4 * Switch from rootfs to another filesystem as the root of the mount tree.
5 *
6 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
7 */
Rob Landley0f34a822005-10-27 22:55:50 +00008
Rob Landley22d26fc2006-06-15 15:49:36 +00009#include "busybox.h"
Rob Landley0f34a822005-10-27 22:55:50 +000010#include <fcntl.h>
Rob Landley094b9f72006-05-10 17:41:21 +000011#include <string.h>
Rob Landley0f34a822005-10-27 22:55:50 +000012#include <sys/vfs.h>
13#include <unistd.h>
14
Rob Landley0f34a822005-10-27 22:55:50 +000015
16// Make up for header deficiencies.
17
18#ifndef RAMFS_MAGIC
19#define RAMFS_MAGIC 0x858458f6
20#endif
21
22#ifndef TMPFS_MAGIC
23#define TMPFS_MAGIC 0x01021994
24#endif
25
26#ifndef MS_MOVE
27#define MS_MOVE 8192
28#endif
29
30dev_t rootdev;
31
32// Recursively delete contents of rootfs.
33
34static void delete_contents(char *directory)
35{
36 DIR *dir;
37 struct dirent *d;
38 struct stat st;
39
40 // Don't descend into other filesystems
Rob Landleye2b428c2006-03-20 01:43:29 +000041 if (lstat(directory,&st) || st.st_dev != rootdev) return;
Rob Landley0f34a822005-10-27 22:55:50 +000042
43 // Recursively delete the contents of directories.
44 if (S_ISDIR(st.st_mode)) {
45 if((dir = opendir(directory))) {
46 while ((d = readdir(dir))) {
47 char *newdir=d->d_name;
48
49 // Skip . and ..
50 if(*newdir=='.' && (!newdir[1] || (newdir[1]=='.' && !newdir[2])))
51 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000052
Rob Landley0f34a822005-10-27 22:55:50 +000053 // Recurse to delete contents
54 newdir = alloca(strlen(directory) + strlen(d->d_name) + 2);
55 sprintf(newdir, "%s/%s", directory, d->d_name);
56 delete_contents(newdir);
57 }
58 closedir(dir);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000059
Rob Landley0f34a822005-10-27 22:55:50 +000060 // Directory should now be empty. Zap it.
Rob Landley5d84c232005-12-20 17:25:51 +000061 rmdir(directory);
Rob Landley0f34a822005-10-27 22:55:50 +000062 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000063
Rob Landley0f34a822005-10-27 22:55:50 +000064 // It wasn't a directory. Zap it.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000065
Rob Landley5d84c232005-12-20 17:25:51 +000066 } else unlink(directory);
Rob Landley0f34a822005-10-27 22:55:50 +000067}
68
69int switch_root_main(int argc, char *argv[])
70{
Rob Landley5d84c232005-12-20 17:25:51 +000071 char *newroot, *console=NULL;
Rob Landley0f34a822005-10-27 22:55:50 +000072 struct stat st1, st2;
73 struct statfs stfs;
74
75 // Parse args (-c console)
76
77 bb_opt_complementally="-2";
78 bb_getopt_ulflags(argc,argv,"c:",&console);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000079
Rob Landley0f34a822005-10-27 22:55:50 +000080 // Change to new root directory and verify it's a different fs.
81
82 newroot=argv[optind++];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000083
Rob Landleye2b428c2006-03-20 01:43:29 +000084 if (chdir(newroot) || lstat(".", &st1) || lstat("/", &st2) ||
Rob Landley0f34a822005-10-27 22:55:50 +000085 st1.st_dev == st2.st_dev)
86 {
87 bb_error_msg_and_die("bad newroot %s",newroot);
88 }
89 rootdev=st2.st_dev;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090
Rob Landley0f34a822005-10-27 22:55:50 +000091 // Additional sanity checks: we're about to rm -rf /, so be REALLY SURE
92 // we mean it. (I could make this a CONFIG option, but I would get email
93 // from all the people who WILL eat their filesystemss.)
94
Rob Landleye2b428c2006-03-20 01:43:29 +000095 if (lstat("/init", &st1) || !S_ISREG(st1.st_mode) || statfs("/", &stfs) ||
Rob Landley0f34a822005-10-27 22:55:50 +000096 (stfs.f_type != RAMFS_MAGIC && stfs.f_type != TMPFS_MAGIC) ||
97 getpid() != 1)
98 {
99 bb_error_msg_and_die("not rootfs");
100 }
101
102 // Zap everything out of rootdev
Rob Landley5d84c232005-12-20 17:25:51 +0000103
Rob Landley0f34a822005-10-27 22:55:50 +0000104 delete_contents("/");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000105
Rob Landley5d84c232005-12-20 17:25:51 +0000106 // Overmount / with newdir and chroot into it. The chdir is needed to
107 // recalculate "." and ".." links.
Rob Landley0f34a822005-10-27 22:55:50 +0000108
Rob Landley5d84c232005-12-20 17:25:51 +0000109 if (mount(".", "/", NULL, MS_MOVE, NULL) || chroot(".") || chdir("/"))
Rob Landley0f34a822005-10-27 22:55:50 +0000110 bb_error_msg_and_die("moving root");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000111
Rob Landley5d84c232005-12-20 17:25:51 +0000112 // If a new console specified, redirect stdin/stdout/stderr to that.
113
114 if (console) {
115 close(0);
116 if(open(console, O_RDWR) < 0)
117 bb_error_msg_and_die("Bad console '%s'",console);
118 dup2(0, 1);
119 dup2(0, 2);
120 }
Rob Landley0f34a822005-10-27 22:55:50 +0000121
122 // Exec real init. (This is why we must be pid 1.)
Rob Landleyd05981e2006-02-14 07:33:45 +0000123 execv(argv[optind],argv+optind);
Rob Landley0f34a822005-10-27 22:55:50 +0000124 bb_error_msg_and_die("Bad init '%s'",argv[optind]);
125}