Loading...
--- libmalloc/libmalloc-521.100.59/private/malloc_private.h
+++ libmalloc/libmalloc-474.0.13/private/malloc_private.h
@@ -26,28 +26,26 @@
/* Here be dragons (SPIs) */
-#include <TargetConditionals.h>
-#include <malloc/_platform.h>
+#include <mach/boolean.h>
+#include <mach/kern_return.h>
+#include <mach/mach_types.h>
+#include <sys/cdefs.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#include <Availability.h>
#include <os/availability.h>
-#include <os/base.h>
#include <malloc/malloc.h>
-
-#include <malloc/_ptrcheck.h>
-__ptrcheck_abi_assume_single()
__BEGIN_DECLS
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
/* Memorypressure notification mask to use by default */
extern const unsigned long malloc_memorypressure_mask_default_4libdispatch;
/* Memorypressure notification mask to use if MSL has been enabled */
extern const unsigned long malloc_memorypressure_mask_msl_4libdispatch;
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
/********* Callbacks ************/
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
API_AVAILABLE(macos(10.12), ios(10.0), tvos(10.0), watchos(3.0))
void malloc_enter_process_memory_limit_warn_mode(void);
/* A callback invoked once the process receives a warning for approaching
@@ -58,7 +56,6 @@
void malloc_memory_event_handler(unsigned long);
/* A function invoked when malloc needs to handle any flavor of
* memory pressure notification or process memory limit notification. */
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
API_AVAILABLE(macos(10.12), ios(10.0), tvos(10.0), watchos(3.0))
void * reallocarray(void * in_ptr, size_t nmemb, size_t size) __DARWIN_EXTSN(reallocarray) __result_use_check;
@@ -85,24 +82,11 @@
boolean_t malloc_zone_claimed_address(malloc_zone_t *zone, void *ptr) __result_use_check;
/**
- * Returns whether the nano allocator (or a roughly equivalent configuration of
- * another system allocator implementation) is engaged. The return value is 0 if
- * Nano is not engaged and the allocator version otherwise.
+ * Returns whether the nano allocator is engaged. The return value is 0 if Nano
+ * is not engaged and the allocator version otherwise.
*/
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
API_AVAILABLE(macos(10.14), ios(12.0), tvos(12.0), watchos(5.0))
int malloc_engaged_nano(void) __result_use_check;
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
-
-/**
- * Returns whether the secure allocator is engaged. The return value is 0 if it
- * is not engaged and the allocator version otherwise.
- */
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
-SPI_AVAILABLE(macos(14.3), ios(17.4), tvos(17.4), watchos(10.4),
- driverkit(23.4), xros(1.1))
-int malloc_engaged_secure_allocator(void) __result_use_check;
-#endif
/*
* Disables zero-on-free in a process. This has security implications and is
@@ -113,20 +97,6 @@
*/
SPI_AVAILABLE(macos(13.0), ios(16.1), tvos(16.1), watchos(9.1))
void malloc_zero_on_free_disable(void);
-
-/*
- * Certain zone types (e.g., PGM, sanitizer) wrap other zones to add extra
- * behavior and delegate most of the actual work to the wrapped zone. Retrieves
- * the address of the wrapped zone or NULL for zone types that don't wrap
- * another zone.
- */
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
-SPI_AVAILABLE(macos(14.3), ios(17.4), tvos(17.4), watchos(10.4))
-kern_return_t malloc_get_wrapped_zone(task_t task,
- memory_reader_t reader,
- vm_address_t zone_address,
- vm_address_t *wrapped_zone_address) __result_use_check;
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
/****** Thread-specific libmalloc options ******/
@@ -139,13 +109,11 @@
uintptr_t DisableMallocStackLogging : 1;
} malloc_thread_options_t;
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
API_AVAILABLE(macos(13.0), ios(16.0), tvos(16.0), watchos(9.0))
malloc_thread_options_t malloc_get_thread_options(void) __result_use_check;
API_AVAILABLE(macos(13.0), ios(16.0), tvos(16.0), watchos(9.0))
void malloc_set_thread_options(malloc_thread_options_t opts);
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
/****** Crash Reporter integration ******/
@@ -159,7 +127,7 @@
/**
* Like memory_reader_t, but caller must free returned memory if not NULL.
*/
-typedef void * __sized_by(size) (*crash_reporter_memory_reader_t)(task_t task, vm_address_t address, size_t size);
+typedef void *(*crash_reporter_memory_reader_t)(task_t task, vm_address_t address, size_t size);
/****** Probabilistic Guard Malloc ******/
@@ -178,10 +146,12 @@
stack_trace_t dealloc_trace;
} pgm_report_t;
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
+
kern_return_t pgm_extract_report_from_corpse(vm_address_t fault_address, pgm_report_t *report, task_t task,
vm_address_t *zone_addresses, uint32_t zone_count, crash_reporter_memory_reader_t crm_reader) __result_use_check;
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
+
+kern_return_t pgm_diagnose_fault_from_crash_reporter(vm_address_t fault_address, pgm_report_t *report,
+ task_t task, vm_address_t zone_address, crash_reporter_memory_reader_t crm_reader) __result_use_check;
/****** Sanitizer Zone ******/
@@ -213,83 +183,8 @@
stack_trace_t dealloc_trace;
} sanitizer_report_t;
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
kern_return_t sanitizer_diagnose_fault_from_crash_reporter(vm_address_t fault_address, sanitizer_report_t *report,
task_t task, vm_address_t zone_address, crash_reporter_memory_reader_t crm_reader) __result_use_check;
-#endif // !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
-
-/****** Malloc with flags ******/
-
-OS_OPTIONS(malloc_options_np, uint64_t,
- MALLOC_NP_OPTION_CLEAR = 0x1,
-);
-
-#if defined(__LP64__) // MALLOC_TARGET_64BIT
-/*!
- * @function malloc_type_zone_malloc_with_options_np
- *
- * @discussion
- * This function shouldn't be called directly, the declaration is an
- * implementation detail for malloc_zone_malloc_with_options_np
- */
-SPI_AVAILABLE(macos(14.3), ios(17.4), tvos(17.4), watchos(10.4),
- driverkit(23.4), xros(1.1))
-void *malloc_type_zone_malloc_with_options_np(malloc_zone_t *zone, size_t align, size_t size,
- malloc_options_np_t options, malloc_type_id_t desc) __result_use_check
-#if defined(__has_attribute) && __has_attribute(diagnose_if)
-__attribute__((__diagnose_if__(align & (align-1),
- "alignment should be 0 or a power of 2", "error")))
-__attribute__((__diagnose_if__(align && (size % align),
- "size should be an integral multiple of align", "error")))
-#endif
-__alloc_size(3) __alloc_align(2);
-#endif // MALLOC_TARGET_64BIT
-
-/*!
- * @function malloc_zone_malloc_with_options_np
- *
- * @param zone
- * The malloc zone that should be used to used to serve the allocation. This
- * parameter may be NULL, in which case the default zone will be used.
- *
- * @param align
- * The minimum alignment of the requested allocation. This parameter must be a
- * power of 2 and an integral multiple of size, or, if no particular alignment
- * is required, this parameter can be set to 0.
- *
- * @param size
- * The size, in bytes, of the requested allocation.
- *
- * @param options
- * A bitmask of options defining how the memory should be allocated. See the
- * available bit values in the malloc_options_np_t enum definition.
- *
- * @result
- * A pointer to the newly allocated block of memory, or NULL if the allocation
- * failed.
- *
- * @discussion
- * This SPI does not set errno on all codepaths when the allocation fails.
- */
-SPI_AVAILABLE(macos(14.3), ios(17.4), tvos(17.4), watchos(10.4),
- driverkit(23.4), xros(1.1))
-void *malloc_zone_malloc_with_options_np(malloc_zone_t *zone, size_t align, size_t size,
- malloc_options_np_t options) __result_use_check __alloc_size(3) __alloc_align(2)
-#if defined(__has_attribute) && __has_attribute(diagnose_if)
-__attribute__((__diagnose_if__(align & (align-1),
- "alignment should be 0 or a power of 2", "error")))
-__attribute__((__diagnose_if__(align && (size % align),
- "size should be an integral multiple of align", "error")))
-#endif
-_MALLOC_TYPED(malloc_type_zone_malloc_with_options_np, 4);
-
-#if !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT
-// Indicates whether the libmalloc debug dylib is in use in the current process
-SPI_AVAILABLE(macos(14.3), ios(17.4), tvos(17.4), watchos(10.4),
- driverkit(23.4), xros(1.1))
-bool
-malloc_variant_is_debug_4test(void);
-#endif /* !TARGET_OS_EXCLAVECORE && !TARGET_OS_EXCLAVEKIT */
__END_DECLS