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 | #ifndef _UNISTD_H_ |
| 29 | #error "Never include this file directly; instead, include <unistd.h>" |
| 30 | #endif |
| 31 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 32 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 33 | #if __BIONIC_AVAILABILITY_GUARD(24) |
| 34 | char* _Nullable __getcwd_chk(char* _Nullable, size_t, size_t) __INTRODUCED_IN(24); |
| 35 | #endif /* __BIONIC_AVAILABILITY_GUARD(24) */ |
| 36 | |
| 37 | |
| 38 | |
| 39 | #if __BIONIC_AVAILABILITY_GUARD(23) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 40 | ssize_t __pread_chk(int, void* _Nonnull, size_t, off_t, size_t) __INTRODUCED_IN(23); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 41 | #endif /* __BIONIC_AVAILABILITY_GUARD(23) */ |
| 42 | |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 43 | ssize_t __pread_real(int, void* _Nonnull, size_t, off_t) __RENAME(pread); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 44 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 45 | |
| 46 | #if __BIONIC_AVAILABILITY_GUARD(23) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 47 | ssize_t __pread64_chk(int, void* _Nonnull, size_t, off64_t, size_t) __INTRODUCED_IN(23); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 48 | #endif /* __BIONIC_AVAILABILITY_GUARD(23) */ |
| 49 | |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 50 | ssize_t __pread64_real(int, void* _Nonnull, size_t, off64_t) __RENAME(pread64); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 51 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 52 | |
| 53 | #if __BIONIC_AVAILABILITY_GUARD(24) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 54 | ssize_t __pwrite_chk(int, const void* _Nonnull, size_t, off_t, size_t) __INTRODUCED_IN(24); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 55 | #endif /* __BIONIC_AVAILABILITY_GUARD(24) */ |
| 56 | |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 57 | ssize_t __pwrite_real(int, const void* _Nonnull, size_t, off_t) __RENAME(pwrite); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 58 | |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 59 | |
| 60 | #if __BIONIC_AVAILABILITY_GUARD(24) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 61 | ssize_t __pwrite64_chk(int, const void* _Nonnull, size_t, off64_t, size_t) __INTRODUCED_IN(24); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 62 | #endif /* __BIONIC_AVAILABILITY_GUARD(24) */ |
| 63 | |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 64 | ssize_t __pwrite64_real(int, const void* _Nonnull, size_t, off64_t) __RENAME(pwrite64); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 65 | |
Elliott Hughes | 655e430 | 2023-06-16 12:39:33 -0700 | [diff] [blame] | 66 | ssize_t __read_chk(int, void* __BIONIC_COMPLICATED_NULLNESS, size_t, size_t); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 67 | |
| 68 | #if __BIONIC_AVAILABILITY_GUARD(24) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 69 | ssize_t __write_chk(int, const void* __BIONIC_COMPLICATED_NULLNESS, size_t, size_t) __INTRODUCED_IN(24); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 70 | #endif /* __BIONIC_AVAILABILITY_GUARD(24) */ |
| 71 | |
| 72 | |
| 73 | #if __BIONIC_AVAILABILITY_GUARD(23) |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 74 | ssize_t __readlink_chk(const char* _Nonnull, char* _Nonnull, size_t, size_t) __INTRODUCED_IN(23); |
| 75 | ssize_t __readlinkat_chk(int dirfd, const char* _Nonnull, char* _Nonnull, size_t, size_t) __INTRODUCED_IN(23); |
Dan Albert | 02ce401 | 2024-10-25 19:13:49 +0000 | [diff] [blame] | 76 | #endif /* __BIONIC_AVAILABILITY_GUARD(23) */ |
| 77 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 78 | |
| 79 | #if defined(__BIONIC_FORTIFY) |
| 80 | |
| 81 | #if defined(__USE_FILE_OFFSET64) |
| 82 | #define __PREAD_PREFIX(x) __pread64_ ## x |
| 83 | #define __PWRITE_PREFIX(x) __pwrite64_ ## x |
| 84 | #else |
| 85 | #define __PREAD_PREFIX(x) __pread_ ## x |
| 86 | #define __PWRITE_PREFIX(x) __pwrite_ ## x |
| 87 | #endif |
| 88 | |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 89 | #define __error_if_overflows_ssizet(what, fn) \ |
| 90 | __clang_error_if((what) > SSIZE_MAX, "in call to '" #fn "', '" #what "' must be <= SSIZE_MAX") |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 91 | |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 92 | #define __error_if_overflows_objectsize(what, objsize, fn) \ |
George Burgess IV | 5273dc5 | 2019-05-09 13:46:57 -0700 | [diff] [blame] | 93 | __clang_error_if(__bos_unevaluated_lt((objsize), (what)), \ |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 94 | "in call to '" #fn "', '" #what "' bytes overflows the given object") |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 95 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 96 | #define __bos_trivially_ge_no_overflow(bos_val, index) \ |
George Burgess IV | 74519e7 | 2019-06-06 17:54:00 -0700 | [diff] [blame] | 97 | ((__bos_dynamic_check_impl_and((bos_val), >=, (index), (bos_val) <= SSIZE_MAX) && \ |
| 98 | __builtin_constant_p(index) && (index) <= SSIZE_MAX)) |
George Burgess IV | d9865e7 | 2019-05-13 17:20:04 -0700 | [diff] [blame] | 99 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 100 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 101 | char* _Nullable getcwd(char* const _Nullable __pass_object_size buf, size_t size) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 102 | __overloadable |
| 103 | __error_if_overflows_objectsize(size, __bos(buf), getcwd) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 104 | #if __ANDROID_API__ >= 24 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 105 | size_t bos = __bos(buf); |
| 106 | |
George Burgess IV | 3aedee9 | 2019-09-24 11:46:22 -0700 | [diff] [blame] | 107 | if (!__bos_trivially_ge(bos, size)) { |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 108 | return __getcwd_chk(buf, size, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 109 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 110 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 111 | return __call_bypassing_fortify(getcwd)(buf, size); |
| 112 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 113 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 114 | #if !defined(__USE_FILE_OFFSET64) |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 115 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 116 | ssize_t pread(int fd, void* const _Nonnull __pass_object_size0 buf, size_t count, off_t offset) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 117 | __overloadable |
| 118 | __error_if_overflows_ssizet(count, pread) |
| 119 | __error_if_overflows_objectsize(count, __bos0(buf), pread) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 120 | #if __ANDROID_API__ >= 23 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 121 | size_t bos = __bos0(buf); |
| 122 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 123 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 124 | return __PREAD_PREFIX(chk)(fd, buf, count, offset, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 125 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 126 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 127 | return __PREAD_PREFIX(real)(fd, buf, count, offset); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 128 | } |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 129 | #endif /* !defined(__USE_FILE_OFFSET64) */ |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 130 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 131 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 132 | ssize_t pread64(int fd, void* const _Nonnull __pass_object_size0 buf, size_t count, off64_t offset) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 133 | __overloadable |
| 134 | __error_if_overflows_ssizet(count, pread64) |
| 135 | __error_if_overflows_objectsize(count, __bos0(buf), pread64) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 136 | #if __ANDROID_API__ >= 23 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 137 | size_t bos = __bos0(buf); |
| 138 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 139 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 140 | return __pread64_chk(fd, buf, count, offset, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 141 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 142 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 143 | return __pread64_real(fd, buf, count, offset); |
| 144 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 145 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 146 | #if !defined(__USE_FILE_OFFSET64) |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 147 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 148 | ssize_t pwrite(int fd, const void* const _Nonnull __pass_object_size0 buf, size_t count, off_t offset) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 149 | __overloadable |
| 150 | __error_if_overflows_ssizet(count, pwrite) |
| 151 | __error_if_overflows_objectsize(count, __bos0(buf), pwrite) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 152 | #if __ANDROID_API__ >= 24 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 153 | size_t bos = __bos0(buf); |
| 154 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 155 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 156 | return __PWRITE_PREFIX(chk)(fd, buf, count, offset, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 157 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 158 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 159 | return __PWRITE_PREFIX(real)(fd, buf, count, offset); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 160 | } |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 161 | #endif /* !defined(__USE_FILE_OFFSET64) */ |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 162 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 163 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 164 | ssize_t pwrite64(int fd, const void* const _Nonnull __pass_object_size0 buf, size_t count, off64_t offset) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 165 | __overloadable |
| 166 | __error_if_overflows_ssizet(count, pwrite64) |
| 167 | __error_if_overflows_objectsize(count, __bos0(buf), pwrite64) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 168 | #if __ANDROID_API__ >= 24 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 169 | size_t bos = __bos0(buf); |
| 170 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 171 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 172 | return __pwrite64_chk(fd, buf, count, offset, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 173 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 174 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 175 | return __pwrite64_real(fd, buf, count, offset); |
| 176 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 177 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 178 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 179 | ssize_t read(int fd, void* const __BIONIC_COMPLICATED_NULLNESS __pass_object_size0 buf, size_t count) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 180 | __overloadable |
| 181 | __error_if_overflows_ssizet(count, read) |
| 182 | __error_if_overflows_objectsize(count, __bos0(buf), read) { |
Elliott Hughes | f4ace9d | 2023-02-23 17:38:37 +0000 | [diff] [blame] | 183 | #if __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 184 | size_t bos = __bos0(buf); |
| 185 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 186 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 187 | return __read_chk(fd, buf, count, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 188 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 189 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 190 | return __call_bypassing_fortify(read)(fd, buf, count); |
| 191 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 192 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 193 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 194 | ssize_t write(int fd, const void* const __BIONIC_COMPLICATED_NULLNESS __pass_object_size0 buf, size_t count) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 195 | __overloadable |
| 196 | __error_if_overflows_ssizet(count, write) |
| 197 | __error_if_overflows_objectsize(count, __bos0(buf), write) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 198 | #if __ANDROID_API__ >= 24 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 199 | size_t bos = __bos0(buf); |
| 200 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 201 | if (!__bos_trivially_ge_no_overflow(bos, count)) { |
| 202 | return __write_chk(fd, buf, count, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 203 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 204 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 205 | return __call_bypassing_fortify(write)(fd, buf, count); |
| 206 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 207 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 208 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 209 | ssize_t readlink(const char* _Nonnull path, char* _Nonnull const __pass_object_size buf, size_t size) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 210 | __overloadable |
| 211 | __error_if_overflows_ssizet(size, readlink) |
| 212 | __error_if_overflows_objectsize(size, __bos(buf), readlink) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 213 | #if __ANDROID_API__ >= 23 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 214 | size_t bos = __bos(buf); |
| 215 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 216 | if (!__bos_trivially_ge_no_overflow(bos, size)) { |
| 217 | return __readlink_chk(path, buf, size, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 218 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 219 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 220 | return __call_bypassing_fortify(readlink)(path, buf, size); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 221 | } |
| 222 | |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 223 | __BIONIC_FORTIFY_INLINE |
zijunzhao | 30cf6d0 | 2023-06-01 19:23:18 +0000 | [diff] [blame] | 224 | ssize_t readlinkat(int dirfd, const char* _Nonnull path, char* const _Nonnull __pass_object_size buf, size_t size) |
George Burgess IV | 16c1739 | 2017-07-31 21:30:47 -0700 | [diff] [blame] | 225 | __overloadable |
| 226 | __error_if_overflows_ssizet(size, readlinkat) |
| 227 | __error_if_overflows_objectsize(size, __bos(buf), readlinkat) { |
Elliott Hughes | 95c6cd7 | 2019-12-20 13:26:14 -0800 | [diff] [blame] | 228 | #if __ANDROID_API__ >= 23 && __BIONIC_FORTIFY_RUNTIME_CHECKS_ENABLED |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 229 | size_t bos = __bos(buf); |
| 230 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 231 | if (!__bos_trivially_ge_no_overflow(bos, size)) { |
| 232 | return __readlinkat_chk(dirfd, path, buf, size, bos); |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 233 | } |
George Burgess IV | 8a0cdb1 | 2019-10-21 13:27:57 -0700 | [diff] [blame] | 234 | #endif |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 235 | return __call_bypassing_fortify(readlinkat)(dirfd, path, buf, size); |
| 236 | } |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 237 | |
George Burgess IV | da8d30f | 2019-09-18 17:09:43 -0700 | [diff] [blame] | 238 | #undef __bos_trivially_ge_no_overflow |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 239 | #undef __enable_if_no_overflow_ssizet |
| 240 | #undef __error_if_overflows_objectsize |
| 241 | #undef __error_if_overflows_ssizet |
George Burgess IV | b97049c | 2017-07-24 15:05:05 -0700 | [diff] [blame] | 242 | #undef __PREAD_PREFIX |
| 243 | #undef __PWRITE_PREFIX |
| 244 | #endif /* defined(__BIONIC_FORTIFY) */ |