srsLTE/lib/include/srsran/asn1/asn1_utils.h

1407 lines
42 KiB
C
Raw Normal View History

/**
2019-04-26 12:27:38 -07:00
*
* \section COPYRIGHT
2019-04-26 12:27:38 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2019-04-26 12:27:38 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2019-04-26 12:27:38 -07:00
*
*/
2019-01-17 03:42:01 -08:00
#ifndef SRSASN_COMMON_UTILS_H
#define SRSASN_COMMON_UTILS_H
#include "srsran/common/srsran_assert.h"
2021-03-19 03:45:56 -07:00
#include "srsran/srslog/srslog.h"
2019-01-17 03:42:01 -08:00
#include <algorithm>
#include <array>
2019-01-17 03:42:01 -08:00
#include <cmath>
#include <cstdint>
2019-01-17 03:42:01 -08:00
#include <cstring>
2019-12-10 08:50:01 -08:00
#include <limits>
#include <map>
2019-01-17 03:42:01 -08:00
#include <string>
2019-12-10 08:50:01 -08:00
#include <vector>
2019-01-17 03:42:01 -08:00
namespace asn1 {
2019-12-10 08:50:01 -08:00
#define ASN_16K 16384
#define ASN_64K 65536
template <class Integer>
constexpr Integer ceil_frac(Integer n, Integer d)
{
return (n + (d - 1)) / d;
}
2019-01-17 03:42:01 -08:00
2020-11-04 11:31:49 -08:00
template <std::size_t arg1, std::size_t... others>
struct static_max;
template <std::size_t arg>
struct static_max<arg> {
static const std::size_t value = arg;
};
template <std::size_t arg1, std::size_t arg2, std::size_t... others>
struct static_max<arg1, arg2, others...> {
static const std::size_t value =
arg1 >= arg2 ? static_max<arg1, others...>::value : static_max<arg2, others...>::value;
};
/************************
logging
************************/
template <typename... Args>
void log_error(const char* format, Args&&... args)
{
srslog::fetch_basic_logger("ASN1").error(format, std::forward<Args>(args)...);
}
template <typename... Args>
void log_warning(const char* format, Args&&... args)
{
srslog::fetch_basic_logger("ASN1").warning(format, std::forward<Args>(args)...);
}
template <typename... Args>
void log_info(const char* format, Args&&... args)
{
srslog::fetch_basic_logger("ASN1").info(format, std::forward<Args>(args)...);
}
template <typename... Args>
void log_debug(const char* format, Args&&... args)
{
srslog::fetch_basic_logger("ASN1").debug(format, std::forward<Args>(args)...);
}
2020-11-04 11:31:49 -08:00
void warn_assert(bool cond, const char* filename, int lineno);
void log_invalid_access_choice_id(uint32_t val, uint32_t choice_id);
void log_invalid_choice_id(uint32_t val, const char* choice_type);
void invalid_enum_number(int value, const char* name);
void assert_choice_type(uint32_t val, uint32_t choice_id);
template <typename Enumerated>
void assert_choice_type(typename Enumerated::options access_type, Enumerated& current_type, const char* choice_type)
{
if (srsran_unlikely(current_type.value != access_type)) {
log_error("Invalid field access for choice type \"%s\" (\"%s\"!=\"%s\")",
choice_type,
Enumerated(access_type).to_string(),
current_type.to_string());
}
}
2020-11-04 11:31:49 -08:00
2019-01-17 03:42:01 -08:00
/************************
error handling
************************/
enum SRSASN_CODE { SRSASN_SUCCESS, SRSASN_ERROR_ENCODE_FAIL, SRSASN_ERROR_DECODE_FAIL };
void log_error_code(SRSASN_CODE code, const char* filename, int line);
#define HANDLE_CODE(ret) \
do { \
2019-12-10 08:50:01 -08:00
SRSASN_CODE macrocode = ((ret)); \
2019-01-17 03:42:01 -08:00
if (macrocode != SRSASN_SUCCESS) { \
log_error_code(macrocode, __FILE__, __LINE__); \
return macrocode; \
} \
} while (0)
2019-01-17 03:42:01 -08:00
2020-11-04 11:31:49 -08:00
const char* convert_enum_idx(const char* array[], uint32_t nof_types, uint32_t enum_val, const char* enum_type);
template <class ItemType>
ItemType map_enum_number(ItemType* array, uint32_t nof_types, uint32_t enum_val, const char* enum_type);
2019-01-17 03:42:01 -08:00
/************************
bit_ref
************************/
struct ValOrError {
uint32_t val;
SRSASN_CODE code;
ValOrError() : val(0), code(SRSASN_SUCCESS) {}
ValOrError(uint32_t val_, SRSASN_CODE code_) : val(val_), code(code_) {}
};
template <typename T, typename Ptr>
SRSASN_CODE unpack_bits(T& val, Ptr& ptr, uint8_t& offset, const uint8_t* max_ptr, uint32_t n_bits);
2019-01-17 03:42:01 -08:00
template <typename Ptr = uint8_t*>
class bit_ref_impl
2019-01-17 03:42:01 -08:00
{
public:
bit_ref_impl() = default;
bit_ref_impl(Ptr start_ptr_, uint32_t max_size_) :
2020-11-17 07:00:13 -08:00
ptr(start_ptr_), start_ptr(start_ptr_), max_ptr(max_size_ + start_ptr_)
{}
2019-01-17 03:42:01 -08:00
int distance(const bit_ref_impl<Ptr>& other) const;
int distance(const uint8_t* ref_ptr) const;
2019-01-17 03:42:01 -08:00
int distance() const;
int distance_bytes(uint8_t* ref_ptr) const;
int distance_bytes() const;
template <class T>
SRSASN_CODE unpack(T& val, uint32_t n_bits)
{
return unpack_bits(val, ptr, offset, max_ptr, n_bits);
2019-01-17 03:42:01 -08:00
}
SRSASN_CODE unpack_bytes(uint8_t* buf, uint32_t n_bytes);
2019-01-17 03:42:01 -08:00
SRSASN_CODE align_bytes();
SRSASN_CODE advance_bits(uint32_t n_bits);
void set(Ptr start_ptr_, uint32_t max_size_);
2019-01-17 03:42:01 -08:00
protected:
Ptr ptr = nullptr;
uint8_t offset = 0;
const uint8_t* start_ptr = nullptr;
const uint8_t* max_ptr = nullptr;
};
// read only bit_ref
using cbit_ref = bit_ref_impl<const uint8_t*>;
// write+read bit_ref version
class bit_ref : public bit_ref_impl<uint8_t*>
{
using base_t = bit_ref_impl<uint8_t*>;
public:
bit_ref() = default;
bit_ref(uint8_t* start_ptr_, uint32_t max_size_) : bit_ref_impl(start_ptr_, max_size_) {}
SRSASN_CODE pack(uint64_t val, uint32_t n_bits);
SRSASN_CODE pack_bytes(const uint8_t* buf, uint32_t n_bytes);
SRSASN_CODE align_bytes_zero();
2019-01-17 03:42:01 -08:00
};
/*********************
function helpers
*********************/
template <class T>
class dyn_array
{
public:
typedef T value_type;
using iterator = T*;
using const_iterator = const T*;
dyn_array() = default;
2019-12-10 08:50:01 -08:00
explicit dyn_array(uint32_t new_size) : size_(new_size), cap_(new_size) { data_ = new T[size_]; }
2020-01-15 00:13:13 -08:00
dyn_array(const dyn_array<T>& other) : dyn_array(&other[0], other.size_) {}
dyn_array(const T* ptr, uint32_t nof_items)
2019-01-17 03:42:01 -08:00
{
2020-01-15 00:13:13 -08:00
size_ = nof_items;
cap_ = nof_items;
2019-01-17 03:42:01 -08:00
data_ = new T[cap_];
2020-01-15 00:13:13 -08:00
std::copy(ptr, ptr + size_, data_);
2019-01-17 03:42:01 -08:00
}
~dyn_array()
{
if (data_ != NULL) {
delete[] data_;
}
}
uint32_t size() const { return size_; }
uint32_t capacity() const { return cap_; }
T& operator[](uint32_t idx) { return data_[idx]; }
const T& operator[](uint32_t idx) const { return data_[idx]; }
dyn_array<T>& operator=(const dyn_array<T>& other)
{
if (this == &other) {
return *this;
}
resize(other.size());
std::copy(&other[0], &other[size_], data_);
return *this;
}
void resize(uint32_t new_size, uint32_t new_cap = 0)
{
if (new_size == size_) {
return;
}
if (cap_ >= new_size) {
size_ = new_size;
return;
}
T* old_data = data_;
cap_ = new_size > new_cap ? new_size : new_cap;
if (cap_ > 0) {
data_ = new T[cap_];
if (old_data != NULL) {
std::copy(&old_data[0], &old_data[size_], data_);
}
} else {
data_ = NULL;
}
size_ = new_size;
if (old_data != NULL) {
delete[] old_data;
}
}
2020-07-13 03:13:24 -07:00
iterator erase(iterator it)
{
if (it < begin() or it >= end()) {
log_warning("Trying to access out-of-bounds iterator.");
2020-07-13 03:13:24 -07:00
return end();
}
std::copy(it + 1, end(), it);
size_--;
return it + 1;
}
2019-01-17 03:42:01 -08:00
bool operator==(const dyn_array<T>& other) const
{
return size() == other.size() and std::equal(data_, data_ + size(), other.data_);
}
void push_back(const T& elem)
{
resize(size() + 1, size() * 2);
data_[size() - 1] = elem;
}
void clear() { resize(0); }
T& back() { return data_[size() - 1]; }
const T& back() const { return data_[size() - 1]; }
T* data() { return &data_[0]; }
const T* data() const { return &data_[0]; }
iterator begin() { return &data_[0]; }
iterator end() { return &data_[size()]; }
const_iterator begin() const { return &data_[0]; }
const_iterator end() const { return &data_[size()]; }
2019-01-17 03:42:01 -08:00
private:
T* data_ = nullptr;
uint32_t size_ = 0;
uint32_t cap_ = 0;
2019-01-17 03:42:01 -08:00
};
template <class T, uint32_t MAX_N>
class bounded_array
{
public:
typedef T item_type;
using iterator = T*;
using const_iterator = const T*;
2021-04-26 13:07:56 -07:00
explicit bounded_array(uint32_t size_ = 0) : data_(), current_size(size_) {}
2019-01-17 03:42:01 -08:00
static uint32_t capacity() { return MAX_N; }
uint32_t size() const { return current_size; }
T& operator[](uint32_t idx) { return data_[idx]; }
const T& operator[](uint32_t idx) const { return data_[idx]; }
bool operator==(const bounded_array<T, MAX_N>& other) const
{
return size() == other.size() and std::equal(data_, data_ + size(), other.data_);
}
void resize(uint32_t new_size) { current_size = new_size; }
void push_back(const T& elem)
{
if (current_size >= MAX_N) {
log_error("Maximum size %d achieved for bounded_array.", MAX_N);
2020-04-28 06:38:48 -07:00
return;
2019-01-17 03:42:01 -08:00
}
data_[current_size++] = elem;
}
T& back() { return data_[current_size - 1]; }
const T& back() const { return data_[current_size - 1]; }
T* data() { return &data_[0]; }
const T* data() const { return &data_[0]; }
iterator begin() { return &data_[0]; }
iterator end() { return &data_[size()]; }
const_iterator begin() const { return &data_[0]; }
const_iterator end() const { return &data_[size()]; }
2019-01-17 03:42:01 -08:00
private:
2021-04-26 13:07:56 -07:00
T data_[MAX_N];
2019-01-17 03:42:01 -08:00
uint32_t current_size;
};
2019-12-10 08:50:01 -08:00
/**
* This array does small buffer optimization. The array has a small stack (Nthres elements) to store elements. Once
* the number of elements exceeds this stack, the array allocs on the heap.
* @tparam T
* @tparam Nthres number of elements T that can be stored in the stack
*/
template <class T, uint32_t Nthres = ceil_frac((size_t)16, sizeof(T))>
2019-12-10 08:50:01 -08:00
class ext_array
{
public:
static const uint32_t small_buffer_size = Nthres;
ext_array() : size_(0), head(&small_buffer.data[0]) {}
explicit ext_array(uint32_t new_size) : ext_array() { resize(new_size); }
ext_array(const ext_array<T, Nthres>& other) : ext_array(other.size_)
{
std::copy(other.head, other.head + other.size_, head);
}
ext_array(ext_array<T, Nthres>&& other) noexcept
{
size_ = other.size();
if (other.is_in_small_buffer()) {
head = &small_buffer.data[0];
std::copy(other.data(), other.data() + other.size(), head);
} else {
head = other.head;
small_buffer.cap_ = other.small_buffer.cap_;
other.head = &other.small_buffer.data[0];
other.size_ = 0;
}
}
~ext_array()
{
if (not is_in_small_buffer()) {
delete[] head;
}
}
ext_array<T, Nthres>& operator=(const ext_array<T, Nthres>& other)
{
if (this != &other) {
resize(other.size());
std::copy(other.data(), other.data() + other.size(), head);
}
return *this;
}
uint32_t size() const { return size_; }
uint32_t capacity() const { return is_in_small_buffer() ? Nthres : small_buffer.cap_; }
T& operator[](uint32_t index) { return head[index]; }
const T& operator[](uint32_t index) const { return head[index]; }
T* data() { return &head[0]; }
const T* data() const { return &head[0]; }
T& back() { return head[size() - 1]; }
const T& back() const { return head[size() - 1]; }
bool operator==(const ext_array<T, Nthres>& other) const
{
return other.size() == size() and std::equal(other.data(), other.data() + other.size(), data());
}
void push_back(const T& elem)
{
resize(size() + 1);
head[size() - 1] = elem;
}
void resize(uint32_t new_size)
{
if (new_size == size_) {
return;
}
if (capacity() >= new_size) {
size_ = new_size;
return;
}
T* old_data = head;
uint32_t newcap = new_size + 5;
head = new T[newcap];
std::copy(&small_buffer.data[0], &small_buffer.data[size_], head);
size_ = new_size;
if (old_data != &small_buffer.data[0]) {
delete[] old_data;
}
small_buffer.cap_ = newcap;
}
bool is_in_small_buffer() const { return head == &small_buffer.data[0]; }
private:
union {
T data[Nthres];
uint32_t cap_;
} small_buffer;
uint32_t size_;
T* head;
};
2019-01-17 03:42:01 -08:00
/*********************
ext packing
*********************/
SRSASN_CODE pack_unsupported_ext_flag(bit_ref& bref, bool ext);
SRSASN_CODE unpack_unsupported_ext_flag(bool& ext, bit_ref& bref);
2019-12-10 08:50:01 -08:00
/************************
asn1 null packing
************************/
struct asn1_null_t {
SRSASN_CODE pack(bit_ref& bref) const { return SRSASN_SUCCESS; }
SRSASN_CODE unpack(cbit_ref& bref) const { return SRSASN_SUCCESS; }
2019-12-10 08:50:01 -08:00
};
2019-01-17 03:42:01 -08:00
/************************
enum packing
************************/
SRSASN_CODE pack_enum(bit_ref& bref, uint32_t enum_val, uint32_t nbits);
SRSASN_CODE pack_enum(bit_ref& bref, uint32_t enum_val, uint32_t nbits, uint32_t nof_noext);
SRSASN_CODE pack_enum(bit_ref& bref, uint32_t e, uint32_t nof_types, uint32_t nof_exts, bool has_ext);
ValOrError unpack_enum(uint32_t nof_types, uint32_t nof_exts, bool has_ext, cbit_ref& bref);
2019-01-17 03:42:01 -08:00
template <typename EnumType>
SRSASN_CODE pack_enum(bit_ref& bref, EnumType e)
{
return pack_enum(bref, e, EnumType::nof_types, EnumType::nof_exts, EnumType::has_ext);
}
template <typename EnumType>
SRSASN_CODE unpack_enum(EnumType& e, cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
ValOrError ret = unpack_enum(EnumType::nof_types, EnumType::nof_exts, EnumType::has_ext, bref);
e = (typename EnumType::options)ret.val;
return ret.code;
}
struct EnumPacker {
template <class EnumType>
SRSASN_CODE pack(bit_ref& bref, EnumType e)
{
return pack_enum(bref, e);
}
template <class EnumType>
SRSASN_CODE unpack(EnumType& e, cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
return unpack_enum(e, bref);
}
};
template <class EnumType>
bool string_to_enum(EnumType& e, const std::string& s)
{
for (uint32_t i = 0; i < EnumType::nof_types; ++i) {
e = (typename EnumType::options)i;
if (e.to_string() == s) {
return true;
}
}
return false;
}
template <class EnumType, class NumberType>
bool number_to_enum(EnumType& e, NumberType val)
{
for (uint32_t i = 0; i < e.nof_types; ++i) {
e = (typename EnumType::options)i;
if (e.to_number() == val) {
return true;
}
}
return false;
}
template <class EnumType>
bool number_string_to_enum(EnumType& e, const std::string& val)
{
for (uint32_t i = 0; i < e.nof_types; ++i) {
e = (typename EnumType::options)i;
if (e.to_number_string() == val) {
return true;
}
}
return false;
}
2019-04-01 05:05:05 -07:00
template <class EnumType, bool E = false, uint32_t M = 0>
class enumerated : public EnumType
{
public:
2019-04-01 05:05:05 -07:00
static const uint32_t nof_types = EnumType::nulltype, nof_exts = M;
static const bool has_ext = E;
2019-04-01 05:05:05 -07:00
enumerated() { EnumType::value = EnumType::nulltype; }
enumerated(typename EnumType::options o) { EnumType::value = o; }
SRSASN_CODE pack(bit_ref& bref) const { return pack_enum(bref, *this); }
SRSASN_CODE unpack(cbit_ref& bref) { return unpack_enum(*this, bref); }
EnumType& operator=(EnumType v)
{
EnumType::value = v;
return *this;
}
operator typename EnumType::options() const { return EnumType::value; }
};
2019-01-17 03:42:01 -08:00
/************************
2019-12-10 08:50:01 -08:00
PER encoding
2019-01-17 03:42:01 -08:00
************************/
2019-12-10 08:50:01 -08:00
/* X.691 - Section 10.5 - Constrained Whole Number */
2019-01-17 03:42:01 -08:00
template <class IntType>
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_constrained_whole_number(bit_ref& bref, IntType n, IntType lb, IntType ub, bool aligned);
2019-01-17 03:42:01 -08:00
template <class IntType>
SRSASN_CODE unpack_constrained_whole_number(IntType& n, cbit_ref& bref, IntType lb, IntType ub, bool aligned);
2019-01-17 03:42:01 -08:00
2019-12-10 08:50:01 -08:00
/* X.691 - Section 10.6 - Normally small non-negative whole Number */
2019-01-17 03:42:01 -08:00
template <typename UintType>
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_norm_small_non_neg_whole_number(bit_ref& bref, UintType n);
2019-01-17 03:42:01 -08:00
template <typename UintType>
SRSASN_CODE unpack_norm_small_non_neg_whole_number(UintType& n, cbit_ref& bref);
2019-01-17 03:42:01 -08:00
2019-12-10 08:50:01 -08:00
/* X.691 - Section 10.8 - Unconstrained Whole Number */
template <typename IntType>
SRSASN_CODE pack_unconstrained_whole_number(bit_ref& bref, IntType n, bool aligned);
template <typename IntType>
SRSASN_CODE unpack_unconstrained_whole_number(IntType& n, cbit_ref& bref, bool aligned);
2019-01-17 03:42:01 -08:00
/************************
length determinant
************************/
// Pack as whole constrained number
template <typename IntType>
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_length(bit_ref& bref, IntType n, IntType lb, IntType ub, bool aligned = false);
2019-01-17 03:42:01 -08:00
template <typename IntType>
SRSASN_CODE unpack_length(IntType& n, cbit_ref& bref, IntType lb, IntType ub, bool aligned = false);
2019-01-17 03:42:01 -08:00
// Pack as a small non-negative whole number
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_length(bit_ref& ref, uint32_t val, bool aligned = false);
SRSASN_CODE unpack_length(uint32_t& val, cbit_ref& ref, bool aligned = false);
2019-12-10 08:50:01 -08:00
/************************
Integer
************************/
template <typename IntType>
SRSASN_CODE pack_integer(bit_ref& bref,
IntType n,
IntType lb = std::numeric_limits<IntType>::min(),
IntType ub = std::numeric_limits<IntType>::max(),
bool has_ext = false,
bool aligned = false);
template <typename IntType>
SRSASN_CODE unpack_integer(IntType& n,
cbit_ref& bref,
IntType lb = std::numeric_limits<IntType>::min(),
IntType ub = std::numeric_limits<IntType>::max(),
bool has_ext = false,
bool aligned = false);
2019-12-10 08:50:01 -08:00
// unconstrained case
template <typename IntType>
SRSASN_CODE pack_unconstrained_integer(bit_ref& bref, IntType n, bool has_ext = false, bool aligned = false);
template <typename IntType>
SRSASN_CODE unpack_unconstrained_integer(IntType& n, cbit_ref& bref, bool has_ext = false, bool aligned = false);
2019-12-10 08:50:01 -08:00
template <class IntType>
struct integer_packer {
integer_packer(IntType lb_, IntType ub_, bool has_ext_ = false, bool aligned_ = false);
SRSASN_CODE pack(bit_ref& bref, IntType n);
SRSASN_CODE unpack(IntType& n, cbit_ref& bref);
2019-12-10 08:50:01 -08:00
IntType lb;
IntType ub;
bool has_ext;
bool aligned;
};
template <class IntType,
IntType LB = std::numeric_limits<IntType>::min(),
IntType UB = std::numeric_limits<IntType>::max(),
bool Ext = false,
bool Al = false>
class integer
{
public:
static const IntType ub = UB, lb = LB;
static const bool has_ext = Ext, is_aligned = Al;
IntType value;
integer() = default;
integer(IntType value_) : value(value_) {}
operator IntType() { return value; }
SRSASN_CODE pack(bit_ref& bref) const { return pack_integer(bref, value, lb, ub, has_ext, is_aligned); }
SRSASN_CODE unpack(cbit_ref& bref) { return unpack_integer(value, bref, lb, ub, has_ext, is_aligned); }
2019-12-10 08:50:01 -08:00
};
2019-01-17 03:42:01 -08:00
/************************
General Packer/Unpacker
************************/
struct BitPacker {
BitPacker(uint32_t nof_bits_) : nof_bits(nof_bits_) {}
template <typename T>
SRSASN_CODE pack(bit_ref& bref, const T& topack)
{
bref.pack(topack, nof_bits);
return SRSASN_SUCCESS;
}
template <typename T>
SRSASN_CODE unpack(T& tounpack, cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
return bref.unpack(tounpack, nof_bits);
}
uint32_t nof_bits;
};
struct Packer {
template <typename T>
SRSASN_CODE pack(bit_ref& bref, const T& topack)
{
return topack.pack(bref);
}
template <typename T>
SRSASN_CODE unpack(T& tounpack, cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
return tounpack.unpack(bref);
}
};
/*********************
common octstring
*********************/
// helper functions common to all octstring implementations
uint64_t octstring_to_number(const uint8_t* ptr, uint32_t nbytes);
void number_to_octstring(uint8_t* ptr, uint64_t number, uint32_t nbytes);
std::string octstring_to_string(const uint8_t* ptr, uint32_t N);
void string_to_octstring(uint8_t* ptr, const std::string& str);
/************************
fixed_octstring
************************/
2019-12-10 08:50:01 -08:00
template <uint32_t N, bool aligned = false>
2019-01-17 03:42:01 -08:00
class fixed_octstring
{
public:
const uint8_t& operator[](uint32_t idx) const { return octets_[idx]; }
uint8_t& operator[](uint32_t idx) { return octets_[idx]; }
bool operator==(const fixed_octstring<N>& other) const { return octets_ == other.octets_; }
uint8_t* data() { return &octets_[0]; }
const uint8_t* data() const { return &octets_[0]; }
2019-12-10 08:50:01 -08:00
static uint32_t size() { return N; }
std::string to_string() const { return octstring_to_string(&octets_[0], N); }
fixed_octstring<N, aligned>& from_string(const std::string& hexstr)
2019-01-17 03:42:01 -08:00
{
if (hexstr.size() != 2 * N) {
log_error("The provided hex string size is not valid (%zd!=2*%zd).", hexstr.size(), (size_t)N);
2019-01-17 03:42:01 -08:00
} else {
string_to_octstring(&octets_[0], hexstr);
}
return *this;
}
2019-12-10 08:50:01 -08:00
uint64_t to_number() const { return octstring_to_number(&octets_[0], size()); }
fixed_octstring<N, aligned>& from_number(uint64_t val)
2019-01-17 03:42:01 -08:00
{
number_to_octstring(&octets_[0], val, size());
return *this;
}
SRSASN_CODE pack(bit_ref& bref) const;
SRSASN_CODE unpack(cbit_ref& bref);
2019-01-17 03:42:01 -08:00
private:
std::array<uint8_t, N> octets_;
2019-01-17 03:42:01 -08:00
};
2019-12-10 08:50:01 -08:00
/**
* X.691 Section 16 - Encoding the octetstring type
* @tparam N - number of items
* @tparam ext - aligned variant
* @param bref
* @return
*/
template <uint32_t N, bool aligned>
SRSASN_CODE fixed_octstring<N, aligned>::pack(bit_ref& bref) const
2019-01-17 03:42:01 -08:00
{
2019-12-10 08:50:01 -08:00
if (aligned and N > 2) {
bref.align_bytes_zero();
}
2019-01-17 03:42:01 -08:00
for (uint32_t i = 0; i < size(); ++i) {
2019-12-10 08:50:01 -08:00
HANDLE_CODE(bref.pack(octets_[i], 8));
2019-01-17 03:42:01 -08:00
}
return SRSASN_SUCCESS;
}
2019-12-10 08:50:01 -08:00
template <uint32_t N, bool aligned>
SRSASN_CODE fixed_octstring<N, aligned>::unpack(cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
2019-12-10 08:50:01 -08:00
if (aligned and N > 2) {
bref.align_bytes();
2019-12-10 08:50:01 -08:00
}
2019-01-17 03:42:01 -08:00
for (uint32_t i = 0; i < size(); ++i) {
HANDLE_CODE(bref.unpack(octets_[i], 8));
}
return SRSASN_SUCCESS;
}
2020-11-04 11:31:49 -08:00
/************************
constrained_octstring
************************/
template <uint32_t LB, uint32_t UB, bool aligned = false>
class bounded_octstring
{
public:
const uint8_t& operator[](uint32_t idx) const { return octets_[idx]; }
uint8_t& operator[](uint32_t idx) { return octets_[idx]; }
bool operator==(const bounded_octstring& other) const { return octets_ == other.octets_; }
uint8_t* data() { return &octets_[0]; }
const uint8_t* data() const { return &octets_[0]; }
void resize(uint32_t new_size) { octets_.resize(new_size); }
uint32_t size() const { return octets_.size(); }
std::string to_string() const { return octstring_to_string(data(), size()); }
bounded_octstring<LB, UB, aligned>& from_string(const std::string& hexstr)
{
if (hexstr.size() > 2 * UB) {
log_error("The provided hex string size is not valid (%zd>2*%zd).", hexstr.size(), (size_t)UB);
2020-11-04 11:31:49 -08:00
} else {
resize(hexstr.size() / 2);
string_to_octstring(&octets_[0], hexstr);
}
return *this;
}
uint64_t to_number() const { return octstring_to_number(&octets_[0], size()); }
bounded_octstring<LB, UB, aligned>& from_number(uint64_t val)
{
number_to_octstring(&octets_[0], val, size());
return *this;
}
SRSASN_CODE pack(bit_ref& bref) const
{
HANDLE_CODE(pack_length(bref, size(), LB, UB, aligned));
if (aligned) {
bref.align_bytes_zero();
}
for (uint32_t i = 0; i < size(); ++i) {
HANDLE_CODE(bref.pack(octets_[i], 8));
}
return SRSASN_SUCCESS;
}
SRSASN_CODE unpack(cbit_ref& bref)
{
uint32_t len;
HANDLE_CODE(unpack_length(len, bref, LB, UB, aligned));
resize(len);
if (aligned) {
bref.align_bytes();
}
for (uint32_t i = 0; i < size(); ++i) {
HANDLE_CODE(bref.unpack(octets_[i], 8));
}
return SRSASN_SUCCESS;
}
private:
ext_array<uint8_t, static_max<UB, 64u>::value> octets_;
};
2019-01-17 03:42:01 -08:00
/************************
dyn_octstring
************************/
2019-12-10 08:50:01 -08:00
template <bool Al = false>
class unbounded_octstring
2019-01-17 03:42:01 -08:00
{
public:
2019-12-10 08:50:01 -08:00
static const bool aligned = Al;
unbounded_octstring() = default;
explicit unbounded_octstring(uint32_t new_size) : octets_(new_size) {}
2019-01-17 03:42:01 -08:00
const uint8_t& operator[](uint32_t idx) const { return octets_[idx]; }
uint8_t& operator[](uint32_t idx) { return octets_[idx]; }
2019-12-10 08:50:01 -08:00
bool operator==(const unbounded_octstring<Al>& other) const { return octets_ == other.octets_; }
2019-01-17 03:42:01 -08:00
void resize(uint32_t new_size) { octets_.resize(new_size); }
uint32_t size() const { return octets_.size(); }
uint8_t* data() { return &octets_[0]; }
const uint8_t* data() const { return &octets_[0]; }
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack(bit_ref& ie_ref) const;
SRSASN_CODE unpack(cbit_ref& ie_ref);
2019-12-10 08:50:01 -08:00
std::string to_string() const;
unbounded_octstring<Al>& from_string(const std::string& hexstr);
uint64_t to_number() const { return octstring_to_number(&octets_[0], size()); }
unbounded_octstring<Al>& from_number(uint64_t val)
2019-01-17 03:42:01 -08:00
{
number_to_octstring(&octets_[0], val, size());
return *this;
}
private:
dyn_array<uint8_t> octets_;
};
2019-12-10 08:50:01 -08:00
using dyn_octstring = unbounded_octstring<false>;
2019-01-17 03:42:01 -08:00
/*********************
bitstring
2019-01-17 03:42:01 -08:00
*********************/
namespace bitstring_utils {
inline bool get(const uint8_t* ptr, uint32_t idx)
2019-01-17 03:42:01 -08:00
{
uint32_t byte_idx = idx / 8;
uint32_t offset = idx % 8;
2019-12-10 08:50:01 -08:00
return (ptr[byte_idx] & (1u << offset)) > 0;
2019-01-17 03:42:01 -08:00
}
inline void set(uint8_t* ptr, uint32_t idx, bool value)
2019-01-17 03:42:01 -08:00
{
uint32_t byte_idx = idx / 8;
uint32_t offset = idx % 8;
if (value) {
2019-12-10 08:50:01 -08:00
ptr[byte_idx] |= (1u << offset);
2019-01-17 03:42:01 -08:00
} else {
ptr[byte_idx] &= ((uint16_t)(1u << 8u) - 1u) - (1u << offset);
2019-01-17 03:42:01 -08:00
}
}
SRSASN_CODE
pack(bit_ref& bref, const uint8_t* data, uint32_t size, uint32_t lb, uint32_t ub, bool has_ext, bool is_aligned);
SRSASN_CODE
unpack_length_prefix(uint32_t& len, cbit_ref& bref, uint32_t lb, uint32_t ub, bool has_ext, bool is_aligned);
SRSASN_CODE unpack_bitfield(uint8_t* buf, cbit_ref& bref, uint32_t n, uint32_t lb, uint32_t ub, bool is_aligned);
2019-01-17 03:42:01 -08:00
uint64_t to_number(const uint8_t* ptr, uint32_t nbits);
void from_number(uint8_t* ptr, uint64_t number, uint32_t nbits);
std::string to_string(const uint8_t* ptr, uint32_t nbits);
2019-01-17 03:42:01 -08:00
} // namespace bitstring_utils
2019-01-17 03:42:01 -08:00
template <uint32_t LB, uint32_t UB, bool ext = false, bool aligned = false>
class bitstring
2019-01-17 03:42:01 -08:00
{
using this_type = bitstring<LB, UB, ext, aligned>;
2019-01-17 03:42:01 -08:00
public:
static const uint32_t lb = LB, ub = UB;
static const bool has_ext = ext, is_aligned = aligned;
2019-12-10 08:50:01 -08:00
explicit bitstring(uint32_t siz_ = lb) { resize(siz_); }
explicit bitstring(const std::string& s)
2019-01-17 03:42:01 -08:00
{
resize(s.size());
2019-01-17 03:42:01 -08:00
memset(&octets_[0], 0, nof_octets());
for (uint32_t i = 0; i < s.size(); ++i)
set(s.size() - i - 1, s[i] == '1');
2019-01-17 03:42:01 -08:00
}
bool get(uint32_t idx) const { return bitstring_utils::get(data(), idx); }
void set(uint32_t idx, bool value) { bitstring_utils::set(data(), idx, value); }
uint32_t nof_octets() const { return ceil_frac(length(), 8u); }
2019-12-10 08:50:01 -08:00
const uint8_t* data() const { return &octets_[0]; }
uint8_t* data() { return &octets_[0]; }
uint32_t length() const { return nof_bits; }
void resize(uint32_t new_size)
{
nof_bits = new_size;
octets_.resize(nof_octets());
memset(data(), 0, nof_octets()); // resize always resets content
}
2019-12-10 08:50:01 -08:00
// comparison
bool operator==(const this_type& other) const
{
return length() == other.length() and std::equal(data(), data() + nof_octets(), other.data());
}
bool operator==(const char* other_str) const
{
return strlen(other_str) == length() and (*this) == this_type{}.from_string(other_str);
}
2019-01-17 03:42:01 -08:00
// string conversion
std::string to_string() const { return bitstring_utils::to_string(data(), length()); }
this_type& from_string(const std::string& s)
2019-12-10 08:50:01 -08:00
{
if (s.size() < lb or s.size() > ub) {
log_error(
"The provided string size=%zd is not withing the bounds [%d, %d]", s.size(), uint32_t(lb), uint32_t(ub));
2019-12-10 08:50:01 -08:00
} else {
resize(s.size());
2019-12-10 08:50:01 -08:00
for (uint32_t i = 0; i < s.size(); ++i) {
set(s.size() - i - 1, s[i] == '1');
}
}
return *this;
2019-12-10 08:50:01 -08:00
}
2019-01-17 03:42:01 -08:00
// number conversion
uint64_t to_number() const { return bitstring_utils::to_number(data(), length()); }
this_type& from_number(uint64_t val)
2019-01-17 03:42:01 -08:00
{
auto nof_bits_ = std::max((uint32_t)ceilf(log2(std::max(val, (uint64_t)1u))), LB);
if (nof_bits_ > UB) {
log_error("The provided bitstring value %ld does not fit the bounds [%d, %d]", val, uint32_t(lb), uint32_t(ub));
return *this;
}
resize(nof_bits_);
bitstring_utils::from_number(data(), val, length());
return *this;
2019-12-10 08:50:01 -08:00
}
// packers / unpackers
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack(bit_ref& bref) const
{
return bitstring_utils::pack(bref, data(), length(), lb, ub, has_ext, is_aligned);
2019-12-10 08:50:01 -08:00
}
SRSASN_CODE unpack(cbit_ref& bref)
2019-12-10 08:50:01 -08:00
{
// X.691, subclause 15.11
uint32_t nbits;
HANDLE_CODE(bitstring_utils::unpack_length_prefix(nbits, bref, lb, ub, has_ext, is_aligned));
resize(nbits);
return bitstring_utils::unpack_bitfield(data(), bref, nbits, lb, ub, is_aligned);
2019-01-17 03:42:01 -08:00
}
2019-12-10 08:50:01 -08:00
private:
const static uint32_t stack_size = (UB == std::numeric_limits<uint32_t>::max()) ? 4 : ceil_frac(ub, 8u);
ext_array<uint8_t, stack_size> octets_;
uint32_t nof_bits = 0;
2019-12-10 08:50:01 -08:00
};
template <uint32_t LB, uint32_t UB, bool ext = false, bool aligned = false>
using bounded_bitstring = bitstring<LB, UB, ext, aligned>;
2019-12-10 08:50:01 -08:00
template <bool Ext = false, bool Al = false>
using unbounded_bitstring = bitstring<0, std::numeric_limits<uint32_t>::max(), Ext, Al>;
2019-01-17 03:42:01 -08:00
2019-12-10 08:50:01 -08:00
using dyn_bitstring = unbounded_bitstring<false, false>;
template <uint32_t N, bool Ext = false, bool Al = false>
using fixed_bitstring = bitstring<N, N, Ext, Al>;
2019-01-17 03:42:01 -08:00
/*********************
fixed sequence of
*********************/
// packers/unpackers for fixed_length sequence-of
template <class T, class ItemPacker>
SRSASN_CODE pack_fixed_seq_of(bit_ref& bref, const T* item_array, uint32_t nof_items, ItemPacker packer)
{
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(packer.pack(bref, item_array[i]));
}
return SRSASN_SUCCESS;
}
template <class T>
SRSASN_CODE pack_fixed_seq_of(bit_ref& bref, const T* item_array, uint32_t nof_items)
{
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(item_array[i].pack(bref));
}
return SRSASN_SUCCESS;
}
template <class T, class ItemUnpacker>
SRSASN_CODE unpack_fixed_seq_of(T* item_array, cbit_ref& bref, uint32_t nof_items, ItemUnpacker unpacker)
2019-01-17 03:42:01 -08:00
{
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(unpacker.unpack(item_array[i], bref));
}
return SRSASN_SUCCESS;
}
template <class T>
SRSASN_CODE unpack_fixed_seq_of(T* item_array, cbit_ref& bref, uint32_t nof_items)
2019-01-17 03:42:01 -08:00
{
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(item_array[i].unpack(bref));
}
return SRSASN_SUCCESS;
}
template <class ItemPacker>
struct FixedSeqOfPacker {
FixedSeqOfPacker(uint32_t nof_items_, ItemPacker packer_) : nof_items(nof_items_), packer(packer_) {}
explicit FixedSeqOfPacker(uint32_t nof_items_) : nof_items(nof_items_), packer(Packer()) {}
2019-01-17 03:42:01 -08:00
template <typename T>
SRSASN_CODE pack(bit_ref& bref, const T* topack)
{
return pack_fixed_seq_of(bref, topack, nof_items, packer);
}
template <typename T>
SRSASN_CODE unpack(T* tounpack, bit_ref& bref)
{
return unpack_fixed_seq_of(tounpack, bref, nof_items, packer);
}
uint32_t nof_items;
ItemPacker packer;
};
/*********************
dyn sequence of
*********************/
template <class ArrayType, class ItemPacker>
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_dyn_seq_of(bit_ref& bref,
const ArrayType& seqof,
uint32_t lb,
uint32_t ub,
ItemPacker packer,
bool aligned = false)
2019-01-17 03:42:01 -08:00
{
2019-12-10 08:50:01 -08:00
HANDLE_CODE(pack_length(bref, seqof.size(), lb, ub, aligned));
2019-01-17 03:42:01 -08:00
for (uint32_t i = 0; i < seqof.size(); ++i) {
HANDLE_CODE(packer.pack(bref, seqof[i]));
}
return SRSASN_SUCCESS;
}
template <class ArrayType>
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack_dyn_seq_of(bit_ref& bref, const ArrayType& seqof, uint32_t lb, uint32_t ub, bool aligned = false)
2019-01-17 03:42:01 -08:00
{
2019-12-10 08:50:01 -08:00
HANDLE_CODE(pack_length(bref, seqof.size(), lb, ub, aligned));
2019-01-17 03:42:01 -08:00
for (uint32_t i = 0; i < seqof.size(); ++i) {
HANDLE_CODE(seqof[i].pack(bref));
}
return SRSASN_SUCCESS;
}
template <class ArrayType, class ItemUnpacker>
2019-12-10 08:50:01 -08:00
SRSASN_CODE unpack_dyn_seq_of(ArrayType& seqof,
cbit_ref& bref,
2019-12-10 08:50:01 -08:00
uint32_t lb,
uint32_t ub,
ItemUnpacker unpacker,
bool aligned = false)
2019-01-17 03:42:01 -08:00
{
uint32_t nof_items;
2019-12-10 08:50:01 -08:00
HANDLE_CODE(unpack_length(nof_items, bref, lb, ub, aligned));
2019-01-17 03:42:01 -08:00
seqof.resize(nof_items);
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(unpacker.unpack(seqof[i], bref));
}
return SRSASN_SUCCESS;
}
template <class ArrayType>
SRSASN_CODE unpack_dyn_seq_of(ArrayType& seqof, cbit_ref& bref, uint32_t lb, uint32_t ub, bool aligned = false)
2019-01-17 03:42:01 -08:00
{
uint32_t nof_items;
2019-12-10 08:50:01 -08:00
HANDLE_CODE(unpack_length(nof_items, bref, lb, ub, aligned));
2019-01-17 03:42:01 -08:00
seqof.resize(nof_items);
for (uint32_t i = 0; i < nof_items; ++i) {
HANDLE_CODE(seqof[i].unpack(bref));
}
return SRSASN_SUCCESS;
}
template <class InnerPacker>
struct SeqOfPacker {
SeqOfPacker(uint32_t lb_, uint32_t ub_, InnerPacker packer_) : lb(lb_), ub(ub_), packer(packer_) {}
template <typename T>
2019-04-01 05:05:05 -07:00
SRSASN_CODE pack(bit_ref& bref, const T& topack) const
2019-01-17 03:42:01 -08:00
{
return pack_dyn_seq_of(bref, topack, lb, ub, packer);
}
template <typename T>
SRSASN_CODE unpack(T& tounpack, cbit_ref& bref)
2019-01-17 03:42:01 -08:00
{
return unpack_dyn_seq_of(tounpack, bref, lb, ub, packer);
}
InnerPacker packer;
uint32_t lb;
uint32_t ub;
};
2019-12-10 08:50:01 -08:00
template <class ItemType, uint32_t lb, uint32_t ub, bool aligned = false>
struct dyn_seq_of : public dyn_array<ItemType> {
2019-12-10 08:50:01 -08:00
dyn_seq_of() = default;
dyn_seq_of(const dyn_array<ItemType>& other) : dyn_array<ItemType>(other) {}
2020-01-15 00:13:13 -08:00
dyn_seq_of(const bounded_array<ItemType, ub>& other) : dyn_array<ItemType>(&other[0], other.size()) {}
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack(bit_ref& bref) const { return pack_dyn_seq_of(bref, *this, lb, ub, aligned); }
SRSASN_CODE unpack(cbit_ref& bref) { return unpack_dyn_seq_of(*this, bref, lb, ub, aligned); }
};
2019-01-17 03:42:01 -08:00
/*********************
2019-12-10 08:50:01 -08:00
printable string
2019-01-17 03:42:01 -08:00
*********************/
2019-12-10 08:50:01 -08:00
/* X.691 - Section 27 - Character Restricted String */
namespace asn_string_utils {
SRSASN_CODE
pack(bit_ref& bref, const std::string& s, size_t lb, size_t ub, size_t alb, size_t aub, bool ext, bool aligned);
SRSASN_CODE
unpack(std::string& s, cbit_ref& bref, size_t lb, size_t ub, size_t alb, size_t aub, bool ext, bool aligned);
2019-12-10 08:50:01 -08:00
} // namespace asn_string_utils
template <uint32_t LB,
uint32_t UB,
uint32_t ALB = 0,
uint32_t AUB = std::numeric_limits<uint32_t>::max(),
bool ext = false,
bool aligned = false>
class asn_string
2019-01-17 03:42:01 -08:00
{
public:
2019-12-10 08:50:01 -08:00
SRSASN_CODE pack(bit_ref& bref) const { return asn_string_utils::pack(bref, str, LB, UB, ALB, AUB, ext, aligned); }
SRSASN_CODE unpack(cbit_ref& bref) { return asn_string_utils::unpack(str, bref, LB, UB, ALB, AUB, ext, aligned); }
2019-12-10 08:50:01 -08:00
char& operator[](std::size_t idx) { return str[idx]; }
const char& operator[](std::size_t idx) const { return str[idx]; }
void resize(std::size_t newsize) { str.resize(newsize); }
std::size_t size() const { return str.size(); }
std::string to_string() const { return str; }
void from_string(const std::string& s) { str = s; }
2019-01-17 03:42:01 -08:00
private:
2019-12-10 08:50:01 -08:00
std::string str;
2019-01-17 03:42:01 -08:00
};
2019-12-10 08:50:01 -08:00
template <uint32_t ALB = 0, uint32_t AUB = std::numeric_limits<uint32_t>::max(), bool ext = false, bool aligned = false>
using printable_string = asn_string<32, 122, ALB, AUB, ext, aligned>;
2019-01-17 03:42:01 -08:00
/*********************
copy_ptr
*********************/
template <class T>
class copy_ptr
{
public:
2020-11-04 11:31:49 -08:00
copy_ptr() : ptr(nullptr) {}
explicit copy_ptr(T* ptr_) : ptr(ptr_) {}
2020-11-17 07:00:13 -08:00
copy_ptr(copy_ptr<T>&& other) noexcept : ptr(other.ptr) { other.ptr = nullptr; }
copy_ptr(const copy_ptr<T>& other) { ptr = (other.ptr == nullptr) ? nullptr : new T(*other.ptr); }
2019-01-17 03:42:01 -08:00
~copy_ptr() { destroy_(); }
copy_ptr<T>& operator=(const copy_ptr<T>& other)
2019-01-17 03:42:01 -08:00
{
if (this != &other) {
reset((other.ptr == nullptr) ? nullptr : new T(*other.ptr));
2019-01-17 03:42:01 -08:00
}
return *this;
}
2020-11-17 07:00:13 -08:00
copy_ptr<T>& operator=(copy_ptr<T>&& other) noexcept
{
if (this != &other) {
ptr = other.ptr;
other.ptr = nullptr;
}
return *this;
}
bool operator==(const copy_ptr<T>& other) const { return *ptr == *other; }
T* operator->() { return ptr; }
const T* operator->() const { return ptr; }
T& operator*() { return *ptr; } // like pointers, don't call this if ptr==NULL
const T& operator*() const { return *ptr; } // like pointers, don't call this if ptr==NULL
T* get() { return ptr; }
const T* get() const { return ptr; }
T* release()
2019-01-17 03:42:01 -08:00
{
T* ret = ptr;
ptr = nullptr;
2019-01-17 03:42:01 -08:00
return ret;
}
void reset(T* ptr_ = nullptr)
2019-01-17 03:42:01 -08:00
{
destroy_();
ptr = ptr_;
}
void set_present(bool flag = true)
{
if (flag) {
reset(new T());
} else {
reset();
}
}
bool is_present() const { return get() != nullptr; }
2019-01-17 03:42:01 -08:00
private:
void destroy_()
2019-01-17 03:42:01 -08:00
{
if (ptr != NULL) {
delete ptr;
}
}
2019-05-07 03:24:17 -07:00
T* ptr;
2019-01-17 03:42:01 -08:00
};
template <class T>
2020-11-04 11:31:49 -08:00
copy_ptr<typename std::decay<T>::type> make_copy_ptr(T&& t)
2019-01-17 03:42:01 -08:00
{
2020-11-04 11:31:49 -08:00
using T2 = typename std::decay<T>::type;
return copy_ptr<T2>(new T2(std::forward<T>(t)));
2019-01-17 03:42:01 -08:00
}
2019-12-10 08:50:01 -08:00
/*********************
choice utils
*********************/
union alignment_t {
char c;
float f;
uint32_t i;
uint64_t i2;
double d;
long double d2;
uint32_t* ptr;
};
template <std::size_t Size, std::size_t Align>
struct choice_buffer_base_t {
static const std::size_t data_size = Size;
static const std::size_t data_align = Align;
using buffer_t = typename std::aligned_storage<data_size, data_align>::type;
buffer_t buffer;
choice_buffer_base_t() : buffer() {}
2019-12-10 08:50:01 -08:00
template <typename T>
T& get()
{
return *(reinterpret_cast<T*>(&buffer));
}
template <typename T>
const T& get() const
{
return *(reinterpret_cast<const T*>(&buffer));
}
template <typename T>
void destroy()
{
get<T>().~T();
}
template <typename T>
void init()
{
new (&buffer) T();
}
template <typename T>
void init(const T& other)
{
new (&buffer) T(other);
}
template <typename T>
void set(const T& other)
{
get<T>() = other;
}
};
template <typename... Ts>
struct choice_buffer_t : public choice_buffer_base_t<static_max<sizeof(alignment_t), sizeof(Ts)...>::value,
static_max<alignof(alignment_t), alignof(Ts)...>::value> {};
2019-12-10 08:50:01 -08:00
using pod_choice_buffer_t = choice_buffer_t<>;
2019-01-17 03:42:01 -08:00
/*********************
ext group
*********************/
class ext_groups_packer_guard
2019-01-17 03:42:01 -08:00
{
public:
bool& operator[](uint32_t idx);
2019-01-17 03:42:01 -08:00
SRSASN_CODE pack(bit_ref& bref) const;
private:
2019-12-10 08:50:01 -08:00
ext_array<bool> groups;
};
class ext_groups_unpacker_guard
{
public:
explicit ext_groups_unpacker_guard(uint32_t nof_supported_groups_);
~ext_groups_unpacker_guard();
void resize(uint32_t new_size);
bool& operator[](uint32_t idx);
SRSASN_CODE unpack(cbit_ref& bref);
2019-01-17 03:42:01 -08:00
private:
2019-12-10 08:50:01 -08:00
ext_array<bool> groups;
const uint32_t nof_supported_groups;
uint32_t nof_unpacked_groups = 0;
cbit_ref* bref_tracker = nullptr;
2019-01-17 03:42:01 -08:00
};
/*********************
Var Length Field
*********************/
class varlength_field_pack_guard
{
public:
2019-12-10 08:50:01 -08:00
explicit varlength_field_pack_guard(bit_ref& bref, bool align_ = false);
2019-01-17 03:42:01 -08:00
~varlength_field_pack_guard();
private:
bit_ref brefstart;
// bit_ref bref0;
bit_ref* bref_tracker;
uint8_t buffer[2048];
2019-12-10 08:50:01 -08:00
bool align;
2019-01-17 03:42:01 -08:00
};
class varlength_field_unpack_guard
{
public:
explicit varlength_field_unpack_guard(cbit_ref& bref, bool align = false);
2019-01-17 03:42:01 -08:00
~varlength_field_unpack_guard();
private:
cbit_ref bref0;
cbit_ref* bref_tracker = nullptr;
uint32_t len = 0;
2019-01-17 03:42:01 -08:00
};
/*******************
JsonWriter
*******************/
2020-12-15 03:31:10 -08:00
using json_buffer = fmt::basic_memory_buffer<char, 2048>;
2019-01-17 03:42:01 -08:00
class json_writer
{
public:
json_writer();
void write_fieldname(const std::string& fieldname);
void write_str(const std::string& fieldname, const std::string& value);
void write_str(const std::string& value);
void write_int(const std::string& fieldname, int64_t value);
void write_int(int64_t value);
void write_bool(const std::string& fieldname, bool value);
void write_bool(bool value);
void write_null(const std::string& fieldname);
void write_null();
void start_obj(const std::string& fieldname = "");
void end_obj();
void start_array(const std::string& fieldname = "");
void end_array();
std::string to_string() const;
private:
2020-12-15 03:31:10 -08:00
json_buffer buffer;
std::string ident;
enum separator_t { COMMA = 0, NEWLINE, NONE };
2019-01-17 03:42:01 -08:00
separator_t sep;
};
/*******************
Test pack/unpack
*******************/
template <class Msg>
int test_pack_unpack_consistency(const Msg& msg)
{
uint8_t buf[2048], buf2[2048];
bzero(buf, sizeof(buf));
bzero(buf2, sizeof(buf2));
Msg msg2;
asn1::bit_ref bref(&buf[0], sizeof(buf)), bref3(&buf2[0], sizeof(buf2));
asn1::cbit_ref bref2(&buf[0], sizeof(buf));
if (msg.pack(bref) != asn1::SRSASN_SUCCESS) {
log_error_code(SRSASN_ERROR_ENCODE_FAIL, __FILE__, __LINE__);
return -1;
}
if (msg2.unpack(bref2) != asn1::SRSASN_SUCCESS) {
log_error_code(SRSASN_ERROR_DECODE_FAIL, __FILE__, __LINE__);
return -1;
}
if (msg2.pack(bref3) != asn1::SRSASN_SUCCESS) {
log_error_code(SRSASN_ERROR_ENCODE_FAIL, __FILE__, __LINE__);
return -1;
}
// unpack and last pack done for the same number of bits
if (bref3.distance() != bref2.distance()) {
log_error("[%s][%d] .", __FILE__, __LINE__);
return -1;
}
// ensure packed messages are the same
if (bref3.distance() != bref.distance()) {
log_error("[%s][%d] .", __FILE__, __LINE__);
return -1;
}
if (memcmp(buf, buf2, bref.distance_bytes()) != 0) {
log_error("[%s][%d] .", __FILE__, __LINE__);
return -1;
}
return SRSASN_SUCCESS;
}
2019-01-17 03:42:01 -08:00
} // namespace asn1
#endif // SRSASN_COMMON_UTILS_H