switch-root.c revision d054f0a4d451120c26494263fc4dc175bfd405b1
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2012 Harald Hoyer, Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <stdbool.h>
#include <stdio.h>
#include <unistd.h>
#include "base-filesystem.h"
#include "fd-util.h"
#include "log.h"
#include "missing.h"
#include "mkdir.h"
#include "path-util.h"
#include "rm-rf.h"
#include "stdio-util.h"
#include "string-util.h"
#include "switch-root.h"
#include "user-util.h"
#include "util.h"
int switch_root(const char *new_root, const char *oldroot, bool detach_oldroot, unsigned long mountflags) {
static const char move_mounts[] =
"/dev\0"
"/proc\0"
"/sys\0"
"/run\0";
struct stat new_root_stat;
bool old_root_remove;
const char *i, *temporary_old_root;
return 0;
old_root_remove = in_initrd();
/* Work-around for kernel design: the kernel refuses switching
* root if any file systems are mounted MS_SHARED. Hence
* remount them MS_PRIVATE here as a work-around.
*
NULSTR_FOREACH(i, move_mounts) {
/* Mount point seems to be mounted already or
* stat failed. Unmount the old mount
* point. */
if (umount2(i, MNT_DETACH) < 0)
continue;
}
if (mountflags & MS_MOVE) {
}
if (mountflags & MS_BIND)
}
}
/* Do not fail, if base_filesystem_create() fails. Not all
* switch roots are like base_filesystem_create() wants them
* to look like. They might even boot, if they are RO and
* don't have the FS layout. Just ignore the error and
* switch_root() nevertheless. */
if (old_root_remove) {
if (old_root_fd < 0)
}
/* We first try a pivot_root() so that we can umount the old
* root dir. In many cases (i.e. where rootfs is /), that's
* not possible however, and hence we simply overmount root */
/* Immediately get rid of the old root, if detach_oldroot is set.
* Since we are running off it we need to do this lazily. */
if (chroot(".") < 0)
if (chdir("/") < 0)
if (old_root_fd >= 0) {
else {
old_root_fd = -1;
}
}
return 0;
}