LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
Repro.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 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_REPRO_H
17#define LIEF_PE_REPRO_H
18#include <ostream>
19#include <vector>
20
21#include "LIEF/visibility.h"
23#include "LIEF/span.hpp"
24
25namespace LIEF {
26namespace PE {
27
28class Builder;
29class Parser;
30class LIEF_API Repro : public Debug {
37
38 friend class Builder;
39 friend class Parser;
40
41 public:
43 Debug{Debug::TYPES::REPRO}
44 {}
45
46 Repro(std::vector<uint8_t> hash) :
47 Debug{Debug::TYPES::REPRO},
48 hash_{std::move(hash)}
49 {}
50
51 Repro(const details::pe_debug& dbg, std::vector<uint8_t> hash, Section* sec) :
52 Debug{dbg, sec},
53 hash_{std::move(hash)}
54 {}
55
56 Repro(const details::pe_debug& dbg, Section* sec) :
57 Debug{dbg, sec}
58 {}
59
60 Repro(const Repro& other) = default;
61 Repro& operator=(const Repro& other) = default;
62
63 Repro(Repro&&) = default;
64 Repro& operator=(Repro&& other) = default;
65 span<const uint8_t> hash() const {
68 return hash_;
69 }
70
71 span<uint8_t> hash() {
72 return hash_;
73 }
74
75 void hash(std::vector<uint8_t> h) {
76 hash_ = std::move(h);
77 }
78
79 std::unique_ptr<Debug> clone() const override {
80 return std::unique_ptr<Debug>(new Repro(*this));
81 }
82
83 static bool classof(const Debug* debug) {
84 return debug->type() == Debug::TYPES::REPRO;
85 }
86
87 void accept(Visitor& visitor) const override;
88
89 std::string to_string() const override;
90
91 ~Repro() override = default;
92
93 protected:
94 std::vector<uint8_t> hash_;
95};
96
97} // Namespace PE
98} // Namespace LIEF
99
100#endif
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
This class represents a generic entry in the debug data directory. For known types,...
Definition debug/Debug.hpp:40
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:52
This class represents a reproducible build entry from the debug directory. (IMAGE_DEBUG_TYPE_REPRO)....
Definition Repro.hpp:36
span< uint8_t > hash()
Definition Repro.hpp:71
Repro & operator=(Repro &&other)=default
Repro(Repro &&)=default
void hash(std::vector< uint8_t > h)
Definition Repro.hpp:75
void accept(Visitor &visitor) const override
std::string to_string() const override
Repro(std::vector< uint8_t > hash)
Definition Repro.hpp:46
static bool classof(const Debug *debug)
Definition Repro.hpp:83
~Repro() override=default
Repro(const Repro &other)=default
Repro(const details::pe_debug &dbg, Section *sec)
Definition Repro.hpp:56
span< const uint8_t > hash() const
The hash associated with the reproducible build.
Definition Repro.hpp:67
Repro()
Definition Repro.hpp:42
Repro & operator=(const Repro &other)=default
Repro(const details::pe_debug &dbg, std::vector< uint8_t > hash, Section *sec)
Definition Repro.hpp:51
std::unique_ptr< Debug > clone() const override
Definition Repro.hpp:79
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
LIEF namespace.
Definition Abstract/Binary.hpp:36
Hash::value_type hash(const Object &v)
#define LIEF_API
Definition visibility.h:41