1 /* Copyright (C) 1991-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
19 * POSIX Standard: 6.5 File Control Operations <fcntl.h>
27 /* This must be early so <bits/fcntl.h> can define types winningly. */
30 /* Get __mode_t, __dev_t and __off_t .*/
31 #include <bits/types.h>
33 /* Get the definitions of O_*, F_*, FD_*: all the
34 numbers and flag bits for `open', `fcntl', et al. */
35 #include <bits/fcntl.h>
37 /* POSIX.1-2001 specifies that these types are defined by <fcntl.h>.
38 Earlier POSIX standards permitted any type ending in `_t' to be defined
39 by any POSIX header, so we don't conditionalize the definitions here. */
40 #ifndef __mode_t_defined
41 typedef __mode_t mode_t
;
42 # define __mode_t_defined
45 #ifndef __off_t_defined
46 # ifndef __USE_FILE_OFFSET64
47 typedef __off_t off_t
;
49 typedef __off64_t off_t
;
51 # define __off_t_defined
54 #if defined __USE_LARGEFILE64 && !defined __off64_t_defined
55 typedef __off64_t off64_t
;
56 # define __off64_t_defined
59 #ifndef __pid_t_defined
60 typedef __pid_t pid_t
;
61 # define __pid_t_defined
64 /* For XPG all symbols from <sys/stat.h> should also be available. */
65 #if defined __USE_XOPEN || defined __USE_XOPEN2K8
66 # define __need_timespec
68 # include <bits/stat.h>
70 # define S_IFMT __S_IFMT
71 # define S_IFDIR __S_IFDIR
72 # define S_IFCHR __S_IFCHR
73 # define S_IFBLK __S_IFBLK
74 # define S_IFREG __S_IFREG
76 # define S_IFIFO __S_IFIFO
79 # define S_IFLNK __S_IFLNK
81 # if (defined __USE_UNIX98 || defined __USE_XOPEN2K8) && defined __S_IFSOCK
82 # define S_IFSOCK __S_IFSOCK
85 /* Protection bits. */
87 # define S_ISUID __S_ISUID /* Set user ID on execution. */
88 # define S_ISGID __S_ISGID /* Set group ID on execution. */
90 # if defined __USE_BSD || defined __USE_MISC || defined __USE_XOPEN
91 /* Save swapped text after use (sticky bit). This is pretty well obsolete. */
92 # define S_ISVTX __S_ISVTX
95 # define S_IRUSR __S_IREAD /* Read by owner. */
96 # define S_IWUSR __S_IWRITE /* Write by owner. */
97 # define S_IXUSR __S_IEXEC /* Execute by owner. */
98 /* Read, write, and execute by owner. */
99 # define S_IRWXU (__S_IREAD|__S_IWRITE|__S_IEXEC)
101 # define S_IRGRP (S_IRUSR >> 3) /* Read by group. */
102 # define S_IWGRP (S_IWUSR >> 3) /* Write by group. */
103 # define S_IXGRP (S_IXUSR >> 3) /* Execute by group. */
104 /* Read, write, and execute by group. */
105 # define S_IRWXG (S_IRWXU >> 3)
107 # define S_IROTH (S_IRGRP >> 3) /* Read by others. */
108 # define S_IWOTH (S_IWGRP >> 3) /* Write by others. */
109 # define S_IXOTH (S_IXGRP >> 3) /* Execute by others. */
110 /* Read, write, and execute by others. */
111 # define S_IRWXO (S_IRWXG >> 3)
115 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
116 /* Values for the second argument to access.
117 These may be OR'd together. */
118 # define R_OK 4 /* Test for read permission. */
119 # define W_OK 2 /* Test for write permission. */
120 # define X_OK 1 /* Test for execute permission. */
121 # define F_OK 0 /* Test for existence. */
123 #endif /* Use misc. */
125 /* XPG wants the following symbols. <stdio.h> has the same definitions. */
126 #if defined __USE_XOPEN || defined __USE_XOPEN2K8
127 # define SEEK_SET 0 /* Seek from beginning of file. */
128 # define SEEK_CUR 1 /* Seek from current position. */
129 # define SEEK_END 2 /* Seek from end of file. */
133 # define AT_FDCWD -100 /* Special value used to indicate
134 the *at functions should use the
135 current working directory. */
136 # define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic links. */
137 # define AT_REMOVEDIR 0x200 /* Remove directory instead of
139 # define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */
141 # define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount
143 # define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname. */
145 # define AT_EACCESS 0x200 /* Test access permitted for
146 effective IDs, not real IDs. */
149 /* Do the file control operation described by CMD on FD.
150 The remaining arguments are interpreted depending on CMD.
152 This function is a cancellation point and therefore not marked with
154 extern int fcntl (int __fd
, int __cmd
, ...);
156 /* Open FILE and return a new file descriptor for it, or -1 on error.
157 OFLAG determines the type of access used. If O_CREAT is on OFLAG,
158 the third argument is taken as a `mode_t', the mode of the created file.
160 This function is a cancellation point and therefore not marked with
162 #ifndef __USE_FILE_OFFSET64
163 extern int open (const char *__file
, int __oflag
, ...) __nonnull ((1));
166 extern int __REDIRECT (open
, (const char *__file
, int __oflag
, ...), open64
)
172 #ifdef __USE_LARGEFILE64
173 extern int open64 (const char *__file
, int __oflag
, ...) __nonnull ((1));
177 /* Similar to `open' but a relative path name is interpreted relative to
178 the directory for which FD is a descriptor.
180 NOTE: some other `openat' implementation support additional functionality
181 through this interface, especially using the O_XATTR flag. This is not
184 This function is a cancellation point and therefore not marked with
186 # ifndef __USE_FILE_OFFSET64
187 extern int openat (int __fd
, const char *__file
, int __oflag
, ...)
191 extern int __REDIRECT (openat
, (int __fd
, const char *__file
, int __oflag
,
192 ...), openat64
) __nonnull ((2));
194 # define openat openat64
197 # ifdef __USE_LARGEFILE64
198 extern int openat64 (int __fd
, const char *__file
, int __oflag
, ...)
203 /* Create and open FILE, with mode MODE. This takes an `int' MODE
204 argument because that is what `mode_t' will be widened to.
206 This function is a cancellation point and therefore not marked with
208 #ifndef __USE_FILE_OFFSET64
209 extern int creat (const char *__file
, mode_t __mode
) __nonnull ((1));
212 extern int __REDIRECT (creat
, (const char *__file
, mode_t __mode
),
213 creat64
) __nonnull ((1));
215 # define creat creat64
218 #ifdef __USE_LARGEFILE64
219 extern int creat64 (const char *__file
, mode_t __mode
) __nonnull ((1));
222 #if !defined F_LOCK && (defined __USE_MISC || (defined __USE_XOPEN_EXTENDED \
223 && !defined __USE_POSIX))
224 /* NOTE: These declarations also appear in <unistd.h>; be sure to keep both
225 files consistent. Some systems have them there and some here, and some
226 software depends on the macros being defined without including both. */
228 /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
229 LEN is always relative to the current file position.
230 The CMD argument is one of the following. */
232 # define F_ULOCK 0 /* Unlock a previously locked region. */
233 # define F_LOCK 1 /* Lock a region for exclusive use. */
234 # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
235 # define F_TEST 3 /* Test a region for other processes locks. */
237 # ifndef __USE_FILE_OFFSET64
238 extern int lockf (int __fd
, int __cmd
, off_t __len
);
241 extern int __REDIRECT (lockf
, (int __fd
, int __cmd
, __off64_t __len
), lockf64
);
243 # define lockf lockf64
246 # ifdef __USE_LARGEFILE64
247 extern int lockf64 (int __fd
, int __cmd
, off64_t __len
);
252 /* Advice the system about the expected behaviour of the application with
253 respect to the file associated with FD. */
254 # ifndef __USE_FILE_OFFSET64
255 extern int posix_fadvise (int __fd
, off_t __offset
, off_t __len
,
256 int __advise
) __THROW
;
258 # ifdef __REDIRECT_NTH
259 extern int __REDIRECT_NTH (posix_fadvise
, (int __fd
, __off64_t __offset
,
260 __off64_t __len
, int __advise
),
263 # define posix_fadvise posix_fadvise64
266 # ifdef __USE_LARGEFILE64
267 extern int posix_fadvise64 (int __fd
, off64_t __offset
, off64_t __len
,
268 int __advise
) __THROW
;
272 /* Reserve storage for the data of the file associated with FD.
274 This function is a possible cancellation point and therefore not
275 marked with __THROW. */
276 # ifndef __USE_FILE_OFFSET64
277 extern int posix_fallocate (int __fd
, off_t __offset
, off_t __len
);
280 extern int __REDIRECT (posix_fallocate
, (int __fd
, __off64_t __offset
,
284 # define posix_fallocate posix_fallocate64
287 # ifdef __USE_LARGEFILE64
288 extern int posix_fallocate64 (int __fd
, off64_t __offset
, off64_t __len
);
293 /* Define some inlines helping to catch common problems. */
294 #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function \
295 && defined __va_arg_pack_len
296 # include <bits/fcntl2.h>