1*2c2f96dcSApple OSS Distributions /* 2*2c2f96dcSApple OSS Distributions * Copyright (c) 2021 Apple Inc. All rights reserved. 3*2c2f96dcSApple OSS Distributions * 4*2c2f96dcSApple OSS Distributions * @APPLE_LICENSE_HEADER_START@ 5*2c2f96dcSApple OSS Distributions * 6*2c2f96dcSApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*2c2f96dcSApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*2c2f96dcSApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*2c2f96dcSApple OSS Distributions * compliance with the License. Please obtain a copy of the License at 10*2c2f96dcSApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this 11*2c2f96dcSApple OSS Distributions * file. 12*2c2f96dcSApple OSS Distributions * 13*2c2f96dcSApple OSS Distributions * The Original Code and all software distributed under the License are 14*2c2f96dcSApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 15*2c2f96dcSApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 16*2c2f96dcSApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 17*2c2f96dcSApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 18*2c2f96dcSApple OSS Distributions * Please see the License for the specific language governing rights and 19*2c2f96dcSApple OSS Distributions * limitations under the License. 20*2c2f96dcSApple OSS Distributions * 21*2c2f96dcSApple OSS Distributions * @APPLE_LICENSE_HEADER_END@ 22*2c2f96dcSApple OSS Distributions */ 23*2c2f96dcSApple OSS Distributions 24*2c2f96dcSApple OSS Distributions #ifndef _OS_ALLOC_UTIL_H 25*2c2f96dcSApple OSS Distributions #define _OS_ALLOC_UTIL_H 26*2c2f96dcSApple OSS Distributions 27*2c2f96dcSApple OSS Distributions #include <sys/cdefs.h> 28*2c2f96dcSApple OSS Distributions #if defined(__cplusplus) && __cplusplus >= 201103L 29*2c2f96dcSApple OSS Distributions extern "C++" { 30*2c2f96dcSApple OSS Distributions #include <os/cpp_util.h> 31*2c2f96dcSApple OSS Distributions } 32*2c2f96dcSApple OSS Distributions #endif 33*2c2f96dcSApple OSS Distributions 34*2c2f96dcSApple OSS Distributions /*! 35*2c2f96dcSApple OSS Distributions * @macro os_is_ptr_like 36*2c2f96dcSApple OSS Distributions * 37*2c2f96dcSApple OSS Distributions * @abstract 38*2c2f96dcSApple OSS Distributions * Tell whether the given expression resembles a pointer. 39*2c2f96dcSApple OSS Distributions * 40*2c2f96dcSApple OSS Distributions * @discussion 41*2c2f96dcSApple OSS Distributions * When pointer bounds are enabled, only types that are actually classified 42*2c2f96dcSApple OSS Distributions * as pointers will be considered pointer-like. Otherwise, any pointer-sized 43*2c2f96dcSApple OSS Distributions * type will be considered pointer-like. 44*2c2f96dcSApple OSS Distributions * 45*2c2f96dcSApple OSS Distributions * @param P the expression to be checked 46*2c2f96dcSApple OSS Distributions */ 47*2c2f96dcSApple OSS Distributions #if __has_ptrcheck 48*2c2f96dcSApple OSS Distributions #define os_is_ptr_like(P) (__builtin_classify_type(P) == 5) 49*2c2f96dcSApple OSS Distributions #else /* __has_ptrcheck */ 50*2c2f96dcSApple OSS Distributions #define os_is_ptr_like(P) (sizeof(P) == sizeof(void *)) 51*2c2f96dcSApple OSS Distributions #endif /* __has_ptrcheck */ 52*2c2f96dcSApple OSS Distributions 53*2c2f96dcSApple OSS Distributions /*! 54*2c2f96dcSApple OSS Distributions * @macro os_ptr_load_and_erase 55*2c2f96dcSApple OSS Distributions * 56*2c2f96dcSApple OSS Distributions * @abstract 57*2c2f96dcSApple OSS Distributions * Load the value of @c elem into a temporary, set @c elem to NULL, and 58*2c2f96dcSApple OSS Distributions * return the value. 59*2c2f96dcSApple OSS Distributions * 60*2c2f96dcSApple OSS Distributions * @param elem the pointer whose value will be taken, and which will 61*2c2f96dcSApple OSS Distributions * be set to NULL. 62*2c2f96dcSApple OSS Distributions */ 63*2c2f96dcSApple OSS Distributions #define os_ptr_load_and_erase(elem) ({ \ 64*2c2f96dcSApple OSS Distributions _Static_assert(os_is_ptr_like(elem), \ 65*2c2f96dcSApple OSS Distributions "elem isn't pointer sized"); \ 66*2c2f96dcSApple OSS Distributions __auto_type *__single __eptr = &(elem); \ 67*2c2f96dcSApple OSS Distributions __auto_type __elem = *__eptr; \ 68*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic push") \ 69*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ 70*2c2f96dcSApple OSS Distributions *__eptr = (__typeof__(__elem))NULL; \ 71*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic pop") \ 72*2c2f96dcSApple OSS Distributions __elem; \ 73*2c2f96dcSApple OSS Distributions }) 74*2c2f96dcSApple OSS Distributions 75*2c2f96dcSApple OSS Distributions /*! 76*2c2f96dcSApple OSS Distributions * @macro os_get_pointee_type 77*2c2f96dcSApple OSS Distributions * 78*2c2f96dcSApple OSS Distributions * @abstract 79*2c2f96dcSApple OSS Distributions * Get the type pointed to by @c ptr. 80*2c2f96dcSApple OSS Distributions * 81*2c2f96dcSApple OSS Distributions * @discussion 82*2c2f96dcSApple OSS Distributions * C++ forbids dereferencing a void pointer. 83*2c2f96dcSApple OSS Distributions * This macro provides an abstraction that is safe to use with any pointer, 84*2c2f96dcSApple OSS Distributions * both from C, and from C++. 85*2c2f96dcSApple OSS Distributions * 86*2c2f96dcSApple OSS Distributions * @param ptr the pointer we want to get the pointee's type for 87*2c2f96dcSApple OSS Distributions */ 88*2c2f96dcSApple OSS Distributions 89*2c2f96dcSApple OSS Distributions #if defined(__cplusplus) && __has_builtin(__remove_pointer) && \ 90*2c2f96dcSApple OSS Distributions __has_builtin(__remove_reference_t) 91*2c2f96dcSApple OSS Distributions /* 92*2c2f96dcSApple OSS Distributions * The reason we're using the compiler builtins is that those are able to 93*2c2f96dcSApple OSS Distributions * properly deal with __ptrauth-qualified pointers, unlike template 94*2c2f96dcSApple OSS Distributions * specializations. Moreover, template specializations would require forwarding 95*2c2f96dcSApple OSS Distributions * type definitions, and currently __attribute__((xnu_usage_semantics(...))) 96*2c2f96dcSApple OSS Distributions * annotations are not carried over across typedefs. 97*2c2f96dcSApple OSS Distributions * 98*2c2f96dcSApple OSS Distributions * It is safe to assume that if the compiler does not support such builtins, 99*2c2f96dcSApple OSS Distributions * it also does not implement D150875, and we can therefore safely dereference 100*2c2f96dcSApple OSS Distributions * void pointers. 101*2c2f96dcSApple OSS Distributions */ 102*2c2f96dcSApple OSS Distributions #define os_get_pointee_type(ptr) \ 103*2c2f96dcSApple OSS Distributions __remove_pointer(__remove_reference_t(__typeof__(ptr))) 104*2c2f96dcSApple OSS Distributions #else 105*2c2f96dcSApple OSS Distributions #define os_get_pointee_type(ptr) \ 106*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic push") \ 107*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic ignored \"-Wvoid-ptr-dereference\"") \ 108*2c2f96dcSApple OSS Distributions __typeof__(*(ptr)) \ 109*2c2f96dcSApple OSS Distributions _Pragma("clang diagnostic pop") 110*2c2f96dcSApple OSS Distributions #endif 111*2c2f96dcSApple OSS Distributions 112*2c2f96dcSApple OSS Distributions #endif /* _OS_ALLOC_UTIL_H */ 113