LIEF: Library to Instrument Executable Formats Version 0.15.1
Loading...
Searching...
No Matches
MemoryStream.hpp
Go to the documentation of this file.
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_MEMORY_STREAM_H
17#define LIEF_MEMORY_STREAM_H
18
19#include <cstdint>
20
21#include "LIEF/errors.hpp"
23
24namespace LIEF {
25class Binary;
26class MemoryStream : public BinaryStream {
27 public:
28 using BinaryStream::p;
31
32 MemoryStream() = delete;
34 MemoryStream(uintptr_t base_address, uint64_t size) :
36 baseaddr_(base_address),
37 size_(size)
38 {}
39
40 MemoryStream(const MemoryStream&) = delete;
42
43 MemoryStream(MemoryStream&&) noexcept = default;
44 MemoryStream& operator=(MemoryStream&&) noexcept = default;
45
46 uintptr_t base_address() const {
47 return this->baseaddr_;
48 }
49
50 const uint8_t* p() const override {
51 return start() + pos();
52 }
53
54 const uint8_t* start() const override {
55 return reinterpret_cast<const uint8_t*>(baseaddr_);
56 }
57
58 const uint8_t* end() const override {
59 return start() + size_;
60 }
61
62 void binary(Binary& bin) {
63 this->binary_ = &bin;
64 }
65
67 return this->binary_;
68 }
69
70 uint64_t size() const override {
71 return size_;
72 }
73
74 ~MemoryStream() override = default;
75
76 static bool classof(const BinaryStream& stream) {
77 return stream.type() == BinaryStream::STREAM_TYPE::MEMORY;
78 }
79
80 protected:
81 result<const void*> read_at(uint64_t offset, uint64_t size) const override;
82 uintptr_t baseaddr_ = 0;
83 uint64_t size_ = 0;
84 Binary* binary_ = nullptr;
85};
86}
87
88#endif
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:34
STREAM_TYPE
Definition BinaryStream.hpp:38
virtual const uint8_t * p() const
Definition BinaryStream.hpp:199
size_t pos() const
Definition BinaryStream.hpp:125
virtual uint8_t * start()
Definition BinaryStream.hpp:203
STREAM_TYPE type() const
Definition BinaryStream.hpp:54
virtual uint8_t * end()
Definition BinaryStream.hpp:211
Abstract binary that exposes an uniform API for the different executable file formats.
Definition Abstract/Binary.hpp:41
Definition MemoryStream.hpp:26
const uint8_t * end() const override
Definition MemoryStream.hpp:58
MemoryStream(uintptr_t base_address)
static bool classof(const BinaryStream &stream)
Definition MemoryStream.hpp:76
MemoryStream(const MemoryStream &)=delete
Binary * binary()
Definition MemoryStream.hpp:66
MemoryStream & operator=(const MemoryStream &)=delete
void binary(Binary &bin)
Definition MemoryStream.hpp:62
uint64_t size() const override
Definition MemoryStream.hpp:70
~MemoryStream() override=default
MemoryStream(MemoryStream &&) noexcept=default
const uint8_t * start() const override
Definition MemoryStream.hpp:54
uintptr_t base_address() const
Definition MemoryStream.hpp:46
const uint8_t * p() const override
Definition MemoryStream.hpp:50
MemoryStream(uintptr_t base_address, uint64_t size)
Definition MemoryStream.hpp:34
LIEF namespace.
Definition Abstract/Binary.hpp:32
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:74