Botan 3.11.0
Crypto and TLS for C&
mem_ops.h
Go to the documentation of this file.
1/*
2* Memory Operations
3* (C) 1999-2009,2012,2015 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_MEMORY_OPS_H_
9#define BOTAN_MEMORY_OPS_H_
10
11#include <botan/assert.h>
12#include <botan/range_concepts.h>
13#include <botan/types.h>
14#include <array>
15#include <cstring>
16#include <ranges>
17#include <span>
18#include <type_traits>
19#include <vector>
20
22
23/*
24The header mem_ops.h previously included the contents of allocator.h
25
26Library code should always include allocator.h to see these
27declarations; however when we are not building the library continue to
28include the header here to avoid breaking application code.
29*/
30#if !defined(BOTAN_IS_BEING_BUILT)
31 #include <botan/allocator.h>
32#endif
33
34namespace Botan {
35
36/**
37* Scrub memory contents in a way that a compiler should not elide,
38* using some system specific technique. Note that this function might
39* not zero the memory (for example, in some hypothetical
40* implementation it might combine the memory contents with the output
41* of a system PRNG), but if you can detect any difference in behavior
42* at runtime then the clearing is side-effecting and you can just
43* use `clear_mem`.
44*
45* Use this function to scrub memory just before deallocating it, or on
46* a stack buffer before returning from the function.
47*
48* @param ptr a pointer to memory to scrub
49* @param n the number of bytes pointed to by ptr
50*/
51BOTAN_PUBLIC_API(2, 0) void secure_scrub_memory(void* ptr, size_t n);
52
53/**
54* Zero memory contents in a way that a compiler should not elide,
55* using some system specific technique.
56*
57* @param data the data region to be scrubbed
58*/
59void secure_scrub_memory(ranges::contiguous_output_range auto&& data) {
60 secure_scrub_memory(std::ranges::data(data), ranges::size_bytes(data));
61}
62
63/**
64* Memory comparison, input insensitive
65* @param x a pointer to an array
66* @param y a pointer to another array
67* @param len the number of Ts in x and y
68* @return 0xFF iff x[i] == y[i] forall i in [0...n) or 0x00 otherwise
69*/
70BOTAN_DEPRECATED("This function is deprecated, use constant_time_compare()")
71BOTAN_PUBLIC_API(2, 9) uint8_t ct_compare_u8(const uint8_t x[], const uint8_t y[], size_t len);
72
73/**
74 * Memory comparison, input insensitive
75 * @param x a range of bytes
76 * @param y another range of bytes
77 * @return true iff x and y have equal lengths and x[i] == y[i] forall i in [0...n)
78 */
79BOTAN_PUBLIC_API(3, 3) bool constant_time_compare(std::span<const uint8_t> x, std::span<const uint8_t> y);
80
81/**
82* Memory comparison, input insensitive
83* @param x a pointer to an array
84* @param y a pointer to another array
85* @param len the number of Ts in x and y
86* @return true iff x[i] == y[i] forall i in [0...n)
87*/
88inline bool constant_time_compare(const uint8_t x[], const uint8_t y[], size_t len) {
89 // simply assumes that *x and *y point to len allocated bytes at least
90 return constant_time_compare({x, len}, {y, len});
91}
92
93/**
94* Zero out some bytes. Warning: use secure_scrub_memory instead if the
95* memory is about to be freed or otherwise the compiler thinks it can
96* elide the writes.
97*
98* @param ptr a pointer to memory to zero
99* @param bytes the number of bytes to zero in ptr
100*/
101inline constexpr void clear_bytes(void* ptr, size_t bytes) {
102 if(bytes > 0) {
103 std::memset(ptr, 0, bytes);
104 }
105}
106
107/**
108* Zero memory before use. This simply calls memset and should not be
109* used in cases where the compiler cannot see the call as a
110* side-effecting operation (for example, if calling clear_mem before
111* deallocating memory, the compiler would be allowed to omit the call
112* to memset entirely under the as-if rule.)
113*
114* @param ptr a pointer to an array of Ts to zero
115* @param n the number of Ts pointed to by ptr
116*/
117template <typename T>
118inline constexpr void clear_mem(T* ptr, size_t n) {
119 clear_bytes(ptr, sizeof(T) * n);
120}
121
122/**
123* Zero memory before use. This simply calls memset and should not be
124* used in cases where the compiler cannot see the call as a
125* side-effecting operation.
126*
127* @param mem a contiguous range of Ts to zero
128*/
129template <ranges::contiguous_output_range R>
130inline constexpr void clear_mem(R&& mem) // NOLINT(*-missing-std-forward)
131 requires std::is_trivially_copyable_v<std::ranges::range_value_t<R>>
132{
133 clear_bytes(std::ranges::data(mem), ranges::size_bytes(mem));
134}
135
136/**
137* Copy memory
138* @param out the destination array
139* @param in the source array
140* @param n the number of elements of in/out
141*/
142template <typename T>
143 requires std::is_trivial_v<std::decay_t<T>>
144inline constexpr void copy_mem(T* out, const T* in, size_t n) {
145 BOTAN_ASSERT_IMPLICATION(n > 0, in != nullptr && out != nullptr, "If n > 0 then args are not null");
146
147 if(in != nullptr && out != nullptr && n > 0) {
148 std::memmove(out, in, sizeof(T) * n);
149 }
150}
151
152/**
153* Copy memory
154* @param out the destination array
155* @param in the source array
156*/
157template <ranges::contiguous_output_range OutR, ranges::contiguous_range InR>
158 requires std::is_same_v<std::ranges::range_value_t<OutR>, std::ranges::range_value_t<InR>> &&
159 std::is_trivially_copyable_v<std::ranges::range_value_t<InR>>
160inline constexpr void copy_mem(OutR&& out /* NOLINT(*-std-forward) */, const InR& in) {
162 if(std::is_constant_evaluated()) {
163 std::copy(std::ranges::begin(in), std::ranges::end(in), std::ranges::begin(out));
164 } else if(ranges::size_bytes(out) > 0) {
165 std::memmove(std::ranges::data(out), std::ranges::data(in), ranges::size_bytes(out));
166 }
167}
168
169/**
170 * Copy a range of a trivially copyable type into another range of trivially
171 * copyable type of matching byte length.
172 */
173template <ranges::contiguous_output_range ToR, ranges::contiguous_range FromR>
174 requires std::is_trivially_copyable_v<std::ranges::range_value_t<FromR>> &&
175 std::is_trivially_copyable_v<std::ranges::range_value_t<ToR>>
176inline constexpr void typecast_copy(ToR&& out /* NOLINT(*-std-forward) */, const FromR& in) {
178 std::memcpy(std::ranges::data(out), std::ranges::data(in), ranges::size_bytes(out));
179}
180
181/**
182 * Copy a range of trivially copyable type into an instance of trivially
183 * copyable type with matching length.
184 */
185template <typename ToT, ranges::contiguous_range FromR>
186 requires std::is_trivially_copyable_v<std::ranges::range_value_t<FromR>> && std::is_trivially_copyable_v<ToT> &&
187 (!std::ranges::range<ToT>)
188inline constexpr void typecast_copy(ToT& out, const FromR& in) {
189 typecast_copy(std::span<ToT, 1>(&out, 1), in);
190}
191
192/**
193 * Copy an instance of trivially copyable type into a range of trivially
194 * copyable type with matching length.
195 */
196template <ranges::contiguous_output_range ToR, typename FromT>
197 requires std::is_trivially_copyable_v<FromT> &&
198 (!std::ranges::range<FromT>) && std::is_trivially_copyable_v<std::ranges::range_value_t<ToR>>
199inline constexpr void typecast_copy(ToR&& out /* NOLINT(*-std-forward) */, const FromT& in) {
200 typecast_copy(out, std::span<const FromT, 1>(&in, 1));
201}
202
203/**
204 * Create a trivial type by bit-casting a range of trivially copyable type with
205 * matching length into it.
206 */
207template <typename ToT, ranges::contiguous_range FromR>
208 requires std::is_default_constructible_v<ToT> && std::is_trivially_copyable_v<ToT> &&
209 std::is_trivially_copyable_v<std::ranges::range_value_t<FromR>>
210inline constexpr ToT typecast_copy(const FromR& src) {
211 ToT dst; // NOLINT(*-member-init)
212 typecast_copy(dst, src);
213 return dst;
214}
215
216// TODO: deprecate and replace
217template <typename T>
218inline constexpr void typecast_copy(uint8_t out[], T in[], size_t N)
219 requires std::is_trivially_copyable_v<T>
220{
221 // asserts that *in and *out point to the correct amount of memory
222 typecast_copy(std::span<uint8_t>(out, sizeof(T) * N), std::span<const T>(in, N));
223}
224
225// TODO: deprecate and replace
226template <typename T>
227inline constexpr void typecast_copy(T out[], const uint8_t in[], size_t N)
228 requires std::is_trivial_v<T>
229{
230 // asserts that *in and *out point to the correct amount of memory
231 typecast_copy(std::span<T>(out, N), std::span<const uint8_t>(in, N * sizeof(T)));
232}
233
234// TODO: deprecate and replace
235template <typename T>
236inline constexpr void typecast_copy(uint8_t out[], const T& in) {
237 // asserts that *out points to the correct amount of memory
238 typecast_copy(std::span<uint8_t, sizeof(T)>(out, sizeof(T)), in);
239}
240
241// TODO: deprecate and replace
242template <typename T>
243 requires std::is_trivial_v<std::decay_t<T>>
244inline constexpr void typecast_copy(T& out, const uint8_t in[]) {
245 // asserts that *in points to the correct amount of memory
246 typecast_copy(out, std::span<const uint8_t, sizeof(T)>(in, sizeof(T)));
247}
248
249// TODO: deprecate and replace
250template <typename To>
251 requires std::is_trivial_v<To>
252inline constexpr To typecast_copy(const uint8_t src[]) noexcept {
253 // asserts that *src points to the correct amount of memory
254 return typecast_copy<To>(std::span<const uint8_t, sizeof(To)>(src, sizeof(To)));
255}
256
257#if !defined(BOTAN_IS_BEING_BUILT)
258/**
259* Set memory to a fixed value
260* @param ptr a pointer to an array of bytes
261* @param n the number of Ts pointed to by ptr
262* @param val the value to set each byte to
263*/
264BOTAN_DEPRECATED("This function is deprecated") inline constexpr void set_mem(uint8_t* ptr, size_t n, uint8_t val) {
265 if(n > 0) {
266 std::memset(ptr, val, n);
267 }
268}
269#endif
270
271#if !defined(BOTAN_IS_BEING_BUILT)
272inline const uint8_t* cast_char_ptr_to_uint8(const char* s) {
273 return reinterpret_cast<const uint8_t*>(s);
274}
275
276inline uint8_t* cast_char_ptr_to_uint8(char* s) {
277 return reinterpret_cast<uint8_t*>(s);
278}
279#endif
280
281inline const char* cast_uint8_ptr_to_char(const uint8_t* b) {
282 return reinterpret_cast<const char*>(b);
283}
284
285inline char* cast_uint8_ptr_to_char(uint8_t* b) {
286 return reinterpret_cast<char*>(b);
287}
288
289#if !defined(BOTAN_IS_BEING_BUILT)
290/**
291* Memory comparison, input insensitive
292* @param p1 a pointer to an array
293* @param p2 a pointer to another array
294* @param n the number of Ts in p1 and p2
295* @return true iff p1[i] == p2[i] forall i in [0...n)
296*/
297template <typename T>
298BOTAN_DEPRECATED("This function is deprecated")
299inline bool same_mem(const T* p1, const T* p2, size_t n) {
300 volatile T difference = 0;
301
302 for(size_t i = 0; i != n; ++i) {
303 difference = difference | (p1[i] ^ p2[i]);
304 }
305
306 return difference == 0;
307}
308#endif
309
310#if !defined(BOTAN_IS_BEING_BUILT)
311
312template <typename T, typename Alloc>
313BOTAN_DEPRECATED("The buffer_insert functions are deprecated")
314size_t buffer_insert(std::vector<T, Alloc>& buf, size_t buf_offset, const T input[], size_t input_length) {
315 BOTAN_ASSERT_NOMSG(buf_offset <= buf.size());
316 const size_t to_copy = std::min(input_length, buf.size() - buf_offset);
317 if(to_copy > 0) {
318 copy_mem(&buf[buf_offset], input, to_copy);
319 }
320 return to_copy;
321}
322
323template <typename T, typename Alloc, typename Alloc2>
324BOTAN_DEPRECATED("The buffer_insert functions are deprecated")
325size_t buffer_insert(std::vector<T, Alloc>& buf, size_t buf_offset, const std::vector<T, Alloc2>& input) {
326 BOTAN_ASSERT_NOMSG(buf_offset <= buf.size());
327 const size_t to_copy = std::min(input.size(), buf.size() - buf_offset);
328 if(to_copy > 0) {
329 copy_mem(&buf[buf_offset], input.data(), to_copy);
330 }
331 return to_copy;
332}
333
334#endif
335
336/**
337* XOR arrays. Postcondition out[i] = in[i] ^ out[i] forall i = 0...length
338* @param out the input/output range
339* @param in the read-only input range
340*/
341inline constexpr void xor_buf(ranges::contiguous_output_range<uint8_t> auto&& out,
344
345 std::span<uint8_t> o(out);
346 std::span<const uint8_t> i(in);
347
348 for(; o.size_bytes() >= 32; o = o.subspan(32), i = i.subspan(32)) {
349 auto x = typecast_copy<std::array<uint64_t, 4>>(o.template first<32>());
350 const auto y = typecast_copy<std::array<uint64_t, 4>>(i.template first<32>());
351
352 x[0] ^= y[0];
353 x[1] ^= y[1];
354 x[2] ^= y[2];
355 x[3] ^= y[3];
356
357 typecast_copy(o.template first<32>(), x);
358 }
359
360 for(size_t off = 0; off != o.size_bytes(); ++off) {
361 o[off] ^= i[off];
362 }
363}
364
365/**
366* XOR arrays. Postcondition out[i] = in1[i] ^ in2[i] forall i = 0...length
367* @param out the output range
368* @param in1 the first input range
369* @param in2 the second input range
370*/
371inline constexpr void xor_buf(ranges::contiguous_output_range<uint8_t> auto&& out,
375
376 std::span o{out};
377 std::span i1{in1};
378 std::span i2{in2};
379
380 for(; o.size_bytes() >= 32; o = o.subspan(32), i1 = i1.subspan(32), i2 = i2.subspan(32)) {
381 auto x = typecast_copy<std::array<uint64_t, 4>>(i1.template first<32>());
382 const auto y = typecast_copy<std::array<uint64_t, 4>>(i2.template first<32>());
383
384 x[0] ^= y[0];
385 x[1] ^= y[1];
386 x[2] ^= y[2];
387 x[3] ^= y[3];
388
389 typecast_copy(o.template first<32>(), x);
390 }
391
392 for(size_t off = 0; off != o.size_bytes(); ++off) {
393 o[off] = i1[off] ^ i2[off];
394 }
395}
396
397/**
398* XOR arrays. Postcondition out[i] = in[i] ^ out[i] forall i = 0...length
399* @param out the input/output buffer
400* @param in the read-only input buffer
401* @param length the length of the buffers
402*/
403inline void xor_buf(uint8_t out[], const uint8_t in[], size_t length) {
404 // simply assumes that *out and *in point to "length" allocated bytes at least
405 xor_buf(std::span{out, length}, std::span{in, length});
406}
407
408/**
409* XOR arrays. Postcondition out[i] = in[i] ^ in2[i] forall i = 0...length
410* @param out the output buffer
411* @param in the first input buffer
412* @param in2 the second input buffer
413* @param length the length of the three buffers
414*/
415inline void xor_buf(uint8_t out[], const uint8_t in[], const uint8_t in2[], size_t length) {
416 // simply assumes that *out, *in, and *in2 point to "length" allocated bytes at least
417 xor_buf(std::span{out, length}, std::span{in, length}, std::span{in2, length});
418}
419
420// TODO: deprecate and replace, use .subspan()
421inline void xor_buf(std::span<uint8_t> out, std::span<const uint8_t> in, size_t n) {
422 BOTAN_ARG_CHECK(out.size() >= n, "output span is too small");
423 BOTAN_ARG_CHECK(in.size() >= n, "input span is too small");
424 xor_buf(out.first(n), in.first(n));
425}
426
427// TODO: deprecate and replace, use .subspan()
428template <typename Alloc>
429void xor_buf(std::vector<uint8_t, Alloc>& out, const uint8_t* in, size_t n) {
430 BOTAN_ARG_CHECK(out.size() >= n, "output vector is too small");
431 // simply assumes that *in points to "n" allocated bytes at least
432 xor_buf(std::span{out}.first(n), std::span{in, n});
433}
434
435// TODO: deprecate and replace
436template <typename Alloc, typename Alloc2>
437void xor_buf(std::vector<uint8_t, Alloc>& out, const uint8_t* in, const std::vector<uint8_t, Alloc2>& in2, size_t n) {
438 BOTAN_ARG_CHECK(out.size() >= n, "output vector is too small");
439 BOTAN_ARG_CHECK(in2.size() >= n, "input vector is too small");
440 // simply assumes that *in points to "n" allocated bytes at least
441 xor_buf(std::span{out}.first(n), std::span{in, n}, std::span{in2}.first(n));
442}
443
444template <typename Alloc, typename Alloc2>
445std::vector<uint8_t, Alloc>& operator^=(std::vector<uint8_t, Alloc>& out, const std::vector<uint8_t, Alloc2>& in) {
446 if(out.size() < in.size()) {
447 out.resize(in.size());
448 }
449
450 xor_buf(std::span{out}.first(in.size()), in);
451 return out;
452}
453
454} // namespace Botan
455
456#endif
#define BOTAN_PUBLIC_API(maj, min)
Definition api.h:21
#define BOTAN_FUTURE_INTERNAL_HEADER(hdr)
Definition api.h:98
#define BOTAN_DEPRECATED(msg)
Definition api.h:73
#define BOTAN_ASSERT_NOMSG(expr)
Definition assert.h:75
#define BOTAN_ASSERT_IMPLICATION(expr1, expr2, msg)
Definition assert.h:101
#define BOTAN_ARG_CHECK(expr, msg)
Definition assert.h:33
constexpr size_t size_bytes(const spanable_range auto &r)
constexpr void assert_equal_byte_lengths(const R0 &r0, const Rs &... rs)
size_t buffer_insert(std::vector< T, Alloc > &buf, size_t buf_offset, const T input[], size_t input_length)
Definition mem_ops.h:314
constexpr void copy_mem(T *out, const T *in, size_t n)
Definition mem_ops.h:144
constexpr void set_mem(uint8_t *ptr, size_t n, uint8_t val)
Definition mem_ops.h:264
constexpr void clear_bytes(void *ptr, size_t bytes)
Definition mem_ops.h:101
void secure_scrub_memory(void *ptr, size_t n)
Definition mem_utils.cpp:25
uint8_t ct_compare_u8(const uint8_t x[], const uint8_t y[], size_t len)
Definition mem_ops.cpp:13
std::vector< uint8_t, Alloc > & operator^=(std::vector< uint8_t, Alloc > &out, const std::vector< uint8_t, Alloc2 > &in)
Definition mem_ops.h:445
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
Definition mem_ops.h:341
bool same_mem(const T *p1, const T *p2, size_t n)
Definition mem_ops.h:299
const char * cast_uint8_ptr_to_char(const uint8_t *b)
Definition mem_ops.h:281
constexpr void typecast_copy(ToR &&out, const FromR &in)
Definition mem_ops.h:176
bool constant_time_compare(std::span< const uint8_t > x, std::span< const uint8_t > y)
Definition mem_ops.cpp:17
constexpr void clear_mem(T *ptr, size_t n)
Definition mem_ops.h:118
const uint8_t * cast_char_ptr_to_uint8(const char *s)
Definition mem_ops.h:272