2022-11-24 19:07:37 +01:00
|
|
|
/**
|
|
|
|
* \file alignment.h
|
|
|
|
*
|
|
|
|
* \brief Utility code for dealing with unaligned memory accesses
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2022-11-24 19:07:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MBEDTLS_LIBRARY_ALIGNMENT_H
|
|
|
|
#define MBEDTLS_LIBRARY_ALIGNMENT_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2022-11-24 20:33:22 +01:00
|
|
|
#include <string.h>
|
2022-11-28 15:52:45 +01:00
|
|
|
#include <stdlib.h>
|
2022-11-24 19:07:37 +01:00
|
|
|
|
2022-12-30 22:32:03 +01:00
|
|
|
/*
|
|
|
|
* Define MBEDTLS_EFFICIENT_UNALIGNED_ACCESS for architectures where unaligned memory
|
2023-01-05 13:25:15 +01:00
|
|
|
* accesses are known to be efficient.
|
|
|
|
*
|
|
|
|
* All functions defined here will behave correctly regardless, but might be less
|
|
|
|
* efficient when this is not defined.
|
2022-12-30 22:32:03 +01:00
|
|
|
*/
|
|
|
|
#if defined(__ARM_FEATURE_UNALIGNED) \
|
2023-09-15 12:41:17 +02:00
|
|
|
|| defined(MBEDTLS_ARCH_IS_X86) || defined(MBEDTLS_ARCH_IS_X64) \
|
2023-09-15 12:52:06 +02:00
|
|
|
|| defined(MBEDTLS_PLATFORM_IS_WINDOWS_ON_ARM64)
|
2022-12-30 22:32:03 +01:00
|
|
|
/*
|
|
|
|
* __ARM_FEATURE_UNALIGNED is defined where appropriate by armcc, gcc 7, clang 9
|
2023-01-05 13:25:15 +01:00
|
|
|
* (and later versions) for Arm v7 and later; all x86 platforms should have
|
|
|
|
* efficient unaligned access.
|
2023-08-08 11:36:15 +02:00
|
|
|
*
|
|
|
|
* https://learn.microsoft.com/en-us/cpp/build/arm64-windows-abi-conventions?view=msvc-170#alignment
|
|
|
|
* specifies that on Windows-on-Arm64, unaligned access is safe (except for uncached
|
|
|
|
* device memory).
|
2022-12-30 22:32:03 +01:00
|
|
|
*/
|
|
|
|
#define MBEDTLS_EFFICIENT_UNALIGNED_ACCESS
|
|
|
|
#endif
|
|
|
|
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__) && \
|
|
|
|
(defined(MBEDTLS_ARCH_IS_ARM64) || defined(MBEDTLS_ARCH_IS_ARM32) \
|
|
|
|
|| defined(__ICCRX__) || defined(__ICCRL78__) || defined(__ICCRISCV__))
|
|
|
|
#pragma language=save
|
|
|
|
#pragma language=extended
|
|
|
|
#define MBEDTLS_POP_IAR_LANGUAGE_PRAGMA
|
|
|
|
/* IAR recommend this technique for accessing unaligned data in
|
|
|
|
* https://www.iar.com/knowledge/support/technical-notes/compiler/accessing-unaligned-data
|
|
|
|
* This results in a single load / store instruction (if unaligned access is supported).
|
|
|
|
* According to that document, this is only supported on certain architectures.
|
|
|
|
*/
|
|
|
|
#define UINT_UNALIGNED
|
|
|
|
typedef uint16_t __packed mbedtls_uint16_unaligned_t;
|
|
|
|
typedef uint32_t __packed mbedtls_uint32_unaligned_t;
|
|
|
|
typedef uint64_t __packed mbedtls_uint64_unaligned_t;
|
|
|
|
#elif defined(MBEDTLS_COMPILER_IS_GCC) && (MBEDTLS_GCC_VERSION >= 40504) && \
|
|
|
|
((MBEDTLS_GCC_VERSION < 90300) || (!defined(MBEDTLS_EFFICIENT_UNALIGNED_ACCESS)))
|
|
|
|
/*
|
|
|
|
* Old versions of gcc, depending on how the target is specified, may generate a branch to memcpy
|
|
|
|
* for calls like `memcpy(dest, src, 4)` rather than generating some LDR or LDRB instructions
|
|
|
|
* (similar for stores).
|
|
|
|
* Recent versions where unaligned access is not enabled also do this.
|
|
|
|
*
|
|
|
|
* For performance (and code size, in some cases), we want to avoid the branch and just generate
|
|
|
|
* some inline load/store instructions since the access is small and constant-size.
|
|
|
|
*
|
|
|
|
* The manual states:
|
|
|
|
* "The aligned attribute specifies a minimum alignment for the variable or structure field,
|
|
|
|
* measured in bytes."
|
|
|
|
* https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html
|
|
|
|
*
|
|
|
|
* Tested with several versions of GCC from 4.5.0 up to 9.3.0
|
|
|
|
* We don't enable for older than 4.5.0 as this has not been tested.
|
|
|
|
*/
|
|
|
|
#define UINT_UNALIGNED
|
|
|
|
typedef uint16_t __attribute__((__aligned__(1))) mbedtls_uint16_unaligned_t;
|
|
|
|
typedef uint32_t __attribute__((__aligned__(1))) mbedtls_uint32_unaligned_t;
|
|
|
|
typedef uint64_t __attribute__((__aligned__(1))) mbedtls_uint64_unaligned_t;
|
|
|
|
#endif
|
|
|
|
|
2024-01-19 15:06:52 +01:00
|
|
|
/*
|
|
|
|
* We try to force mbedtls_(get|put)_unaligned_uintXX to be always inline, because this results
|
|
|
|
* in code that is both smaller and faster. IAR and gcc both benefit from this when optimising
|
|
|
|
* for size.
|
|
|
|
*/
|
|
|
|
|
2022-11-28 15:44:05 +01:00
|
|
|
/**
|
|
|
|
* Read the unsigned 16 bits integer from the given address, which need not
|
|
|
|
* be aligned.
|
|
|
|
*
|
|
|
|
* \param p pointer to 2 bytes of data
|
|
|
|
* \return Data at the given address
|
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline uint16_t mbedtls_get_unaligned_uint16(const void *p)
|
2022-11-28 15:44:05 +01:00
|
|
|
{
|
|
|
|
uint16_t r;
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint16_unaligned_t *p16 = (mbedtls_uint16_unaligned_t *) p;
|
|
|
|
r = *p16;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(&r, p, sizeof(r));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-28 15:44:05 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write the unsigned 16 bits integer to the given address, which need not
|
|
|
|
* be aligned.
|
|
|
|
*
|
|
|
|
* \param p pointer to 2 bytes of data
|
|
|
|
* \param x data to write
|
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline void mbedtls_put_unaligned_uint16(void *p, uint16_t x)
|
2022-11-28 15:44:05 +01:00
|
|
|
{
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint16_unaligned_t *p16 = (mbedtls_uint16_unaligned_t *) p;
|
|
|
|
*p16 = x;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(p, &x, sizeof(x));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-28 15:44:05 +01:00
|
|
|
}
|
|
|
|
|
2022-11-24 20:33:22 +01:00
|
|
|
/**
|
|
|
|
* Read the unsigned 32 bits integer from the given address, which need not
|
|
|
|
* be aligned.
|
2022-11-24 19:07:37 +01:00
|
|
|
*
|
2022-11-24 20:33:22 +01:00
|
|
|
* \param p pointer to 4 bytes of data
|
2022-11-24 21:43:15 +01:00
|
|
|
* \return Data at the given address
|
2022-11-24 19:07:37 +01:00
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline uint32_t mbedtls_get_unaligned_uint32(const void *p)
|
2022-11-24 20:33:22 +01:00
|
|
|
{
|
|
|
|
uint32_t r;
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint32_unaligned_t *p32 = (mbedtls_uint32_unaligned_t *) p;
|
|
|
|
r = *p32;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(&r, p, sizeof(r));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-24 20:33:22 +01:00
|
|
|
return r;
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
2022-11-24 20:33:22 +01:00
|
|
|
/**
|
|
|
|
* Write the unsigned 32 bits integer to the given address, which need not
|
|
|
|
* be aligned.
|
|
|
|
*
|
|
|
|
* \param p pointer to 4 bytes of data
|
|
|
|
* \param x data to write
|
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline void mbedtls_put_unaligned_uint32(void *p, uint32_t x)
|
2022-11-24 20:33:22 +01:00
|
|
|
{
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint32_unaligned_t *p32 = (mbedtls_uint32_unaligned_t *) p;
|
|
|
|
*p32 = x;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(p, &x, sizeof(x));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-24 20:33:22 +01:00
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
2022-11-28 15:44:05 +01:00
|
|
|
/**
|
|
|
|
* Read the unsigned 64 bits integer from the given address, which need not
|
|
|
|
* be aligned.
|
|
|
|
*
|
|
|
|
* \param p pointer to 8 bytes of data
|
|
|
|
* \return Data at the given address
|
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline uint64_t mbedtls_get_unaligned_uint64(const void *p)
|
2022-11-28 15:44:05 +01:00
|
|
|
{
|
|
|
|
uint64_t r;
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint64_unaligned_t *p64 = (mbedtls_uint64_unaligned_t *) p;
|
|
|
|
r = *p64;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(&r, p, sizeof(r));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-28 15:44:05 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write the unsigned 64 bits integer to the given address, which need not
|
|
|
|
* be aligned.
|
|
|
|
*
|
|
|
|
* \param p pointer to 8 bytes of data
|
|
|
|
* \param x data to write
|
|
|
|
*/
|
2024-01-19 15:06:52 +01:00
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#pragma inline = forced
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
__attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
static inline void mbedtls_put_unaligned_uint64(void *p, uint64_t x)
|
2022-11-28 15:44:05 +01:00
|
|
|
{
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(UINT_UNALIGNED)
|
|
|
|
mbedtls_uint64_unaligned_t *p64 = (mbedtls_uint64_unaligned_t *) p;
|
|
|
|
*p64 = x;
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(p, &x, sizeof(x));
|
2024-01-19 15:04:28 +01:00
|
|
|
#endif
|
2022-11-28 15:44:05 +01:00
|
|
|
}
|
|
|
|
|
2024-01-19 15:04:28 +01:00
|
|
|
#if defined(MBEDTLS_POP_IAR_LANGUAGE_PRAGMA)
|
|
|
|
#pragma language=restore
|
|
|
|
#endif
|
|
|
|
|
2022-11-24 19:07:37 +01:00
|
|
|
/** Byte Reading Macros
|
|
|
|
*
|
|
|
|
* Given a multi-byte integer \p x, MBEDTLS_BYTE_n retrieves the n-th
|
|
|
|
* byte from x, where byte 0 is the least significant byte.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MBEDTLS_BYTE_0(x) ((uint8_t) ((x) & 0xff))
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_BYTE_1(x) ((uint8_t) (((x) >> 8) & 0xff))
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MBEDTLS_BYTE_2(x) ((uint8_t) (((x) >> 16) & 0xff))
|
|
|
|
#define MBEDTLS_BYTE_3(x) ((uint8_t) (((x) >> 24) & 0xff))
|
|
|
|
#define MBEDTLS_BYTE_4(x) ((uint8_t) (((x) >> 32) & 0xff))
|
|
|
|
#define MBEDTLS_BYTE_5(x) ((uint8_t) (((x) >> 40) & 0xff))
|
|
|
|
#define MBEDTLS_BYTE_6(x) ((uint8_t) (((x) >> 48) & 0xff))
|
|
|
|
#define MBEDTLS_BYTE_7(x) ((uint8_t) (((x) >> 56) & 0xff))
|
2022-11-24 19:07:37 +01:00
|
|
|
|
2022-11-28 15:52:45 +01:00
|
|
|
/*
|
|
|
|
* Detect GCC built-in byteswap routines
|
|
|
|
*/
|
|
|
|
#if defined(__GNUC__) && defined(__GNUC_PREREQ)
|
2023-01-11 14:50:10 +01:00
|
|
|
#if __GNUC_PREREQ(4, 8)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP16 __builtin_bswap16
|
|
|
|
#endif /* __GNUC_PREREQ(4,8) */
|
2023-01-11 14:50:10 +01:00
|
|
|
#if __GNUC_PREREQ(4, 3)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP32 __builtin_bswap32
|
|
|
|
#define MBEDTLS_BSWAP64 __builtin_bswap64
|
|
|
|
#endif /* __GNUC_PREREQ(4,3) */
|
|
|
|
#endif /* defined(__GNUC__) && defined(__GNUC_PREREQ) */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Detect Clang built-in byteswap routines
|
|
|
|
*/
|
|
|
|
#if defined(__clang__) && defined(__has_builtin)
|
2023-02-28 18:39:03 +01:00
|
|
|
#if __has_builtin(__builtin_bswap16) && !defined(MBEDTLS_BSWAP16)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP16 __builtin_bswap16
|
|
|
|
#endif /* __has_builtin(__builtin_bswap16) */
|
2023-02-28 18:39:03 +01:00
|
|
|
#if __has_builtin(__builtin_bswap32) && !defined(MBEDTLS_BSWAP32)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP32 __builtin_bswap32
|
|
|
|
#endif /* __has_builtin(__builtin_bswap32) */
|
2023-02-28 18:39:03 +01:00
|
|
|
#if __has_builtin(__builtin_bswap64) && !defined(MBEDTLS_BSWAP64)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP64 __builtin_bswap64
|
|
|
|
#endif /* __has_builtin(__builtin_bswap64) */
|
|
|
|
#endif /* defined(__clang__) && defined(__has_builtin) */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Detect MSVC built-in byteswap routines
|
|
|
|
*/
|
|
|
|
#if defined(_MSC_VER)
|
2023-02-28 18:39:03 +01:00
|
|
|
#if !defined(MBEDTLS_BSWAP16)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP16 _byteswap_ushort
|
2023-02-28 18:39:03 +01:00
|
|
|
#endif
|
|
|
|
#if !defined(MBEDTLS_BSWAP32)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP32 _byteswap_ulong
|
2023-02-28 18:39:03 +01:00
|
|
|
#endif
|
|
|
|
#if !defined(MBEDTLS_BSWAP64)
|
2022-11-28 15:52:45 +01:00
|
|
|
#define MBEDTLS_BSWAP64 _byteswap_uint64
|
2023-02-28 18:39:03 +01:00
|
|
|
#endif
|
2022-11-28 15:52:45 +01:00
|
|
|
#endif /* defined(_MSC_VER) */
|
|
|
|
|
2022-11-30 13:07:36 +01:00
|
|
|
/* Detect armcc built-in byteswap routine */
|
2023-02-28 18:39:03 +01:00
|
|
|
#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 410000) && !defined(MBEDTLS_BSWAP32)
|
2023-04-26 18:00:12 +02:00
|
|
|
#if defined(__ARM_ACLE) /* ARM Compiler 6 - earlier versions don't need a header */
|
|
|
|
#include <arm_acle.h>
|
|
|
|
#endif
|
2022-11-30 13:07:36 +01:00
|
|
|
#define MBEDTLS_BSWAP32 __rev
|
|
|
|
#endif
|
|
|
|
|
2023-12-05 13:16:48 +01:00
|
|
|
/* Detect IAR built-in byteswap routine */
|
|
|
|
#if defined(__IAR_SYSTEMS_ICC__)
|
|
|
|
#if defined(__ARM_ACLE)
|
|
|
|
#include <arm_acle.h>
|
|
|
|
#define MBEDTLS_BSWAP16(x) ((uint16_t) __rev16((uint32_t) (x)))
|
|
|
|
#define MBEDTLS_BSWAP32 __rev
|
|
|
|
#define MBEDTLS_BSWAP64 __revll
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2022-11-28 15:52:45 +01:00
|
|
|
/*
|
|
|
|
* Where compiler built-ins are not present, fall back to C code that the
|
|
|
|
* compiler may be able to detect and transform into the relevant bswap or
|
|
|
|
* similar instruction.
|
|
|
|
*/
|
|
|
|
#if !defined(MBEDTLS_BSWAP16)
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline uint16_t mbedtls_bswap16(uint16_t x)
|
|
|
|
{
|
2022-11-28 15:51:49 +01:00
|
|
|
return
|
2023-01-11 14:50:10 +01:00
|
|
|
(x & 0x00ff) << 8 |
|
|
|
|
(x & 0xff00) >> 8;
|
2022-11-28 15:51:49 +01:00
|
|
|
}
|
|
|
|
#define MBEDTLS_BSWAP16 mbedtls_bswap16
|
2022-11-28 15:52:45 +01:00
|
|
|
#endif /* !defined(MBEDTLS_BSWAP16) */
|
2022-11-28 15:51:49 +01:00
|
|
|
|
2022-11-28 15:52:45 +01:00
|
|
|
#if !defined(MBEDTLS_BSWAP32)
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline uint32_t mbedtls_bswap32(uint32_t x)
|
|
|
|
{
|
2022-11-28 15:51:49 +01:00
|
|
|
return
|
2023-01-11 14:50:10 +01:00
|
|
|
(x & 0x000000ff) << 24 |
|
|
|
|
(x & 0x0000ff00) << 8 |
|
|
|
|
(x & 0x00ff0000) >> 8 |
|
|
|
|
(x & 0xff000000) >> 24;
|
2022-11-28 15:51:49 +01:00
|
|
|
}
|
|
|
|
#define MBEDTLS_BSWAP32 mbedtls_bswap32
|
2022-11-28 15:52:45 +01:00
|
|
|
#endif /* !defined(MBEDTLS_BSWAP32) */
|
2022-11-28 15:51:49 +01:00
|
|
|
|
2022-11-28 15:52:45 +01:00
|
|
|
#if !defined(MBEDTLS_BSWAP64)
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline uint64_t mbedtls_bswap64(uint64_t x)
|
|
|
|
{
|
2022-11-28 15:51:49 +01:00
|
|
|
return
|
2023-03-08 14:23:24 +01:00
|
|
|
(x & 0x00000000000000ffULL) << 56 |
|
|
|
|
(x & 0x000000000000ff00ULL) << 40 |
|
|
|
|
(x & 0x0000000000ff0000ULL) << 24 |
|
|
|
|
(x & 0x00000000ff000000ULL) << 8 |
|
|
|
|
(x & 0x000000ff00000000ULL) >> 8 |
|
|
|
|
(x & 0x0000ff0000000000ULL) >> 24 |
|
|
|
|
(x & 0x00ff000000000000ULL) >> 40 |
|
|
|
|
(x & 0xff00000000000000ULL) >> 56;
|
2022-11-28 15:51:49 +01:00
|
|
|
}
|
|
|
|
#define MBEDTLS_BSWAP64 mbedtls_bswap64
|
2022-11-28 15:52:45 +01:00
|
|
|
#endif /* !defined(MBEDTLS_BSWAP64) */
|
2022-11-28 15:51:49 +01:00
|
|
|
|
2022-11-28 15:47:46 +01:00
|
|
|
#if !defined(__BYTE_ORDER__)
|
2023-12-05 13:06:11 +01:00
|
|
|
|
|
|
|
#if defined(__LITTLE_ENDIAN__)
|
|
|
|
/* IAR defines __xxx_ENDIAN__, but not __BYTE_ORDER__ */
|
|
|
|
#define MBEDTLS_IS_BIG_ENDIAN 0
|
|
|
|
#elif defined(__BIG_ENDIAN__)
|
|
|
|
#define MBEDTLS_IS_BIG_ENDIAN 1
|
|
|
|
#else
|
2022-11-28 15:47:46 +01:00
|
|
|
static const uint16_t mbedtls_byte_order_detector = { 0x100 };
|
|
|
|
#define MBEDTLS_IS_BIG_ENDIAN (*((unsigned char *) (&mbedtls_byte_order_detector)) == 0x01)
|
2023-12-05 13:06:11 +01:00
|
|
|
#endif
|
|
|
|
|
2022-11-28 15:47:46 +01:00
|
|
|
#else
|
2023-12-05 13:06:11 +01:00
|
|
|
|
|
|
|
#if (__BYTE_ORDER__) == (__ORDER_BIG_ENDIAN__)
|
|
|
|
#define MBEDTLS_IS_BIG_ENDIAN 1
|
|
|
|
#else
|
|
|
|
#define MBEDTLS_IS_BIG_ENDIAN 0
|
|
|
|
#endif
|
|
|
|
|
2022-11-28 15:47:46 +01:00
|
|
|
#endif /* !defined(__BYTE_ORDER__) */
|
|
|
|
|
2022-11-24 19:07:37 +01:00
|
|
|
/**
|
|
|
|
* Get the unsigned 32 bits integer corresponding to four bytes in
|
|
|
|
* big-endian order (MSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the four bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and most significant
|
|
|
|
* byte of the four bytes to build the 32 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT32_BE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? mbedtls_get_unaligned_uint32((data) + (offset)) \
|
|
|
|
: MBEDTLS_BSWAP32(mbedtls_get_unaligned_uint32((data) + (offset))) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 32 bits unsigned integer in big-endian order.
|
|
|
|
*
|
|
|
|
* \param n 32 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 32
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the most significant
|
|
|
|
* byte of the 32 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT32_BE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint32((data) + (offset), (uint32_t) (n)); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint32((data) + (offset), MBEDTLS_BSWAP32((uint32_t) (n))); \
|
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 32 bits integer corresponding to four bytes in
|
|
|
|
* little-endian order (LSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the four bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and least significant
|
|
|
|
* byte of the four bytes to build the 32 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT32_LE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? MBEDTLS_BSWAP32(mbedtls_get_unaligned_uint32((data) + (offset))) \
|
|
|
|
: mbedtls_get_unaligned_uint32((data) + (offset)) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
2022-11-28 15:48:45 +01:00
|
|
|
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 32 bits unsigned integer in little-endian order.
|
|
|
|
*
|
|
|
|
* \param n 32 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 32
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the least significant
|
|
|
|
* byte of the 32 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT32_LE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint32((data) + (offset), MBEDTLS_BSWAP32((uint32_t) (n))); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint32((data) + (offset), ((uint32_t) (n))); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 16 bits integer corresponding to two bytes in
|
|
|
|
* little-endian order (LSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the two bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and least significant
|
|
|
|
* byte of the two bytes to build the 16 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT16_LE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? MBEDTLS_BSWAP16(mbedtls_get_unaligned_uint16((data) + (offset))) \
|
|
|
|
: mbedtls_get_unaligned_uint16((data) + (offset)) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 16 bits unsigned integer in little-endian order.
|
|
|
|
*
|
|
|
|
* \param n 16 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 16
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the least significant
|
|
|
|
* byte of the 16 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT16_LE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint16((data) + (offset), MBEDTLS_BSWAP16((uint16_t) (n))); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint16((data) + (offset), (uint16_t) (n)); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 16 bits integer corresponding to two bytes in
|
|
|
|
* big-endian order (MSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the two bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and most significant
|
|
|
|
* byte of the two bytes to build the 16 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT16_BE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? mbedtls_get_unaligned_uint16((data) + (offset)) \
|
|
|
|
: MBEDTLS_BSWAP16(mbedtls_get_unaligned_uint16((data) + (offset))) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 16 bits unsigned integer in big-endian order.
|
|
|
|
*
|
|
|
|
* \param n 16 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 16
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the most significant
|
|
|
|
* byte of the 16 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT16_BE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint16((data) + (offset), (uint16_t) (n)); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint16((data) + (offset), MBEDTLS_BSWAP16((uint16_t) (n))); \
|
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 24 bits integer corresponding to three bytes in
|
|
|
|
* big-endian order (MSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the three bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and most significant
|
|
|
|
* byte of the three bytes to build the 24 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT24_BE(data, offset) \
|
|
|
|
( \
|
|
|
|
((uint32_t) (data)[(offset)] << 16) \
|
|
|
|
| ((uint32_t) (data)[(offset) + 1] << 8) \
|
|
|
|
| ((uint32_t) (data)[(offset) + 2]) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 24 bits unsigned integer in big-endian order.
|
|
|
|
*
|
|
|
|
* \param n 24 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 24
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the most significant
|
|
|
|
* byte of the 24 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MBEDTLS_PUT_UINT24_BE(n, data, offset) \
|
2023-03-01 10:30:14 +01:00
|
|
|
{ \
|
|
|
|
(data)[(offset)] = MBEDTLS_BYTE_2(n); \
|
2023-01-11 14:50:10 +01:00
|
|
|
(data)[(offset) + 1] = MBEDTLS_BYTE_1(n); \
|
|
|
|
(data)[(offset) + 2] = MBEDTLS_BYTE_0(n); \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 24 bits integer corresponding to three bytes in
|
|
|
|
* little-endian order (LSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the three bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and least significant
|
|
|
|
* byte of the three bytes to build the 24 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT24_LE(data, offset) \
|
|
|
|
( \
|
|
|
|
((uint32_t) (data)[(offset)]) \
|
2023-01-11 14:50:10 +01:00
|
|
|
| ((uint32_t) (data)[(offset) + 1] << 8) \
|
|
|
|
| ((uint32_t) (data)[(offset) + 2] << 16) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 24 bits unsigned integer in little-endian order.
|
|
|
|
*
|
|
|
|
* \param n 24 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 24
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the least significant
|
|
|
|
* byte of the 24 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MBEDTLS_PUT_UINT24_LE(n, data, offset) \
|
2023-03-01 10:30:14 +01:00
|
|
|
{ \
|
|
|
|
(data)[(offset)] = MBEDTLS_BYTE_0(n); \
|
2023-01-11 14:50:10 +01:00
|
|
|
(data)[(offset) + 1] = MBEDTLS_BYTE_1(n); \
|
|
|
|
(data)[(offset) + 2] = MBEDTLS_BYTE_2(n); \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 64 bits integer corresponding to eight bytes in
|
|
|
|
* big-endian order (MSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the eight bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and most significant
|
|
|
|
* byte of the eight bytes to build the 64 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT64_BE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? mbedtls_get_unaligned_uint64((data) + (offset)) \
|
|
|
|
: MBEDTLS_BSWAP64(mbedtls_get_unaligned_uint64((data) + (offset))) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 64 bits unsigned integer in big-endian order.
|
|
|
|
*
|
|
|
|
* \param n 64 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 64
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the most significant
|
|
|
|
* byte of the 64 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT64_BE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint64((data) + (offset), (uint64_t) (n)); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint64((data) + (offset), MBEDTLS_BSWAP64((uint64_t) (n))); \
|
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unsigned 64 bits integer corresponding to eight bytes in
|
|
|
|
* little-endian order (LSB first).
|
|
|
|
*
|
|
|
|
* \param data Base address of the memory to get the eight bytes from.
|
|
|
|
* \param offset Offset from \p data of the first and least significant
|
|
|
|
* byte of the eight bytes to build the 64 bits unsigned
|
|
|
|
* integer from.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_GET_UINT64_LE(data, offset) \
|
|
|
|
((MBEDTLS_IS_BIG_ENDIAN) \
|
2022-11-28 15:48:45 +01:00
|
|
|
? MBEDTLS_BSWAP64(mbedtls_get_unaligned_uint64((data) + (offset))) \
|
|
|
|
: mbedtls_get_unaligned_uint64((data) + (offset)) \
|
2022-11-24 19:07:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put in memory a 64 bits unsigned integer in little-endian order.
|
|
|
|
*
|
|
|
|
* \param n 64 bits unsigned integer to put in memory.
|
|
|
|
* \param data Base address of the memory where to put the 64
|
|
|
|
* bits unsigned integer in.
|
|
|
|
* \param offset Offset from \p data where to put the least significant
|
|
|
|
* byte of the 64 bits unsigned integer \p n.
|
|
|
|
*/
|
2023-03-01 10:30:14 +01:00
|
|
|
#define MBEDTLS_PUT_UINT64_LE(n, data, offset) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
if (MBEDTLS_IS_BIG_ENDIAN) \
|
2023-01-11 14:50:10 +01:00
|
|
|
{ \
|
|
|
|
mbedtls_put_unaligned_uint64((data) + (offset), MBEDTLS_BSWAP64((uint64_t) (n))); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2023-03-01 10:30:14 +01:00
|
|
|
mbedtls_put_unaligned_uint64((data) + (offset), (uint64_t) (n)); \
|
2023-01-11 14:50:10 +01:00
|
|
|
} \
|
|
|
|
}
|
2022-11-24 19:07:37 +01:00
|
|
|
|
|
|
|
#endif /* MBEDTLS_LIBRARY_ALIGNMENT_H */
|