1 /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*-
3 * Copyright (c) 2009-2012 Apple Inc. All rights reserved.
5 * @APPLE_LICENSE_HEADER_START@
7 * This file contains Original Code and/or Modifications of Original Code
8 * as defined in and that are subject to the Apple Public Source License
9 * Version 2.0 (the 'License'). You may not use this file except in
10 * compliance with the License. Please obtain a copy of the License at
11 * http://www.opensource.apple.com/apsl/ and read it before using this
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
19 * Please see the License for the specific language governing rights and
20 * limitations under the License.
22 * @APPLE_LICENSE_HEADER_END@
26 #include <uuid/uuid.h>
28 struct dyld_shared_cache_dylib_info
{
29 uint32_t version
; // current version 2
30 // following fields all exist in version 1
31 uint32_t isAlias
; // this is alternate path (symlink)
32 const void* machHeader
; // of dylib in mapped cached file
33 const char* path
; // of dylib
34 const uuid_t
* uuid
; // of dylib, or NULL is missing
35 // following fields all exist in version 2
36 uint64_t inode
; // of dylib file or path hash
37 uint64_t modTime
; // of dylib file
39 typedef struct dyld_shared_cache_dylib_info dyld_shared_cache_dylib_info
;
41 struct dyld_shared_cache_segment_info
{
42 uint64_t version
; // initial version 1
43 // following fields exist in version 1
44 const char* name
; // of segment
45 uint64_t fileOffset
; // of segment in cache file
46 uint64_t fileSize
; // of segment
47 uint64_t address
; // of segment when cache mapped with ASLR (sliding) off
48 // following fields exist in version 2
49 uint64_t addressOffset
; // of segment from base of mapped cache
51 typedef struct dyld_shared_cache_segment_info dyld_shared_cache_segment_info
;
56 // Given a pointer and size of an in-memory copy of a dyld shared cache file,
57 // this routine will call the callback block once for each segment in each dylib
58 // in the shared cache file.
59 // Returns -1 if there was an error, otherwise 0.
60 extern int dyld_shared_cache_iterate(const void* shared_cache_file
, uint32_t shared_cache_size
,
61 void (^callback
)(const dyld_shared_cache_dylib_info
* dylibInfo
, const dyld_shared_cache_segment_info
* segInfo
));