man-pages/man2/pivot_root.2

143 lines
4.2 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright (C) 2000 by Werner Almesberger
.\" May be distributed under GPL
.\"
.\" Written 2000-02-23 by Werner Almesberger
2007-09-20 06:52:22 +00:00
.\" Modified 2004-06-17 Michael Kerrisk <mtk.manpages@gmail.com>
2004-11-03 13:51:07 +00:00
.\"
2007-05-30 05:36:26 +00:00
.TH PIVOT_ROOT 2 2007-06-01 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
pivot_root \- change the root file system
.SH SYNOPSIS
.BI "int pivot_root(const char *" new_root ", const char *" put_old );
.SH DESCRIPTION
.BR pivot_root ()
2007-12-27 16:01:37 +00:00
moves the root file system of the calling process to the
2004-11-03 13:51:07 +00:00
directory \fIput_old\fP and makes \fInew_root\fP the new root file system
2007-12-27 16:01:37 +00:00
of the calling process.
2004-11-03 13:51:07 +00:00
.\"
.\" The
.\" .B CAP_SYS_ADMIN
.\" capability is required.
The typical use of
.BR pivot_root ()
is during system startup, when the
system mounts a temporary root file system (e.g., an \fBinitrd\fP), then
2004-11-03 13:51:07 +00:00
mounts the real root file system, and eventually turns the latter into
the current root of all relevant processes or threads.
.BR pivot_root ()
may or may not change the current root and the current
2007-12-27 16:01:37 +00:00
working directory of any processes or threads which use the old
root directory.
The caller of
.BR pivot_root ()
2007-12-27 16:01:37 +00:00
must ensure that processes with root or current working directory
at the old root operate correctly in either case.
An easy way to ensure this is to change their
2007-12-27 16:01:37 +00:00
root and current working directory to \fInew_root\fP before invoking
.BR pivot_root ().
2004-11-03 13:51:07 +00:00
The paragraph above is intentionally vague because the implementation
of
.BR pivot_root ()
may change in the future.
At the time of writing,
.BR pivot_root ()
2007-12-27 16:01:37 +00:00
changes root and current working directory of each process or
thread to \fInew_root\fP if they point to the old root directory.
This
2004-11-03 13:51:07 +00:00
is necessary in order to prevent kernel threads from keeping the old
2007-12-27 16:01:37 +00:00
root directory busy with their root and current working directory,
even if they never access
the file system in any way.
In the future, there may be a mechanism for
2004-11-03 13:51:07 +00:00
kernel threads to explicitly relinquish any access to the file system,
such that this fairly intrusive mechanism can be removed from
.BR pivot_root ().
2004-11-03 13:51:07 +00:00
2007-12-27 16:01:37 +00:00
Note that this also applies to the calling process:
.BR pivot_root ()
may
2007-12-27 16:01:37 +00:00
or may not affect its current working directory.
It is therefore recommended to call
\fBchdir("/")\fP immediately after
.BR pivot_root ().
2004-11-03 13:51:07 +00:00
The following restrictions apply to \fInew_root\fP and \fIput_old\fP:
.IP \- 3
They must be directories.
.IP \- 3
\fInew_root\fP and \fIput_old\fP must not be on the same file system as
the current root.
.IP \- 3
2008-03-19 13:16:39 +00:00
\fIput_old\fP must be underneath \fInew_root\fP, that is, adding a non-zero
2005-11-02 13:55:25 +00:00
number of \fI/..\fP to the string pointed to by \fIput_old\fP must yield
2004-11-03 13:51:07 +00:00
the same directory as \fInew_root\fP.
.IP \- 3
No other file system may be mounted on \fIput_old\fP.
.PP
2007-06-21 22:55:04 +00:00
See also
.BR pivot_root (8)
for additional usage examples.
2004-11-03 13:51:07 +00:00
If the current root is not a mount point (e.g., after
.BR chroot (2)
or
.BR pivot_root (),
see also below), not the old root directory, but the
2004-11-03 13:51:07 +00:00
mount point of that file system is mounted on \fIput_old\fP.
\fInew_root\fP does not have to be a mount point.
In this case,
2005-11-02 13:55:25 +00:00
\fI/proc/mounts\fP will show the mount point of the file system containing
\fInew_root\fP as root (\fI/\fP).
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
On success, zero is returned.
On error, \-1 is returned, and
2004-11-03 13:51:07 +00:00
\fIerrno\fP is set appropriately.
.SH ERRORS
.BR pivot_root ()
may return (in \fIerrno\fP) any of the errors returned by
.BR stat (2).
Additionally, it may return:
2004-11-03 13:51:07 +00:00
.TP
.B EBUSY
\fInew_root\fP or \fIput_old\fP are on the current root file system,
or a file system is already mounted on \fIput_old\fP.
.TP
.B EINVAL
\fIput_old\fP is not underneath \fInew_root\fP.
.TP
.B ENOTDIR
\fInew_root\fP or \fIput_old\fP is not a directory.
.TP
.B EPERM
2007-12-27 16:01:37 +00:00
The calling process does not have the
2004-11-03 13:51:07 +00:00
.B CAP_SYS_ADMIN
capability.
.SH VERSIONS
.BR pivot_root ()
was introduced in Linux 2.3.41.
.SH "CONFORMING TO"
.BR pivot_root ()
2007-12-25 21:28:09 +00:00
is Linux-specific and hence is not portable.
2007-06-14 06:31:39 +00:00
.SH NOTES
Glibc does not provide a wrapper for this system call; call it using
.BR syscall (2).
2004-11-03 13:51:07 +00:00
.SH BUGS
.BR pivot_root ()
2007-12-27 16:01:37 +00:00
should not have to change root and current working directory of all other
2004-11-03 13:51:07 +00:00
processes in the system.
Some of the more obscure uses of
.BR pivot_root ()
may quickly lead to
2004-11-03 13:51:07 +00:00
insanity.
.SH "SEE ALSO"
.BR chdir (2),
.BR chroot (2),
.BR stat (2),
.BR initrd (4),
.BR pivot_root (8)