LIEF: Library to Instrument Executable Formats
Version 1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
lief-install
x86_64
static
include
LIEF
DyldSharedCache
SubCache.hpp
Go to the documentation of this file.
1
/* Copyright 2017 - 2026 R. Thomas
2
* Copyright 2017 - 2026 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_SUBCACHE_H
17
#define LIEF_DSC_SUBCACHE_H
18
#include "
LIEF/visibility.h
"
19
#include "
LIEF/iterators.hpp
"
20
#include "
LIEF/DyldSharedCache/uuid.hpp
"
21
22
#include <memory>
23
#include <string>
24
25
namespace
LIEF
{
26
namespace
dsc
{
27
class
DyldSharedCache
;
28
29
namespace
details
{
30
class
SubCache;
31
class
SubCacheIt;
32
}
33
39
class
LIEF_API
SubCache
{
40
public
:
42
class
LIEF_API
Iterator
43
:
public
iterator_facade_base
<Iterator, std::random_access_iterator_tag,
44
SubCache, std::ptrdiff_t, const SubCache*,
45
const SubCache&> {
46
public
:
47
using
implementation
= details::SubCacheIt;
48
49
Iterator
();
50
51
Iterator
(std::unique_ptr<details::SubCacheIt> impl);
52
Iterator
(
const
Iterator
&);
53
Iterator
&
operator=
(
const
Iterator
&);
54
55
Iterator
(
Iterator
&&) noexcept;
56
Iterator
& operator=(
Iterator
&&) noexcept;
57
58
~
Iterator
();
59
bool
operator<(const
Iterator
& rhs) const;
60
61
std::ptrdiff_t operator-(const
Iterator
& R) const;
62
63
Iterator
& operator+=(std::ptrdiff_t n);
64
Iterator
& operator-=(std::ptrdiff_t n);
65
66
friend
LIEF_API
bool
operator==(const
Iterator
& LHS, const
Iterator
& RHS);
67
68
friend
LIEF_API
bool
operator!=(const
Iterator
& LHS, const
Iterator
& RHS) {
69
return
!(LHS == RHS);
70
}
71
72
const
SubCache
&
operator*
()
const
;
73
74
// NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
75
const
SubCache
*
operator->
()
const
;
76
79
std::unique_ptr<SubCache>
yield
();
80
81
private
:
82
void
load()
const
;
83
84
std::unique_ptr<details::SubCacheIt> impl_;
85
mutable
std::unique_ptr<SubCache> cached_;
86
};
87
88
public
:
89
SubCache
(std::unique_ptr<details::SubCache> impl);
90
~SubCache
();
91
93
sc_uuid_t
uuid
()
const
;
94
96
uint64_t
vm_offset
()
const
;
97
100
std::string
suffix
()
const
;
101
103
std::unique_ptr<const DyldSharedCache>
cache
()
const
;
104
105
friend
LIEF_API
std::ostream&
operator<<
(std::ostream& os,
106
const
SubCache
& subcache);
107
108
private
:
109
std::unique_ptr<details::SubCache> impl_;
110
};
111
112
}
113
}
114
#endif
LIEF::dsc::DyldSharedCache
This class represents a dyld shared cache file.
Definition
DyldSharedCache/DyldSharedCache.hpp:40
LIEF::dsc::SubCache::Iterator::yield
std::unique_ptr< SubCache > yield()
Transfer ownership of the subcache at the current position to the caller. Returns nullptr if the iter...
LIEF::dsc::SubCache::Iterator::implementation
details::SubCacheIt implementation
Definition
SubCache.hpp:47
LIEF::dsc::SubCache::Iterator::operator->
const SubCache * operator->() const
LIEF::dsc::SubCache::Iterator::Iterator
Iterator()
LIEF::dsc::SubCache::Iterator::operator*
const SubCache & operator*() const
LIEF::dsc::SubCache::Iterator::Iterator
Iterator(std::unique_ptr< details::SubCacheIt > impl)
LIEF::dsc::SubCache::Iterator::Iterator
Iterator(const Iterator &)
LIEF::dsc::SubCache::Iterator::Iterator
Iterator(Iterator &&) noexcept
LIEF::dsc::SubCache::Iterator::operator=
Iterator & operator=(const Iterator &)
LIEF::dsc::SubCache::cache
std::unique_ptr< const DyldSharedCache > cache() const
The associated DyldSharedCache object for this subcache.
LIEF::dsc::SubCache::SubCache
SubCache(std::unique_ptr< details::SubCache > impl)
LIEF::dsc::SubCache::uuid
sc_uuid_t uuid() const
The uuid of the subcache file.
LIEF::dsc::SubCache::vm_offset
uint64_t vm_offset() const
The offset of this subcache from the main cache base address.
LIEF::dsc::SubCache::~SubCache
~SubCache()
LIEF::dsc::SubCache::suffix
std::string suffix() const
The file name suffix of the subCache file (e.g. .25.data, .03.development).
LIEF::dsc::SubCache::operator<<
friend std::ostream & operator<<(std::ostream &os, const SubCache &subcache)
LIEF::iterator_facade_base
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
Definition
iterators.hpp:729
iterators.hpp
LIEF::dsc::details
Definition
DyldSharedCache/DyldSharedCache.hpp:35
LIEF::dsc
Namespace related to the dyld shared cache support.
Definition
caching.hpp:22
LIEF::dsc::sc_uuid_t
std::array< uint8_t, 16 > sc_uuid_t
UUID used in different places of the shared cache.
Definition
uuid.hpp:26
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
uuid.hpp
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:45
Generated by
1.17.0