LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
AtomInfo.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_ATOM_INFO_COMMAND_H
17#define LIEF_MACHO_ATOM_INFO_COMMAND_H
18#include <ostream>
19
21#include "LIEF/visibility.h"
22
23#include "LIEF/span.hpp"
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:
42 AtomInfo(const details::linkedit_data_command& cmd);
43
44 AtomInfo& operator=(const AtomInfo& copy) = default;
45 AtomInfo(const AtomInfo& copy) = default;
46
47 std::unique_ptr<LoadCommand> clone() const override {
48 return std::unique_ptr<AtomInfo>(new AtomInfo(*this));
49 }
50
52 uint32_t data_offset() const {
53 return data_offset_;
54 }
55
57 uint32_t data_size() const {
58 return data_size_;
59 }
60
61 void data_offset(uint32_t offset) {
62 data_offset_ = offset;
63 }
64 void data_size(uint32_t size) {
65 data_size_ = size;
66 }
67
69 return content_;
70 }
71
73 return content_;
74 }
75
76 ~AtomInfo() override = default;
77
78 void accept(Visitor& visitor) const override;
79
80 std::ostream& print(std::ostream& os) const override;
81
82 static bool classof(const LoadCommand* cmd) {
84 }
85
86 private:
87 uint32_t data_offset_ = 0;
88 uint32_t data_size_ = 0;
89 span<uint8_t> content_;
90};
91
92}
93}
94#endif
uint32_t data_size() const
Size of the payload.
Definition AtomInfo.hpp:57
span< const uint8_t > content() const
Definition AtomInfo.hpp:68
void data_offset(uint32_t offset)
Definition AtomInfo.hpp:61
friend class BinaryParser
Definition AtomInfo.hpp:37
span< uint8_t > content()
Definition AtomInfo.hpp:72
~AtomInfo() override=default
std::ostream & print(std::ostream &os) const override
AtomInfo & operator=(const AtomInfo &copy)=default
void accept(Visitor &visitor) const override
void data_size(uint32_t size)
Definition AtomInfo.hpp:64
uint32_t data_offset() const
Offset in the __LINKEDIT SegmentCommand where the payload starts.
Definition AtomInfo.hpp:52
friend class LinkEdit
Definition AtomInfo.hpp:38
AtomInfo(const details::linkedit_data_command &cmd)
static bool classof(const LoadCommand *cmd)
Definition AtomInfo.hpp:82
AtomInfo(const AtomInfo &copy)=default
std::unique_ptr< LoadCommand > clone() const override
Definition AtomInfo.hpp:47
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
@ ATOM_INFO
Definition LoadCommand.hpp:102
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