The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
| 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 Hughes | e989399 | 2013-10-17 11:45:22 -0700 | [diff] [blame] | 28 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 29 | #ifndef _FCNTL_H |
| 30 | #define _FCNTL_H |
| 31 | |
| 32 | #include <sys/cdefs.h> |
| 33 | #include <sys/types.h> |
Elliott Hughes | 01e505a | 2014-01-07 17:47:20 -0800 | [diff] [blame] | 34 | #include <linux/fadvise.h> |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 35 | #include <linux/fcntl.h> |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 36 | #include <linux/uio.h> |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 37 | #include <unistd.h> /* this is not required, but makes client code much happier */ |
| 38 | |
| 39 | __BEGIN_DECLS |
| 40 | |
Serban Constantinescu | 48501af | 2014-03-14 13:16:25 +0000 | [diff] [blame] | 41 | #ifdef __LP64__ |
Christopher Ferris | ba8d4f4 | 2014-09-03 19:56:49 -0700 | [diff] [blame] | 42 | /* LP64 kernels don't have F_*64 defines because their flock is 64-bit. */ |
Serban Constantinescu | 48501af | 2014-03-14 13:16:25 +0000 | [diff] [blame] | 43 | #define F_GETLK64 F_GETLK |
| 44 | #define F_SETLK64 F_SETLK |
| 45 | #define F_SETLKW64 F_SETLKW |
| 46 | #endif |
| 47 | |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 48 | #define O_ASYNC FASYNC |
Elliott Hughes | 31165ed | 2014-09-23 17:34:29 -0700 | [diff] [blame^] | 49 | #define O_RSYNC O_SYNC |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 50 | |
| 51 | #define SPLICE_F_MOVE 1 |
| 52 | #define SPLICE_F_NONBLOCK 2 |
| 53 | #define SPLICE_F_MORE 4 |
| 54 | #define SPLICE_F_GIFT 8 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 55 | |
Elliott Hughes | 3434727 | 2014-02-26 11:10:32 -0800 | [diff] [blame] | 56 | #define SYNC_FILE_RANGE_WAIT_BEFORE 1 |
| 57 | #define SYNC_FILE_RANGE_WRITE 2 |
| 58 | #define SYNC_FILE_RANGE_WAIT_AFTER 4 |
| 59 | |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 60 | extern int creat(const char*, mode_t); |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 61 | extern int creat64(const char*, mode_t); |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 62 | extern int fallocate64(int, int, off64_t, off64_t); |
| 63 | extern int fallocate(int, int, off_t, off_t); |
| 64 | extern int fcntl(int, int, ...); |
| 65 | extern int openat(int, const char*, int, ...); |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 66 | extern int openat64(int, const char*, int, ...); |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 67 | extern int open(const char*, int, ...); |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 68 | extern int open64(const char*, int, ...); |
Elliott Hughes | b587f33 | 2014-09-10 17:39:00 -0700 | [diff] [blame] | 69 | extern int posix_fadvise64(int, off64_t, off64_t, int); |
| 70 | extern int posix_fadvise(int, off_t, off_t, int); |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 71 | extern int posix_fallocate64(int, off64_t, off64_t); |
| 72 | extern int posix_fallocate(int, off_t, off_t); |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 73 | extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int); |
| 74 | extern ssize_t tee(int, int, size_t, unsigned int); |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 75 | extern int unlinkat(int, const char*, int); |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 76 | extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 77 | |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 78 | #if defined(__BIONIC_FORTIFY) |
| 79 | |
| 80 | extern int __open_2(const char*, int); |
Elliott Hughes | 2cfb4e8 | 2014-08-18 14:45:42 -0700 | [diff] [blame] | 81 | extern int __open_real(const char*, int, ...) __RENAME(open); |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 82 | extern int __openat_2(int, const char*, int); |
Elliott Hughes | 2cfb4e8 | 2014-08-18 14:45:42 -0700 | [diff] [blame] | 83 | extern int __openat_real(int, const char*, int, ...) __RENAME(openat); |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 84 | __errordecl(__creat_missing_mode, "called with O_CREAT, but missing mode"); |
| 85 | __errordecl(__creat_too_many_args, "too many arguments"); |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 86 | |
| 87 | #if !defined(__clang__) |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 88 | |
| 89 | __BIONIC_FORTIFY_INLINE |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 90 | int open(const char* pathname, int flags, ...) { |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 91 | if (__builtin_constant_p(flags)) { |
| 92 | if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 93 | __creat_missing_mode(); // compile time error |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 94 | } |
| 95 | } |
| 96 | |
| 97 | if (__builtin_va_arg_pack_len() > 1) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 98 | __creat_too_many_args(); // compile time error |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 101 | if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) { |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 102 | return __open_2(pathname, flags); |
| 103 | } |
| 104 | |
| 105 | return __open_real(pathname, flags, __builtin_va_arg_pack()); |
| 106 | } |
| 107 | |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 108 | __BIONIC_FORTIFY_INLINE |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 109 | int openat(int dirfd, const char* pathname, int flags, ...) { |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 110 | if (__builtin_constant_p(flags)) { |
| 111 | if ((flags & O_CREAT) && __builtin_va_arg_pack_len() == 0) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 112 | __creat_missing_mode(); // compile time error |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | |
| 116 | if (__builtin_va_arg_pack_len() > 1) { |
Nick Kralevich | a641c18 | 2013-06-18 13:07:18 -0700 | [diff] [blame] | 117 | __creat_too_many_args(); // compile time error |
Nick Kralevich | a3e230d | 2012-07-02 12:24:42 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | if ((__builtin_va_arg_pack_len() == 0) && !__builtin_constant_p(flags)) { |
| 121 | return __openat_2(dirfd, pathname, flags); |
| 122 | } |
| 123 | |
| 124 | return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack()); |
| 125 | } |
| 126 | |
Elliott Hughes | cd0609f | 2013-12-19 12:21:07 -0800 | [diff] [blame] | 127 | #endif /* !defined(__clang__) */ |
| 128 | |
| 129 | #endif /* defined(__BIONIC_FORTIFY) */ |
Nick Kralevich | 8118f62 | 2012-06-26 15:08:06 -0700 | [diff] [blame] | 130 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 131 | __END_DECLS |
| 132 | |
| 133 | #endif /* _FCNTL_H */ |