/* * Copyright (c) 2019-2021 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #ifndef XNU_LIBKERN_LIBKERN_CXX_OS_ALLOCATION_H #define XNU_LIBKERN_LIBKERN_CXX_OS_ALLOCATION_H #if !TAPI #include #if DRIVERKIT_FRAMEWORK_INCLUDE #include #include #include // IOMalloc/IOFree #else #include #include #include // IOMalloc/IOFree #endif /* DRIVERKIT_FRAMEWORK_INCLUDE */ namespace os_detail { struct IOKit_allocator { static void* allocate(size_t bytes) { return IOMalloc(bytes); } static void* allocate_zero(size_t bytes) { return IOMallocZero(bytes); } static void deallocate(void* p, size_t bytes) { IOFree(p, bytes); } }; #ifdef KERNEL_PRIVATE struct IOKit_data_allocator { static void* allocate(size_t bytes) { return IOMallocData(bytes); } static void* allocate_zero(size_t bytes) { return IOMallocZeroData(bytes); } static void deallocate(void* p, size_t bytes) { IOFreeData(p, bytes); } }; template constexpr bool IOKit_is_data_v = KALLOC_TYPE_IS_DATA_ONLY(T); template > struct IOKit_typed_allocator; template struct IOKit_typed_allocator { static inline kalloc_type_var_view_t kt_view(void) { static KALLOC_TYPE_VAR_DEFINE(kt_view, T, KT_SHARED_ACCT); return kt_view; } static void* allocate(size_t bytes) { return IOMallocTypeVarImpl(kt_view(), bytes); } static void* allocate_zero(size_t bytes) { return IOMallocTypeVarImpl(kt_view(), bytes); } static void deallocate(void* p, size_t bytes) { IOFreeTypeVarImpl(kt_view(), p, bytes); } }; template struct IOKit_typed_allocator : IOKit_data_allocator { }; #endif } // end namespace os_detail template < typename T, #if KERNEL_PRIVATE typename Allocator = os_detail::IOKit_typed_allocator #else typename Allocator = os_detail::IOKit_allocator #endif > using OSAllocation = libkern::safe_allocation; #ifdef KERNEL_PRIVATE // obsolete: just use the determination that OSAllocation<> does already. // (this works around incorrect adoptions like 104478984). template using OSDataAllocation = OSAllocation; #endif inline constexpr auto OSAllocateMemory = libkern::allocate_memory; inline constexpr auto OSAllocateMemoryZero = libkern::allocate_memory_zero; inline constexpr auto OSAdoptMemory = libkern::adopt_memory; #endif /* !TAPI */ #endif /* !XNU_LIBKERN_LIBKERN_CXX_OS_ALLOCATION_H */