Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 1 | /* |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2 | * Copyright (C) 2016 The Android Open Source Project |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Elliott Hughes | c0f4656 | 2018-11-09 15:38:52 -0800 | [diff] [blame] | 17 | #pragma once |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 18 | |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 19 | // The `annotate` attribute always pulls the annotated (inline) function into the object files, thus |
| 20 | // we should only annotate headers when we are running versioner. |
| 21 | #if defined(__BIONIC_VERSIONER) |
| 22 | |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 23 | #define __INTRODUCED_IN(api_level) __attribute__((__annotate__("introduced_in=" #api_level))) |
Dan Albert | e25abd9 | 2024-05-15 17:55:55 +0000 | [diff] [blame] | 24 | #define __DEPRECATED_IN(api_level, msg) __attribute__((__annotate__("deprecated_in=" #api_level))) |
| 25 | #define __REMOVED_IN(api_level, msg) __attribute__((__annotate__("obsoleted_in=" #api_level))) |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 26 | #define __INTRODUCED_IN_32(api_level) __attribute__((__annotate__("introduced_in_32=" #api_level))) |
| 27 | #define __INTRODUCED_IN_64(api_level) __attribute__((__annotate__("introduced_in_64=" #api_level))) |
Josh Gao | bfb6bae | 2016-07-15 17:25:21 -0700 | [diff] [blame] | 28 | |
Elliott Hughes | a1b5ca2 | 2024-04-22 20:10:53 +0000 | [diff] [blame] | 29 | #define __VERSIONER_NO_GUARD __attribute__((__annotate__("versioner_no_guard"))) |
| 30 | #define __VERSIONER_FORTIFY_INLINE __attribute__((__annotate__("versioner_fortify_inline"))) |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 31 | |
| 32 | #else |
| 33 | |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 34 | // When headers are not processed by the versioner (i.e. compiled into object files), |
| 35 | // the availability attributed is emitted instead. The clang compiler will make the symbol weak |
| 36 | // when targeting old api_level and enforce the reference to the symbol to be guarded with |
| 37 | // __builtin_available(android api_level, *). |
| 38 | |
| 39 | // The 'strict' flag is required for NDK clients where the use of "-Wunguarded-availability" cannot |
| 40 | // be enforced. In the case, the absence of 'strict' makes it possible to call an unavailable API |
| 41 | // without the __builtin_available check, which will cause a link error at runtime. |
| 42 | // Android platform build system defines this macro along with -Wunguarded-availability |
Elliott Hughes | a37b181 | 2021-02-11 12:56:39 -0800 | [diff] [blame] | 43 | #if defined(__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__) |
Dan Albert | 398e1aa | 2024-05-01 22:06:54 +0000 | [diff] [blame] | 44 | #define __BIONIC_AVAILABILITY(__what, ...) __attribute__((__availability__(android,__what __VA_OPT__(,) __VA_ARGS__))) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 45 | #else |
Dan Albert | 398e1aa | 2024-05-01 22:06:54 +0000 | [diff] [blame] | 46 | #define __BIONIC_AVAILABILITY(__what, ...) __attribute__((__availability__(android,strict,__what __VA_OPT__(,) __VA_ARGS__))) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 47 | #endif |
| 48 | |
Elliott Hughes | a37b181 | 2021-02-11 12:56:39 -0800 | [diff] [blame] | 49 | #define __INTRODUCED_IN(api_level) __BIONIC_AVAILABILITY(introduced=api_level) |
Dan Albert | e25abd9 | 2024-05-15 17:55:55 +0000 | [diff] [blame] | 50 | #define __DEPRECATED_IN(api_level, msg) __BIONIC_AVAILABILITY(deprecated=api_level, message=msg) |
| 51 | #define __REMOVED_IN(api_level, msg) __BIONIC_AVAILABILITY(obsoleted=api_level, message=msg) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 52 | |
| 53 | // The same availability attribute can't be annotated multiple times. Therefore, the macros are |
| 54 | // defined for the configuration that it is valid for so that declarations like the below doesn't |
| 55 | // cause inconsistent availability values which is an error with -Wavailability: |
| 56 | // |
| 57 | // void foo() __INTRODUCED_IN_32(30) __INTRODUCED_IN_64(31); |
| 58 | // |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 59 | #if !defined(__LP64__) |
Elliott Hughes | a37b181 | 2021-02-11 12:56:39 -0800 | [diff] [blame] | 60 | #define __INTRODUCED_IN_32(api_level) __BIONIC_AVAILABILITY(introduced=api_level) |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 61 | #define __INTRODUCED_IN_64(api_level) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 62 | #else |
| 63 | #define __INTRODUCED_IN_32(api_level) |
Elliott Hughes | a37b181 | 2021-02-11 12:56:39 -0800 | [diff] [blame] | 64 | #define __INTRODUCED_IN_64(api_level) __BIONIC_AVAILABILITY(introduced=api_level) |
Jiyong Park | 23bfed2 | 2020-08-10 13:35:05 +0900 | [diff] [blame] | 65 | #endif |
| 66 | |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 67 | #define __VERSIONER_NO_GUARD |
Logan Chien | 5a750f3 | 2019-11-20 10:29:14 -0800 | [diff] [blame] | 68 | #define __VERSIONER_FORTIFY_INLINE |
Logan Chien | d7d9ebc | 2019-11-27 07:25:07 -0800 | [diff] [blame] | 69 | |
| 70 | #endif // defined(__BIONIC_VERSIONER) |
Justin Yun | ced6302 | 2024-03-11 08:41:18 +0900 | [diff] [blame] | 71 | |
| 72 | // Vendor modules do not follow SDK versioning. Ignore NDK guards for vendor modules. |
| 73 | #if defined(__ANDROID_VENDOR__) |
| 74 | #undef __BIONIC_AVAILABILITY |
Dan Albert | 398e1aa | 2024-05-01 22:06:54 +0000 | [diff] [blame] | 75 | #define __BIONIC_AVAILABILITY(api_level, ...) |
Justin Yun | ced6302 | 2024-03-11 08:41:18 +0900 | [diff] [blame] | 76 | #endif // defined(__ANDROID_VENDOR__) |