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