CHROOT.2
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ." Copyright (c) 1983 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)chroot.2 6.3 (Berkeley) 8/26/85
  6. ."
  7. .TH CHROOT 2 "August 26, 1985"
  8. .UC 5
  9. .SH NAME
  10. chroot - change root directory
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <unistd.h>
  15. int chroot(const char *fIdirnamefP)
  16. .ft R
  17. .fi
  18. .SH DESCRIPTION
  19. .I Dirname
  20. is the address of the pathname of a directory, terminated by a null byte.
  21. .B Chroot
  22. causes this directory
  23. to become the root directory,
  24. the starting point for path names beginning with ``/''.
  25. .PP
  26. In order for a directory to become the root directory
  27. a process must have execute (search) access to the directory.
  28. .PP
  29. This call is restricted to the super-user.
  30. .SH "RETURN VALUE
  31. Upon successful completion, a value of 0 is returned.  Otherwise,
  32. a value of -1 is returned and fBerrnofP is set to indicate an error.
  33. .SH ERRORS
  34. .B Chroot
  35. will fail and the root directory will be unchanged if
  36. one or more of the following are true:
  37. .TP 15
  38. [ENOTDIR]
  39. A component of the path name is not a directory.
  40. .TP 15
  41. [ENAMETOOLONG]
  42. The path name exceeds PATH_MAX characters.
  43. .TP 15
  44. [ENOENT]
  45. The named directory does not exist.
  46. .TP 15
  47. [EACCES]
  48. Search permission is denied for any component of the path name.
  49. .TP 15
  50. [ELOOP]
  51. Too many symbolic links were encountered in translating the pathname.
  52. (Minix-vmd)
  53. .TP 15
  54. [EFAULT]
  55. .I Path
  56. points outside the process's allocated address space.
  57. .TP 15
  58. [EIO]
  59. An I/O error occurred while reading from or writing to the file system.
  60. .SH "SEE ALSO"
  61. .BR chdir (2).