Changes the effective root directory.
#include <unistd.h>
int chroot (const char *Path) char *Path;
The chroot subroutine causes the directory named by the Path parameter to become the effective root directory. If the Path parameter refers to a symbolic link, the chroot subroutine sets the effective root directory to the directory pointed to by the symbolic link. If Network File System (NFS) is installed on your system, this path can cross into another node.
The effective root directory is the starting point when searching for a file's path name that begins with / (slash). The current directory is not affected by the chroot subroutine.
The calling process must have root user authority in order to change the effective root directory. The calling process must also have search access to the new effective root directory.
The .. (double period) entry in the effective root directory is interpreted to mean the effective root directory itself. Thus, this directory cannot be used to access files outside the subtree rooted at the effective root directory.
Path | Pointer to the new effective root directory. |
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and the errno global variable is set to indicate the error.
The chroot subroutine fails and the effective root directory remains unchanged if one or more of the following are true:
ENOENT | The named directory does not exist. |
EACCES | The named directory denies search access. |
EPERM | The process does not have root user authority. |
The chroot subroutine can be unsuccessful for other reasons. See Appendix A. Base Operating System Error Codes for Services that Require Path-Name Resolution for a list of additional errors.
If NFS is installed on the system, the chroot subroutine can also fail if the following is true:
ETIMEDOUT | The connection timed out. |
This subroutine is part of Base Operating System (BOS) Runtime.
The chdir subroutine.
The chroot command.
Base Operating System Error Codes for Services that Require Path-Name Resolution.
Appendix A. Base Operating System Error Codes for Services that Require Path-Name Resolution.
Files, Directories, and File Systems for Programmers in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.