LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
CodeView.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_DEBUG_CODE_VIEW_H
17#define LIEF_PE_DEBUG_CODE_VIEW_H
18#include "LIEF/PE/debug/Debug.hpp"
19
20namespace LIEF {
21namespace PE {
22class Parser;
23class Builder;
24
26class LIEF_API CodeView : public Debug {
27 friend class Parser;
28 friend class Builder;
29
30 public:
33 enum class SIGNATURES {
34 UNKNOWN = 0,
35
36 PDB_70 = 0x53445352, // RSDS
37 PDB_20 = 0x3031424e, // NB10
38 CV_50 = 0x3131424e, // NB11
39 CV_41 = 0x3930424e, // NB09
40 };
41
42 CodeView();
43 CodeView(SIGNATURES sig) :
44 Debug{Debug::TYPES::CODEVIEW},
45 sig_{sig}
46 {}
47
48 CodeView(const details::pe_debug& debug, SIGNATURES sig);
49
50 CodeView(const CodeView& other);
51 CodeView& operator=(const CodeView& other);
52
53 ~CodeView() override;
54
57 return sig_;
58 }
59
60 std::unique_ptr<Debug> clone() const override {
61 return std::unique_ptr<Debug>(new CodeView(*this));
62 }
63
64 static bool classof(const Debug* debug) {
65 return debug->type() == Debug::TYPES::CODEVIEW;
66 }
67
68 void accept(Visitor& visitor) const override;
69 LIEF_API friend std::ostream& operator<<(std::ostream& os, const CodeView& entry);
70
71 protected:
72 SIGNATURES sig_ = SIGNATURES::UNKNOWN;
73};
74
75LIEF_API const char* to_string(CodeView::SIGNATURES e);
76
77} // namespace PE
78} // namespace LIEF
79#endif
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
Interface for the (Generic) Debug CodeView (IMAGE_DEBUG_TYPE_CODEVIEW)
Definition CodeView.hpp:26
SIGNATURES signature() const
The signature that defines the underlying type of the payload.
Definition CodeView.hpp:56
SIGNATURES
Code view signatures.
Definition CodeView.hpp:33
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
LIEF namespace.
Definition Abstract/Binary.hpp:32