George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | */ |
| 28 | |
| 29 | #ifndef _FCNTL_H |
| 30 | #error "Never include this file directly; instead, include <fcntl.h>" |
| 31 | #endif |
| 32 | |
| 33 | int __open_2(const char*, int) __INTRODUCED_IN(17); |
| 34 | int __openat_2(int, const char*, int) __INTRODUCED_IN(17); |
| 35 | /* |
| 36 | * These are the easiest way to call the real open even in clang FORTIFY. |
| 37 | */ |
| 38 | int __open_real(const char*, int, ...) __RENAME(open); |
| 39 | int __openat_real(int, const char*, int, ...) __RENAME(openat); |
| 40 | |
| 41 | #if defined(__BIONIC_FORTIFY) |
| 42 | #define __open_too_many_args_error "too many arguments" |
Elliott Hughes | b115aef | 2017-08-04 09:34:19 -0700 | [diff] [blame] | 43 | #define __open_too_few_args_error "called with O_CREAT or O_TMPFILE, but missing mode" |
George Burgess IV | 4e37d53 | 2017-08-03 17:11:35 -0700 | [diff] [blame] | 44 | #define __open_useless_modes_warning "has superfluous mode bits; missing O_CREAT?" |
| 45 | /* O_TMPFILE shares bits with O_DIRECTORY. */ |
| 46 | #define __open_modes_useful(flags) (((flags) & O_CREAT) || ((flags) & O_TMPFILE) == O_TMPFILE) |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 47 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 48 | __BIONIC_ERROR_FUNCTION_VISIBILITY |
| 49 | int open(const char* pathname, int flags, mode_t modes, ...) __overloadable |
| 50 | __errorattr(__open_too_many_args_error); |
| 51 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 52 | /* |
| 53 | * pass_object_size serves two purposes here, neither of which involve __bos: it |
| 54 | * disqualifies this function from having its address taken (so &open works), |
| 55 | * and it makes overload resolution prefer open(const char *, int) over |
| 56 | * open(const char *, int, ...). |
| 57 | */ |
| 58 | __BIONIC_FORTIFY_INLINE |
George Burgess IV | 0df4c37 | 2017-07-31 21:39:33 -0700 | [diff] [blame] | 59 | int open(const char* const __pass_object_size pathname, int flags) |
| 60 | __overloadable |
Elliott Hughes | b115aef | 2017-08-04 09:34:19 -0700 | [diff] [blame] | 61 | __clang_error_if(__open_modes_useful(flags), "'open' " __open_too_few_args_error) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame^] | 62 | #if __ANDROID_API__ >= 17 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 63 | return __open_2(pathname, flags); |
George Burgess IV | 9349b9e | 2019-09-18 17:16:01 -0700 | [diff] [blame] | 64 | #else |
| 65 | return __open_real(pathname, flags); |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 66 | #endif |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | __BIONIC_FORTIFY_INLINE |
George Burgess IV | 4e37d53 | 2017-08-03 17:11:35 -0700 | [diff] [blame] | 70 | int open(const char* const __pass_object_size pathname, int flags, mode_t modes) |
| 71 | __overloadable |
| 72 | __clang_warning_if(!__open_modes_useful(flags) && modes, |
| 73 | "'open' " __open_useless_modes_warning) { |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 74 | return __open_real(pathname, flags, modes); |
| 75 | } |
| 76 | |
| 77 | __BIONIC_ERROR_FUNCTION_VISIBILITY |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 78 | int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...) |
| 79 | __overloadable |
| 80 | __errorattr(__open_too_many_args_error); |
| 81 | |
| 82 | __BIONIC_FORTIFY_INLINE |
George Burgess IV | 4e37d53 | 2017-08-03 17:11:35 -0700 | [diff] [blame] | 83 | int openat(int dirfd, const char* const __pass_object_size pathname, int flags) |
George Burgess IV | 0df4c37 | 2017-07-31 21:39:33 -0700 | [diff] [blame] | 84 | __overloadable |
Elliott Hughes | b115aef | 2017-08-04 09:34:19 -0700 | [diff] [blame] | 85 | __clang_error_if(__open_modes_useful(flags), "'openat' " __open_too_few_args_error) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame^] | 86 | #if __ANDROID_API__ >= 17 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 87 | return __openat_2(dirfd, pathname, flags); |
George Burgess IV | 9349b9e | 2019-09-18 17:16:01 -0700 | [diff] [blame] | 88 | #else |
| 89 | return __openat_real(dirfd, pathname, flags); |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 90 | #endif |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | __BIONIC_FORTIFY_INLINE |
George Burgess IV | 4e37d53 | 2017-08-03 17:11:35 -0700 | [diff] [blame] | 94 | int openat(int dirfd, const char* const __pass_object_size pathname, int flags, mode_t modes) |
| 95 | __overloadable |
| 96 | __clang_warning_if(!__open_modes_useful(flags) && modes, |
| 97 | "'openat' " __open_useless_modes_warning) { |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 98 | return __openat_real(dirfd, pathname, flags, modes); |
| 99 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 100 | |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame^] | 101 | #if __ANDROID_API__ >= 21 |
George Burgess IV | 9349b9e | 2019-09-18 17:16:01 -0700 | [diff] [blame] | 102 | /* Note that open == open64, so we reuse those bits in the open64 variants below. */ |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 103 | |
| 104 | __BIONIC_ERROR_FUNCTION_VISIBILITY |
| 105 | int open64(const char* pathname, int flags, mode_t modes, ...) __overloadable |
| 106 | __errorattr(__open_too_many_args_error); |
| 107 | |
| 108 | __BIONIC_FORTIFY_INLINE |
| 109 | int open64(const char* const __pass_object_size pathname, int flags) |
| 110 | __overloadable |
| 111 | __clang_error_if(__open_modes_useful(flags), "'open64' " __open_too_few_args_error) { |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 112 | return open(pathname, flags); |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | __BIONIC_FORTIFY_INLINE |
| 116 | int open64(const char* const __pass_object_size pathname, int flags, mode_t modes) |
| 117 | __overloadable |
| 118 | __clang_warning_if(!__open_modes_useful(flags) && modes, |
| 119 | "'open64' " __open_useless_modes_warning) { |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 120 | return open(pathname, flags, modes); |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | __BIONIC_ERROR_FUNCTION_VISIBILITY |
| 124 | int openat64(int dirfd, const char* pathname, int flags, mode_t modes, ...) |
| 125 | __overloadable |
| 126 | __errorattr(__open_too_many_args_error); |
| 127 | |
| 128 | __BIONIC_FORTIFY_INLINE |
| 129 | int openat64(int dirfd, const char* const __pass_object_size pathname, int flags) |
| 130 | __overloadable |
| 131 | __clang_error_if(__open_modes_useful(flags), "'openat64' " __open_too_few_args_error) { |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 132 | return openat(dirfd, pathname, flags); |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | __BIONIC_FORTIFY_INLINE |
| 136 | int openat64(int dirfd, const char* const __pass_object_size pathname, int flags, mode_t modes) |
| 137 | __overloadable |
| 138 | __clang_warning_if(!__open_modes_useful(flags) && modes, |
| 139 | "'openat64' " __open_useless_modes_warning) { |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 140 | return openat(dirfd, pathname, flags, modes); |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 141 | } |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame^] | 142 | #endif /* __ANDROID_API__ >= 21 */ |
George Burgess IV | 2356c93 | 2019-06-06 17:18:13 -0700 | [diff] [blame] | 143 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 144 | #undef __open_too_many_args_error |
| 145 | #undef __open_too_few_args_error |
George Burgess IV | 4e37d53 | 2017-08-03 17:11:35 -0700 | [diff] [blame] | 146 | #undef __open_useless_modes_warning |
| 147 | #undef __open_modes_useful |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 148 | #endif /* defined(__BIONIC_FORTIFY) */ |