1 /* Copyright (C) 1991,1992,1994-2001,2003,2004,2005,2006,2007, 2009
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 * POSIX Standard: 6.5 File Control Operations <fcntl.h>
28 /* This must be early so <bits/fcntl.h> can define types winningly. */
31 /* Get the definitions of O_*, F_*, FD_*: all the
32 numbers and flag bits for `open', `fcntl', et al. */
33 #include <bits/fcntl.h>
35 /* For XPG all symbols from <sys/stat.h> should also be available. */
37 # include <sys/stat.h>
41 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
42 /* Values for the second argument to access.
43 These may be OR'd together. */
44 # define R_OK 4 /* Test for read permission. */
45 # define W_OK 2 /* Test for write permission. */
46 # define X_OK 1 /* Test for execute permission. */
47 # define F_OK 0 /* Test for existence. */
49 #endif /* Use misc. */
51 /* XPG wants the following symbols. */
52 #ifdef __USE_XOPEN /* <stdio.h> has the same definitions. */
53 # define SEEK_SET 0 /* Seek from beginning of file. */
54 # define SEEK_CUR 1 /* Seek from current position. */
55 # define SEEK_END 2 /* Seek from end of file. */
59 # define AT_FDCWD -100 /* Special value used to indicate
60 the *at functions should use the
61 current working directory. */
62 # define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic links. */
63 # define AT_REMOVEDIR 0x200 /* Remove directory instead of
65 # define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */
67 # define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount
69 # define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname. */
71 # define AT_EACCESS 0x200 /* Test access permitted for
72 effective IDs, not real IDs. */
75 /* Do the file control operation described by CMD on FD.
76 The remaining arguments are interpreted depending on CMD.
78 This function is a cancellation point and therefore not marked with
80 #if !defined(__USE_FILE_OFFSET64) || defined(__LP64__)
81 extern int fcntl (int __fd
, int __cmd
, ...);
83 extern int __fcntl_nocancel(int, int, long) attribute_hidden
;
84 libc_hidden_proto(fcntl
)
88 extern int __REDIRECT (fcntl
, (int __fd
, int __cmd
, ...), fcntl64
);
90 # define fcntl fcntl64
93 #if defined(__USE_LARGEFILE64) && !defined(__LP64__)
94 extern int fcntl64 (int __fd
, int __cmd
, ...);
96 extern int __fcntl64_nocancel(int, int, long) attribute_hidden
;
97 libc_hidden_proto(fcntl64
)
101 /* Open FILE and return a new file descriptor for it, or -1 on error.
102 OFLAG determines the type of access used. If O_CREAT is on OFLAG,
103 the third argument is taken as a `mode_t', the mode of the created file.
105 This function is a cancellation point and therefore not marked with
107 #ifndef __USE_FILE_OFFSET64
108 extern int open (const char *__file
, int __oflag
, ...) __nonnull ((1));
109 libc_hidden_proto(open
)
111 extern int __open2_nocancel(const char *, int) __nonnull ((1)) attribute_hidden
;
112 extern int __open_nocancel(const char *, int, mode_t
) __nonnull ((1)) attribute_hidden
;
116 extern int __REDIRECT (open
, (const char *__file
, int __oflag
, ...), open64
)
122 #ifdef __USE_LARGEFILE64
123 extern int open64 (const char *__file
, int __oflag
, ...) __nonnull ((1));
124 libc_hidden_proto(open64
)
128 /* Similar to `open' but a relative path name is interpreted relative to
129 the directory for which FD is a descriptor.
131 NOTE: some other `openat' implementation support additional functionality
132 through this interface, especially using the O_XATTR flag. This is not
135 This function is a cancellation point and therefore not marked with
137 # ifndef __USE_FILE_OFFSET64
138 extern int openat (int __fd
, const char *__file
, int __oflag
, ...)
140 libc_hidden_proto(openat
)
143 extern int __REDIRECT (openat
, (int __fd
, const char *__file
, int __oflag
,
144 ...), openat64
) __nonnull ((2));
146 # define openat openat64
150 extern int openat64 (int __fd
, const char *__file
, int __oflag
, ...)
154 /* Create and open FILE, with mode MODE. This takes an `int' MODE
155 argument because that is what `mode_t' will be widened to.
157 This function is a cancellation point and therefore not marked with
159 #ifndef __USE_FILE_OFFSET64
160 extern int creat (const char *__file
, __mode_t __mode
) __nonnull ((1));
163 extern int __REDIRECT (creat
, (const char *__file
, __mode_t __mode
),
164 creat64
) __nonnull ((1));
166 # define creat creat64
169 #ifdef __USE_LARGEFILE64
170 extern int creat64 (const char *__file
, __mode_t __mode
) __nonnull ((1));
173 #if !defined F_LOCK && (defined __USE_MISC || (defined __USE_XOPEN_EXTENDED \
174 && !defined __USE_POSIX))
175 /* NOTE: These declarations also appear in <unistd.h>; be sure to keep both
176 files consistent. Some systems have them there and some here, and some
177 software depends on the macros being defined without including both. */
179 /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
180 LEN is always relative to the current file position.
181 The CMD argument is one of the following. */
183 # define F_ULOCK 0 /* Unlock a previously locked region. */
184 # define F_LOCK 1 /* Lock a region for exclusive use. */
185 # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
186 # define F_TEST 3 /* Test a region for other processes locks. */
188 # ifndef __USE_FILE_OFFSET64
189 extern int lockf (int __fd
, int __cmd
, __off_t __len
);
190 libc_hidden_proto(lockf
)
193 extern int __REDIRECT (lockf
, (int __fd
, int __cmd
, __off64_t __len
), lockf64
);
195 # define lockf lockf64
198 # ifdef __USE_LARGEFILE64
199 extern int lockf64 (int __fd
, int __cmd
, __off64_t __len
);
203 #if defined __USE_XOPEN2K && defined __UCLIBC_HAS_ADVANCED_REALTIME__
204 /* Advice the system about the expected behaviour of the application with
205 respect to the file associated with FD. */
206 # ifndef __USE_FILE_OFFSET64
207 extern int posix_fadvise (int __fd
, __off_t __offset
, __off_t __len
,
208 int __advise
) __THROW
;
210 # ifdef __REDIRECT_NTH
211 extern int __REDIRECT_NTH (posix_fadvise
, (int __fd
, __off64_t __offset
,
212 __off64_t __len
, int __advise
),
215 # define posix_fadvise posix_fadvise64
218 # ifdef __USE_LARGEFILE64
219 extern int posix_fadvise64 (int __fd
, __off64_t __offset
, __off64_t __len
,
220 int __advise
) __THROW
;
225 #if defined __UCLIBC_HAS_ADVANCED_REALTIME__
227 /* Reserve storage for the data of the file associated with FD.
229 This function is a possible cancellation point and therefore not
230 marked with __THROW. */
231 # ifndef __USE_FILE_OFFSET64
232 extern int posix_fallocate (int __fd
, __off_t __offset
, __off_t __len
);
235 extern int __REDIRECT (posix_fallocate
, (int __fd
, __off64_t __offset
,
239 # define posix_fallocate posix_fallocate64
242 # ifdef __USE_LARGEFILE64
243 extern int posix_fallocate64 (int __fd
, __off64_t __offset
, __off64_t __len
);
247 #if (defined __UCLIBC_LINUX_SPECIFIC__ && defined __USE_GNU) || defined _LIBC
248 /* Reserve storage for the data of a file associated with FD. This function
249 is Linux-specific. For the portable version, use posix_fallocate().
250 Unlike the latter, fallocate can operate in different modes. The default
251 mode = 0 is equivalent to posix_fallocate().
253 Note: These declarations are used in posix_fallocate.c and
254 posix_fallocate64.c, so we expose them internally.
257 /* Flags for fallocate's mode. */
258 # define FALLOC_FL_KEEP_SIZE 1 /* Don't extend size of file
259 even if offset + len is
260 greater than file size. */
261 # define FALLOC_FL_PUNCH_HOLE 2 /* Create a hole in the file. */
263 # ifndef __USE_FILE_OFFSET64
264 extern int fallocate (int __fd
, int __mode
, __off_t __offset
, __off_t __len
);
267 extern int __REDIRECT (fallocate
, (int __fd
, int __mode
, __off64_t __offset
,
271 # define fallocate fallocate64
274 # ifdef __USE_LARGEFILE64
275 extern int fallocate64 (int __fd
, int __mode
, __off64_t __offset
, __off64_t __len
);