blob: b6e67e23e09631da2404a82bdb7765a0ed96e96e [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welteec8b4502010-02-20 20:34:29 +01002
Neels Hofmeyr4335bad2017-10-07 04:39:14 +02003#include <stdbool.h>
Vadim Yanitskiy55944302018-09-05 02:58:03 +07004#include <stdint.h>
5#include <stdio.h>
Neels Hofmeyr823073a2019-10-28 04:58:04 +01006#include <string.h>
Neels Hofmeyr4335bad2017-10-07 04:39:14 +02007
Harald Welteb8add362013-07-06 23:49:41 +02008#include <osmocom/core/backtrace.h>
Harald Weltef3c7e852014-08-20 22:50:47 +02009#include <osmocom/core/talloc.h>
Harald Welte459a1802018-06-28 09:24:17 +020010#include <osmocom/core/panic.h>
Neels Hofmeyr7c749892018-09-07 03:01:38 +020011#include <osmocom/core/defs.h>
Harald Welteb8add362013-07-06 23:49:41 +020012
Harald Welte8598f182011-08-17 14:19:27 +020013/*! \defgroup utils General-purpose utility functions
14 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020015 * \file utils.h */
Harald Welte8598f182011-08-17 14:19:27 +020016
Neels Hofmeyr87e45502017-06-20 00:17:59 +020017/*! Determine number of elements in an array of static size */
Kévin Redond1e220f2019-06-13 13:41:00 +020018#ifndef ARRAY_SIZE
Harald Welteec8b4502010-02-20 20:34:29 +010019#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
Kévin Redond1e220f2019-06-13 13:41:00 +020020#endif
Neels Hofmeyr87e45502017-06-20 00:17:59 +020021/*! Return the maximum of two specified values */
Holger Hans Peter Freyther08b28622012-08-15 17:02:59 +020022#define OSMO_MAX(a, b) ((a) >= (b) ? (a) : (b))
Neels Hofmeyr87e45502017-06-20 00:17:59 +020023/*! Return the minimum of two specified values */
Holger Hans Peter Freyther08b28622012-08-15 17:02:59 +020024#define OSMO_MIN(a, b) ((a) >= (b) ? (b) : (a))
Neels Hofmeyr002a51d2019-10-30 04:37:47 +010025/*! Return a typical cmp result for comparable entities a and b. */
26#define OSMO_CMP(a, b) ((a) < (b)? -1 : ((a) > (b)? 1 : 0))
Neels Hofmeyrdc75b112017-12-09 05:51:42 +010027/*! Stringify the name of a macro x, e.g. an FSM event name.
28 * Note: if nested within another preprocessor macro, this will
29 * stringify the value of x instead of its name. */
Neels Hofmeyr18080962016-12-16 13:43:54 +010030#define OSMO_STRINGIFY(x) #x
Neels Hofmeyr84ea2e02017-12-09 05:53:18 +010031/*! Stringify the value of a macro x, e.g. a port number. */
32#define OSMO_STRINGIFY_VAL(x) OSMO_STRINGIFY(x)
Neels Hofmeyr87e45502017-06-20 00:17:59 +020033/*! Make a value_string entry from an enum value name */
Neels Hofmeyr8a5d60b2017-03-09 23:01:37 +010034#define OSMO_VALUE_STRING(x) { x, #x }
Neels Hofmeyr87e45502017-06-20 00:17:59 +020035/*! Number of bytes necessary to store given BITS */
Pau Espin Pedrol812766e2022-09-08 14:14:08 +020036#define OSMO_BYTES_FOR_BITS(BITS) (((BITS) + 7) / 8)
Harald Welteec8b4502010-02-20 20:34:29 +010037
Max18c014d2018-01-30 14:33:01 +010038/*! Copy a C-string into a sized buffer using sizeof to detect buffer's size */
39#define OSMO_STRLCPY_ARRAY(array, src) osmo_strlcpy(array, src, sizeof(array))
40
Vadim Yanitskiye59e8392022-02-02 01:17:45 +060041/*! Branch prediction optimizations */
42#if defined(__GNUC__)
43#define OSMO_LIKELY(exp) __builtin_expect(!!(exp), 1)
44#define OSMO_UNLIKELY(exp) __builtin_expect(!!(exp), 0)
45#else
46#define OSMO_LIKELY(exp) exp
47#define OSMO_UNLIKELY(exp) exp
48#endif
49
Neels Hofmeyr87e45502017-06-20 00:17:59 +020050/*! A mapping between human-readable string and numeric value */
Harald Welted284cd92010-03-01 21:58:31 +010051struct value_string {
Harald Welte7d6166a2022-01-09 11:57:01 +010052 uint32_t value; /*!< numeric value */
Neels Hofmeyr87e45502017-06-20 00:17:59 +020053 const char *str; /*!< human-readable string */
Harald Welted284cd92010-03-01 21:58:31 +010054};
55
56const char *get_value_string(const struct value_string *vs, uint32_t val);
Neels Hofmeyr8d6dcd92016-06-06 18:05:23 +020057const char *get_value_string_or_null(const struct value_string *vs,
58 uint32_t val);
Harald Weltebd598e32011-08-16 23:26:52 +020059
Harald Welted284cd92010-03-01 21:58:31 +010060int get_string_value(const struct value_string *vs, const char *str);
61
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020062char osmo_bcd2char(uint8_t bcd);
Kévin Redon77021c72019-06-13 18:12:33 +020063/* only works for numbers in ASCII */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020064uint8_t osmo_char2bcd(char c);
Harald Welted284cd92010-03-01 21:58:31 +010065
Neels Hofmeyr7079e692018-12-05 21:02:36 +010066int osmo_bcd2str(char *dst, size_t dst_size, const uint8_t *bcd, int start_nibble, int end_nibble, bool allow_hex);
Neels Hofmeyr83025bf2020-05-26 02:45:23 +020067int osmo_str2bcd(uint8_t *dst, size_t dst_size, const char *digits, int start_nibble, int end_nibble, bool allow_hex);
Neels Hofmeyr7079e692018-12-05 21:02:36 +010068
Harald Welte7d6166a2022-01-09 11:57:01 +010069int osmo_hexparse(const char *str, uint8_t *b, unsigned int max_len);
Harald Weltebd598e32011-08-16 23:26:52 +020070
Harald Welte4a62eda2019-03-18 18:27:00 +010071char *osmo_ubit_dump_buf(char *buf, size_t buf_len, const uint8_t *bits, unsigned int len);
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020072char *osmo_ubit_dump(const uint8_t *bits, unsigned int len);
Harald Welte8598f182011-08-17 14:19:27 +020073char *osmo_hexdump(const unsigned char *buf, int len);
Harald Welte179f3572019-03-18 18:38:47 +010074char *osmo_hexdump_c(const void *ctx, const unsigned char *buf, int len);
Sylvain Munautff23d242011-11-10 23:03:18 +010075char *osmo_hexdump_nospc(const unsigned char *buf, int len);
Harald Welte179f3572019-03-18 18:38:47 +010076char *osmo_hexdump_nospc_c(const void *ctx, const unsigned char *buf, int len);
Neels Hofmeyr0423b612019-01-14 23:32:53 +010077const char *osmo_hexdump_buf(char *out_buf, size_t out_buf_size, const unsigned char *buf, int len, const char *delim,
78 bool delim_after_last);
79
Sylvain Munaut4cfbae82011-11-13 23:04:00 +010080char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len) __attribute__((__deprecated__));
Harald Welte3eba9912010-07-30 10:37:29 +020081
Holger Hans Peter Freyther0f40ae12015-04-13 09:21:05 +020082#define osmo_static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1] __attribute__((__unused__));
Holger Hans Peter Freyther52c07ca2011-01-16 17:37:27 +010083
Neels Hofmeyr7c749892018-09-07 03:01:38 +020084void osmo_str2lower(char *out, const char *in)
85 OSMO_DEPRECATED("Use osmo_str_tolower() or osmo_str_tolower_buf() instead,"
86 " to properly check target memory bounds");
87void osmo_str2upper(char *out, const char *in)
88 OSMO_DEPRECATED("Use osmo_str_toupper() or osmo_str_toupper_buf() instead,"
89 " to properly check target memory bounds");
90
91size_t osmo_str_tolower_buf(char *dest, size_t dest_len, const char *src);
92const char *osmo_str_tolower(const char *src);
Harald Welte179f3572019-03-18 18:38:47 +010093char *osmo_str_tolower_c(const void *ctx, const char *src);
Neels Hofmeyr7c749892018-09-07 03:01:38 +020094
95size_t osmo_str_toupper_buf(char *dest, size_t dest_len, const char *src);
96const char *osmo_str_toupper(const char *src);
Harald Welte179f3572019-03-18 18:38:47 +010097char *osmo_str_toupper_c(const void *ctx, const char *src);
Harald Welte28222962011-02-18 20:37:04 +010098
Pablo Neira Ayuso3abad6a2011-03-28 19:24:22 +020099#define OSMO_SNPRINTF_RET(ret, rem, offset, len) \
100do { \
101 len += ret; \
102 if (ret > rem) \
103 ret = rem; \
104 offset += ret; \
105 rem -= ret; \
106} while (0)
107
Kévin Redon77021c72019-06-13 18:12:33 +0200108/*! Helper macro to terminate when an assertion fails
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200109 * \param[in] exp Predicate to verify
110 * This function will generate a backtrace and terminate the program if
111 * the predicate evaluates to false (0).
112 */
Katerina Barone-Adesi008e53b2013-03-03 10:36:52 +0000113#define OSMO_ASSERT(exp) \
Vadim Yanitskiy9ac355a2022-02-08 12:27:22 +0600114do { \
Vadim Yanitskiyc797e252022-02-08 12:37:03 +0600115 if (OSMO_UNLIKELY(!(exp))) { \
Neels Hofmeyr983dcb92018-08-20 12:33:22 +0200116 osmo_panic("Assert failed %s %s:%d\n", #exp, __FILE__, __LINE__); \
Vadim Yanitskiy9ac355a2022-02-08 12:27:22 +0600117 } \
118} while (0); /* some code invokes OSMO_ASSERT() without the semicolon */
Katerina Barone-Adesi008e53b2013-03-03 10:36:52 +0000119
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200120/*! duplicate a string using talloc and release its prior content (if any)
121 * \param[in] ctx Talloc context to use for allocation
122 * \param[out] dst pointer to string, will be updated with ptr to new string
Kévin Redon77021c72019-06-13 18:12:33 +0200123 * \param[in] newstr String that will be copied to newly allocated string */
Harald Welte881dcaf2016-07-28 08:02:48 +0200124static inline void osmo_talloc_replace_string(void *ctx, char **dst, const char *newstr)
Harald Weltef3c7e852014-08-20 22:50:47 +0200125{
126 if (*dst)
127 talloc_free(*dst);
128 *dst = talloc_strdup(ctx, newstr);
129}
Katerina Barone-Adesi008e53b2013-03-03 10:36:52 +0000130
Vadim Yanitskiyc5497192021-06-07 16:30:28 +0200131void osmo_talloc_replace_string_fmt(void *ctx, char **dst, const char *fmt, ...);
132
Neels Hofmeyrabdd7a22017-10-19 02:40:01 +0200133/*! Append to a string and re-/allocate if necessary.
134 * \param[in] ctx Talloc context to use for initial allocation.
135 * \param[in,out] dest char* to re-/allocate and append to.
136 * \param[in] fmt printf-like string format.
137 * \param[in] args Arguments for fmt.
138 *
139 * \a dest may be passed in NULL, or a string previously allocated by talloc.
140 * If an existing string is passed in, it will remain associated with whichever
141 * ctx it was allocated before, regardless whether it matches \a ctx or not.
142 */
143#define osmo_talloc_asprintf(ctx, dest, fmt, args ...) \
144 do { \
145 if (!dest) \
146 dest = talloc_asprintf(ctx, fmt, ## args); \
147 else \
148 dest = talloc_asprintf_append((char*)dest, fmt, ## args); \
149 } while (0)
150
Harald Welte9709b2e2016-04-25 18:47:53 +0200151int osmo_constant_time_cmp(const uint8_t *exp, const uint8_t *rel, const int count);
152uint64_t osmo_decode_big_endian(const uint8_t *data, size_t data_len);
153uint8_t *osmo_encode_big_endian(uint64_t value, size_t data_len);
154
Harald Welteaeecc482016-11-26 10:41:40 +0100155size_t osmo_strlcpy(char *dst, const char *src, size_t siz);
Neels Hofmeyr06356fd2019-11-19 01:38:10 +0100156const char *osmo_strnchr(const char *str, size_t str_size, char c);
Harald Welteaeecc482016-11-26 10:41:40 +0100157
Neels Hofmeyr4335bad2017-10-07 04:39:14 +0200158bool osmo_is_hexstr(const char *str, int min_digits, int max_digits,
159 bool require_even);
160
Harald Weltefebe83c2017-10-03 17:41:59 +0800161bool osmo_identifier_valid(const char *str);
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100162bool osmo_separated_identifiers_valid(const char *str, const char *sep_chars);
Neels Hofmeyrb480b742019-04-11 06:58:44 +0200163void osmo_identifier_sanitize_buf(char *str, const char *sep_chars, char replace_with);
Harald Weltefebe83c2017-10-03 17:41:59 +0800164
Neels Hofmeyr8a7eed52019-11-21 00:12:10 +0100165size_t osmo_escape_cstr_buf(char *buf, size_t bufsize, const char *str, int in_len);
166char *osmo_escape_cstr_c(void *ctx, const char *str, int in_len);
167size_t osmo_quote_cstr_buf(char *buf, size_t bufsize, const char *str, int in_len);
168char *osmo_quote_cstr_c(void *ctx, const char *str, int in_len);
169
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100170const char *osmo_escape_str(const char *str, int len);
Neels Hofmeyr16337352022-01-31 15:56:02 +0100171int osmo_escape_str_buf3(char *buf, size_t bufsize, const char *str, int in_len);
Neels Hofmeyrecef7ec2019-03-05 16:42:50 +0100172char *osmo_escape_str_buf2(char *buf, size_t bufsize, const char *str, int in_len);
173const char *osmo_escape_str_buf(const char *str, int in_len, char *buf, size_t bufsize);
Harald Welte179f3572019-03-18 18:38:47 +0100174char *osmo_escape_str_c(const void *ctx, const char *str, int in_len);
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200175const char *osmo_quote_str(const char *str, int in_len);
Neels Hofmeyr16337352022-01-31 15:56:02 +0100176int osmo_quote_str_buf3(char *buf, size_t bufsize, const char *str, int in_len);
Neels Hofmeyrecef7ec2019-03-05 16:42:50 +0100177char *osmo_quote_str_buf2(char *buf, size_t bufsize, const char *str, int in_len);
178const char *osmo_quote_str_buf(const char *str, int in_len, char *buf, size_t bufsize);
Harald Welte179f3572019-03-18 18:38:47 +0100179char *osmo_quote_str_c(const void *ctx, const char *str, int in_len);
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100180
Neels Hofmeyrecef7ec2019-03-05 16:42:50 +0100181int osmo_print_n(char *buf, size_t bufsize, const char *str, size_t n);
182
Harald Welte15a5f8d2018-06-06 16:58:17 +0200183uint32_t osmo_isqrt32(uint32_t x);
184
Philipp Maier94705d02023-01-11 10:55:47 +0100185/*! Floored Modulo (See also: Daan Leijen, Division and Modulus for Computer Scientists).
186 * \param[in] x dividend.
187 * \param[in] y divisor.
188 * \returns remainder of x divided by y. */
189#define OSMO_MOD_FLR(x, y) (((x) > 0 && (y) < 0) || ((x) < 0 && (y) > 0) ? (x) % (y) + (y) : (x) % (y))
190
191/*! Euclidean Modulo (See also: Daan Leijen, Division and Modulus for Computer Scientists).
192 * \param[in] x dividend.
193 * \param[in] y divisor.
194 * \returns remainder of x divided by y. */
195#define OSMO_MOD_EUC(x, y) ((x) % (y) < 0 ? (y) > 0 ? (x) % (y) + (y) : (x) % (y) - (y) : (x) % (y))
196
Vadim Yanitskiyd9fc6042019-06-12 15:49:03 +0700197char osmo_luhn(const char* in, int in_len);
Oliver Smith894be2d2019-01-11 13:13:37 +0100198
Neels Hofmeyr2cbe25f2019-02-11 20:32:06 +0100199/*! State for OSMO_STRBUF_APPEND() and OSMO_STRBUF_PRINTF(). See there for examples. */
200struct osmo_strbuf {
201 /*! Point to the start of a string buffer. */
202 char *buf;
203 /*! Total sizeof() the buffer buf points at. */
204 size_t len;
205 /*! Current writing position in buf (end of the string written so far). */
206 char *pos;
207 /*! After all OSMO_STRBUF_APPEND operations, reflects the total number of characters that would be written had
208 * buf been large enough. Like snprintf()'s return value, this does not include the terminating nul character.
209 * Hence, to allocate an adequately sized buffer, add 1 to this number. */
210 size_t chars_needed;
211};
212
213/*! Append a string to a buffer, as printed by an snprintf()-like function and with similar bounds checking.
214 * Make sure to never write past the end of the buffer, and collect the total size that would be needed.
215 *
216 * // an example function implementation to append: write N spaces.
217 * int print_spaces(char *dst, size_t dst_len, int n)
218 * {
219 * int i;
220 * if (n < 0)
221 * return -EINVAL;
222 * for (i = 0; i < n && i < dst_len; i++)
223 * dst[i] = ' ';
224 * if (dst_len)
225 * dst[OSMO_MIN(dst_len - 1, n)] = '\0';
226 * // return the n that we would have liked to write if space were available:
227 * return n;
228 * }
229 *
230 * // append above spaces as well as an snprintf()
231 * void strbuf_example()
232 * {
233 * char buf[23];
234 * struct osmo_strbuf sb = { .buf = buf, .len = sizeof(buf) };
235 *
236 * OSMO_STRBUF_APPEND(sb, print_spaces, 5);
237 * OSMO_STRBUF_APPEND(sb, snprintf, "The answer is %d but what is the question?", 42);
238 * OSMO_STRBUF_APPEND(sb, print_spaces, 423423);
239 *
240 * printf("%s\n", buf);
241 * printf("would have needed %zu bytes\n", sb.chars_needed);
242 * }
243 *
244 * \param[inout] STRBUF A struct osmo_strbuf instance.
245 * \param[in] func A function with a signature of int func(char *dst, size_t dst_len [, args]) with semantics like
246 * snprintf().
247 * \param[in] args Arguments passed to func, if any.
248 */
249#define OSMO_STRBUF_APPEND(STRBUF, func, args...) do { \
250 if (!(STRBUF).pos) \
251 (STRBUF).pos = (STRBUF).buf; \
Neels Hofmeyr271baad2023-12-04 06:55:24 +0100252 size_t _sb_remain = OSMO_STRBUF_REMAIN(STRBUF); \
Neels Hofmeyr8531d662019-04-11 07:16:02 +0200253 int _sb_l = func((STRBUF).pos, _sb_remain, ##args); \
Pau Espin Pedrol7af860f2021-07-27 16:32:36 +0200254 if (_sb_l < 0 || (size_t)_sb_l > _sb_remain) \
Neels Hofmeyr2cbe25f2019-02-11 20:32:06 +0100255 (STRBUF).pos = (STRBUF).buf + (STRBUF).len; \
Neels Hofmeyr8531d662019-04-11 07:16:02 +0200256 else if ((STRBUF).pos) \
257 (STRBUF).pos += _sb_l; \
258 if (_sb_l > 0) \
259 (STRBUF).chars_needed += _sb_l; \
Neels Hofmeyr2cbe25f2019-02-11 20:32:06 +0100260 } while(0)
261
262/*! Shortcut for OSMO_STRBUF_APPEND() invocation using snprintf().
263 *
264 * int strbuf_example2(char *buf, size_t buflen)
265 * {
266 * int i;
267 * struct osmo_strbuf sb = { .buf = buf, .len = buflen };
268 *
269 * OSMO_STRBUF_PRINTF(sb, "T minus");
270 * for (i = 10; i; i--)
271 * OSMO_STRBUF_PRINTF(sb, " %d", i);
272 * OSMO_STRBUF_PRINTF(sb, " ... Lift off!");
273 *
274 * return sb.chars_needed;
275 * }
276 *
277 * \param[inout] STRBUF A struct osmo_strbuf instance.
278 * \param[in] fmt Format string passed to snprintf.
279 * \param[in] args Additional arguments passed to snprintf, if any.
280 */
281#define OSMO_STRBUF_PRINTF(STRBUF, fmt, args...) \
282 OSMO_STRBUF_APPEND(STRBUF, snprintf, fmt, ##args)
283
Neels Hofmeyr271baad2023-12-04 06:55:24 +0100284/*! Return remaining space for characters and terminating nul in the given struct osmo_strbuf. */
285#define OSMO_STRBUF_REMAIN(STRBUF) ((STRBUF).buf ? (STRBUF).len - ((STRBUF).pos - (STRBUF).buf) : 0)
286
Neels Hofmeyrd511a9d2023-12-04 07:48:55 +0100287/*! Return number of actual characters contained in struct osmo_strbuf (without terminating nul). */
288#define OSMO_STRBUF_CHAR_COUNT(STRBUF) ((STRBUF).buf && ((STRBUF).pos > (STRBUF).buf) ? \
289 OSMO_MIN((STRBUF).pos - (STRBUF).buf, \
290 (STRBUF).len - 1) \
291 : 0)
292
Neels Hofmeyr8531d662019-04-11 07:16:02 +0200293/*! Like OSMO_STRBUF_APPEND(), but for function signatures that return the char* buffer instead of a length.
294 * When using this function, the final STRBUF.chars_needed may not reflect the actual number of characters needed, since
295 * that number cannot be obtained from this kind of function signature.
296 * \param[inout] STRBUF A struct osmo_strbuf instance.
297 * \param[in] func A function with a signature of char *func(char *dst, size_t dst_len [, args]) where
298 * the returned string is always written to dst.
299 * \param[in] args Arguments passed to func, if any.
300 */
301#define OSMO_STRBUF_APPEND_NOLEN(STRBUF, func, args...) do { \
302 if (!(STRBUF).pos) \
303 (STRBUF).pos = (STRBUF).buf; \
Neels Hofmeyr271baad2023-12-04 06:55:24 +0100304 size_t _sb_remain = OSMO_STRBUF_REMAIN(STRBUF); \
Neels Hofmeyr8531d662019-04-11 07:16:02 +0200305 if (_sb_remain) { \
306 func((STRBUF).pos, _sb_remain, ##args); \
307 } \
308 size_t _sb_l = (STRBUF).pos ? strnlen((STRBUF).pos, _sb_remain) : 0; \
309 if (_sb_l > _sb_remain) \
310 (STRBUF).pos = (STRBUF).buf + (STRBUF).len; \
311 else if ((STRBUF).pos) \
312 (STRBUF).pos += _sb_l; \
313 (STRBUF).chars_needed += _sb_l; \
314 } while(0)
315
Neels Hofmeyrd511a9d2023-12-04 07:48:55 +0100316void osmo_strbuf_drop_tail(struct osmo_strbuf *sb, size_t n_chars);
317/* Convenience macro. struct osmo_strbuf are typically static to a function scope. Avoid having to type '&', same as
318 * with all the other OSMO_STRBUF_* API. */
319#define OSMO_STRBUF_DROP_TAIL(STRBUF, N_CHARS) osmo_strbuf_drop_tail(&(STRBUF), N_CHARS)
320
321void osmo_strbuf_added_tail(struct osmo_strbuf *sb, size_t n_chars);
322/* Convenience macro. struct osmo_strbuf are typically static to a function scope. Avoid having to type '&', same as
323 * with all the other OSMO_STRBUF_* API. */
324#define OSMO_STRBUF_ADDED_TAIL(STRBUF, N_CHARS) osmo_strbuf_added_tail(&(STRBUF), N_CHARS)
325
Neels Hofmeyrd79ccc62019-03-07 23:08:40 +0100326bool osmo_str_startswith(const char *str, const char *startswith_str);
327
Neels Hofmeyr87c3afb2020-09-30 21:47:47 +0000328int osmo_float_str_to_int(int64_t *val, const char *str, unsigned int precision);
329int osmo_int_to_float_str_buf(char *buf, size_t buflen, int64_t val, unsigned int precision);
330char *osmo_int_to_float_str_c(void *ctx, int64_t val, unsigned int precision);
331
Neels Hofmeyr47773342021-09-05 18:48:31 +0200332int osmo_str_to_int64(int64_t *result, const char *str, int base, int64_t min_val, int64_t max_val);
333int osmo_str_to_int(int *result, const char *str, int base, int min_val, int max_val);
334
Neels Hofmeyr823073a2019-10-28 04:58:04 +0100335/*! Translate a buffer function to a talloc context function.
336 * This is the full function body of a char *foo_name_c(void *ctx, val...) function, implemented by an
337 * int foo_name_buf(buf, buflen, val...) function:
338 *
339 * char *foo_name_c(void *ctx, example_t arg)
340 * {
341 * OSMO_NAME_C_IMPL(ctx, 64, "ERROR", foo_name_buf, arg)
342 * }
343 *
344 * Return a talloc'd string containing the result of the given foo_name_buf() function, or ON_ERROR on error in the called
345 * foo_name_buf() function.
346 *
347 * If ON_ERROR is NULL, the function returns NULL on error rc from FUNC_BUF. Take care: returning NULL in printf() like
348 * formats (LOGP()) makes the program crash. If ON_ERROR is non-NULL, it must be a string constant, which is not
349 * returned directly, but written to an allocated string buffer first.
350 *
351 * \param[in] INITIAL_BUFSIZE Which size to first talloc from ctx -- a larger size makes a reallocation less likely, a
352 * smaller size allocates less unused bytes, zero allocates once but still runs the string composition twice.
353 * \param[in] ON_ERROR String constant to copy on error rc returned by FUNC_BUF, or NULL to return NULL.
Neels Hofmeyrdacac992020-05-26 02:44:21 +0200354 * \param[in] FUNC_BUF Name of a function with signature int foo_buf(char *buf, size_t buflen, ...).
355 * The function must return the strlen() that it would write to a sufficiently large buffer or
356 * negative on error, like snprintf().
Neels Hofmeyr823073a2019-10-28 04:58:04 +0100357 * \param[in] FUNC_BUF_ARGS Additional arguments to pass to FUNC_BUF after the buf and buflen.
358 */
359#define OSMO_NAME_C_IMPL(CTX, INITIAL_BUFSIZE, ON_ERROR, FUNC_BUF, FUNC_BUF_ARGS...) \
360 size_t _len = INITIAL_BUFSIZE; \
361 int _needed; \
362 char *_str = NULL; \
363 if ((INITIAL_BUFSIZE) > 0) { \
364 _str = (char*)talloc_named_const(CTX, _len, __func__); \
365 OSMO_ASSERT(_str); \
366 } \
367 _needed = FUNC_BUF(_str, _len, ## FUNC_BUF_ARGS); \
368 if (_needed < 0) \
369 goto OSMO_NAME_C_on_error; \
Harald Welte7d6166a2022-01-09 11:57:01 +0100370 if ((unsigned int) _needed < _len) \
Neels Hofmeyr823073a2019-10-28 04:58:04 +0100371 return _str; \
372 _len = _needed + 1; \
373 if (_str) \
374 talloc_free(_str); \
375 _str = (char*)talloc_named_const(CTX, _len, __func__); \
376 OSMO_ASSERT(_str); \
377 _needed = FUNC_BUF(_str, _len, ## FUNC_BUF_ARGS); \
378 if (_needed < 0) \
379 goto OSMO_NAME_C_on_error; \
380 return _str; \
381OSMO_NAME_C_on_error: \
382 /* Re-using and re-sizing above allocated buf ends up in very complex code. Just free and strdup. */ \
383 if (_str) \
384 talloc_free(_str); \
385 if (!(ON_ERROR)) \
386 return NULL; \
387 _str = talloc_strdup(CTX, ON_ERROR); \
388 OSMO_ASSERT(_str); \
389 talloc_set_name_const(_str, __func__); \
390 return _str;
391
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200392/*! @} */