2019-04-17 05:02:40 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2019-04-17 05:02:40 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2019-04-17 05:02:40 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Utility functions used in many places, not specific to any piece of code.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __COMMONUTIL_H
|
|
|
|
#define __COMMONUTIL_H
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
2019-04-17 05:02:40 +08:00
|
|
|
// endian change for 16bit
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#ifndef BSWAP_16
|
|
|
|
#define BSWAP_16(x) __builtin_bswap16(x)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#ifndef BSWAP_16
|
|
|
|
#define BSWAP_16(x) _byteswap_ushort(x)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#ifndef BSWAP_16
|
|
|
|
# define BSWAP_16(x) ((( ((x) & 0xFF00 ) >> 8))| ( (((x) & 0x00FF) << 8)))
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BITMASK
|
|
|
|
# define BITMASK(X) (1 << (X))
|
|
|
|
#endif
|
|
|
|
#ifndef ARRAYLEN
|
|
|
|
# define ARRAYLEN(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NTIME
|
|
|
|
# define NTIME(n) for (int _index = 0; _index < n; _index++)
|
|
|
|
#endif
|
|
|
|
|
2024-03-27 16:32:00 +08:00
|
|
|
#ifndef REV8
|
|
|
|
#define REV8(x) ((((x)>>7)&1)+((((x)>>6)&1)<<1)+((((x)>>5)&1)<<2)+((((x)>>4)&1)<<3)+((((x)>>3)&1)<<4)+((((x)>>2)&1)<<5)+((((x)>>1)&1)<<6)+(((x)&1)<<7))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV16
|
|
|
|
#define REV16(x) (REV8(x) + (REV8 ((x) >> 8) << 8))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV32
|
|
|
|
#define REV32(x) (REV16(x) + (REV16((x) >> 16) << 16))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV64
|
|
|
|
#define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2021-08-22 02:11:14 +08:00
|
|
|
extern struct version_information_t g_version_information;
|
2023-08-15 14:02:09 +08:00
|
|
|
void FormatVersionInformation(char *dst, int len, const char *prefix, const void *version_info);
|
|
|
|
void format_version_information_short(char *dst, int len, const void *version_info);
|
2020-05-20 21:53:47 +08:00
|
|
|
|
2019-04-17 05:02:40 +08:00
|
|
|
uint32_t reflect(uint32_t v, int b); // used in crc.c ...
|
|
|
|
uint8_t reflect8(uint8_t b); // dedicated 8bit reversal
|
|
|
|
uint16_t reflect16(uint16_t b); // dedicated 16bit reversal
|
2020-09-27 18:53:52 +08:00
|
|
|
uint32_t reflect32(uint32_t b); // dedicated 32bit reversal
|
2024-04-22 15:29:38 +08:00
|
|
|
uint64_t reflect64(uint64_t b); // dedicated 64bit reversal
|
2019-04-17 05:02:40 +08:00
|
|
|
|
|
|
|
void num_to_bytes(uint64_t n, size_t len, uint8_t *dest);
|
2023-08-15 14:02:09 +08:00
|
|
|
uint64_t bytes_to_num(const uint8_t *src, size_t len);
|
2019-04-17 05:02:40 +08:00
|
|
|
|
2021-07-26 01:03:15 +08:00
|
|
|
// LE and BE to/from memory
|
2022-01-07 05:11:57 +08:00
|
|
|
uint16_t MemLeToUint2byte(const uint8_t *data);
|
|
|
|
uint32_t MemLeToUint3byte(const uint8_t *data);
|
|
|
|
uint32_t MemLeToUint4byte(const uint8_t *data);
|
2023-08-15 09:57:36 +08:00
|
|
|
uint64_t MemLeToUint5byte(const uint8_t *data);
|
|
|
|
uint64_t MemLeToUint6byte(const uint8_t *data);
|
|
|
|
uint64_t MemLeToUint7byte(const uint8_t *data);
|
|
|
|
uint64_t MemLeToUint8byte(const uint8_t *data);
|
|
|
|
|
2022-01-07 05:11:57 +08:00
|
|
|
uint16_t MemBeToUint2byte(const uint8_t *data);
|
|
|
|
uint32_t MemBeToUint3byte(const uint8_t *data);
|
|
|
|
uint32_t MemBeToUint4byte(const uint8_t *data);
|
2023-08-15 09:57:36 +08:00
|
|
|
uint64_t MemBeToUint5byte(const uint8_t *data);
|
|
|
|
uint64_t MemBeToUint6byte(const uint8_t *data);
|
|
|
|
uint64_t MemBeToUint7byte(const uint8_t *data);
|
|
|
|
uint64_t MemBeToUint8byte(const uint8_t *data);
|
|
|
|
|
2021-07-26 01:03:15 +08:00
|
|
|
void Uint2byteToMemLe(uint8_t *data, uint16_t value);
|
|
|
|
void Uint3byteToMemLe(uint8_t *data, uint32_t value);
|
|
|
|
void Uint4byteToMemLe(uint8_t *data, uint32_t value);
|
2023-08-15 09:57:36 +08:00
|
|
|
void Uint5byteToMemLe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint6byteToMemLe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint7byteToMemLe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint8byteToMemLe(uint8_t *data, uint64_t value);
|
|
|
|
|
2021-07-26 01:03:15 +08:00
|
|
|
void Uint2byteToMemBe(uint8_t *data, uint16_t value);
|
|
|
|
void Uint3byteToMemBe(uint8_t *data, uint32_t value);
|
|
|
|
void Uint4byteToMemBe(uint8_t *data, uint32_t value);
|
2023-08-15 09:57:36 +08:00
|
|
|
void Uint5byteToMemBe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint6byteToMemBe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint7byteToMemBe(uint8_t *data, uint64_t value);
|
|
|
|
void Uint8byteToMemBe(uint8_t *data, uint64_t value);
|
2021-07-26 01:03:15 +08:00
|
|
|
|
2020-09-19 17:08:01 +08:00
|
|
|
// rotate left byte array
|
2019-04-17 05:02:40 +08:00
|
|
|
void rol(uint8_t *data, const size_t len);
|
2024-08-25 21:17:50 +08:00
|
|
|
void ror(uint8_t *data, const size_t len);
|
|
|
|
|
2019-04-17 05:02:40 +08:00
|
|
|
void lsl(uint8_t *data, size_t len);
|
2022-01-07 05:11:57 +08:00
|
|
|
uint32_t le24toh(const uint8_t data[3]);
|
2019-04-26 02:05:04 +08:00
|
|
|
void htole24(uint32_t val, uint8_t data[3]);
|
2019-04-17 05:02:40 +08:00
|
|
|
|
2020-09-19 17:08:01 +08:00
|
|
|
// rol on a u32
|
|
|
|
uint32_t rotl(uint32_t a, uint8_t n);
|
|
|
|
uint32_t rotr(uint32_t a, uint8_t n);
|
2022-01-07 04:00:16 +08:00
|
|
|
|
2023-01-22 03:04:27 +08:00
|
|
|
uint16_t get_sw(const uint8_t *d, uint16_t n);
|
2023-03-06 02:19:15 +08:00
|
|
|
|
|
|
|
void reverse_array(uint8_t *d, size_t n);
|
|
|
|
void reverse_array_copy(const uint8_t *src, int src_len, uint8_t *dest);
|
|
|
|
|
2023-10-01 19:05:08 +08:00
|
|
|
bool hexstr_to_byte_array(const char *hexstr, uint8_t *d, size_t *n);
|
2024-08-26 01:54:32 +08:00
|
|
|
|
|
|
|
void reverse_arraybytes(uint8_t *arr, size_t len);
|
|
|
|
void reverse_arraybytes_copy(uint8_t *arr, uint8_t *dest, size_t len);
|
2019-04-17 05:02:40 +08:00
|
|
|
#endif
|