]>
Commit | Line | Data |
---|---|---|
39a8cd10 | 1 | /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*- |
197008ea | 2 | * |
2fd3f4e8 | 3 | * Copyright (c) 2009-2012 Apple Inc. All rights reserved. |
2028a915 A |
4 | * |
5 | * @APPLE_LICENSE_HEADER_START@ | |
6 | * | |
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 | |
12 | * file. | |
13 | * | |
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. | |
21 | * | |
22 | * @APPLE_LICENSE_HEADER_END@ | |
23 | */ | |
24 | ||
39a8cd10 | 25 | #include <stdint.h> |
2fd3f4e8 A |
26 | #include <uuid/uuid.h> |
27 | ||
28 | struct dyld_shared_cache_dylib_info { | |
19894a12 A |
29 | uint32_t version; // current version 2 |
30 | // following fields all exist in version 1 | |
2fd3f4e8 A |
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 | |
19894a12 A |
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 | |
2fd3f4e8 A |
38 | }; |
39 | typedef struct dyld_shared_cache_dylib_info dyld_shared_cache_dylib_info; | |
40 | ||
41 | struct dyld_shared_cache_segment_info { | |
42 | uint64_t version; // initial version 1 | |
43 | const char* name; // of segment | |
44 | uint64_t fileOffset; // of segment in cache file | |
45 | uint64_t fileSize; // of segment | |
46 | uint64_t address; // of segment when cache mapped with ASLR (sliding) off | |
47 | // above fields all exist in version 1 | |
48 | }; | |
49 | typedef struct dyld_shared_cache_segment_info dyld_shared_cache_segment_info; | |
50 | ||
2028a915 | 51 | |
39a8cd10 A |
52 | #ifdef __cplusplus |
53 | extern "C" { | |
54 | #endif | |
55 | ||
39a8cd10 | 56 | |
2fd3f4e8 A |
57 | // Given a pointer and size of an in-memory copy of a dyld shared cache file, |
58 | // this routine will call the callback block once for each segment in each dylib | |
59 | // in the shared cache file. | |
60 | // Returns -1 if there was an error, otherwise 0. | |
61 | extern int dyld_shared_cache_iterate(const void* shared_cache_file, uint32_t shared_cache_size, | |
62 | void (^callback)(const dyld_shared_cache_dylib_info* dylibInfo, const dyld_shared_cache_segment_info* segInfo)); | |
63 | ||
64 | ||
65 | ||
66 | // | |
67 | // The following iterator functions are deprecated: | |
68 | // | |
412ebb8e A |
69 | typedef void (^dyld_shared_cache_iterator_t)(const char* dylibName, const char* segName, uint64_t offset, uint64_t size, uint64_t mappedddress); |
70 | typedef void (^dyld_shared_cache_iterator_slide_t)(const char* dylibName, const char* segName, uint64_t offset, uint64_t size, uint64_t mappedddress, uint64_t slide); | |
71 | typedef void (*dyld_shared_cache_iterator_nb_t)(const char* dylibName, const char* segName, uint64_t offset, uint64_t sizem, uint64_t mappedddress, void* userData); | |
72 | typedef void (*dyld_shared_cache_iterator_slide_nb_t)(const char* dylibName, const char* segName, uint64_t offset, uint64_t sizem, uint64_t mappedddress, uint64_t slide, void* userData); | |
73 | ||
2fd3f4e8 A |
74 | extern int dyld_shared_cache_iterate_segments(const void* shared_cache_file, dyld_shared_cache_iterator_t callback) __attribute__((deprecated)); |
75 | extern int dyld_shared_cache_iterate_segments_with_slide(const void* shared_cache_file, dyld_shared_cache_iterator_slide_t callback) __attribute__((deprecated)); | |
76 | extern int dyld_shared_cache_iterate_segments_nb(const void* shared_cache_file, dyld_shared_cache_iterator_nb_t callback, void* userData) __attribute__((deprecated)); | |
77 | extern int dyld_shared_cache_iterate_segments_with_slide_nb(const void* shared_cache_file, dyld_shared_cache_iterator_slide_nb_t callback, void* userData) __attribute__((deprecated)); | |
412ebb8e | 78 | |
39a8cd10 | 79 | |
39a8cd10 A |
80 | #ifdef __cplusplus |
81 | } | |
82 | #endif |