LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
FatBinary.hpp
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 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_MACHO_FAT_BINARY_H
17#define LIEF_MACHO_FAT_BINARY_H
18#include <string>
19#include <vector>
20#include <memory>
21
22#include "LIEF/visibility.h"
23#include "LIEF/iterators.hpp"
24#include "LIEF/MachO/Header.hpp"
25
26namespace LIEF {
27class Parser;
28namespace MachO {
29
30class Parser;
31class Builder;
32class Binary;
33
36class LIEF_API FatBinary {
37
38 friend class LIEF::Parser;
39 friend class Parser;
40 friend class Builder;
41
42 public:
43
45 using binaries_t = std::vector<std::unique_ptr<Binary>>;
46
49
52
53 FatBinary(const FatBinary&) = delete;
54 FatBinary& operator=(const FatBinary&) = delete;
55
56 virtual ~FatBinary();
57
59 size_t size() const {
60 return binaries_.size();
61 }
62
64 bool empty() const {
65 return binaries_.empty();
66 }
67
68 it_binaries begin() {
69 return binaries_;
70 }
71 it_const_binaries begin() const {
72 return binaries_;
73 }
74
75 it_binaries end() {
76 return it_binaries(binaries_).end();
77 }
78
79 it_const_binaries end() const {
80 return it_const_binaries(binaries_).end();
81 }
82
83 void release_all_binaries();
84
87 std::unique_ptr<Binary> pop_back();
88
91 Binary* at(size_t index);
92 const Binary* at(size_t index) const;
93
94 Binary* back();
95 const Binary* back() const;
96
97 Binary* front();
98 const Binary* front() const;
99
100 Binary* operator[](size_t index) {
101 return at(index);
102 }
103 const Binary* operator[](size_t index) const {
104 return at(index);
105 }
106
111 std::unique_ptr<Binary> take(size_t index);
112
115 std::unique_ptr<Binary> take(Header::CPU_TYPE cpu);
116
119 void write(const std::string& filename);
120
122 std::vector<uint8_t> raw();
123
124 LIEF_API friend std::ostream& operator<<(std::ostream& os, const FatBinary& fatbinary);
125
126 private:
127 FatBinary();
128 FatBinary(binaries_t binaries);
129 binaries_t binaries_;
130};
131
132} // namespace MachO
133} // namespace LIEF
134#endif
Class which represents a MachO binary.
Definition MachO/Binary.hpp:73
Class used to rebuild a Mach-O file.
Definition MachO/Builder.hpp:54
Class which represent a Mach-O (fat) binary This object is also used for representing Mach-O binaries...
Definition FatBinary.hpp:36
std::unique_ptr< Binary > pop_back()
Get a pointer to the last MachO::Binary object presents in this Fat Binary. It returns a nullptr if n...
bool empty() const
Checks whether this object contains MachO::Binary.
Definition FatBinary.hpp:64
std::unique_ptr< Binary > take(Header::CPU_TYPE cpu)
Take the underlying MachO::Binary that matches the given architecture If no binary with the architect...
std::vector< uint8_t > raw()
Reconstruct the Fat binary object and return his content as bytes.
std::unique_ptr< Binary > take(size_t index)
Extract a MachO::Binary object. Gives ownership to the caller, and remove it from this FatBinary obje...
std::vector< std::unique_ptr< Binary > > binaries_t
Internal containter used to store Binary objects within a Fat Mach-O.
Definition FatBinary.hpp:45
void write(const std::string &filename)
Reconstruct the Fat binary object and write it in filename
Binary * at(size_t index)
Get a pointer to the MachO::Binary specified by the index. It returns a nullptr if the binary does no...
size_t size() const
Number of MachO::Binary wrapped by this object.
Definition FatBinary.hpp:59
The main interface to parse a Mach-O binary.
Definition MachO/Parser.hpp:42
Main interface to parse an executable regardless of its format.
Definition Abstract/Parser.hpp:30
Iterator which returns reference on container's values.
Definition iterators.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:32