summaryrefslogtreecommitdiffstats
path: root/sys-utils/switch_root.c
diff options
context:
space:
mode:
authorKarel Zak2009-11-20 15:11:59 +0100
committerKarel Zak2009-11-20 15:11:59 +0100
commit558417e8c8975b5c3d4adc3e2d5f0bf407988f36 (patch)
treedf8bb4152b52e1ebe774d09f830f58da0210c0f7 /sys-utils/switch_root.c
parentlast: fix utmp.ut_time usage (diff)
downloadkernel-qcow2-util-linux-558417e8c8975b5c3d4adc3e2d5f0bf407988f36.tar.gz
kernel-qcow2-util-linux-558417e8c8975b5c3d4adc3e2d5f0bf407988f36.tar.xz
kernel-qcow2-util-linux-558417e8c8975b5c3d4adc3e2d5f0bf407988f36.zip
Revert "switch_root: add subroot support"
This reverts commit a692a8745941a192528c5e2a05de97155ba586f9. On Wed, Nov 18, 2009 at 03:33:12PM +0000, Daniel Drake wrote: > Booting into a system this way just leads to problems because > you cannot remount the root read-only at shutdown (leading to unclean > shutdowns). > Miklos Szeredi pointed out a trick to turn any directory into a > mount point which avoids this problem. Therefore we can simplify > switch_root again and simply document that its users should set
Diffstat (limited to 'sys-utils/switch_root.c')
-rw-r--r--sys-utils/switch_root.c81
1 files changed, 5 insertions, 76 deletions
diff --git a/sys-utils/switch_root.c b/sys-utils/switch_root.c
index 174e667c8..c43225da2 100644
--- a/sys-utils/switch_root.c
+++ b/sys-utils/switch_root.c
@@ -33,7 +33,6 @@
#include <ctype.h>
#include <dirent.h>
#include <err.h>
-#include <libgen.h>
#ifndef MS_MOVE
#define MS_MOVE 8192
@@ -109,58 +108,13 @@ done:
return rc;
}
-/* find the enclosing mount point of a path, by examining the backing device
- * of parent directories until we reach / or find a parent with a differing
- * device. Result must be freed.
- */
-static char *get_parent_mount(const char *path)
-{
- struct stat sb;
- char *dir;
- char tmp[PATH_MAX];
- dev_t inner_dev;
-
- if (stat(path, &sb) != 0) {
- warn("failed to stat %s", path);
- return NULL;
- }
-
- inner_dev = sb.st_dev;
- dir = strdup(path);
-
- while (dir) {
- char *parent;
-
- strncpy(tmp, dir, PATH_MAX);
- tmp[PATH_MAX - 1] = '\0';
- parent = dirname(tmp);
-
- if (stat(parent, &sb) != 0) {
- warn("failed to stat %s", parent);
- return NULL;
- }
- if (sb.st_dev != inner_dev)
- return dir;
-
- strncpy(dir, parent, PATH_MAX);
- dir[PATH_MAX - 1] = '\0';
-
- /* maybe we've reached / */
- if (*dir == '/' && !*(dir + 1))
- return dir;
- }
- return NULL;
-}
-
static int switchroot(const char *newroot)
{
/* Don't try to unmount the old "/", there's no way to do it. */
const char *umounts[] = { "/dev", "/proc", "/sys", NULL };
int i;
- int cfd, rc = -1;
+ int cfd;
pid_t pid;
- const char *chroot_path = NULL;
- char *newroot_mnt;
for (i = 0; umounts[i] != NULL; i++) {
char newmount[PATH_MAX];
@@ -175,43 +129,21 @@ static int switchroot(const char *newroot)
}
}
- newroot_mnt = get_parent_mount(newroot);
- if (newroot_mnt && strcmp(newroot, newroot_mnt)) {
- /* newroot is not a mount point, so we have to MS_MOVE the
- * parent mount point and then chroot in to the "subroot"
- */
- chroot_path = newroot + strlen(newroot_mnt);
- newroot = newroot_mnt;
- }
-
if (chdir(newroot)) {
warn("failed to change directory to %s", newroot);
- goto done;
+ return -1;
}
cfd = open("/", O_RDONLY);
if (mount(newroot, "/", NULL, MS_MOVE, NULL) < 0) {
warn("failed to mount moving %s to /", newroot);
- goto done;
+ return -1;
}
- /* move to the real root of the device */
if (chroot(".")) {
warn("failed to change root");
- goto done;
- }
-
- /* move to the subdirectory on the root device (subroot) */
- if (chroot_path) {
- if (chdir(chroot_path)) {
- warn("failed to chdir to subroot %s", chroot_path);
- goto done;
- }
- if (chroot(".")) {
- warn("failed to change root to subroot %s", chroot_path);
- goto done;
- }
+ return -1;
}
if (cfd >= 0) {
@@ -223,10 +155,7 @@ static int switchroot(const char *newroot)
}
close(cfd);
}
- rc = 0;
-done:
- free(newroot_mnt);
- return rc;
+ return 0;
}
static void usage(FILE *output)