LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
Export.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_PE_EXPORT_H
17#define LIEF_PE_EXPORT_H
18
19#include <ostream>
20#include <string>
21
22#include "LIEF/Object.hpp"
23#include "LIEF/visibility.h"
24#include "LIEF/iterators.hpp"
25#include "LIEF/PE/ExportEntry.hpp"
26
27namespace LIEF {
28namespace PE {
29
30class Builder;
31class Parser;
32
33namespace details {
34struct pe_export_directory_table;
35}
36
38class LIEF_API Export : public Object {
39 friend class Builder;
40 friend class Parser;
41
42 public:
43 using entries_t = std::vector<ExportEntry>;
46
47 Export();
48 Export(const details::pe_export_directory_table& header);
49 Export(const Export&);
50 Export& operator=(const Export&);
51 ~Export() override;
52
55 uint32_t export_flags() const {
56 return export_flags_;
57 }
58
60 uint32_t timestamp() const {
61 return timestamp_;
62 }
63
65 uint16_t major_version() const {
66 return major_version_;
67 }
68
70 uint16_t minor_version() const {
71 return minor_version_;
72 }
73
76 uint32_t ordinal_base() const {
77 return ordinal_base_;
78 }
79
81 const std::string& name() const {
82 return name_;
83 }
84
87 return entries_;
88 }
89
90 it_const_entries entries() const {
91 return entries_;
92 }
93
94 void export_flags(uint32_t flags) {
95 export_flags_ = flags;
96 }
97 void timestamp(uint32_t timestamp) {
98 timestamp_ = timestamp;
99 }
100
101 void major_version(uint16_t major_version) {
102 major_version_ = major_version;
103 }
104
105 void minor_version(uint16_t minor_version) {
106 minor_version_ = minor_version;
107 }
108 void ordinal_base(uint32_t ordinal_base) {
109 ordinal_base_ = ordinal_base;
110 }
111
112 void name(std::string name) {
113 name_ = std::move(name);
114 }
115
116 void accept(Visitor& visitor) const override;
117
118 LIEF_API friend std::ostream& operator<<(std::ostream& os, const Export& exp);
119
120 private:
121 uint32_t export_flags_ = 0;
122 uint32_t timestamp_ = 0;
123 uint16_t major_version_ = 0;
124 uint16_t minor_version_ = 0;
125 uint32_t ordinal_base_ = 0;
126 entries_t entries_;
127 std::string name_;
128
129};
130
131}
132}
133
134#endif /* PE_EXPORT_H */
Definition Object.hpp:25
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
Class which represents a PE Export.
Definition Export.hpp:38
uint32_t export_flags() const
According to the PE specifications this value is reserved and should be set to 0.
Definition Export.hpp:55
uint16_t major_version() const
The major version number (can be user-defined)
Definition Export.hpp:65
uint16_t minor_version() const
The minor version number (can be user-defined)
Definition Export.hpp:70
uint32_t ordinal_base() const
The starting number for the exports. Usually this value is set to 1.
Definition Export.hpp:76
const std::string & name() const
The name of the library exported (e.g. KERNEL32.dll)
Definition Export.hpp:81
it_entries entries()
Iterator over the ExportEntry.
Definition Export.hpp:86
uint32_t timestamp() const
The time and date that the export data was created.
Definition Export.hpp:60
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
Iterator which returns reference on container's values.
Definition iterators.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:32