1*e7776783SApple OSS Distributions // 2*e7776783SApple OSS Distributions // Copyright (c) 2019 Apple, Inc. All rights reserved. 3*e7776783SApple OSS Distributions // 4*e7776783SApple OSS Distributions // @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*e7776783SApple OSS Distributions // 6*e7776783SApple OSS Distributions // This file contains Original Code and/or Modifications of Original Code 7*e7776783SApple OSS Distributions // as defined in and that are subject to the Apple Public Source License 8*e7776783SApple OSS Distributions // Version 2.0 (the 'License'). You may not use this file except in 9*e7776783SApple OSS Distributions // compliance with the License. The rights granted to you under the License 10*e7776783SApple OSS Distributions // may not be used to create, or enable the creation or redistribution of, 11*e7776783SApple OSS Distributions // unlawful or unlicensed copies of an Apple operating system, or to 12*e7776783SApple OSS Distributions // circumvent, violate, or enable the circumvention or violation of, any 13*e7776783SApple OSS Distributions // terms of an Apple operating system software license agreement. 14*e7776783SApple OSS Distributions // 15*e7776783SApple OSS Distributions // Please obtain a copy of the License at 16*e7776783SApple OSS Distributions // http://www.opensource.apple.com/apsl/ and read it before using this file. 17*e7776783SApple OSS Distributions // 18*e7776783SApple OSS Distributions // The Original Code and all software distributed under the License are 19*e7776783SApple OSS Distributions // distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*e7776783SApple OSS Distributions // EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*e7776783SApple OSS Distributions // INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*e7776783SApple OSS Distributions // FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*e7776783SApple OSS Distributions // Please see the License for the specific language governing rights and 24*e7776783SApple OSS Distributions // limitations under the License. 25*e7776783SApple OSS Distributions // 26*e7776783SApple OSS Distributions // @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*e7776783SApple OSS Distributions // 28*e7776783SApple OSS Distributions 29*e7776783SApple OSS Distributions #ifndef XNU_LIBKERN_LIBKERN_CXX_BOUNDED_PTR_H 30*e7776783SApple OSS Distributions #define XNU_LIBKERN_LIBKERN_CXX_BOUNDED_PTR_H 31*e7776783SApple OSS Distributions 32*e7776783SApple OSS Distributions #if !TAPI 33*e7776783SApple OSS Distributions 34*e7776783SApple OSS Distributions #include <stddef.h> 35*e7776783SApple OSS Distributions #include <stdint.h> 36*e7776783SApple OSS Distributions #include <os/overflow.h> 37*e7776783SApple OSS Distributions #include <os/base.h> 38*e7776783SApple OSS Distributions 39*e7776783SApple OSS Distributions #if !defined(__improbable) 40*e7776783SApple OSS Distributions # define __improbable(...) __builtin_expect((__VA_ARGS__), 0) 41*e7776783SApple OSS Distributions #endif 42*e7776783SApple OSS Distributions 43*e7776783SApple OSS Distributions namespace libkern { 44*e7776783SApple OSS Distributions namespace detail { 45*e7776783SApple OSS Distributions // Reimplementation of things in <type_traits> because we don't seem 46*e7776783SApple OSS Distributions // to have the right to rely on the C++ Standard Library (based on 47*e7776783SApple OSS Distributions // attempts to compile IOHIDFamily). 48*e7776783SApple OSS Distributions // TODO: Do we really need to re-implement this here? 49*e7776783SApple OSS Distributions template <typename ...> using void_t = void; 50*e7776783SApple OSS Distributions template <typename T> T && declval() noexcept; 51*e7776783SApple OSS Distributions using nullptr_t = decltype(nullptr); 52*e7776783SApple OSS Distributions template <bool Cond, typename T = void> struct enable_if; 53*e7776783SApple OSS Distributions template <typename T> struct enable_if<true, T> { using type = T; }; 54*e7776783SApple OSS Distributions template <bool Cond, typename T = void> using enable_if_t = typename enable_if<Cond, T>::type; 55*e7776783SApple OSS Distributions template <typename T1, typename T2> 56*e7776783SApple OSS Distributions constexpr bool is_convertible_v = __is_convertible_to(T1, T2); 57*e7776783SApple OSS Distributions 58*e7776783SApple OSS Distributions template <typename T> inline constexpr bool is_void_v = false; 59*e7776783SApple OSS Distributions template <> inline constexpr bool is_void_v<void> = true; 60*e7776783SApple OSS Distributions template <> inline constexpr bool is_void_v<void const> = true; 61*e7776783SApple OSS Distributions 62*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_const { using type = U; }; 63*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_const<T const, U> { using type = U const; }; 64*e7776783SApple OSS Distributions template <typename T, typename U> using copy_const_t = typename copy_const<T, U>::type; 65*e7776783SApple OSS Distributions 66*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_cv { using type = U; }; 67*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_cv<T const, U> { using type = U const; }; 68*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_cv<T volatile, U> { using type = U volatile; }; 69*e7776783SApple OSS Distributions template <typename T, typename U> struct copy_cv<T const volatile, U> { using type = U const volatile; }; 70*e7776783SApple OSS Distributions template <typename T, typename U> using copy_cv_t = typename copy_cv<T, U>::type; 71*e7776783SApple OSS Distributions 72*e7776783SApple OSS Distributions template <typename T, typename U> 73*e7776783SApple OSS Distributions using WhenComparable = void_t< 74*e7776783SApple OSS Distributions decltype(declval<T>() == declval<U>()), 75*e7776783SApple OSS Distributions decltype(declval<T>() != declval<U>()) 76*e7776783SApple OSS Distributions >; 77*e7776783SApple OSS Distributions 78*e7776783SApple OSS Distributions template <typename T, typename U> 79*e7776783SApple OSS Distributions using WhenOrderable = void_t < 80*e7776783SApple OSS Distributions decltype(declval<T>() < declval<U>()), 81*e7776783SApple OSS Distributions decltype(declval<T>() > declval<U>()), 82*e7776783SApple OSS Distributions decltype(declval<T>() >= declval<U>()), 83*e7776783SApple OSS Distributions decltype(declval<T>() <= declval<U>()) 84*e7776783SApple OSS Distributions >; 85*e7776783SApple OSS Distributions 86*e7776783SApple OSS Distributions // Pretend that sizeof(void) is 1, otherwise the in-bounds check doesn't 87*e7776783SApple OSS Distributions // make sense for `bounded_ptr<void>`. 88*e7776783SApple OSS Distributions template <typename T> constexpr size_t sizeof_v = sizeof(T); 89*e7776783SApple OSS Distributions template <> inline constexpr size_t sizeof_v<void> = 1; 90*e7776783SApple OSS Distributions template <> inline constexpr size_t sizeof_v<void const> = 1; 91*e7776783SApple OSS Distributions template <> inline constexpr size_t sizeof_v<void volatile> = 1; 92*e7776783SApple OSS Distributions template <> inline constexpr size_t sizeof_v<void const volatile> = 1; 93*e7776783SApple OSS Distributions } // end namespace detail 94*e7776783SApple OSS Distributions 95*e7776783SApple OSS Distributions // Non-owning pointer to an object (or a range of objects) of type `T` 96*e7776783SApple OSS Distributions // that validates that the address is within some specified bounds on 97*e7776783SApple OSS Distributions // dereference-like operations. 98*e7776783SApple OSS Distributions // 99*e7776783SApple OSS Distributions // Conceptually, a `bounded_ptr` points within a range of memory `[begin, end)`. 100*e7776783SApple OSS Distributions // If accessing any part of the result of dereferencing the pointer would 101*e7776783SApple OSS Distributions // lead to an access outside of the `[begin, end)` range, the pointer is 102*e7776783SApple OSS Distributions // said to be out-of-bounds. Due to representational constraints, the range 103*e7776783SApple OSS Distributions // of in-bounds memory must be no larger than 4GB. 104*e7776783SApple OSS Distributions // 105*e7776783SApple OSS Distributions // Dereference-like operations (dereference, subscript, pointer member access) 106*e7776783SApple OSS Distributions // validate that the pointer is not out-of-bounds. If an out-of-bounds pointer 107*e7776783SApple OSS Distributions // is dereferenced, the `TrappingPolicy` is called as 108*e7776783SApple OSS Distributions // `TrappingPolicy::trap(some-message)`, and the operation is said to "trap". 109*e7776783SApple OSS Distributions // This terminology is used below to describe the behavior of the `TrappingPolicy`. 110*e7776783SApple OSS Distributions // 111*e7776783SApple OSS Distributions // Pointer arithmetic is allowed (and the bounds are not validated), so it is 112*e7776783SApple OSS Distributions // entirely possible to make a `bounded_ptr` point outside of its range. 113*e7776783SApple OSS Distributions // However, overflow checking is performed on arithmetic operations, and 114*e7776783SApple OSS Distributions // any operation resulting in an overflow will also "trap". 115*e7776783SApple OSS Distributions // 116*e7776783SApple OSS Distributions // The behavior of the `TrappingPolicy` can be customized as desired, however 117*e7776783SApple OSS Distributions // a trap should never return, causing the current `bounded_ptr` operation to 118*e7776783SApple OSS Distributions // be aborted. This is important since the trap could signify an integer 119*e7776783SApple OSS Distributions // overflow, a null-pointer dereference or something else that would lead to 120*e7776783SApple OSS Distributions // undefined behavior (UB) if `TrappingPolicy::trap` were to return. 121*e7776783SApple OSS Distributions // 122*e7776783SApple OSS Distributions // Creation of `bounded_ptr`s 123*e7776783SApple OSS Distributions // ========================== 124*e7776783SApple OSS Distributions // `bounded_ptr` provides a single constructor allowing the bounds of the 125*e7776783SApple OSS Distributions // pointer to be specified. When integrating `bounded_ptr` into an existing 126*e7776783SApple OSS Distributions // code base, it is recommended to use `bounded_ptr` as an iterator obtained 127*e7776783SApple OSS Distributions // from other container-like abstractions, instead of manually using the 128*e7776783SApple OSS Distributions // constructor that allows specifying a range. Specifying the range manually 129*e7776783SApple OSS Distributions // on construction is error-prone, and `bounded_ptr` can't help reduce 130*e7776783SApple OSS Distributions // out-of-bounds accesses if the bounds are specified incorrectly. 131*e7776783SApple OSS Distributions // 132*e7776783SApple OSS Distributions // Furthermore, it is a design choice to not provide a constructor that uses 133*e7776783SApple OSS Distributions // relative offsets from the pointer itself to determine the range, because 134*e7776783SApple OSS Distributions // such a constructor is deemed more confusing than helpful. For example, is 135*e7776783SApple OSS Distributions // the offset a number of bytes or a number of objects? Is the offset inclusive 136*e7776783SApple OSS Distributions // or exclusive? Instead, factory functions should be used to create `bounded_ptr`s. 137*e7776783SApple OSS Distributions // 138*e7776783SApple OSS Distributions // Remark on const-ness 139*e7776783SApple OSS Distributions // ==================== 140*e7776783SApple OSS Distributions // Like for raw pointers, the const-ness of a `bounded_ptr` has no bearing on 141*e7776783SApple OSS Distributions // whether the pointee is const. Hence, it is possible to obtain a non-const 142*e7776783SApple OSS Distributions // reference to an object from a const `bounded_ptr`. To encode a 143*e7776783SApple OSS Distributions // pointer-to-const, simply create a `bounded_ptr<T const>`. 144*e7776783SApple OSS Distributions template <typename T, typename TrappingPolicy> 145*e7776783SApple OSS Distributions struct __attribute__((trivial_abi)) bounded_ptr { 146*e7776783SApple OSS Distributions private: 147*e7776783SApple OSS Distributions using CharType = detail::copy_cv_t<T, char>; 148*e7776783SApple OSS Distributions 149*e7776783SApple OSS Distributions public: 150*e7776783SApple OSS Distributions // Creates a null `bounded_ptr`. 151*e7776783SApple OSS Distributions // 152*e7776783SApple OSS Distributions // A null `bounded_ptr` does not point to any object and is conceptually 153*e7776783SApple OSS Distributions // out of bounds, so dereferencing it will trap. "Observing" operations 154*e7776783SApple OSS Distributions // like comparison and check-for-null, along with assignment, are valid 155*e7776783SApple OSS Distributions // operations on a null `bounded_ptr`. 156*e7776783SApple OSS Distributions OS_ALWAYS_INLINE constexpr 157*e7776783SApple OSS Distributions bounded_ptr(detail::nullptr_t) 158*e7776783SApple OSS Distributions : base_(nullptr), count_(0), offset_(0) 159*e7776783SApple OSS Distributions { 160*e7776783SApple OSS Distributions } 161*e7776783SApple OSS Distributions 162*e7776783SApple OSS Distributions OS_ALWAYS_INLINE constexpr 163*e7776783SApple OSS Distributions explicit 164*e7776783SApple OSS Distributions bounded_ptr() 165*e7776783SApple OSS Distributions : bounded_ptr(nullptr) 166*e7776783SApple OSS Distributions { 167*e7776783SApple OSS Distributions } 168*e7776783SApple OSS Distributions 169*e7776783SApple OSS Distributions // Creates a `bounded_ptr` pointing to the given object, and whose bounds 170*e7776783SApple OSS Distributions // are described by the provided `[begin, end)` range. 171*e7776783SApple OSS Distributions // 172*e7776783SApple OSS Distributions // This constructor does not check whether the constructed pointer is 173*e7776783SApple OSS Distributions // within its bounds. However, it does check that the provided `[begin, end)` 174*e7776783SApple OSS Distributions // range is a valid range (that is, `begin <= end`). 175*e7776783SApple OSS Distributions // 176*e7776783SApple OSS Distributions // Furthermore, the number of bytes in the range of in-bounds memory must be 177*e7776783SApple OSS Distributions // representable by a uint32_t, which means that there can be no more than 178*e7776783SApple OSS Distributions // 2^32 bytes (i.e. 4GB) in that range. Otherwise, the constructor will trap. 179*e7776783SApple OSS Distributions OS_ALWAYS_INLINE explicit 180*e7776783SApple OSS Distributions bounded_ptr(T* pointer, T const* begin, T const* end) 181*e7776783SApple OSS Distributions { 182*e7776783SApple OSS Distributions base_ = reinterpret_cast<CharType*>(const_cast<T*>(begin)); 183*e7776783SApple OSS Distributions 184*e7776783SApple OSS Distributions // Store (end - begin) into count_, making sure we don't overflow 185*e7776783SApple OSS Distributions if (__improbable(os_sub_overflow(reinterpret_cast<uintptr_t>(end), 186*e7776783SApple OSS Distributions reinterpret_cast<uintptr_t>(begin), 187*e7776783SApple OSS Distributions &count_))) { 188*e7776783SApple OSS Distributions TrappingPolicy::trap("The range of valid memory is too large to be represented " 189*e7776783SApple OSS Distributions "by this type, or [begin, end) is not a well-formed range"); 190*e7776783SApple OSS Distributions } 191*e7776783SApple OSS Distributions 192*e7776783SApple OSS Distributions // Store (pointer - begin) into offset_, making sure we don't overflow. 193*e7776783SApple OSS Distributions // Note that offset_ can be negative if `pointer` is outside of the 194*e7776783SApple OSS Distributions // range delimited by [begin, end), which can be valid if it represents 195*e7776783SApple OSS Distributions // e.g. a subrange of an array. 196*e7776783SApple OSS Distributions if (__improbable(os_sub_overflow(reinterpret_cast<uintptr_t>(pointer), 197*e7776783SApple OSS Distributions reinterpret_cast<uintptr_t>(begin), 198*e7776783SApple OSS Distributions &offset_))) { 199*e7776783SApple OSS Distributions TrappingPolicy::trap("The offset of the pointer inside its valid memory " 200*e7776783SApple OSS Distributions "range can't be represented using int32_t"); 201*e7776783SApple OSS Distributions } 202*e7776783SApple OSS Distributions } 203*e7776783SApple OSS Distributions 204*e7776783SApple OSS Distributions // Creates a `bounded_ptr` to a type `T` from a `bounded_ptr` to a type `U`. 205*e7776783SApple OSS Distributions // 206*e7776783SApple OSS Distributions // This converting constructor is enabled whenever `U*` is implicitly 207*e7776783SApple OSS Distributions // convertible to `T*`. This allows the usual implicit conversions 208*e7776783SApple OSS Distributions // between base-and-derived types, and also from any type `U*` to a 209*e7776783SApple OSS Distributions // `void*`. If other casts (like between unrelated pointer types) are 210*e7776783SApple OSS Distributions // desired, `libkern::reinterpret_pointer_cast` can be used instead. 211*e7776783SApple OSS Distributions // 212*e7776783SApple OSS Distributions // The bounds on the resulting `bounded_ptr` are inherited from the 213*e7776783SApple OSS Distributions // original `bounded_ptr`. 214*e7776783SApple OSS Distributions template <typename U, typename Policy, typename = detail::enable_if_t<detail::is_convertible_v<U*, T*> > > 215*e7776783SApple OSS Distributions OS_ALWAYS_INLINE 216*e7776783SApple OSS Distributions bounded_ptr(bounded_ptr<U, Policy> const & other) 217*e7776783SApple OSS Distributions : base_(other.base_) 218*e7776783SApple OSS Distributions , count_(other.count_) 219*e7776783SApple OSS Distributions , offset_(static_cast<int32_t>(reinterpret_cast<CharType*>(static_cast<T*>(other.get_ptr_())) - other.base_)) 220*e7776783SApple OSS Distributions { 221*e7776783SApple OSS Distributions } 222*e7776783SApple OSS Distributions 223*e7776783SApple OSS Distributions // Assigns a `bounded_ptr` to a type `U` to a `bounded_ptr` to a type `T`, 224*e7776783SApple OSS Distributions // as long as `U*` is convertible to `T*`. 225*e7776783SApple OSS Distributions // 226*e7776783SApple OSS Distributions // This is a rebinding operation, like assignment between raw pointers, 227*e7776783SApple OSS Distributions // and the destination `bounded_ptr` will inherit the bounds of the 228*e7776783SApple OSS Distributions // source `bounded_ptr`. 229*e7776783SApple OSS Distributions template <typename U, typename Policy, typename = detail::enable_if_t<detail::is_convertible_v<U*, T*> > > 230*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 231*e7776783SApple OSS Distributions operator=(bounded_ptr<U, Policy> const& other) 232*e7776783SApple OSS Distributions { 233*e7776783SApple OSS Distributions base_ = other.base_; 234*e7776783SApple OSS Distributions count_ = other.count_; 235*e7776783SApple OSS Distributions offset_ = static_cast<int32_t>(reinterpret_cast<CharType*>(static_cast<T*>(other.get_ptr_())) - other.base_); 236*e7776783SApple OSS Distributions return *this; 237*e7776783SApple OSS Distributions } 238*e7776783SApple OSS Distributions 239*e7776783SApple OSS Distributions // Sets a `bounded_ptr` to null. 240*e7776783SApple OSS Distributions // 241*e7776783SApple OSS Distributions // This is effectively equivalent to assigning a default-constructed 242*e7776783SApple OSS Distributions // `bounded_ptr` to the target. As a result, the original bounds of 243*e7776783SApple OSS Distributions // the `bounded_ptr` are discarded, and the resulting `bounded_ptr` 244*e7776783SApple OSS Distributions // is both out-of-bounds and also has no bounds assigned to it (like 245*e7776783SApple OSS Distributions // a default-constructed `bounded_ptr`). 246*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 247*e7776783SApple OSS Distributions operator=(detail::nullptr_t) 248*e7776783SApple OSS Distributions { 249*e7776783SApple OSS Distributions *this = bounded_ptr(); 250*e7776783SApple OSS Distributions return *this; 251*e7776783SApple OSS Distributions } 252*e7776783SApple OSS Distributions 253*e7776783SApple OSS Distributions // Returns a reference to the object pointed-to by the `bounded_ptr`. 254*e7776783SApple OSS Distributions // 255*e7776783SApple OSS Distributions // Traps if the pointer is pointing outside of its bounds. 256*e7776783SApple OSS Distributions // 257*e7776783SApple OSS Distributions // Also note that this function will trap when dereferencing a null 258*e7776783SApple OSS Distributions // `bounded_ptr`, unless the bounds of the pointer have been set and 259*e7776783SApple OSS Distributions // include address 0, in which case there's effectively nothing to 260*e7776783SApple OSS Distributions // diagnose. 261*e7776783SApple OSS Distributions template <typename T_ = T> // delay instantiation to avoid forming invalid ref for bounded_ptr<void> 262*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T_& 263*e7776783SApple OSS Distributions operator*() const 264*e7776783SApple OSS Distributions { 265*e7776783SApple OSS Distributions if (__improbable(!in_bounds_())) { 266*e7776783SApple OSS Distributions TrappingPolicy::trap("bounded_ptr<T>::operator*: Dereferencing this pointer " 267*e7776783SApple OSS Distributions "would access memory outside of the bounds set originally"); 268*e7776783SApple OSS Distributions } 269*e7776783SApple OSS Distributions return *get_ptr_(); 270*e7776783SApple OSS Distributions } 271*e7776783SApple OSS Distributions 272*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T* 273*e7776783SApple OSS Distributions operator->() const 274*e7776783SApple OSS Distributions { 275*e7776783SApple OSS Distributions if (__improbable(!in_bounds_())) { 276*e7776783SApple OSS Distributions TrappingPolicy::trap("bounded_ptr<T>::operator->: Accessing a member through this pointer " 277*e7776783SApple OSS Distributions "would access memory outside of the bounds set originally"); 278*e7776783SApple OSS Distributions } 279*e7776783SApple OSS Distributions return get_ptr_(); 280*e7776783SApple OSS Distributions } 281*e7776783SApple OSS Distributions 282*e7776783SApple OSS Distributions // Provides access to the n-th element past the given pointer. 283*e7776783SApple OSS Distributions // 284*e7776783SApple OSS Distributions // The `bounded_ptr` validates whether the provided index is within the 285*e7776783SApple OSS Distributions // bounds of the `bounded_ptr`. Like for raw pointers, a negative index 286*e7776783SApple OSS Distributions // may be passed, in which case the pointer is accessed at a negative 287*e7776783SApple OSS Distributions // offset (which must still be in bounds). 288*e7776783SApple OSS Distributions template <typename T_ = T> // delay instantiation to avoid forming invalid ref for bounded_ptr<void> 289*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T_& 290*e7776783SApple OSS Distributions operator[](ptrdiff_t n) const 291*e7776783SApple OSS Distributions { 292*e7776783SApple OSS Distributions return *(*this + n); 293*e7776783SApple OSS Distributions } 294*e7776783SApple OSS Distributions 295*e7776783SApple OSS Distributions // Converts a `bounded_ptr` to a raw pointer, after checking it is within 296*e7776783SApple OSS Distributions // its bounds. 297*e7776783SApple OSS Distributions // 298*e7776783SApple OSS Distributions // The primary intended usage of this function is to aid bridging between 299*e7776783SApple OSS Distributions // code that uses `bounded_ptr`s and code that does not. 300*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T* 301*e7776783SApple OSS Distributions discard_bounds() const 302*e7776783SApple OSS Distributions { 303*e7776783SApple OSS Distributions if (__improbable(!in_bounds_())) { 304*e7776783SApple OSS Distributions TrappingPolicy::trap("bounded_ptr<T>::discard_bounds: Discarding the bounds on " 305*e7776783SApple OSS Distributions "this pointer would lose the fact that it is outside of the " 306*e7776783SApple OSS Distributions "bounds set originally"); 307*e7776783SApple OSS Distributions } 308*e7776783SApple OSS Distributions return get_ptr_(); 309*e7776783SApple OSS Distributions } 310*e7776783SApple OSS Distributions 311*e7776783SApple OSS Distributions // Converts a `bounded_ptr` to a raw pointer, without checking whether the 312*e7776783SApple OSS Distributions // pointer is within its bounds. 313*e7776783SApple OSS Distributions // 314*e7776783SApple OSS Distributions // Like `discard_bounds()`, the primary intended usage of this function 315*e7776783SApple OSS Distributions // is to aid bridging between code that uses `bounded_ptr`s and code that 316*e7776783SApple OSS Distributions // does not. However, unlike `discard_bounds()`, this function does not 317*e7776783SApple OSS Distributions // validate that the returned pointer is in bounds. This functionality is 318*e7776783SApple OSS Distributions // necessary when the pointer represents something that can't be 319*e7776783SApple OSS Distributions // dereferenced (hence it's OK for it to be out-of-bounds), but that 320*e7776783SApple OSS Distributions // is still useful for other purposes like comparing against other 321*e7776783SApple OSS Distributions // pointers. An example of that is the `end` pointer in a half-open 322*e7776783SApple OSS Distributions // interval `[begin, end)`, where the `end` pointer is out-of-bounds and 323*e7776783SApple OSS Distributions // can't be dereferenced, yet it's still useful to delimit the range. 324*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T* 325*e7776783SApple OSS Distributions unsafe_discard_bounds() const 326*e7776783SApple OSS Distributions { 327*e7776783SApple OSS Distributions return get_ptr_(); 328*e7776783SApple OSS Distributions } 329*e7776783SApple OSS Distributions 330*e7776783SApple OSS Distributions // Implicit conversion to bool, returning whether the pointer is null. 331*e7776783SApple OSS Distributions // 332*e7776783SApple OSS Distributions // This operation does not perform any validation of the bounds. 333*e7776783SApple OSS Distributions OS_ALWAYS_INLINE explicit 334*e7776783SApple OSS Distributions operator bool() const 335*e7776783SApple OSS Distributions { 336*e7776783SApple OSS Distributions return get_ptr_() != nullptr; 337*e7776783SApple OSS Distributions } 338*e7776783SApple OSS Distributions 339*e7776783SApple OSS Distributions // Increment/decrement a `bounded_ptr`. 340*e7776783SApple OSS Distributions // 341*e7776783SApple OSS Distributions // Like for other arithmetic operations, this does not check whether the 342*e7776783SApple OSS Distributions // increment or decrement operation results in an out-of-bounds pointer. 343*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 344*e7776783SApple OSS Distributions operator++() 345*e7776783SApple OSS Distributions { 346*e7776783SApple OSS Distributions *this += 1; 347*e7776783SApple OSS Distributions return *this; 348*e7776783SApple OSS Distributions } 349*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr 350*e7776783SApple OSS Distributions operator++(int) 351*e7776783SApple OSS Distributions { 352*e7776783SApple OSS Distributions bounded_ptr old = *this; 353*e7776783SApple OSS Distributions ++*this; 354*e7776783SApple OSS Distributions return old; 355*e7776783SApple OSS Distributions } 356*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 357*e7776783SApple OSS Distributions operator--() 358*e7776783SApple OSS Distributions { 359*e7776783SApple OSS Distributions *this -= 1; 360*e7776783SApple OSS Distributions return *this; 361*e7776783SApple OSS Distributions } 362*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr 363*e7776783SApple OSS Distributions operator--(int) 364*e7776783SApple OSS Distributions { 365*e7776783SApple OSS Distributions bounded_ptr old = *this; 366*e7776783SApple OSS Distributions --*this; 367*e7776783SApple OSS Distributions return old; 368*e7776783SApple OSS Distributions } 369*e7776783SApple OSS Distributions 370*e7776783SApple OSS Distributions // Increment or decrement a `bounded_ptr` by a given offset. 371*e7776783SApple OSS Distributions // 372*e7776783SApple OSS Distributions // This is equivalent to adding the given offset to the underlying raw 373*e7776783SApple OSS Distributions // pointer. In particular, the bounds of the `bounded_ptr` are left 374*e7776783SApple OSS Distributions // untouched by this operation. Furthermore, like for raw pointers, it 375*e7776783SApple OSS Distributions // is possible to provide a negative offset, which will have the effect 376*e7776783SApple OSS Distributions // of decrementing the `bounded_ptr` instead of incrementing it. 377*e7776783SApple OSS Distributions // 378*e7776783SApple OSS Distributions // Also note that the offset is NOT a number of bytes -- just like for 379*e7776783SApple OSS Distributions // raw pointers, it is a number of "positions" to move the pointer from, 380*e7776783SApple OSS Distributions // which essentially means `n * sizeof(T)` bytes. Again, this works exactly 381*e7776783SApple OSS Distributions // the same as a raw pointer to an object of type `T`. 382*e7776783SApple OSS Distributions // 383*e7776783SApple OSS Distributions // Like other arithmetic operations, this does not check whether the 384*e7776783SApple OSS Distributions // increment or decrement operation results in an out-of-bounds pointer. 385*e7776783SApple OSS Distributions // However, this does check whether the arithmetic operation would result 386*e7776783SApple OSS Distributions // in an overflow, in which case the operation will trap. 387*e7776783SApple OSS Distributions template <typename T_ = T> 388*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 389*e7776783SApple OSS Distributions operator+=(ptrdiff_t n) 390*e7776783SApple OSS Distributions { 391*e7776783SApple OSS Distributions static_assert(!detail::is_void_v<T_>, "Arithmetic on bounded_ptr<void> is not allowed."); 392*e7776783SApple OSS Distributions 393*e7776783SApple OSS Distributions ptrdiff_t bytes; 394*e7776783SApple OSS Distributions if (__improbable(os_mul_overflow(n, sizeof(T), &bytes))) { 395*e7776783SApple OSS Distributions TrappingPolicy::trap( 396*e7776783SApple OSS Distributions "bounded_ptr<T>::operator+=(n): Calculating the number of bytes to " 397*e7776783SApple OSS Distributions "add to the offset (n * sizeof(T)) would trigger an overflow"); 398*e7776783SApple OSS Distributions } 399*e7776783SApple OSS Distributions if (__improbable(os_add_overflow(offset_, bytes, &offset_))) { 400*e7776783SApple OSS Distributions TrappingPolicy::trap( 401*e7776783SApple OSS Distributions "bounded_ptr<T>::operator+=(n): Adding the specified number of bytes " 402*e7776783SApple OSS Distributions "to the offset representing the current position would overflow."); 403*e7776783SApple OSS Distributions } 404*e7776783SApple OSS Distributions return *this; 405*e7776783SApple OSS Distributions } 406*e7776783SApple OSS Distributions 407*e7776783SApple OSS Distributions template <typename T_ = T> 408*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr& 409*e7776783SApple OSS Distributions operator-=(ptrdiff_t n) 410*e7776783SApple OSS Distributions { 411*e7776783SApple OSS Distributions static_assert(!detail::is_void_v<T_>, "Arithmetic on bounded_ptr<void> is not allowed."); 412*e7776783SApple OSS Distributions 413*e7776783SApple OSS Distributions ptrdiff_t bytes; 414*e7776783SApple OSS Distributions if (__improbable(os_mul_overflow(n, sizeof(T), &bytes))) { 415*e7776783SApple OSS Distributions TrappingPolicy::trap( 416*e7776783SApple OSS Distributions "bounded_ptr<T>::operator-=(n): Calculating the number of bytes to " 417*e7776783SApple OSS Distributions "subtract from the offset (n * sizeof(T)) would trigger an overflow"); 418*e7776783SApple OSS Distributions } 419*e7776783SApple OSS Distributions if (__improbable(os_sub_overflow(offset_, bytes, &offset_))) { 420*e7776783SApple OSS Distributions TrappingPolicy::trap( 421*e7776783SApple OSS Distributions "bounded_ptr<T>::operator-=(n): Subtracting the specified number of bytes " 422*e7776783SApple OSS Distributions "from the offset representing the current position would overflow."); 423*e7776783SApple OSS Distributions } 424*e7776783SApple OSS Distributions return *this; 425*e7776783SApple OSS Distributions } 426*e7776783SApple OSS Distributions 427*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE bounded_ptr 428*e7776783SApple OSS Distributions operator+(bounded_ptr p, ptrdiff_t n) 429*e7776783SApple OSS Distributions { 430*e7776783SApple OSS Distributions p += n; 431*e7776783SApple OSS Distributions return p; 432*e7776783SApple OSS Distributions } 433*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE bounded_ptr 434*e7776783SApple OSS Distributions operator+(ptrdiff_t n, bounded_ptr p) 435*e7776783SApple OSS Distributions { 436*e7776783SApple OSS Distributions p += n; 437*e7776783SApple OSS Distributions return p; 438*e7776783SApple OSS Distributions } 439*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE bounded_ptr 440*e7776783SApple OSS Distributions operator-(bounded_ptr p, ptrdiff_t n) 441*e7776783SApple OSS Distributions { 442*e7776783SApple OSS Distributions p -= n; 443*e7776783SApple OSS Distributions return p; 444*e7776783SApple OSS Distributions } 445*e7776783SApple OSS Distributions 446*e7776783SApple OSS Distributions // Returns the difference between two `bounded_ptr`s. 447*e7776783SApple OSS Distributions // 448*e7776783SApple OSS Distributions // This is semantically equivalent to subtracting the two underlying 449*e7776783SApple OSS Distributions // pointers. The bounds of the pointers are not validated by this 450*e7776783SApple OSS Distributions // operation. 451*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE ptrdiff_t 452*e7776783SApple OSS Distributions operator-(bounded_ptr const& a, bounded_ptr const& b) 453*e7776783SApple OSS Distributions { 454*e7776783SApple OSS Distributions return a.get_ptr_() - b.get_ptr_(); 455*e7776783SApple OSS Distributions } 456*e7776783SApple OSS Distributions 457*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE ptrdiff_t 458*e7776783SApple OSS Distributions operator-(bounded_ptr const& a, T const* b) 459*e7776783SApple OSS Distributions { 460*e7776783SApple OSS Distributions return a.get_ptr_() - b; 461*e7776783SApple OSS Distributions } 462*e7776783SApple OSS Distributions 463*e7776783SApple OSS Distributions friend OS_ALWAYS_INLINE ptrdiff_t 464*e7776783SApple OSS Distributions operator-(T const* a, bounded_ptr const& b) 465*e7776783SApple OSS Distributions { 466*e7776783SApple OSS Distributions return a - b.get_ptr_(); 467*e7776783SApple OSS Distributions } 468*e7776783SApple OSS Distributions 469*e7776783SApple OSS Distributions private: 470*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 471*e7776783SApple OSS Distributions in_bounds_() const 472*e7776783SApple OSS Distributions { 473*e7776783SApple OSS Distributions static_assert(detail::sizeof_v<T> <= UINT32_MAX - INT32_MAX, 474*e7776783SApple OSS Distributions "The type pointed-to by bounded_ptr is too large, which would defeat " 475*e7776783SApple OSS Distributions "our optimization to check for inboundedness using arithmetic on unsigned"); 476*e7776783SApple OSS Distributions return offset_ >= 0 && static_cast<uint32_t>(offset_) + static_cast<uint32_t>(detail::sizeof_v<T>) <= count_; 477*e7776783SApple OSS Distributions } 478*e7776783SApple OSS Distributions 479*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T* 480*e7776783SApple OSS Distributions get_ptr_() const 481*e7776783SApple OSS Distributions { 482*e7776783SApple OSS Distributions // Compute `base_ + offset_`, catching overflows. 483*e7776783SApple OSS Distributions uintptr_t ptr; 484*e7776783SApple OSS Distributions if (__improbable(os_add_overflow(reinterpret_cast<uintptr_t>(base_), offset_, &ptr))) { 485*e7776783SApple OSS Distributions TrappingPolicy::trap("This bounded_ptr is pointing to memory outside of what can " 486*e7776783SApple OSS Distributions "be represented by a native pointer."); 487*e7776783SApple OSS Distributions } 488*e7776783SApple OSS Distributions return reinterpret_cast<T*>(ptr); 489*e7776783SApple OSS Distributions } 490*e7776783SApple OSS Distributions 491*e7776783SApple OSS Distributions template <typename T_, typename U, typename Policy> 492*e7776783SApple OSS Distributions friend bounded_ptr<T_, Policy> reinterpret_pointer_cast(bounded_ptr<U, Policy> const&) noexcept; 493*e7776783SApple OSS Distributions 494*e7776783SApple OSS Distributions template <typename U, typename P> friend struct bounded_ptr; // for cross-type operations and conversions 495*e7776783SApple OSS Distributions 496*e7776783SApple OSS Distributions CharType* base_; // pointer to the beginning of the valid address range 497*e7776783SApple OSS Distributions uint32_t count_; // number of bytes considered in-bounds (non-negative) 498*e7776783SApple OSS Distributions int32_t offset_; // current offset into the range, in bytes 499*e7776783SApple OSS Distributions }; 500*e7776783SApple OSS Distributions 501*e7776783SApple OSS Distributions // Returns whether two `bounded_ptr`s point to the same object. 502*e7776783SApple OSS Distributions // 503*e7776783SApple OSS Distributions // This comparison is semantically equivalent to comparing the underlying 504*e7776783SApple OSS Distributions // raw pointers. In particular, it doesn't validate the bounds of either 505*e7776783SApple OSS Distributions // `bounded_ptr`, nor does it compare whether the two `bounded_ptr`s have 506*e7776783SApple OSS Distributions // the same bounds. 507*e7776783SApple OSS Distributions // 508*e7776783SApple OSS Distributions // This comparison is enabled between `bounded_ptr`s whenever the two 509*e7776783SApple OSS Distributions // corresponding raw pointer types are comparable. Comparison between a 510*e7776783SApple OSS Distributions // raw pointer and a `bounded_ptr` is also allowed, so long as the 511*e7776783SApple OSS Distributions // two corresponding raw pointer types are comparable. 512*e7776783SApple OSS Distributions template <typename T, typename P1, typename U, typename P2, typename = detail::WhenComparable<T*, U*> > 513*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 514*e7776783SApple OSS Distributions operator==(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 515*e7776783SApple OSS Distributions { 516*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() == b.unsafe_discard_bounds(); 517*e7776783SApple OSS Distributions } 518*e7776783SApple OSS Distributions 519*e7776783SApple OSS Distributions template <typename T, typename P1, typename U, typename P2, typename = detail::WhenComparable<T*, U*> > 520*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 521*e7776783SApple OSS Distributions operator!=(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 522*e7776783SApple OSS Distributions { 523*e7776783SApple OSS Distributions return !(a == b); 524*e7776783SApple OSS Distributions } 525*e7776783SApple OSS Distributions 526*e7776783SApple OSS Distributions template <typename T, typename P, typename U, typename = detail::WhenComparable<T*, U*> > 527*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 528*e7776783SApple OSS Distributions operator==(bounded_ptr<T, P> const& a, U* b) 529*e7776783SApple OSS Distributions { 530*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() == b; 531*e7776783SApple OSS Distributions } 532*e7776783SApple OSS Distributions 533*e7776783SApple OSS Distributions template <typename T, typename P, typename U, typename = detail::WhenComparable<T*, U*> > 534*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 535*e7776783SApple OSS Distributions operator==(U* a, bounded_ptr<T, P> const& b) 536*e7776783SApple OSS Distributions { 537*e7776783SApple OSS Distributions return a == b.unsafe_discard_bounds(); 538*e7776783SApple OSS Distributions } 539*e7776783SApple OSS Distributions 540*e7776783SApple OSS Distributions template <typename T, typename P, typename U, typename = detail::WhenComparable<T*, U*> > 541*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 542*e7776783SApple OSS Distributions operator!=(bounded_ptr<T, P> const& a, U* b) 543*e7776783SApple OSS Distributions { 544*e7776783SApple OSS Distributions return !(a == b); 545*e7776783SApple OSS Distributions } 546*e7776783SApple OSS Distributions 547*e7776783SApple OSS Distributions template <typename T, typename P, typename U, typename = detail::WhenComparable<T*, U*> > 548*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 549*e7776783SApple OSS Distributions operator!=(U* a, bounded_ptr<T, P> const& b) 550*e7776783SApple OSS Distributions { 551*e7776783SApple OSS Distributions return !(a == b); 552*e7776783SApple OSS Distributions } 553*e7776783SApple OSS Distributions 554*e7776783SApple OSS Distributions template <typename T, typename Policy> 555*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 556*e7776783SApple OSS Distributions operator==(detail::nullptr_t, bounded_ptr<T, Policy> const& p) 557*e7776783SApple OSS Distributions { 558*e7776783SApple OSS Distributions return p.unsafe_discard_bounds() == nullptr; 559*e7776783SApple OSS Distributions } 560*e7776783SApple OSS Distributions 561*e7776783SApple OSS Distributions template <typename T, typename Policy> 562*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 563*e7776783SApple OSS Distributions operator!=(detail::nullptr_t, bounded_ptr<T, Policy> const& p) 564*e7776783SApple OSS Distributions { 565*e7776783SApple OSS Distributions return p.unsafe_discard_bounds() != nullptr; 566*e7776783SApple OSS Distributions } 567*e7776783SApple OSS Distributions 568*e7776783SApple OSS Distributions template <typename T, typename Policy> 569*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 570*e7776783SApple OSS Distributions operator==(bounded_ptr<T, Policy> const& p, detail::nullptr_t) 571*e7776783SApple OSS Distributions { 572*e7776783SApple OSS Distributions return p.unsafe_discard_bounds() == nullptr; 573*e7776783SApple OSS Distributions } 574*e7776783SApple OSS Distributions 575*e7776783SApple OSS Distributions template <typename T, typename Policy> 576*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 577*e7776783SApple OSS Distributions operator!=(bounded_ptr<T, Policy> const& p, detail::nullptr_t) 578*e7776783SApple OSS Distributions { 579*e7776783SApple OSS Distributions return p.unsafe_discard_bounds() != nullptr; 580*e7776783SApple OSS Distributions } 581*e7776783SApple OSS Distributions 582*e7776783SApple OSS Distributions // Returns whether a `bounded_ptr` points to an address that is {less-than, 583*e7776783SApple OSS Distributions // less-than-or-equal-to, greater-than, greater-than-or-equal-to} the address 584*e7776783SApple OSS Distributions // held in another `bounded_ptr`. 585*e7776783SApple OSS Distributions // 586*e7776783SApple OSS Distributions // This doesn't validate the bounds of either `bounded_ptr`, nor does it 587*e7776783SApple OSS Distributions // compare those bounds to determine the ordering result. This ordering is 588*e7776783SApple OSS Distributions // semantically equivalent to ordering the result of calling `get()` on both 589*e7776783SApple OSS Distributions // `bounded_ptr`s. 590*e7776783SApple OSS Distributions // 591*e7776783SApple OSS Distributions // This ordering is enabled between `bounded_ptr`s whenever the two 592*e7776783SApple OSS Distributions // corresponding raw pointer types are orderable. Ordering between a 593*e7776783SApple OSS Distributions // raw pointer and a `bounded_ptr` is also allowed, so long as the 594*e7776783SApple OSS Distributions // two corresponding raw pointer types are orderable. 595*e7776783SApple OSS Distributions // 596*e7776783SApple OSS Distributions 597*e7776783SApple OSS Distributions template <typename T, typename U, typename P1, typename P2, typename = detail::WhenOrderable<T*, U*> > 598*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 599*e7776783SApple OSS Distributions operator<(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 600*e7776783SApple OSS Distributions { 601*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() < b.unsafe_discard_bounds(); 602*e7776783SApple OSS Distributions } 603*e7776783SApple OSS Distributions 604*e7776783SApple OSS Distributions template <typename T, typename U, typename P1, typename P2, typename = detail::WhenOrderable<T*, U*> > 605*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 606*e7776783SApple OSS Distributions operator<=(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 607*e7776783SApple OSS Distributions { 608*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() <= b.unsafe_discard_bounds(); 609*e7776783SApple OSS Distributions } 610*e7776783SApple OSS Distributions 611*e7776783SApple OSS Distributions template <typename T, typename U, typename P1, typename P2, typename = detail::WhenOrderable<T*, U*> > 612*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 613*e7776783SApple OSS Distributions operator>(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 614*e7776783SApple OSS Distributions { 615*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() > b.unsafe_discard_bounds(); 616*e7776783SApple OSS Distributions } 617*e7776783SApple OSS Distributions 618*e7776783SApple OSS Distributions template <typename T, typename U, typename P1, typename P2, typename = detail::WhenOrderable<T*, U*> > 619*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 620*e7776783SApple OSS Distributions operator>=(bounded_ptr<T, P1> const& a, bounded_ptr<U, P2> const& b) 621*e7776783SApple OSS Distributions { 622*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() >= b.unsafe_discard_bounds(); 623*e7776783SApple OSS Distributions } 624*e7776783SApple OSS Distributions 625*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 626*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 627*e7776783SApple OSS Distributions operator<(T* a, bounded_ptr<U, P> const& b) 628*e7776783SApple OSS Distributions { 629*e7776783SApple OSS Distributions return a < b.unsafe_discard_bounds(); 630*e7776783SApple OSS Distributions } 631*e7776783SApple OSS Distributions 632*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 633*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 634*e7776783SApple OSS Distributions operator<(bounded_ptr<T, P> const& a, U* b) 635*e7776783SApple OSS Distributions { 636*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() < b; 637*e7776783SApple OSS Distributions } 638*e7776783SApple OSS Distributions 639*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 640*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 641*e7776783SApple OSS Distributions operator<=(T* a, bounded_ptr<U, P> const& b) 642*e7776783SApple OSS Distributions { 643*e7776783SApple OSS Distributions return a <= b.unsafe_discard_bounds(); 644*e7776783SApple OSS Distributions } 645*e7776783SApple OSS Distributions 646*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 647*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 648*e7776783SApple OSS Distributions operator<=(bounded_ptr<T, P> const& a, U* b) 649*e7776783SApple OSS Distributions { 650*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() <= b; 651*e7776783SApple OSS Distributions } 652*e7776783SApple OSS Distributions 653*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 654*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 655*e7776783SApple OSS Distributions operator>(T* a, bounded_ptr<U, P> const& b) 656*e7776783SApple OSS Distributions { 657*e7776783SApple OSS Distributions return a > b.unsafe_discard_bounds(); 658*e7776783SApple OSS Distributions } 659*e7776783SApple OSS Distributions 660*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 661*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 662*e7776783SApple OSS Distributions operator>(bounded_ptr<T, P> const& a, U* b) 663*e7776783SApple OSS Distributions { 664*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() > b; 665*e7776783SApple OSS Distributions } 666*e7776783SApple OSS Distributions 667*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 668*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 669*e7776783SApple OSS Distributions operator>=(T* a, bounded_ptr<U, P> const& b) 670*e7776783SApple OSS Distributions { 671*e7776783SApple OSS Distributions return a >= b.unsafe_discard_bounds(); 672*e7776783SApple OSS Distributions } 673*e7776783SApple OSS Distributions 674*e7776783SApple OSS Distributions template <typename T, typename U, typename P, typename = detail::WhenOrderable<T*, U*> > 675*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bool 676*e7776783SApple OSS Distributions operator>=(bounded_ptr<T, P> const& a, U* b) 677*e7776783SApple OSS Distributions { 678*e7776783SApple OSS Distributions return a.unsafe_discard_bounds() >= b; 679*e7776783SApple OSS Distributions } 680*e7776783SApple OSS Distributions 681*e7776783SApple OSS Distributions template <typename T, typename U> 682*e7776783SApple OSS Distributions OS_ALWAYS_INLINE T* 683*e7776783SApple OSS Distributions reinterpret_pointer_cast(U* p) noexcept 684*e7776783SApple OSS Distributions { 685*e7776783SApple OSS Distributions return reinterpret_cast<T*>(p); 686*e7776783SApple OSS Distributions } 687*e7776783SApple OSS Distributions 688*e7776783SApple OSS Distributions // Reinterprets a `bounded_ptr` to a type `T` to a `bounded_ptr` to a type `U`. 689*e7776783SApple OSS Distributions // 690*e7776783SApple OSS Distributions // This is equivalent to `reinterpret_cast`ing the underlying pointer as well 691*e7776783SApple OSS Distributions // as the bounds of the original pointer. Like for a raw `reinterpret_cast`, 692*e7776783SApple OSS Distributions // no offset adjustment is performed (even if needed, e.g. for derived-to-base 693*e7776783SApple OSS Distributions // casts with multiple inheritance). Because this is extremely unsafe, it should 694*e7776783SApple OSS Distributions // be used extremely sparingly. 695*e7776783SApple OSS Distributions template <typename T, typename U, typename Policy> 696*e7776783SApple OSS Distributions OS_ALWAYS_INLINE bounded_ptr<T, Policy> 697*e7776783SApple OSS Distributions reinterpret_pointer_cast(bounded_ptr<U, Policy> const& p) noexcept 698*e7776783SApple OSS Distributions { 699*e7776783SApple OSS Distributions using CharType = detail::copy_cv_t<T, char>; 700*e7776783SApple OSS Distributions CharType* new_begin = reinterpret_cast<CharType*>(p.base_); 701*e7776783SApple OSS Distributions CharType* new_end = new_begin + p.count_; 702*e7776783SApple OSS Distributions return bounded_ptr<T, Policy>(reinterpret_cast<T*>(p.get_ptr_()), 703*e7776783SApple OSS Distributions reinterpret_cast<T const*>(new_begin), 704*e7776783SApple OSS Distributions reinterpret_cast<T const*>(new_end)); 705*e7776783SApple OSS Distributions } 706*e7776783SApple OSS Distributions } // end namespace libkern 707*e7776783SApple OSS Distributions 708*e7776783SApple OSS Distributions #endif /* !TAPI */ 709*e7776783SApple OSS Distributions 710*e7776783SApple OSS Distributions #endif // !XNU_LIBKERN_LIBKERN_CXX_BOUNDED_PTR_H 711