LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
Repro.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_REPRO_H
17#define LIEF_PE_REPRO_H
18#include <ostream>
19#include <vector>
20
21#include "LIEF/visibility.h"
22#include "LIEF/PE/debug/Debug.hpp"
23#include "LIEF/span.hpp"
24
25namespace LIEF {
26namespace PE {
27
28class Builder;
29class Parser;
30
36class LIEF_API Repro : public Debug {
37
38 friend class Builder;
39 friend class Parser;
40
41 public:
42 Repro() :
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) :
52 Debug{dbg},
53 hash_{std::move(hash)}
54 {}
55
56 Repro(const Repro& other);
57 Repro& operator=(const Repro& other);
58
60 span<const uint8_t> hash() const {
61 return hash_;
62 }
63
64 span<uint8_t> hash() {
65 return hash_;
66 }
67
68 void hash(std::vector<uint8_t> h) {
69 hash_ = std::move(h);
70 }
71
72 std::unique_ptr<Debug> clone() const override {
73 return std::unique_ptr<Debug>(new Repro(*this));
74 }
75
76 static bool classof(const Debug* debug) {
77 return debug->type() == Debug::TYPES::REPRO;
78 }
79
80 void accept(Visitor& visitor) const override;
81
82 LIEF_API friend std::ostream& operator<<(std::ostream& os, const Repro& entry);
83
84 ~Repro() override;
85
86 protected:
87 std::vector<uint8_t> hash_;
88};
89
90} // Namespace PE
91} // Namespace LIEF
92
93#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:38
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
This class represents a reproducible build entry from the debug directory. (IMAGE_DEBUG_TYPE_REPRO)....
Definition Repro.hpp:36
span< const uint8_t > hash() const
The hash associated with the reproducible build.
Definition Repro.hpp:60
LIEF namespace.
Definition Abstract/Binary.hpp:32