LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
iostream.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_OSTREAM_H
17#define LIEF_OSTREAM_H
18#include <limits>
19#include <ios>
20#include <cstdint>
21#include <cstring>
22#include <vector>
23#include <array>
24
25#include "LIEF/span.hpp"
27
28namespace LIEF {
30 public:
31 static size_t uleb128_size(uint64_t value);
32 static size_t sleb128_size(int64_t value);
33 using pos_type = std::streampos;
34 using off_type = std::streamoff;
35 vector_iostream() = default;
36 vector_iostream(bool endian_swap) :
37 endian_swap_(endian_swap)
38 {}
39 void reserve(size_t size) {
40 raw_.reserve(size);
41 }
42
43 vector_iostream& put(uint8_t c);
44 vector_iostream& write(const uint8_t* s, std::streamsize n);
46 return write(sp.data(), sp.size());
47 }
48
49 vector_iostream& write(std::vector<uint8_t> s) {
50 return write(s.data(), s.size());
51 }
52
53 vector_iostream& write(const std::string& s) {
54 return write(reinterpret_cast<const uint8_t*>(s.c_str()), s.size() + 1);
55 }
56
57 vector_iostream& write(size_t count, uint8_t value) {
58 raw_.insert(std::end(raw_), count, value);
59 current_pos_ += count;
60 return *this;
61 }
62 vector_iostream& write_sized_int(uint64_t value, size_t size) {
63 const uint64_t stack_val = value;
64 return write(reinterpret_cast<const uint8_t*>(&stack_val), size);
65 }
67 return write(other.raw());
68 }
69
70 template<class T, typename = typename std::enable_if<std::is_standard_layout<T>::value && std::is_trivial<T>::value>::type>
71 vector_iostream& write(const T& t) {
72 const auto pos = static_cast<size_t>(tellp());
73 if (raw_.size() < (pos + sizeof(T))) {
74 raw_.resize(pos + sizeof(T));
75 }
76 if (endian_swap_) {
77 T tmp = t;
78 swap_endian(&tmp);
79 memcpy(raw_.data() + pos, &tmp, sizeof(T));
80 } else {
81 memcpy(raw_.data() + pos, &t, sizeof(T));
82 }
83 current_pos_ += sizeof(T);
84 return *this;
85 }
86
87 vector_iostream& align(size_t alignment, uint8_t fill = 0);
88
89 template<typename T, size_t size>
90 vector_iostream& write(const std::array<T, size>& t) {
91 static_assert(std::numeric_limits<T>::is_integer, "Requires integer type");
92 for (T val : t) {
93 write<T>(val);
94 }
95 return *this;
96 }
97
98
99 template<typename T>
100 vector_iostream& write(const std::vector<T>& elements) {
101 for (const T& e : elements) {
102 write(e);
103 }
104 return *this;
105 }
106
109
110 vector_iostream& get(std::vector<uint8_t>& c) {
111 c = raw_;
112 return *this;
113 }
114 vector_iostream& move(std::vector<uint8_t>& c) {
115 c = std::move(raw_);
116 return *this;
117 }
118
120 return *this;
121 }
122
123 size_t size() const {
124 return raw_.size();
125 }
126
127 // seeks:
128 pos_type tellp() const {
129 return current_pos_;
130 }
131
133 current_pos_ = p;
134 return *this;
135 }
136
137 vector_iostream& seekp(vector_iostream::off_type p, std::ios_base::seekdir dir);
138
139 const std::vector<uint8_t>& raw() const {
140 return raw_;
141 }
142
143 std::vector<uint8_t>& raw() {
144 return raw_;
145 }
146
147 void set_endian_swap(bool swap) {
148 endian_swap_ = swap;
149 }
150
151 private:
152 pos_type current_pos_ = 0;
153 std::vector<uint8_t> raw_;
154 bool endian_swap_ = false;
155};
156
157
158}
159#endif
Definition iostream.hpp:29
std::vector< uint8_t > & raw()
Definition iostream.hpp:143
static size_t sleb128_size(int64_t value)
vector_iostream & flush()
Definition iostream.hpp:119
vector_iostream & seekp(vector_iostream::off_type p, std::ios_base::seekdir dir)
const std::vector< uint8_t > & raw() const
Definition iostream.hpp:139
vector_iostream & write(const std::array< T, size > &t)
Definition iostream.hpp:90
size_t size() const
Definition iostream.hpp:123
vector_iostream & put(uint8_t c)
vector_iostream & write_uleb128(uint64_t value)
vector_iostream & write(const uint8_t *s, std::streamsize n)
vector_iostream & seekp(pos_type p)
Definition iostream.hpp:132
void reserve(size_t size)
Definition iostream.hpp:39
vector_iostream & move(std::vector< uint8_t > &c)
Definition iostream.hpp:114
vector_iostream & write_sized_int(uint64_t value, size_t size)
Definition iostream.hpp:62
vector_iostream & write(const std::string &s)
Definition iostream.hpp:53
std::streampos pos_type
Definition iostream.hpp:33
pos_type tellp() const
Definition iostream.hpp:128
vector_iostream & write(const vector_iostream &other)
Definition iostream.hpp:66
vector_iostream & write(span< const uint8_t > sp)
Definition iostream.hpp:45
vector_iostream & align(size_t alignment, uint8_t fill=0)
void set_endian_swap(bool swap)
Definition iostream.hpp:147
vector_iostream & write(std::vector< uint8_t > s)
Definition iostream.hpp:49
vector_iostream & write(const T &t)
Definition iostream.hpp:71
static size_t uleb128_size(uint64_t value)
std::streamoff off_type
Definition iostream.hpp:34
vector_iostream & write(const std::vector< T > &elements)
Definition iostream.hpp:100
vector_iostream & write_sleb128(int64_t value)
vector_iostream & write(size_t count, uint8_t value)
Definition iostream.hpp:57
vector_iostream(bool endian_swap)
Definition iostream.hpp:36
vector_iostream & get(std::vector< uint8_t > &c)
Definition iostream.hpp:110
LIEF namespace.
Definition Abstract/Binary.hpp:36
tcb::span< ElementType, Extent > span
Definition span.hpp:22
void swap_endian(T *)
Definition endianness_support.hpp:116