blob: cd68154f7fdaa5e32bed1bf2010478cf6e29caf9 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughese9893992013-10-17 11:45:22 -070028
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029#ifndef _FCNTL_H
30#define _FCNTL_H
31
32#include <sys/cdefs.h>
33#include <sys/types.h>
Elliott Hughes01e505a2014-01-07 17:47:20 -080034#include <linux/fadvise.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035#include <linux/fcntl.h>
36#include <unistd.h> /* this is not required, but makes client code much happier */
37
38__BEGIN_DECLS
39
Serban Constantinescu48501af2014-03-14 13:16:25 +000040#ifdef __LP64__
41/* LP64 kernels don't have flock64 because their flock is 64-bit. */
42struct flock64 {
43 short l_type;
44 short l_whence;
45 off64_t l_start;
46 off64_t l_len;
47 pid_t l_pid;
48};
49#define F_GETLK64 F_GETLK
50#define F_SETLK64 F_SETLK
51#define F_SETLKW64 F_SETLKW
52#endif
53
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080054#ifndef O_ASYNC
55#define O_ASYNC FASYNC
56#endif
57
Elliott Hughes34347272014-02-26 11:10:32 -080058#define SYNC_FILE_RANGE_WAIT_BEFORE 1
59#define SYNC_FILE_RANGE_WRITE 2
60#define SYNC_FILE_RANGE_WAIT_AFTER 4
61
Elliott Hughesf64b8ea2014-02-03 16:20:46 -080062extern int creat(const char*, mode_t);
Elliott Hughesdb1ea342014-01-17 18:42:49 -080063extern int creat64(const char*, mode_t);
Elliott Hughesf64b8ea2014-02-03 16:20:46 -080064extern int fallocate64(int, int, off64_t, off64_t);
65extern int fallocate(int, int, off_t, off_t);
66extern int fcntl(int, int, ...);
67extern int openat(int, const char*, int, ...);
Elliott Hughesdb1ea342014-01-17 18:42:49 -080068extern int openat64(int, const char*, int, ...);
Elliott Hughesf64b8ea2014-02-03 16:20:46 -080069extern int open(const char*, int, ...);
Elliott Hughesdb1ea342014-01-17 18:42:49 -080070extern int open64(const char*, int, ...);
Elliott Hughesf64b8ea2014-02-03 16:20:46 -080071extern int posix_fallocate64(int, off64_t, off64_t);
72extern int posix_fallocate(int, off_t, off_t);
73extern int unlinkat(int, const char*, int);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074
Elliott Hughescd0609f2013-12-19 12:21:07 -080075#if defined(__BIONIC_FORTIFY)
76
77extern int __open_2(const char*, int);
78extern int __open_real(const char*, int, ...) __asm__(__USER_LABEL_PREFIX__ "open");
79extern int __openat_2(int, const char*, int);
80extern int __openat_real(int, const char*, int, ...) __asm__(__USER_LABEL_PREFIX__ "openat");
Nick Kralevicha641c182013-06-18 13:07:18 -070081__errordecl(__creat_missing_mode, "called with O_CREAT, but missing mode");
82__errordecl(__creat_too_many_args, "too many arguments");
Elliott Hughescd0609f2013-12-19 12:21:07 -080083
84#if !defined(__clang__)
Nick Kralevich8118f622012-06-26 15:08:06 -070085
86__BIONIC_FORTIFY_INLINE
Elliott Hughescd0609f2013-12-19 12:21:07 -080087int open(const char* pathname, int flags, ...) {
Nick Kralevich8118f622012-06-26 15:08:06 -070088 if (__builtin_constant_p(flags)) {
89 if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) {
Nick Kralevicha641c182013-06-18 13:07:18 -070090 __creat_missing_mode(); // compile time error
Nick Kralevich8118f622012-06-26 15:08:06 -070091 }
92 }
93
94 if (__builtin_va_arg_pack_len() > 1) {
Nick Kralevicha641c182013-06-18 13:07:18 -070095 __creat_too_many_args(); // compile time error
Nick Kralevich8118f622012-06-26 15:08:06 -070096 }
97
Nick Kralevicha3e230d2012-07-02 12:24:42 -070098 if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) {
Nick Kralevich8118f622012-06-26 15:08:06 -070099 return __open_2(pathname, flags);
100 }
101
102 return __open_real(pathname, flags, __builtin_va_arg_pack());
103}
104
Nick Kralevicha3e230d2012-07-02 12:24:42 -0700105__BIONIC_FORTIFY_INLINE
Elliott Hughescd0609f2013-12-19 12:21:07 -0800106int openat(int dirfd, const char* pathname, int flags, ...) {
Nick Kralevicha3e230d2012-07-02 12:24:42 -0700107 if (__builtin_constant_p(flags)) {
108 if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) {
Nick Kralevicha641c182013-06-18 13:07:18 -0700109 __creat_missing_mode(); // compile time error
Nick Kralevicha3e230d2012-07-02 12:24:42 -0700110 }
111 }
112
113 if (__builtin_va_arg_pack_len() > 1) {
Nick Kralevicha641c182013-06-18 13:07:18 -0700114 __creat_too_many_args(); // compile time error
Nick Kralevicha3e230d2012-07-02 12:24:42 -0700115 }
116
117 if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) {
118 return __openat_2(dirfd, pathname, flags);
119 }
120
121 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
122}
123
Elliott Hughescd0609f2013-12-19 12:21:07 -0800124#endif /* !defined(__clang__) */
125
126#endif /* defined(__BIONIC_FORTIFY) */
Nick Kralevich8118f622012-06-26 15:08:06 -0700127
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800128__END_DECLS
129
130#endif /* _FCNTL_H */