mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-24 17:28:32 +03:00
import libosmocore msgb handling (and dependencies)
This is supposed to be replaced with upstream libosmocore, as soon as that has a proper maintained embedded build (again).
This commit is contained in:
4
firmware/libosmocore/include/osmocom/core/backtrace.h
Normal file
4
firmware/libosmocore/include/osmocom/core/backtrace.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#pragma once
|
||||
|
||||
void osmo_generate_backtrace(void);
|
||||
void osmo_log_backtrace(int subsys, int level);
|
||||
105
firmware/libosmocore/include/osmocom/core/bit16gen.h
Normal file
105
firmware/libosmocore/include/osmocom/core/bit16gen.h
Normal file
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
* bit16gen.h
|
||||
*
|
||||
* Copyright (C) 2014 Max <max.suraev@fairwaves.co>
|
||||
*
|
||||
* All Rights Reserved
|
||||
*
|
||||
* 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 2 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/*! \brief load unaligned n-byte integer (little-endian encoding) into uint16_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 16 bit unsigned integer
|
||||
*/
|
||||
static inline uint16_t osmo_load16le_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint16_t)q[i] << (8 * i)), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
/*! \brief load unaligned n-byte integer (big-endian encoding) into uint16_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 16 bit unsigned integer
|
||||
*/
|
||||
static inline uint16_t osmo_load16be_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint16_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint16_t)q[i] << (16 - 8* (1 + i))), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned n-byte integer (little-endian encoding) from uint16_t
|
||||
* \param[in] x unsigned 16 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store16le_ext(uint16_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> i * 8) & 0xFF, i++);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned n-byte integer (big-endian encoding) from uint16_t
|
||||
* \param[in] x unsigned 16 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store16be_ext(uint16_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> ((n - 1 - i) * 8)) & 0xFF, i++);
|
||||
}
|
||||
|
||||
|
||||
/* Convenience function for most-used cases */
|
||||
|
||||
|
||||
/*! \brief load unaligned 16-bit integer (little-endian encoding) */
|
||||
static inline uint16_t osmo_load16le(const void *p)
|
||||
{
|
||||
return osmo_load16le_ext(p, 16 / 8);
|
||||
}
|
||||
|
||||
/*! \brief load unaligned 16-bit integer (big-endian encoding) */
|
||||
static inline uint16_t osmo_load16be(const void *p)
|
||||
{
|
||||
return osmo_load16be_ext(p, 16 / 8);
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned 16-bit integer (little-endian encoding) */
|
||||
static inline void osmo_store16le(uint16_t x, void *p)
|
||||
{
|
||||
osmo_store16le_ext(x, p, 16 / 8);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned 16-bit integer (big-endian encoding) */
|
||||
static inline void osmo_store16be(uint16_t x, void *p)
|
||||
{
|
||||
osmo_store16be_ext(x, p, 16 / 8);
|
||||
}
|
||||
105
firmware/libosmocore/include/osmocom/core/bit32gen.h
Normal file
105
firmware/libosmocore/include/osmocom/core/bit32gen.h
Normal file
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
* bit32gen.h
|
||||
*
|
||||
* Copyright (C) 2014 Max <max.suraev@fairwaves.co>
|
||||
*
|
||||
* All Rights Reserved
|
||||
*
|
||||
* 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 2 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/*! \brief load unaligned n-byte integer (little-endian encoding) into uint32_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 32 bit unsigned integer
|
||||
*/
|
||||
static inline uint32_t osmo_load32le_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint32_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint32_t)q[i] << (8 * i)), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
/*! \brief load unaligned n-byte integer (big-endian encoding) into uint32_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 32 bit unsigned integer
|
||||
*/
|
||||
static inline uint32_t osmo_load32be_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint32_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint32_t)q[i] << (32 - 8* (1 + i))), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned n-byte integer (little-endian encoding) from uint32_t
|
||||
* \param[in] x unsigned 32 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store32le_ext(uint32_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> i * 8) & 0xFF, i++);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned n-byte integer (big-endian encoding) from uint32_t
|
||||
* \param[in] x unsigned 32 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store32be_ext(uint32_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> ((n - 1 - i) * 8)) & 0xFF, i++);
|
||||
}
|
||||
|
||||
|
||||
/* Convenience function for most-used cases */
|
||||
|
||||
|
||||
/*! \brief load unaligned 32-bit integer (little-endian encoding) */
|
||||
static inline uint32_t osmo_load32le(const void *p)
|
||||
{
|
||||
return osmo_load32le_ext(p, 32 / 8);
|
||||
}
|
||||
|
||||
/*! \brief load unaligned 32-bit integer (big-endian encoding) */
|
||||
static inline uint32_t osmo_load32be(const void *p)
|
||||
{
|
||||
return osmo_load32be_ext(p, 32 / 8);
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned 32-bit integer (little-endian encoding) */
|
||||
static inline void osmo_store32le(uint32_t x, void *p)
|
||||
{
|
||||
osmo_store32le_ext(x, p, 32 / 8);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned 32-bit integer (big-endian encoding) */
|
||||
static inline void osmo_store32be(uint32_t x, void *p)
|
||||
{
|
||||
osmo_store32be_ext(x, p, 32 / 8);
|
||||
}
|
||||
105
firmware/libosmocore/include/osmocom/core/bit64gen.h
Normal file
105
firmware/libosmocore/include/osmocom/core/bit64gen.h
Normal file
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
* bit64gen.h
|
||||
*
|
||||
* Copyright (C) 2014 Max <max.suraev@fairwaves.co>
|
||||
*
|
||||
* All Rights Reserved
|
||||
*
|
||||
* 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 2 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/*! \brief load unaligned n-byte integer (little-endian encoding) into uint64_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 64 bit unsigned integer
|
||||
*/
|
||||
static inline uint64_t osmo_load64le_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint64_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint64_t)q[i] << (8 * i)), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
/*! \brief load unaligned n-byte integer (big-endian encoding) into uint64_t
|
||||
* \param[in] p Buffer where integer is stored
|
||||
* \param[in] n Number of bytes stored in p
|
||||
* \returns 64 bit unsigned integer
|
||||
*/
|
||||
static inline uint64_t osmo_load64be_ext(const void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint64_t r = 0;
|
||||
const uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; r |= ((uint64_t)q[i] << (64 - 8* (1 + i))), i++);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned n-byte integer (little-endian encoding) from uint64_t
|
||||
* \param[in] x unsigned 64 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store64le_ext(uint64_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> i * 8) & 0xFF, i++);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned n-byte integer (big-endian encoding) from uint64_t
|
||||
* \param[in] x unsigned 64 bit integer
|
||||
* \param[out] p Buffer to store integer
|
||||
* \param[in] n Number of bytes to store
|
||||
*/
|
||||
static inline void osmo_store64be_ext(uint64_t x, void *p, uint8_t n)
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t *q = (uint8_t *)p;
|
||||
for(i = 0; i < n; q[i] = (x >> ((n - 1 - i) * 8)) & 0xFF, i++);
|
||||
}
|
||||
|
||||
|
||||
/* Convenience function for most-used cases */
|
||||
|
||||
|
||||
/*! \brief load unaligned 64-bit integer (little-endian encoding) */
|
||||
static inline uint64_t osmo_load64le(const void *p)
|
||||
{
|
||||
return osmo_load64le_ext(p, 64 / 8);
|
||||
}
|
||||
|
||||
/*! \brief load unaligned 64-bit integer (big-endian encoding) */
|
||||
static inline uint64_t osmo_load64be(const void *p)
|
||||
{
|
||||
return osmo_load64be_ext(p, 64 / 8);
|
||||
}
|
||||
|
||||
|
||||
/*! \brief store unaligned 64-bit integer (little-endian encoding) */
|
||||
static inline void osmo_store64le(uint64_t x, void *p)
|
||||
{
|
||||
osmo_store64le_ext(x, p, 64 / 8);
|
||||
}
|
||||
|
||||
/*! \brief store unaligned 64-bit integer (big-endian encoding) */
|
||||
static inline void osmo_store64be(uint64_t x, void *p)
|
||||
{
|
||||
osmo_store64be_ext(x, p, 64 / 8);
|
||||
}
|
||||
118
firmware/libosmocore/include/osmocom/core/bits.h
Normal file
118
firmware/libosmocore/include/osmocom/core/bits.h
Normal file
@@ -0,0 +1,118 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <osmocom/core/bit16gen.h>
|
||||
#include <osmocom/core/bit32gen.h>
|
||||
#include <osmocom/core/bit64gen.h>
|
||||
|
||||
/*! \defgroup bits soft, unpacked and packed bits
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*! \file bits.h
|
||||
* \brief Osmocom bit level support code
|
||||
*
|
||||
* NOTE on the endianess of pbit_t:
|
||||
* Bits in a pbit_t are ordered MSB first, i.e. 0x80 is the first bit.
|
||||
* Bit i in a pbit_t array is array[i/8] & (1<<(7-i%8))
|
||||
*/
|
||||
|
||||
typedef int8_t sbit_t; /*!< \brief soft bit (-127...127) */
|
||||
typedef uint8_t ubit_t; /*!< \brief unpacked bit (0 or 1) */
|
||||
typedef uint8_t pbit_t; /*!< \brief packed bis (8 bits in a byte) */
|
||||
|
||||
/*! \brief determine how many bytes we would need for \a num_bits packed bits
|
||||
* \param[in] num_bits Number of packed bits
|
||||
* \returns number of bytes needed for \a num_bits packed bits
|
||||
*/
|
||||
static inline unsigned int osmo_pbit_bytesize(unsigned int num_bits)
|
||||
{
|
||||
unsigned int pbit_bytesize = num_bits / 8;
|
||||
|
||||
if (num_bits % 8)
|
||||
pbit_bytesize++;
|
||||
|
||||
return pbit_bytesize;
|
||||
}
|
||||
|
||||
int osmo_ubit2pbit(pbit_t *out, const ubit_t *in, unsigned int num_bits);
|
||||
|
||||
int osmo_pbit2ubit(ubit_t *out, const pbit_t *in, unsigned int num_bits);
|
||||
|
||||
void osmo_nibble_shift_right(uint8_t *out, const uint8_t *in,
|
||||
unsigned int num_nibbles);
|
||||
void osmo_nibble_shift_left_unal(uint8_t *out, const uint8_t *in,
|
||||
unsigned int num_nibbles);
|
||||
|
||||
void osmo_ubit2sbit(sbit_t *out, const ubit_t *in, unsigned int num_bits);
|
||||
void osmo_sbit2ubit(ubit_t *out, const sbit_t *in, unsigned int num_bits);
|
||||
|
||||
int osmo_ubit2pbit_ext(pbit_t *out, unsigned int out_ofs,
|
||||
const ubit_t *in, unsigned int in_ofs,
|
||||
unsigned int num_bits, int lsb_mode);
|
||||
|
||||
int osmo_pbit2ubit_ext(ubit_t *out, unsigned int out_ofs,
|
||||
const pbit_t *in, unsigned int in_ofs,
|
||||
unsigned int num_bits, int lsb_mode);
|
||||
|
||||
#define OSMO_BIN_SPEC "%d%d%d%d%d%d%d%d"
|
||||
#define OSMO_BIN_PRINT(byte) \
|
||||
(byte & 0x80 ? 1 : 0), \
|
||||
(byte & 0x40 ? 1 : 0), \
|
||||
(byte & 0x20 ? 1 : 0), \
|
||||
(byte & 0x10 ? 1 : 0), \
|
||||
(byte & 0x08 ? 1 : 0), \
|
||||
(byte & 0x04 ? 1 : 0), \
|
||||
(byte & 0x02 ? 1 : 0), \
|
||||
(byte & 0x01 ? 1 : 0)
|
||||
|
||||
#define OSMO_BIT_SPEC "%c%c%c%c%c%c%c%c"
|
||||
#define OSMO_BIT_PRINT(byte) \
|
||||
(byte & 0x80 ? '1' : '.'), \
|
||||
(byte & 0x40 ? '1' : '.'), \
|
||||
(byte & 0x20 ? '1' : '.'), \
|
||||
(byte & 0x10 ? '1' : '.'), \
|
||||
(byte & 0x08 ? '1' : '.'), \
|
||||
(byte & 0x04 ? '1' : '.'), \
|
||||
(byte & 0x02 ? '1' : '.'), \
|
||||
(byte & 0x01 ? '1' : '.')
|
||||
|
||||
/* BIT REVERSAL */
|
||||
|
||||
/*! \brief bit-reversal mode for osmo_bit_reversal() */
|
||||
enum osmo_br_mode {
|
||||
/*! \brief reverse all bits in a 32bit dword */
|
||||
OSMO_BR_BITS_IN_DWORD = 31,
|
||||
/*! \brief reverse byte order in a 32bit dword */
|
||||
OSMO_BR_BYTES_IN_DWORD = 24,
|
||||
/*! \brief reverse bits of each byte in a 32bit dword */
|
||||
OSMO_BR_BITS_IN_BYTE = 7,
|
||||
/*! \brief swap the two 16bit words in a 32bit dword */
|
||||
OSMO_BR_WORD_SWAP = 16,
|
||||
};
|
||||
|
||||
/*! \brief generic bit reversal function */
|
||||
uint32_t osmo_bit_reversal(uint32_t x, enum osmo_br_mode k);
|
||||
|
||||
/* \brief reverse the bits within each byte of a 32bit word */
|
||||
uint32_t osmo_revbytebits_32(uint32_t x);
|
||||
|
||||
/* \brief reverse the bits within a byte */
|
||||
uint32_t osmo_revbytebits_8(uint8_t x);
|
||||
|
||||
/* \brief reverse the bits of each byte in a given buffer */
|
||||
void osmo_revbytebits_buf(uint8_t *buf, int len);
|
||||
|
||||
/*! \brief left circular shift
|
||||
* \param[in] in The 16 bit unsigned integer to be rotated
|
||||
* \param[in] shift Number of bits to shift \a in to, [0;16] bits
|
||||
* \returns shifted value
|
||||
*/
|
||||
static inline uint16_t osmo_rol16(uint16_t in, unsigned shift)
|
||||
{
|
||||
return (in << shift) | (in >> (16 - shift));
|
||||
}
|
||||
|
||||
/*! @} */
|
||||
47
firmware/libosmocore/include/osmocom/core/defs.h
Normal file
47
firmware/libosmocore/include/osmocom/core/defs.h
Normal file
@@ -0,0 +1,47 @@
|
||||
#pragma once
|
||||
|
||||
/*! \defgroup utils General-purpose utility functions
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*! \file defs.h
|
||||
* \brief General definitions that are meant to be included from header files.
|
||||
*/
|
||||
|
||||
/*! \brief Check for gcc and version.
|
||||
*
|
||||
* \note Albeit glibc provides a features.h file that contains a similar
|
||||
* definition (__GNUC_PREREQ), this definition has been copied from there
|
||||
* to have it available with other libraries, too.
|
||||
*
|
||||
* \return != 0 iff gcc is used and it's version is at least maj.min.
|
||||
*/
|
||||
#if defined __GNUC__ && defined __GNUC_MINOR__
|
||||
# define OSMO_GNUC_PREREQ(maj, min) \
|
||||
((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
|
||||
#else
|
||||
# define OSMO_GNUC_PREREQ(maj, min) 0
|
||||
#endif
|
||||
|
||||
/*! \brief Set the deprecated attribute with a message.
|
||||
*/
|
||||
#if defined(__clang__)
|
||||
# define _OSMO_HAS_ATTRIBUTE_DEPRECATED __has_attribute(deprecated)
|
||||
# define _OSMO_HAS_ATTRIBUTE_DEPRECATED_WITH_MESSAGE __has_extension(attribute_deprecated_with_message)
|
||||
#elif defined(__GNUC__)
|
||||
# define _OSMO_HAS_ATTRIBUTE_DEPRECATED 1
|
||||
# define _OSMO_HAS_ATTRIBUTE_DEPRECATED_WITH_MESSAGE OSMO_GNUC_PREREQ(4,5)
|
||||
#endif
|
||||
|
||||
#if _OSMO_HAS_ATTRIBUTE_DEPRECATED_WITH_MESSAGE
|
||||
# define OSMO_DEPRECATED(text) __attribute__((__deprecated__(text)))
|
||||
#elif _OSMO_HAS_ATTRIBUTE_DEPRECATED
|
||||
# define OSMO_DEPRECATED(text) __attribute__((__deprecated__))
|
||||
#else
|
||||
# define OSMO_DEPRECATED(text)
|
||||
#endif
|
||||
|
||||
#undef _OSMO_HAS_ATTRIBUTE_DEPRECATED_WITH_MESSAGE
|
||||
#undef _OSMO_HAS_ATTRIBUTE_DEPRECATED
|
||||
|
||||
/*! @} */
|
||||
510
firmware/libosmocore/include/osmocom/core/msgb.h
Normal file
510
firmware/libosmocore/include/osmocom/core/msgb.h
Normal file
@@ -0,0 +1,510 @@
|
||||
#pragma once
|
||||
|
||||
/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
|
||||
* All Rights Reserved
|
||||
*
|
||||
* 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 2 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.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <osmocom/core/linuxlist.h>
|
||||
#include <osmocom/core/utils.h>
|
||||
#include <osmocom/core/bits.h>
|
||||
#include <osmocom/core/defs.h>
|
||||
|
||||
/*! \defgroup msgb Message buffers
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*! \file msgb.h
|
||||
* \brief Osmocom message buffers
|
||||
* The Osmocom message buffers are modelled after the 'struct skb'
|
||||
* inside the Linux kernel network stack. As they exist in userspace,
|
||||
* they are much simplified. However, terminology such as headroom,
|
||||
* tailroom, push/pull/put etc. remains the same.
|
||||
*/
|
||||
|
||||
#define MSGB_DEBUG
|
||||
|
||||
/*! \brief Osmocom message buffer */
|
||||
struct msgb {
|
||||
struct llist_head list; /*!< \brief linked list header */
|
||||
|
||||
|
||||
/* Part of which TRX logical channel we were received / transmitted */
|
||||
/* FIXME: move them into the control buffer */
|
||||
union {
|
||||
void *dst; /*!< \brief reference of origin/destination */
|
||||
struct gsm_bts_trx *trx;
|
||||
};
|
||||
struct gsm_lchan *lchan; /*!< \brief logical channel */
|
||||
|
||||
unsigned char *l1h; /*!< \brief pointer to Layer1 header (if any) */
|
||||
unsigned char *l2h; /*!< \brief pointer to A-bis layer 2 header: OML, RSL(RLL), NS */
|
||||
unsigned char *l3h; /*!< \brief pointer to Layer 3 header. For OML: FOM; RSL: 04.08; GPRS: BSSGP */
|
||||
unsigned char *l4h; /*!< \brief pointer to layer 4 header */
|
||||
|
||||
unsigned long cb[5]; /*!< \brief control buffer */
|
||||
|
||||
uint16_t data_len; /*!< \brief length of underlying data array */
|
||||
uint16_t len; /*!< \brief length of bytes used in msgb */
|
||||
|
||||
unsigned char *head; /*!< \brief start of underlying memory buffer */
|
||||
unsigned char *tail; /*!< \brief end of message in buffer */
|
||||
unsigned char *data; /*!< \brief start of message in buffer */
|
||||
unsigned char _data[0]; /*!< \brief optional immediate data array */
|
||||
};
|
||||
|
||||
extern struct msgb *msgb_alloc(uint16_t size, const char *name);
|
||||
extern void msgb_free(struct msgb *m);
|
||||
extern void msgb_enqueue(struct llist_head *queue, struct msgb *msg);
|
||||
extern struct msgb *msgb_dequeue(struct llist_head *queue);
|
||||
extern void msgb_reset(struct msgb *m);
|
||||
uint16_t msgb_length(const struct msgb *msg);
|
||||
extern const char *msgb_hexdump(const struct msgb *msg);
|
||||
extern int msgb_resize_area(struct msgb *msg, uint8_t *area,
|
||||
int old_size, int new_size);
|
||||
extern struct msgb *msgb_copy(const struct msgb *msg, const char *name);
|
||||
static int msgb_test_invariant(const struct msgb *msg) __attribute__((pure));
|
||||
|
||||
#ifdef MSGB_DEBUG
|
||||
#include <osmocom/core/panic.h>
|
||||
#define MSGB_ABORT(msg, fmt, args ...) do { \
|
||||
osmo_panic("msgb(%p): " fmt, msg, ## args); \
|
||||
} while(0)
|
||||
#else
|
||||
#define MSGB_ABORT(msg, fmt, args ...)
|
||||
#endif
|
||||
|
||||
/*! \brief obtain L1 header of msgb */
|
||||
#define msgb_l1(m) ((void *)(m->l1h))
|
||||
/*! \brief obtain L2 header of msgb */
|
||||
#define msgb_l2(m) ((void *)(m->l2h))
|
||||
/*! \brief obtain L3 header of msgb */
|
||||
#define msgb_l3(m) ((void *)(m->l3h))
|
||||
/*! \brief obtain SMS header of msgb */
|
||||
#define msgb_sms(m) ((void *)(m->l4h))
|
||||
|
||||
/*! \brief determine length of L1 message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns size of L1 message in bytes
|
||||
*
|
||||
* This function computes the number of bytes between the tail of the
|
||||
* message and the layer 1 header.
|
||||
*/
|
||||
static inline unsigned int msgb_l1len(const struct msgb *msgb)
|
||||
{
|
||||
return msgb->tail - (uint8_t *)msgb_l1(msgb);
|
||||
}
|
||||
|
||||
/*! \brief determine length of L2 message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns size of L2 message in bytes
|
||||
*
|
||||
* This function computes the number of bytes between the tail of the
|
||||
* message and the layer 2 header.
|
||||
*/
|
||||
static inline unsigned int msgb_l2len(const struct msgb *msgb)
|
||||
{
|
||||
return msgb->tail - (uint8_t *)msgb_l2(msgb);
|
||||
}
|
||||
|
||||
/*! \brief determine length of L3 message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns size of L3 message in bytes
|
||||
*
|
||||
* This function computes the number of bytes between the tail of the
|
||||
* message and the layer 3 header.
|
||||
*/
|
||||
static inline unsigned int msgb_l3len(const struct msgb *msgb)
|
||||
{
|
||||
return msgb->tail - (uint8_t *)msgb_l3(msgb);
|
||||
}
|
||||
|
||||
/*! \brief determine the length of the header
|
||||
* \param[in] msgb message buffer
|
||||
* \returns number of bytes between start of buffer and start of msg
|
||||
*
|
||||
* This function computes the length difference between the underlying
|
||||
* data buffer and the used section of the \a msgb.
|
||||
*/
|
||||
static inline unsigned int msgb_headlen(const struct msgb *msgb)
|
||||
{
|
||||
return msgb->len - msgb->data_len;
|
||||
}
|
||||
|
||||
/*! \brief determine how much tail room is left in msgb
|
||||
* \param[in] msgb message buffer
|
||||
* \returns number of bytes remaining at end of msgb
|
||||
*
|
||||
* This function computes the amount of octets left in the underlying
|
||||
* data buffer after the end of the message.
|
||||
*/
|
||||
static inline int msgb_tailroom(const struct msgb *msgb)
|
||||
{
|
||||
return (msgb->head + msgb->data_len) - msgb->tail;
|
||||
}
|
||||
|
||||
/*! \brief determine the amount of headroom in msgb
|
||||
* \param[in] msgb message buffer
|
||||
* \returns number of bytes left ahead of message start in msgb
|
||||
*
|
||||
* This function computes the amount of bytes left in the underlying
|
||||
* data buffer before the start of the actual message.
|
||||
*/
|
||||
static inline int msgb_headroom(const struct msgb *msgb)
|
||||
{
|
||||
return (msgb->data - msgb->head);
|
||||
}
|
||||
|
||||
/*! \brief append data to end of message buffer
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] len number of bytes to append to message
|
||||
* \returns pointer to start of newly-appended data
|
||||
*
|
||||
* This function will move the \a tail pointer of the message buffer \a
|
||||
* len bytes further, thus enlarging the message by \a len bytes.
|
||||
*
|
||||
* The return value is a pointer to start of the newly added section at
|
||||
* the end of the message and can be used for actually filling/copying
|
||||
* data into it.
|
||||
*/
|
||||
static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
|
||||
{
|
||||
unsigned char *tmp = msgb->tail;
|
||||
if (msgb_tailroom(msgb) < (int) len)
|
||||
MSGB_ABORT(msgb, "Not enough tailroom msgb_put (%u < %u)\n",
|
||||
msgb_tailroom(msgb), len);
|
||||
msgb->tail += len;
|
||||
msgb->len += len;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
/*! \brief append a uint8 value to the end of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 8bit byte to be appended
|
||||
*/
|
||||
static inline void msgb_put_u8(struct msgb *msgb, uint8_t word)
|
||||
{
|
||||
uint8_t *space = msgb_put(msgb, 1);
|
||||
space[0] = word & 0xFF;
|
||||
}
|
||||
|
||||
/*! \brief append a uint16 value to the end of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 16bit byte to be appended
|
||||
*/
|
||||
static inline void msgb_put_u16(struct msgb *msgb, uint16_t word)
|
||||
{
|
||||
uint8_t *space = msgb_put(msgb, 2);
|
||||
osmo_store16be(word, space);
|
||||
}
|
||||
|
||||
/*! \brief append a uint32 value to the end of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 32bit byte to be appended
|
||||
*/
|
||||
static inline void msgb_put_u32(struct msgb *msgb, uint32_t word)
|
||||
{
|
||||
uint8_t *space = msgb_put(msgb, 4);
|
||||
osmo_store32be(word, space);
|
||||
}
|
||||
|
||||
/*! \brief remove data from end of message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] len number of bytes to remove from end
|
||||
*/
|
||||
static inline unsigned char *msgb_get(struct msgb *msgb, unsigned int len)
|
||||
{
|
||||
unsigned char *tmp = msgb->tail - len;
|
||||
if (msgb_length(msgb) < len)
|
||||
MSGB_ABORT(msgb, "msgb too small to get %u (len %u)\n",
|
||||
len, msgb_length(msgb));
|
||||
msgb->tail -= len;
|
||||
msgb->len -= len;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
/*! \brief remove uint8 from end of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 8bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint8_t msgb_get_u8(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_get(msgb, 1);
|
||||
return space[0];
|
||||
}
|
||||
|
||||
/*! \brief remove uint16 from end of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 16bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint16_t msgb_get_u16(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_get(msgb, 2);
|
||||
return osmo_load16be(space);
|
||||
}
|
||||
|
||||
/*! \brief remove uint32 from end of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 32bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint32_t msgb_get_u32(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_get(msgb, 4);
|
||||
return osmo_load32be(space);
|
||||
}
|
||||
|
||||
/*! \brief prepend (push) some data to start of message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] len number of bytes to pre-pend
|
||||
* \returns pointer to newly added portion at start of \a msgb
|
||||
*
|
||||
* This function moves the \a data pointer of the \ref msgb further
|
||||
* to the front (by \a len bytes), thereby enlarging the message by \a
|
||||
* len bytes.
|
||||
*
|
||||
* The return value is a pointer to the newly added section in the
|
||||
* beginning of the message. It can be used to fill/copy data into it.
|
||||
*/
|
||||
static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
|
||||
{
|
||||
if (msgb_headroom(msgb) < (int) len)
|
||||
MSGB_ABORT(msgb, "Not enough headroom msgb_push (%u < %u)\n",
|
||||
msgb_headroom(msgb), len);
|
||||
msgb->data -= len;
|
||||
msgb->len += len;
|
||||
return msgb->data;
|
||||
}
|
||||
|
||||
/*! \brief prepend a uint8 value to the head of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 8bit byte to be prepended
|
||||
*/
|
||||
static inline void msgb_push_u8(struct msgb *msg, uint8_t word)
|
||||
{
|
||||
uint8_t *space = msgb_push(msg, 1);
|
||||
space[0] = word;
|
||||
}
|
||||
|
||||
/*! \brief prepend a uint16 value to the head of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 16bit byte to be prepended
|
||||
*/
|
||||
static inline void msgb_push_u16(struct msgb *msg, uint16_t word)
|
||||
{
|
||||
uint16_t *space = (uint16_t *) msgb_push(msg, 2);
|
||||
osmo_store16be(word, space);
|
||||
}
|
||||
|
||||
/*! \brief prepend a uint32 value to the head of the message
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] word unsigned 32bit byte to be prepended
|
||||
*/
|
||||
static inline void msgb_push_u32(struct msgb *msg, uint32_t word)
|
||||
{
|
||||
uint32_t *space = (uint32_t *) msgb_push(msg, 4);
|
||||
osmo_store32be(word, space);
|
||||
}
|
||||
|
||||
/*! \brief remove (pull) a header from the front of the message buffer
|
||||
* \param[in] msgb message buffer
|
||||
* \param[in] len number of octets to be pulled
|
||||
* \returns pointer to new start of msgb
|
||||
*
|
||||
* This function moves the \a data pointer of the \ref msgb further back
|
||||
* in the message, thereby shrinking the size of the message by \a len
|
||||
* bytes.
|
||||
*/
|
||||
static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
|
||||
{
|
||||
msgb->len -= len;
|
||||
return msgb->data += len;
|
||||
}
|
||||
|
||||
/*! \brief remove (pull) all headers in front of l3h from the message buffer.
|
||||
* \param[in] msgb message buffer with a valid l3h
|
||||
* \returns pointer to new start of msgb (l3h)
|
||||
*
|
||||
* This function moves the \a data pointer of the \ref msgb further back
|
||||
* in the message, thereby shrinking the size of the message.
|
||||
* l1h and l2h will be cleared.
|
||||
*/
|
||||
static inline unsigned char *msgb_pull_to_l3(struct msgb *msg)
|
||||
{
|
||||
unsigned char *ret = msgb_pull(msg, msg->l3h - msg->data);
|
||||
msg->l1h = msg->l2h = NULL;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*! \brief remove (pull) all headers in front of l2h from the message buffer.
|
||||
* \param[in] msgb message buffer with a valid l2h
|
||||
* \returns pointer to new start of msgb (l2h)
|
||||
*
|
||||
* This function moves the \a data pointer of the \ref msgb further back
|
||||
* in the message, thereby shrinking the size of the message.
|
||||
* l1h will be cleared.
|
||||
*/
|
||||
static inline unsigned char *msgb_pull_to_l2(struct msgb *msg)
|
||||
{
|
||||
unsigned char *ret = msgb_pull(msg, msg->l2h - msg->data);
|
||||
msg->l1h = NULL;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*! \brief remove uint8 from front of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 8bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint8_t msgb_pull_u8(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_pull(msgb, 1) - 1;
|
||||
return space[0];
|
||||
}
|
||||
|
||||
/*! \brief remove uint16 from front of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 16bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint16_t msgb_pull_u16(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_pull(msgb, 2) - 2;
|
||||
return osmo_load16be(space);
|
||||
}
|
||||
|
||||
/*! \brief remove uint32 from front of message
|
||||
* \param[in] msgb message buffer
|
||||
* \returns 32bit value taken from end of msgb
|
||||
*/
|
||||
static inline uint32_t msgb_pull_u32(struct msgb *msgb)
|
||||
{
|
||||
uint8_t *space = msgb_pull(msgb, 4) - 4;
|
||||
return osmo_load32be(space);
|
||||
}
|
||||
|
||||
/*! \brief Increase headroom of empty msgb, reducing the tailroom
|
||||
* \param[in] msg message buffer
|
||||
* \param[in] len amount of extra octets to be reserved as headroom
|
||||
*
|
||||
* This function reserves some memory at the beginning of the underlying
|
||||
* data buffer. The idea is to reserve space in case further headers
|
||||
* have to be pushed to the \ref msgb during further processing.
|
||||
*
|
||||
* Calling this function leads to undefined reusults if it is called on
|
||||
* a non-empty \ref msgb.
|
||||
*/
|
||||
static inline void msgb_reserve(struct msgb *msg, int len)
|
||||
{
|
||||
msg->data += len;
|
||||
msg->tail += len;
|
||||
}
|
||||
|
||||
/*! \brief Trim the msgb to a given absolute length
|
||||
* \param[in] msg message buffer
|
||||
* \param[in] len new total length of buffer
|
||||
* \returns 0 in case of success, negative in case of error
|
||||
*/
|
||||
static inline int msgb_trim(struct msgb *msg, int len)
|
||||
{
|
||||
if (len < 0)
|
||||
MSGB_ABORT(msg, "Negative length is not allowed\n");
|
||||
if (len > msg->data_len)
|
||||
return -1;
|
||||
|
||||
msg->len = len;
|
||||
msg->tail = msg->data + len;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*! \brief Trim the msgb to a given layer3 length
|
||||
* \param[in] msg message buffer
|
||||
* \param[in] l3len new layer3 length
|
||||
* \returns 0 in case of success, negative in case of error
|
||||
*/
|
||||
static inline int msgb_l3trim(struct msgb *msg, int l3len)
|
||||
{
|
||||
return msgb_trim(msg, (msg->l3h - msg->data) + l3len);
|
||||
}
|
||||
|
||||
/*! \brief Allocate message buffer with specified headroom
|
||||
* \param[in] size size in bytes, including headroom
|
||||
* \param[in] headroom headroom in bytes
|
||||
* \param[in] name human-readable name
|
||||
* \returns allocated message buffer with specified headroom
|
||||
*
|
||||
* This function is a convenience wrapper around \ref msgb_alloc
|
||||
* followed by \ref msgb_reserve in order to create a new \ref msgb with
|
||||
* user-specified amount of headroom.
|
||||
*/
|
||||
static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
|
||||
const char *name)
|
||||
{
|
||||
osmo_static_assert(size > headroom, headroom_bigger);
|
||||
|
||||
struct msgb *msg = msgb_alloc(size, name);
|
||||
if (msg)
|
||||
msgb_reserve(msg, headroom);
|
||||
return msg;
|
||||
}
|
||||
|
||||
/*! \brief Check a message buffer for consistency
|
||||
* \param[in] msg message buffer
|
||||
* \returns 0 (false) if inconsistent, != 0 (true) otherwise
|
||||
*/
|
||||
static inline int msgb_test_invariant(const struct msgb *msg)
|
||||
{
|
||||
const unsigned char *lbound;
|
||||
if (!msg || !msg->data || !msg->tail ||
|
||||
(msg->data + msg->len != msg->tail) ||
|
||||
(msg->data < msg->head) ||
|
||||
(msg->tail > msg->head + msg->data_len))
|
||||
return 0;
|
||||
|
||||
lbound = msg->head;
|
||||
|
||||
if (msg->l1h) {
|
||||
if (msg->l1h < lbound)
|
||||
return 0;
|
||||
lbound = msg->l1h;
|
||||
}
|
||||
if (msg->l2h) {
|
||||
if (msg->l2h < lbound)
|
||||
return 0;
|
||||
lbound = msg->l2h;
|
||||
}
|
||||
if (msg->l3h) {
|
||||
if (msg->l3h < lbound)
|
||||
return 0;
|
||||
lbound = msg->l3h;
|
||||
}
|
||||
if (msg->l4h) {
|
||||
if (msg->l4h < lbound)
|
||||
return 0;
|
||||
lbound = msg->l4h;
|
||||
}
|
||||
|
||||
return lbound <= msg->head + msg->data_len;
|
||||
}
|
||||
|
||||
/* non inline functions to ease binding */
|
||||
|
||||
uint8_t *msgb_data(const struct msgb *msg);
|
||||
|
||||
void *msgb_talloc_ctx_init(void *root_ctx, unsigned int pool_size);
|
||||
void msgb_set_talloc_ctx(void *ctx) OSMO_DEPRECATED("Use msgb_talloc_ctx_init() instead");
|
||||
|
||||
/*! @} */
|
||||
17
firmware/libosmocore/include/osmocom/core/panic.h
Normal file
17
firmware/libosmocore/include/osmocom/core/panic.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
/*! \addtogroup utils
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*! \file panic.h */
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
/*! \brief panic handler callback function type */
|
||||
typedef void (*osmo_panic_handler_t)(const char *fmt, va_list args);
|
||||
|
||||
extern void osmo_panic(const char *fmt, ...);
|
||||
extern void osmo_set_panic_handler(osmo_panic_handler_t h);
|
||||
|
||||
/*! @} */
|
||||
4
firmware/libosmocore/include/osmocom/core/talloc.h
Normal file
4
firmware/libosmocore/include/osmocom/core/talloc.h
Normal file
@@ -0,0 +1,4 @@
|
||||
/* Convenience wrapper. libosmocore used to ship its own internal copy of
|
||||
* talloc, before libtalloc became a standard component on most systems */
|
||||
#pragma once
|
||||
#include <talloc.h>
|
||||
92
firmware/libosmocore/include/osmocom/core/utils.h
Normal file
92
firmware/libosmocore/include/osmocom/core/utils.h
Normal file
@@ -0,0 +1,92 @@
|
||||
#pragma once
|
||||
|
||||
#include <osmocom/core/backtrace.h>
|
||||
#include <osmocom/core/talloc.h>
|
||||
|
||||
/*! \defgroup utils General-purpose utility functions
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*! \file utils.h */
|
||||
|
||||
/*! \brief Determine number of elements in an array of static size */
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
/*! \brief Return the maximum of two specified values */
|
||||
#define OSMO_MAX(a, b) ((a) >= (b) ? (a) : (b))
|
||||
/*! \brief Return the minimum of two specified values */
|
||||
#define OSMO_MIN(a, b) ((a) >= (b) ? (b) : (a))
|
||||
/*! \brief Stringify the contents of a macro, e.g. a port number */
|
||||
#define OSMO_STRINGIFY(x) #x
|
||||
/*! \brief Make a value_string entry from an enum value name */
|
||||
#define OSMO_VALUE_STRING(x) { x, #x }
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
/*! \brief A mapping between human-readable string and numeric value */
|
||||
struct value_string {
|
||||
unsigned int value; /*!< \brief numeric value */
|
||||
const char *str; /*!< \brief human-readable string */
|
||||
};
|
||||
|
||||
const char *get_value_string(const struct value_string *vs, uint32_t val);
|
||||
const char *get_value_string_or_null(const struct value_string *vs,
|
||||
uint32_t val);
|
||||
|
||||
int get_string_value(const struct value_string *vs, const char *str);
|
||||
|
||||
char osmo_bcd2char(uint8_t bcd);
|
||||
/* only works for numbers in ascci */
|
||||
uint8_t osmo_char2bcd(char c);
|
||||
|
||||
int osmo_hexparse(const char *str, uint8_t *b, int max_len);
|
||||
|
||||
char *osmo_ubit_dump(const uint8_t *bits, unsigned int len);
|
||||
char *osmo_hexdump(const unsigned char *buf, int len);
|
||||
char *osmo_hexdump_nospc(const unsigned char *buf, int len);
|
||||
char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len) __attribute__((__deprecated__));
|
||||
|
||||
#define osmo_static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1] __attribute__((__unused__));
|
||||
|
||||
void osmo_str2lower(char *out, const char *in);
|
||||
void osmo_str2upper(char *out, const char *in);
|
||||
|
||||
#define OSMO_SNPRINTF_RET(ret, rem, offset, len) \
|
||||
do { \
|
||||
len += ret; \
|
||||
if (ret > rem) \
|
||||
ret = rem; \
|
||||
offset += ret; \
|
||||
rem -= ret; \
|
||||
} while (0)
|
||||
|
||||
/*! Helper macro to terminate when an assertion failes
|
||||
* \param[in] exp Predicate to verify
|
||||
* This function will generate a backtrace and terminate the program if
|
||||
* the predicate evaluates to false (0).
|
||||
*/
|
||||
#define OSMO_ASSERT(exp) \
|
||||
if (!(exp)) { \
|
||||
fprintf(stderr, "Assert failed %s %s:%d\n", #exp, __BASE_FILE__, __LINE__); \
|
||||
osmo_generate_backtrace(); \
|
||||
abort(); \
|
||||
}
|
||||
|
||||
/*! duplicate a string using talloc and release its prior content (if any)
|
||||
* \param[in] ctx Talloc context to use for allocation
|
||||
* \param[out] dst pointer to string, will be updated with ptr to new string
|
||||
* \param[in] newstr String that will be copieed to newly allocated string */
|
||||
static inline void osmo_talloc_replace_string(void *ctx, char **dst, const char *newstr)
|
||||
{
|
||||
if (*dst)
|
||||
talloc_free(*dst);
|
||||
*dst = talloc_strdup(ctx, newstr);
|
||||
}
|
||||
|
||||
int osmo_constant_time_cmp(const uint8_t *exp, const uint8_t *rel, const int count);
|
||||
uint64_t osmo_decode_big_endian(const uint8_t *data, size_t data_len);
|
||||
uint8_t *osmo_encode_big_endian(uint64_t value, size_t data_len);
|
||||
|
||||
size_t osmo_strlcpy(char *dst, const char *src, size_t siz);
|
||||
|
||||
/*! @} */
|
||||
Reference in New Issue
Block a user