LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
DyldSharedCache/DyldSharedCache.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_DSC_DYLD_SHARED_CACHE_H
17#define LIEF_DSC_DYLD_SHARED_CACHE_H
18#include "LIEF/visibility.h"
19#include "LIEF/iterators.hpp"
23
25
26#include <memory>
27#include <string>
28#include <vector>
29
30namespace LIEF {
31class FileStream;
32
34namespace dsc {
35namespace details {
36class DyldSharedCache;
37}
38
41 public:
42
62
64 enum class DYLD_TARGET_PLATFORM : uint32_t {
66 MACOS = 1,
67 IOS = 2,
68 TVOS = 3,
71 IOSMAC = 6,
79 SEPOS = 14,
80
81 ANY = 0xFFFFFFFF
82 };
83
100
103
106
109
111
112 DyldSharedCache(std::unique_ptr<details::DyldSharedCache> impl);
114
116 static std::unique_ptr<DyldSharedCache> from_path(const std::string& path,
117 const std::string& arch = "");
118
120 static std::unique_ptr<DyldSharedCache> from_files(const std::vector<std::string>& path);
121
125 std::string filename() const;
126
129
132 std::string filepath() const;
133
135 uint64_t load_address() const;
136
138 std::string arch_name() const;
139
142
145
148 std::unique_ptr<Dylib> find_lib_from_va(uint64_t va) const;
149
151 std::unique_ptr<Dylib> find_lib_from_path(const std::string& path) const;
152
157 std::unique_ptr<Dylib> find_lib_from_name(const std::string& name) const;
158
160 bool has_subcaches() const;
161
175
189
204
208
210 std::vector<uint8_t> get_content_from_va(uint64_t va, uint64_t size) const;
211
213 std::unique_ptr<DyldSharedCache> cache_for_address(uint64_t va) const;
214
216 std::unique_ptr<DyldSharedCache> main_cache() const;
217
220 std::unique_ptr<DyldSharedCache> find_subcache(const std::string& filename) const;
221
227 result<uint64_t> va_to_offset(uint64_t va) const;
228
231
234
254 void enable_caching(const std::string& target_cache_dir) const;
255
257 void flush_cache() const;
258
259 private:
260 std::unique_ptr<details::DyldSharedCache> impl_;
261};
262
282inline std::unique_ptr<DyldSharedCache> load(const std::string& path,
283 const std::string& arch = "")
284{
285 return DyldSharedCache::from_path(path, arch);
286}
287
297inline std::unique_ptr<DyldSharedCache> load(const std::vector<std::string>& files)
298{
299 return DyldSharedCache::from_files(files);
300}
301
302}
303}
304#endif
305
306
Stream interface over a std::ifstream.
Definition FileStream.hpp:30
This class represents a dyld shared cache file.
Definition DyldSharedCache/DyldSharedCache.hpp:40
std::string filepath() const
Full path to the original dyld shared cache file associated with object (e.g. /home/lief/downloads/vi...
iterator_range< MappingInfo::Iterator > mapping_info_iterator
Iterator over the mapping info in the shared cache.
Definition DyldSharedCache/DyldSharedCache.hpp:105
void flush_cache() const
Flush internal information into the on-disk cache (see: enable_caching).
uint64_t load_address() const
Based address of this cache.
iterator_range< assembly::Instruction::Iterator > instructions_iterator
Definition DyldSharedCache/DyldSharedCache.hpp:110
instructions_iterator disassemble(uint64_t va) const
Disassemble instructions at the provided virtual address. This function returns an iterator over asse...
FileStream & stream() const
Return the stream associated with this dyld shared cache.
FileStream & stream()
Return the stream associated with this dyld shared cache.
dylib_iterator libraries() const
Return an interator over the libraries embedded in this dyld shared cache.
void enable_caching(const std::string &target_cache_dir) const
When enabled, this function allows to record and to keep in cache, dyld shared cache information that...
DyldSharedCache(std::unique_ptr< details::DyldSharedCache > impl)
bool has_subcaches() const
True if the subcaches are associated with this cache.
DYLD_TARGET_ARCH arch() const
Architecture targeted by this cache.
VERSION
This enum wraps the dyld's git tags for which the structure of dyld shared cache evolved.
Definition DyldSharedCache/DyldSharedCache.hpp:45
@ DYLD_95_3
dyld-95.3 (2007-10-30)
Definition DyldSharedCache/DyldSharedCache.hpp:48
@ DYLD_360_14
dyld-360.14 (2015-09-04)
Definition DyldSharedCache/DyldSharedCache.hpp:51
@ UNKNOWN
Definition DyldSharedCache/DyldSharedCache.hpp:46
@ DYLD_421_1
dyld-421.1 (2016-09-22)
Definition DyldSharedCache/DyldSharedCache.hpp:52
@ DYLD_239_3
dyld-239.3 (2013-10-29)
Definition DyldSharedCache/DyldSharedCache.hpp:50
@ DYLD_832_7_1
dyld-832.7.1 (2020-11-19)
Definition DyldSharedCache/DyldSharedCache.hpp:53
@ UNRELEASED
This value is used for versions of dyld not publicly released or not yet supported by LIEF.
Definition DyldSharedCache/DyldSharedCache.hpp:60
@ DYLD_1231_3
dyld-1231.3 (2024-09-24)
Definition DyldSharedCache/DyldSharedCache.hpp:56
@ DYLD_940
dyld-940 (2021-02-09)
Definition DyldSharedCache/DyldSharedCache.hpp:54
@ DYLD_1042_1
dyld-1042.1 (2022-10-19)
Definition DyldSharedCache/DyldSharedCache.hpp:55
@ DYLD_195_5
dyld-195.5 (2011-07-13)
Definition DyldSharedCache/DyldSharedCache.hpp:49
iterator_range< Dylib::Iterator > dylib_iterator
Iterator over the libraries in the shared cache.
Definition DyldSharedCache/DyldSharedCache.hpp:102
DYLD_TARGET_PLATFORM platform() const
Platform targeted by this cache (e.g. vision-os).
std::unique_ptr< Dylib > find_lib_from_path(const std::string &path) const
Find the Dylib whose Dylib::path matches the provided path.
static std::unique_ptr< DyldSharedCache > from_path(const std::string &path, const std::string &arch="")
See the load functions for the details.
std::unique_ptr< Dylib > find_lib_from_name(const std::string &name) const
Find the Dylib whose filename of Dylib::path matches the provided name.
std::unique_ptr< DyldSharedCache > cache_for_address(uint64_t va) const
Find the sub-DyldSharedCache that wraps the given virtual address.
std::vector< uint8_t > get_content_from_va(uint64_t va, uint64_t size) const
Return the content at the specified virtual address.
std::string arch_name() const
Name of the architecture targeted by this cache (x86_64h).
DYLD_TARGET_ARCH
Architecture supported by the dyld shared cache.
Definition DyldSharedCache/DyldSharedCache.hpp:85
@ ARMV6
Definition DyldSharedCache/DyldSharedCache.hpp:94
@ ARMV7
Definition DyldSharedCache/DyldSharedCache.hpp:95
@ ARM64E
Definition DyldSharedCache/DyldSharedCache.hpp:98
@ X86_64
Definition DyldSharedCache/DyldSharedCache.hpp:90
@ ARMV5
Definition DyldSharedCache/DyldSharedCache.hpp:93
@ ARM64
Definition DyldSharedCache/DyldSharedCache.hpp:97
@ I386
Definition DyldSharedCache/DyldSharedCache.hpp:88
@ X86_64H
Definition DyldSharedCache/DyldSharedCache.hpp:91
std::string filename() const
Filename of the dyld shared file associated with this object.
std::unique_ptr< Dylib > find_lib_from_va(uint64_t va) const
Find the Dylib that encompasses the given virtual address. It returns a nullptr if a Dylib can't be f...
mapping_info_iterator mapping_info() const
Return an interator over the mapping information of this dyld shared cache.
std::unique_ptr< DyldSharedCache > find_subcache(const std::string &filename) const
Try to find the DyldSharedCache associated with the filename given in the first parameter.
iterator_range< SubCache::Iterator > subcache_iterator
Iterator over the split/sub-cache in this main shared cache.
Definition DyldSharedCache/DyldSharedCache.hpp:108
static std::unique_ptr< DyldSharedCache > from_files(const std::vector< std::string > &path)
See the load functions for the details.
result< uint64_t > va_to_offset(uint64_t va) const
Convert the given virtual address into an offset.
DYLD_TARGET_PLATFORM
Platforms supported by the dyld shared cache.
Definition DyldSharedCache/DyldSharedCache.hpp:64
@ VISIONOS
Definition DyldSharedCache/DyldSharedCache.hpp:76
@ VISIONOS_SIMULATOR
Definition DyldSharedCache/DyldSharedCache.hpp:77
@ TVOS_SIMULATOR
Definition DyldSharedCache/DyldSharedCache.hpp:73
@ IOS_SIMULATOR
Definition DyldSharedCache/DyldSharedCache.hpp:72
@ TVOS
Definition DyldSharedCache/DyldSharedCache.hpp:68
@ MACOS
Definition DyldSharedCache/DyldSharedCache.hpp:66
@ BRIDGEOS
Definition DyldSharedCache/DyldSharedCache.hpp:70
@ DRIVERKIT
Definition DyldSharedCache/DyldSharedCache.hpp:75
@ ANY
Definition DyldSharedCache/DyldSharedCache.hpp:81
@ IOSMAC
Definition DyldSharedCache/DyldSharedCache.hpp:71
@ SEPOS
Definition DyldSharedCache/DyldSharedCache.hpp:79
@ IOS
Definition DyldSharedCache/DyldSharedCache.hpp:67
@ WATCHOS_SIMULATOR
Definition DyldSharedCache/DyldSharedCache.hpp:74
@ WATCHOS
Definition DyldSharedCache/DyldSharedCache.hpp:69
@ FIRMWARE
Definition DyldSharedCache/DyldSharedCache.hpp:78
std::unique_ptr< DyldSharedCache > main_cache() const
Return the principal dyld shared cache in the case of multiple subcaches.
subcache_iterator subcaches() const
Return an interator over the subcaches associated with this (main) dyld shared cache.
VERSION version() const
Version of dyld used by this cache.
Definition iterators.hpp:486
Definition DyldSharedCache/DyldSharedCache.hpp:35
Namespace related to the dyld shared cache support.
Definition caching.hpp:22
std::unique_ptr< DyldSharedCache > load(const std::string &path, const std::string &arch="")
Load a shared cache from a single file or from a directory specified by the path parameter.
Definition DyldSharedCache/DyldSharedCache.hpp:282
LIEF namespace.
Definition Abstract/Binary.hpp:40
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:75
#define LIEF_API
Definition visibility.h:41