CHMOD.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ." Copyright (c) 1980 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. ." @(#)chmod.2 6.5 (Berkeley) 5/13/86
  6. ."
  7. .TH CHMOD 2 "May 13, 1986"
  8. .UC 4
  9. .SH NAME
  10. chmod - change mode of file
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. int chmod(const char *fIpathfP, mode_t fImodefP)
  17. .ig " You never know
  18. .PP
  19. .ft B
  20. int fchmod(int fIfdfP, mode_t fImodefP)
  21. ..
  22. .fi
  23. .SH DESCRIPTION
  24. The file whose name
  25. is given by fIpathfP
  26. .ig
  27. or referenced by the descriptor
  28. .I fd
  29. ..
  30. has its mode changed to
  31. .IR mode .
  32. Modes are constructed by
  33. .IR or 'ing
  34. together some
  35. combination of the following, defined in
  36. .IR <sys/stat.h> :
  37. .PP
  38. .RS
  39. .nf
  40. .ta w'S_ISUID  'u +w'04000   'u
  41. S_ISUID 04000 set user ID on execution
  42. S_ISGID 02000 set group ID on execution
  43. S_ISVTX 01000 `sticky bit' (see below)
  44. S_IRWXU 00700 read, write, execute by owner
  45. S_IRUSR 00400 read by owner
  46. S_IWUSR 00200 write by owner
  47. S_IXUSR 00100 execute (search on directory) by owner
  48. S_IRWXG 00070 read, write, execute by group
  49. S_IRGRP 00040 read by group
  50. S_IWGRP 00020 write by group
  51. S_IXGRP 00010 execute (search on directory) by group
  52. S_IRWXO 00007 read, write, execute by others
  53. S_IROTH 00004 read by others
  54. S_IWOTH 00002 write by others
  55. S_IXOTH 00001 execute (search on directory) by others
  56. .fi
  57. .RE
  58. .PP
  59. If mode ISVTX (the `sticky bit') is set on a directory,
  60. an unprivileged user may not delete or rename
  61. files of other users in that directory.  (Minix-vmd)
  62. .PP
  63. Only the owner of a file (or the super-user) may change the mode.
  64. .PP
  65. Writing or changing the owner of a file
  66. turns off the set-user-id and set-group-id bits
  67. unless the user is the super-user.
  68. This makes the system somewhat more secure
  69. by protecting set-user-id (set-group-id) files
  70. from remaining set-user-id (set-group-id) if they are modified,
  71. at the expense of a degree of compatibility.
  72. .SH "RETURN VALUE
  73. Upon successful completion, a value of 0 is returned.
  74. Otherwise, a value of -1 is returned and
  75. .B errno
  76. is set to indicate the error.
  77. .SH "ERRORS
  78. .B Chmod
  79. will fail and the file mode will be unchanged if:
  80. .TP 15
  81. [ENOTDIR]
  82. A component of the path prefix is not a directory.
  83. .TP 15
  84. [ENAMETOOLONG]
  85. The path name exceeds PATH_MAX characters.
  86. .TP 15
  87. [ENOENT]
  88. The named file does not exist.
  89. .TP 15
  90. [EACCES]
  91. Search permission is denied for a component of the path prefix.
  92. .TP 15
  93. [ELOOP]
  94. Too many symbolic links were encountered in translating the pathname.
  95. (Minix-vmd)
  96. .TP 15
  97. [EPERM]
  98. The effective user ID does not match the owner of the file and
  99. the effective user ID is not the super-user.
  100. .TP 15
  101. [EROFS]
  102. The named file resides on a read-only file system.
  103. .TP 15
  104. [EFAULT]
  105. .I Path
  106. points outside the process's allocated address space.
  107. .TP 15
  108. [EIO]
  109. An I/O error occurred while reading from or writing to the file system.
  110. .ig
  111. .PP
  112. .I Fchmod
  113. will fail if:
  114. .TP 15
  115. [EBADF]
  116. The descriptor is not valid.
  117. .TP 15
  118. [EROFS]
  119. The file resides on a read-only file system.
  120. .TP 15
  121. [EIO]
  122. An I/O error occurred while reading from or writing to the file system.
  123. ..
  124. .SH "SEE ALSO"
  125. .BR chmod (1),
  126. .BR open (2),
  127. .BR chown (2),
  128. .BR stat (2).
  129. .SH NOTES
  130. The sticky bit was historically used to lock important executables into
  131. memory.