LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
SegmentSplitInfo.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_MACHO_SEGMENT_SPLIT_INFO_H
17#define LIEF_MACHO_SEGMENT_SPLIT_INFO_H
18#include <ostream>
19
21#include "LIEF/visibility.h"
22#include "LIEF/span.hpp"
23
25
26namespace LIEF {
27namespace MachO {
28class BinaryParser;
29class LinkEdit;
30
31namespace details {
32struct linkedit_data_command;
33}
34
37 friend class BinaryParser;
38 friend class LinkEdit;
39
40 public:
41 SegmentSplitInfo() = default;
42 SegmentSplitInfo(const details::linkedit_data_command& cmd);
43
45 SegmentSplitInfo(const SegmentSplitInfo& copy) = default;
46
47 std::unique_ptr<LoadCommand> clone() const override {
48 return std::unique_ptr<SegmentSplitInfo>(new SegmentSplitInfo(*this));
49 }
50
51 uint32_t data_offset() const {
52 return data_offset_;
53 }
54 uint32_t data_size() const {
55 return data_size_;
56 }
57
58 void data_offset(uint32_t offset) {
59 data_offset_ = offset;
60 }
61 void data_size(uint32_t size) {
62 data_size_ = size;
63 }
64
66 return content_;
67 }
68
70 return content_;
71 }
72
73 ~SegmentSplitInfo() override = default;
74
75 void accept(Visitor& visitor) const override;
76
77 std::ostream& print(std::ostream& os) const override;
78
79 static bool classof(const LoadCommand* cmd) {
81 }
82
83 private:
84 uint32_t data_offset_ = 0;
85 uint32_t data_size_ = 0;
86 span<uint8_t> content_;
87};
88
89}
90}
91#endif
Class used to parse a single binary (i.e. non-FAT).
Definition BinaryParser.hpp:79
Definition LinkEdit.hpp:47
uint32_t size() const
Size of the command (should be greater than sizeof(load_command)).
Definition LoadCommand.hpp:135
LoadCommand::TYPE command() const
Command type.
Definition LoadCommand.hpp:130
@ SEGMENT_SPLIT_INFO
Definition LoadCommand.hpp:77
std::ostream & print(std::ostream &os) const override
uint32_t data_offset() const
Definition SegmentSplitInfo.hpp:51
friend class BinaryParser
Definition SegmentSplitInfo.hpp:37
SegmentSplitInfo & operator=(const SegmentSplitInfo &copy)=default
SegmentSplitInfo(const SegmentSplitInfo &copy)=default
uint32_t data_size() const
Definition SegmentSplitInfo.hpp:54
void data_size(uint32_t size)
Definition SegmentSplitInfo.hpp:61
span< uint8_t > content()
Definition SegmentSplitInfo.hpp:65
void data_offset(uint32_t offset)
Definition SegmentSplitInfo.hpp:58
static bool classof(const LoadCommand *cmd)
Definition SegmentSplitInfo.hpp:79
friend class LinkEdit
Definition SegmentSplitInfo.hpp:38
span< const uint8_t > content() const
Definition SegmentSplitInfo.hpp:69
void accept(Visitor &visitor) const override
std::unique_ptr< LoadCommand > clone() const override
Definition SegmentSplitInfo.hpp:47
~SegmentSplitInfo() override=default
SegmentSplitInfo(const details::linkedit_data_command &cmd)
Definition Visitor.hpp:212
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Definition endianness_support.hpp:60
Namespace related to the LIEF's Mach-O module.
Definition Abstract/Header.hpp:36
LIEF namespace.
Definition Abstract/Binary.hpp:41
tcb::span< ElementType, Extent > span
Definition span.hpp:22
#define LIEF_API
Definition visibility.h:45