OSDN Git Service

2bb46ddaa1247eb80fd28dde4c8976f3eb40cd25
[linuxjm/LDP_man-pages.git] / original / man2 / fchownat.2
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\"
26 .TH FCHOWNAT 2 2012-05-04 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 fchownat \- change ownership of a file relative to a directory \
29 file descriptor
30 .SH SYNOPSIS
31 .nf
32 .B #include <fcntl.h>           /* Definition of AT_* constants */
33 .B #include <unistd.h>
34 .sp
35 .BI "int fchownat(int " dirfd ", const char *" pathname ,
36 .BI "             uid_t " owner ", gid_t " group ", int " flags );
37 .fi
38 .sp
39 .in -4n
40 Feature Test Macro Requirements for glibc (see
41 .BR feature_test_macros (7)):
42 .in
43 .sp
44 .BR fchownat ():
45 .PD 0
46 .ad l
47 .RS 4
48 .TP 4
49 Since glibc 2.10:
50 _XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
51 .TP
52 Before glibc 2.10:
53 _ATFILE_SOURCE
54 .RE
55 .ad
56 .PD
57 .SH DESCRIPTION
58 The
59 .BR fchownat ()
60 system call operates in exactly the same way as
61 .BR chown (2),
62 except for the differences described in this manual page.
63
64 If the pathname given in
65 .I pathname
66 is relative, then it is interpreted relative to the directory
67 referred to by the file descriptor
68 .I dirfd
69 (rather than relative to the current working directory of
70 the calling process, as is done by
71 .BR chown (2)
72 for a relative pathname).
73
74 If
75 .I pathname
76 is relative and
77 .I dirfd
78 is the special value
79 .BR AT_FDCWD ,
80 then
81 .I pathname
82 is interpreted relative to the current working
83 directory of the calling process (like
84 .BR chown (2)).
85
86 If
87 .I pathname
88 is absolute, then
89 .I dirfd
90 is ignored.
91
92 .I flags
93 can either be 0, or include the following flag:
94 .TP
95 .B AT_SYMLINK_NOFOLLOW
96 If
97 .I pathname
98 is a symbolic link, do not dereference it:
99 instead operate on the link itself, like
100 .BR lchown (2).
101 (By default,
102 .BR fchownat ()
103 dereferences symbolic links, like
104 .BR chown (2).)
105 .SH "RETURN VALUE"
106 On success,
107 .BR fchownat ()
108 returns 0.
109 On error, \-1 is returned and
110 .I errno
111 is set to indicate the error.
112 .SH ERRORS
113 The same errors that occur for
114 .BR chown (2)
115 can also occur for
116 .BR fchownat ().
117 The following additional errors can occur for
118 .BR fchownat ():
119 .TP
120 .B EBADF
121 .I dirfd
122 is not a valid file descriptor.
123 .TP
124 .B EINVAL
125 Invalid flag specified in
126 .IR flags .
127 .TP
128 .B ENOTDIR
129 .I pathname
130 is relative and
131 .I dirfd
132 is a file descriptor referring to a file other than a directory.
133 .SH VERSIONS
134 .BR fchownat ()
135 was added to Linux in kernel 2.6.16;
136 library support was added to glibc in version 2.4.
137 .SH "CONFORMING TO"
138 POSIX.1-2008.
139 A similar system call exists on Solaris.
140 .SH NOTES
141 See
142 .BR openat (2)
143 for an explanation of the need for
144 .BR fchownat ().
145 .SH "SEE ALSO"
146 .BR chown (2),
147 .BR openat (2),
148 .BR path_resolution (7),
149 .BR symlink (7)