blob: 479636506c1f54b6dbedec80e1ea1ba0a05f4264 [file] [log] [blame]
Harald Welte468b6432014-09-11 13:05:51 +08001/*
2 * (C) 2011 by Harald Welte <laforge@gnumonks.org>
3 * (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
4 * (C) 2014 by Nils O. SelÄsdal <noselasd@fiane.dyndns.org>
5 *
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Welte468b6432014-09-11 13:05:51 +080010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
Harald Welted284cd92010-03-01 21:58:31 +010026
Harald Weltefebe83c2017-10-03 17:41:59 +080027#include <stdbool.h>
Harald Welted284cd92010-03-01 21:58:31 +010028#include <string.h>
29#include <stdint.h>
30#include <errno.h>
Harald Welteb59f9352010-03-25 11:37:04 +080031#include <stdio.h>
Pau Espin Pedrol45735022017-06-18 14:05:24 +020032#include <inttypes.h>
Harald Welted284cd92010-03-01 21:58:31 +010033
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010034#include <osmocom/core/utils.h>
Harald Welte9709b2e2016-04-25 18:47:53 +020035#include <osmocom/core/bit64gen.h>
36
Harald Welted284cd92010-03-01 21:58:31 +010037
Harald Welte8598f182011-08-17 14:19:27 +020038/*! \addtogroup utils
39 * @{
Neels Hofmeyr87e45502017-06-20 00:17:59 +020040 * various utility routines
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020041 *
42 * \file utils.c */
Harald Welte8598f182011-08-17 14:19:27 +020043
Harald Welteb59f9352010-03-25 11:37:04 +080044static char namebuf[255];
Harald Welte8598f182011-08-17 14:19:27 +020045
Neels Hofmeyr87e45502017-06-20 00:17:59 +020046/*! get human-readable string for given value
Harald Welte8598f182011-08-17 14:19:27 +020047 * \param[in] vs Array of value_string tuples
48 * \param[in] val Value to be converted
49 * \returns pointer to human-readable string
Neels Hofmeyr8a3c83e2016-06-13 13:16:58 +020050 *
51 * If val is found in vs, the array's string entry is returned. Otherwise, an
52 * "unknown" string containing the actual value is composed in a static buffer
53 * that is reused across invocations.
Harald Welte8598f182011-08-17 14:19:27 +020054 */
Harald Welted284cd92010-03-01 21:58:31 +010055const char *get_value_string(const struct value_string *vs, uint32_t val)
56{
Neels Hofmeyr8d6dcd92016-06-06 18:05:23 +020057 const char *str = get_value_string_or_null(vs, val);
58 if (str)
59 return str;
60
Pau Espin Pedrol45735022017-06-18 14:05:24 +020061 snprintf(namebuf, sizeof(namebuf), "unknown 0x%"PRIx32, val);
Neels Hofmeyr8d6dcd92016-06-06 18:05:23 +020062 namebuf[sizeof(namebuf) - 1] = '\0';
63 return namebuf;
64}
65
Neels Hofmeyr87e45502017-06-20 00:17:59 +020066/*! get human-readable string or NULL for given value
Neels Hofmeyr8d6dcd92016-06-06 18:05:23 +020067 * \param[in] vs Array of value_string tuples
68 * \param[in] val Value to be converted
69 * \returns pointer to human-readable string or NULL if val is not found
70 */
71const char *get_value_string_or_null(const struct value_string *vs,
72 uint32_t val)
73{
Harald Welted284cd92010-03-01 21:58:31 +010074 int i;
75
Neels Hofmeyra0331ed2019-02-11 21:24:40 +010076 if (!vs)
77 return NULL;
78
Harald Welted284cd92010-03-01 21:58:31 +010079 for (i = 0;; i++) {
80 if (vs[i].value == 0 && vs[i].str == NULL)
81 break;
82 if (vs[i].value == val)
83 return vs[i].str;
84 }
Harald Welteb59f9352010-03-25 11:37:04 +080085
Neels Hofmeyr8d6dcd92016-06-06 18:05:23 +020086 return NULL;
Harald Welted284cd92010-03-01 21:58:31 +010087}
88
Neels Hofmeyr87e45502017-06-20 00:17:59 +020089/*! get numeric value for given human-readable string
Harald Welte8598f182011-08-17 14:19:27 +020090 * \param[in] vs Array of value_string tuples
91 * \param[in] str human-readable string
92 * \returns numeric value (>0) or negative numer in case of error
93 */
Harald Welted284cd92010-03-01 21:58:31 +010094int get_string_value(const struct value_string *vs, const char *str)
95{
96 int i;
97
98 for (i = 0;; i++) {
99 if (vs[i].value == 0 && vs[i].str == NULL)
100 break;
101 if (!strcasecmp(vs[i].str, str))
102 return vs[i].value;
103 }
104 return -EINVAL;
105}
Harald Weltea73e2f92010-03-04 10:50:32 +0100106
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200107/*! Convert BCD-encoded digit into printable character
Harald Welte8598f182011-08-17 14:19:27 +0200108 * \param[in] bcd A single BCD-encoded digit
109 * \returns single printable character
110 */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200111char osmo_bcd2char(uint8_t bcd)
Harald Weltea73e2f92010-03-04 10:50:32 +0100112{
113 if (bcd < 0xa)
114 return '0' + bcd;
115 else
116 return 'A' + (bcd - 0xa);
117}
118
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200119/*! Convert number in ASCII to BCD value
Harald Weltede6e4982012-12-06 21:25:27 +0100120 * \param[in] c ASCII character
121 * \returns BCD encoded value of character
122 */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200123uint8_t osmo_char2bcd(char c)
Harald Weltea73e2f92010-03-04 10:50:32 +0100124{
Harald Weltefa8983d2017-10-27 16:52:59 +0200125 if (c >= '0' && c <= '9')
126 return c - 0x30;
127 else if (c >= 'A' && c <= 'F')
128 return 0xa + (c - 'A');
129 else if (c >= 'a' && c <= 'f')
130 return 0xa + (c - 'a');
131 else
132 return 0;
Harald Weltea73e2f92010-03-04 10:50:32 +0100133}
Harald Welte3eba9912010-07-30 10:37:29 +0200134
Neels Hofmeyr7079e692018-12-05 21:02:36 +0100135/*! Convert BCD to string.
136 * The given nibble offsets are interpreted in BCD order, i.e. nibble 0 is bcd[0] & 0xf, nibble 1 is bcd[0] >> 4, nibble
137 * 3 is bcd[1] & 0xf, etc..
138 * \param[out] dst Output string buffer, is always nul terminated when dst_size > 0.
139 * \param[in] dst_size sizeof() the output string buffer.
140 * \param[in] bcd Binary coded data buffer.
141 * \param[in] start_nibble Offset to start from, in nibbles, typically 1 to skip the first nibble.
Neels Hofmeyr48b2de02018-12-11 02:13:57 +0100142 * \param[in] end_nibble Offset to stop before, in nibbles, e.g. sizeof(bcd)*2 - (bcd[0] & GSM_MI_ODD? 0:1).
Neels Hofmeyr7079e692018-12-05 21:02:36 +0100143 * \param[in] allow_hex If false, return error if there are digits other than 0-9. If true, return those as [A-F].
144 * \returns The strlen that would be written if the output buffer is large enough, excluding nul byte (like
145 * snprintf()), or -EINVAL if allow_hex is false and a digit > 9 is encountered. On -EINVAL, the conversion is
146 * still completed as if allow_hex were passed as true. Return -ENOMEM if dst is NULL or dst_size is zero.
147 * If end_nibble <= start_nibble, write an empty string to dst and return 0.
148 */
149int osmo_bcd2str(char *dst, size_t dst_size, const uint8_t *bcd, int start_nibble, int end_nibble, bool allow_hex)
150{
151 char *dst_end = dst + dst_size - 1;
152 int nibble_i;
153 int rc = 0;
154
155 if (!dst || dst_size < 1)
156 return -ENOMEM;
157
158 for (nibble_i = start_nibble; nibble_i < end_nibble && dst < dst_end; nibble_i++, dst++) {
159 uint8_t nibble = bcd[nibble_i >> 1];
160 if ((nibble_i & 1))
161 nibble >>= 4;
162 nibble &= 0xf;
163
164 if (!allow_hex && nibble > 9)
165 rc = -EINVAL;
166
167 *dst = osmo_bcd2char(nibble);
168 }
169 *dst = '\0';
170
171 if (rc < 0)
172 return rc;
173 return OSMO_MAX(0, end_nibble - start_nibble);
174}
175
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200176/*! Parse a string containing hexadecimal digits
Harald Weltede6e4982012-12-06 21:25:27 +0100177 * \param[in] str string containing ASCII encoded hexadecimal digits
178 * \param[out] b output buffer
179 * \param[in] max_len maximum space in output buffer
Neels Hofmeyr3de7b052015-09-23 23:16:53 +0200180 * \returns number of parsed octets, or -1 on error
Harald Weltede6e4982012-12-06 21:25:27 +0100181 */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200182int osmo_hexparse(const char *str, uint8_t *b, int max_len)
Harald Welte3eba9912010-07-30 10:37:29 +0200183
184{
Neels Hofmeyr437ed4a2017-02-14 15:54:31 +0100185 char c;
186 uint8_t v;
187 const char *strpos;
188 unsigned int nibblepos = 0;
Harald Welte3eba9912010-07-30 10:37:29 +0200189
190 memset(b, 0x00, max_len);
191
Neels Hofmeyr437ed4a2017-02-14 15:54:31 +0100192 for (strpos = str; (c = *strpos); strpos++) {
193 /* skip whitespace */
194 if (c == ' ' || c == '\t' || c == '\n' || c == '\r')
195 continue;
196
197 /* If the buffer is too small, error out */
198 if (nibblepos >= (max_len << 1))
199 return -1;
200
Harald Welte3eba9912010-07-30 10:37:29 +0200201 if (c >= '0' && c <= '9')
202 v = c - '0';
203 else if (c >= 'a' && c <= 'f')
204 v = 10 + (c - 'a');
205 else if (c >= 'A' && c <= 'F')
206 v = 10 + (c - 'A');
207 else
208 return -1;
Neels Hofmeyr437ed4a2017-02-14 15:54:31 +0100209
210 b[nibblepos >> 1] |= v << (nibblepos & 1 ? 0 : 4);
211 nibblepos ++;
Harald Welte3eba9912010-07-30 10:37:29 +0200212 }
213
Neels Hofmeyr437ed4a2017-02-14 15:54:31 +0100214 /* In case of uneven amount of digits, the last byte is not complete
215 * and that's an error. */
216 if (nibblepos & 1)
217 return -1;
218
219 return nibblepos >> 1;
Harald Welte3eba9912010-07-30 10:37:29 +0200220}
Harald Welte40481e82010-07-30 11:40:32 +0200221
222static char hexd_buff[4096];
Nils O. SelÄsdal32447022014-01-02 14:04:43 +0100223static const char hex_chars[] = "0123456789abcdef";
Harald Welte40481e82010-07-30 11:40:32 +0200224
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100225/*! Convert binary sequence to hexadecimal ASCII string.
226 * \param[out] out_buf Output buffer to write the resulting string to.
227 * \param[in] out_buf_size sizeof(out_buf).
228 * \param[in] buf Input buffer, pointer to sequence of bytes.
229 * \param[in] len Length of input buf in number of bytes.
230 * \param[in] delim String to separate each byte; NULL or "" for no delim.
231 * \param[in] delim_after_last If true, end the string in delim (true: "1a:ef:d9:", false: "1a:ef:d9");
232 * if out_buf has insufficient space, the string will always end in a delim.
233 * \returns out_buf, containing a zero-terminated string, or "" (empty string) if out_buf == NULL or out_buf_size < 1.
234 *
235 * This function will print a sequence of bytes as hexadecimal numbers, adding one delim between each byte (e.g. for
236 * delim passed as ":", return a string like "1a:ef:d9").
237 *
238 * The delim_after_last argument exists to be able to exactly show the original osmo_hexdump() behavior, which always
239 * ends the string with a delimiter.
240 */
241const char *osmo_hexdump_buf(char *out_buf, size_t out_buf_size, const unsigned char *buf, int len, const char *delim,
242 bool delim_after_last)
Harald Welte40481e82010-07-30 11:40:32 +0200243{
244 int i;
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100245 char *cur = out_buf;
246 size_t delim_len;
Harald Welte40481e82010-07-30 11:40:32 +0200247
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100248 if (!out_buf || !out_buf_size)
249 return "";
250
251 delim = delim ? : "";
252 delim_len = strlen(delim);
253
Harald Welte40481e82010-07-30 11:40:32 +0200254 for (i = 0; i < len; i++) {
Nils O. SelÄsdal32447022014-01-02 14:04:43 +0100255 const char *delimp = delim;
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100256 int len_remain = out_buf_size - (cur - out_buf) - 1;
257 if (len_remain < (2 + delim_len)
258 && !(!delim_after_last && i == (len - 1) && len_remain >= 2))
Holger Hans Peter Freyther128d9e22011-07-15 16:07:23 +0200259 break;
Nils O. SelÄsdal32447022014-01-02 14:04:43 +0100260
261 *cur++ = hex_chars[buf[i] >> 4];
262 *cur++ = hex_chars[buf[i] & 0xf];
263
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100264 if (i == (len - 1) && !delim_after_last)
265 break;
266
Nils O. SelÄsdal32447022014-01-02 14:04:43 +0100267 while (len_remain > 1 && *delimp) {
268 *cur++ = *delimp++;
269 len_remain--;
270 }
Harald Welte40481e82010-07-30 11:40:32 +0200271 }
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100272 *cur = '\0';
273 return out_buf;
Harald Welte40481e82010-07-30 11:40:32 +0200274}
Harald Weltedee47cd2010-07-30 11:43:30 +0200275
Harald Welte4a62eda2019-03-18 18:27:00 +0100276/*! Convert a sequence of unpacked bits to ASCII string, in user-supplied buffer.
277 * \param[out] buf caller-provided output string buffer
278 * \param[out] buf_len size of buf in bytes
Harald Welte8598f182011-08-17 14:19:27 +0200279 * \param[in] bits A sequence of unpacked bits
280 * \param[in] len Length of bits
Harald Welte4a62eda2019-03-18 18:27:00 +0100281 * \returns string representation in static buffer.
Harald Welte8598f182011-08-17 14:19:27 +0200282 */
Harald Welte4a62eda2019-03-18 18:27:00 +0100283char *osmo_ubit_dump_buf(char *buf, size_t buf_len, const uint8_t *bits, unsigned int len)
Harald Welte3d0ac5e2011-02-08 16:55:03 +0100284{
285 int i;
286
Harald Welte4a62eda2019-03-18 18:27:00 +0100287 if (len > buf_len-1)
288 len = buf_len-1;
289 memset(buf, 0, buf_len);
Harald Welte3d0ac5e2011-02-08 16:55:03 +0100290
291 for (i = 0; i < len; i++) {
292 char outch;
293 switch (bits[i]) {
294 case 0:
295 outch = '0';
296 break;
297 case 0xff:
298 outch = '?';
299 break;
300 case 1:
301 outch = '1';
302 break;
303 default:
304 outch = 'E';
305 break;
306 }
Harald Welte4a62eda2019-03-18 18:27:00 +0100307 buf[i] = outch;
Harald Welte3d0ac5e2011-02-08 16:55:03 +0100308 }
Harald Welte4a62eda2019-03-18 18:27:00 +0100309 buf[buf_len-1] = 0;
310 return buf;
311}
312
313/*! Convert a sequence of unpacked bits to ASCII string, in static buffer.
314 * \param[in] bits A sequence of unpacked bits
315 * \param[in] len Length of bits
316 * \returns string representation in static buffer.
317 */
318char *osmo_ubit_dump(const uint8_t *bits, unsigned int len)
319{
320 return osmo_ubit_dump_buf(hexd_buff, sizeof(hexd_buff), bits, len);
Harald Welte3d0ac5e2011-02-08 16:55:03 +0100321}
322
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200323/*! Convert binary sequence to hexadecimal ASCII string
Harald Welte8598f182011-08-17 14:19:27 +0200324 * \param[in] buf pointer to sequence of bytes
325 * \param[in] len length of buf in number of bytes
326 * \returns pointer to zero-terminated string
327 *
328 * This function will print a sequence of bytes as hexadecimal numbers,
329 * adding one space character between each byte (e.g. "1a ef d9")
Harald Welte096a6662017-10-16 14:33:11 +0200330 *
331 * The maximum size of the output buffer is 4096 bytes, i.e. the maximum
332 * number of input bytes that can be printed in one call is 1365!
Harald Welte8598f182011-08-17 14:19:27 +0200333 */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200334char *osmo_hexdump(const unsigned char *buf, int len)
Harald Weltedee47cd2010-07-30 11:43:30 +0200335{
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100336 osmo_hexdump_buf(hexd_buff, sizeof(hexd_buff), buf, len, " ", true);
337 return hexd_buff;
Harald Weltedee47cd2010-07-30 11:43:30 +0200338}
339
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200340/*! Convert binary sequence to hexadecimal ASCII string
Harald Welte8598f182011-08-17 14:19:27 +0200341 * \param[in] buf pointer to sequence of bytes
342 * \param[in] len length of buf in number of bytes
343 * \returns pointer to zero-terminated string
344 *
345 * This function will print a sequence of bytes as hexadecimal numbers,
346 * without any space character between each byte (e.g. "1aefd9")
Harald Welte096a6662017-10-16 14:33:11 +0200347 *
348 * The maximum size of the output buffer is 4096 bytes, i.e. the maximum
349 * number of input bytes that can be printed in one call is 2048!
Harald Welte8598f182011-08-17 14:19:27 +0200350 */
Sylvain Munautff23d242011-11-10 23:03:18 +0100351char *osmo_hexdump_nospc(const unsigned char *buf, int len)
Harald Weltedee47cd2010-07-30 11:43:30 +0200352{
Neels Hofmeyr0423b612019-01-14 23:32:53 +0100353 osmo_hexdump_buf(hexd_buff, sizeof(hexd_buff), buf, len, "", true);
354 return hexd_buff;
Harald Weltedee47cd2010-07-30 11:43:30 +0200355}
Harald Welte28222962011-02-18 20:37:04 +0100356
Holger Hans Peter Freyther9a1a5a12015-04-11 19:26:55 +0200357/* Compat with previous typo to preserve abi */
Sylvain Munaute55ae3a2011-11-11 23:06:55 +0100358char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len)
Holger Hans Peter Freyther9a1a5a12015-04-11 19:26:55 +0200359#if defined(__MACH__) && defined(__APPLE__)
360 ;
361#else
Sylvain Munaut17af41d2011-11-19 22:30:39 +0100362 __attribute__((weak, alias("osmo_hexdump_nospc")));
Holger Hans Peter Freyther9a1a5a12015-04-11 19:26:55 +0200363#endif
Sylvain Munaute55ae3a2011-11-11 23:06:55 +0100364
Harald Welte28222962011-02-18 20:37:04 +0100365#include "../config.h"
366#ifdef HAVE_CTYPE_H
367#include <ctype.h>
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200368/*! Convert an entire string to lower case
Harald Welte8598f182011-08-17 14:19:27 +0200369 * \param[out] out output string, caller-allocated
370 * \param[in] in input string
371 */
Harald Welte28222962011-02-18 20:37:04 +0100372void osmo_str2lower(char *out, const char *in)
373{
374 unsigned int i;
375
376 for (i = 0; i < strlen(in); i++)
Pau Espin Pedrol399a6f02017-06-18 14:07:37 +0200377 out[i] = tolower((const unsigned char)in[i]);
Harald Welte28222962011-02-18 20:37:04 +0100378 out[strlen(in)] = '\0';
379}
380
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200381/*! Convert an entire string to upper case
Harald Welte8598f182011-08-17 14:19:27 +0200382 * \param[out] out output string, caller-allocated
383 * \param[in] in input string
384 */
Harald Welte28222962011-02-18 20:37:04 +0100385void osmo_str2upper(char *out, const char *in)
386{
387 unsigned int i;
388
389 for (i = 0; i < strlen(in); i++)
Pau Espin Pedrol399a6f02017-06-18 14:07:37 +0200390 out[i] = toupper((const unsigned char)in[i]);
Harald Welte28222962011-02-18 20:37:04 +0100391 out[strlen(in)] = '\0';
392}
393#endif /* HAVE_CTYPE_H */
Harald Welte8598f182011-08-17 14:19:27 +0200394
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200395/*! Wishful thinking to generate a constant time compare
Harald Welte9709b2e2016-04-25 18:47:53 +0200396 * \param[in] exp Expected data
397 * \param[in] rel Comparison value
398 * \param[in] count Number of bytes to compare
399 * \returns 1 in case \a exp equals \a rel; zero otherwise
400 *
401 * Compare count bytes of exp to rel. Return 0 if they are identical, 1
402 * otherwise. Do not return a mismatch on the first mismatching byte,
403 * but always compare all bytes, regardless. The idea is that the amount of
404 * matching bytes cannot be inferred from the time the comparison took. */
405int osmo_constant_time_cmp(const uint8_t *exp, const uint8_t *rel, const int count)
406{
407 int x = 0, i;
408
409 for (i = 0; i < count; ++i)
410 x |= exp[i] ^ rel[i];
411
412 /* if x is zero, all data was identical */
413 return x? 1 : 0;
414}
415
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200416/*! Generic retrieval of 1..8 bytes as big-endian uint64_t
Harald Welte9709b2e2016-04-25 18:47:53 +0200417 * \param[in] data Input data as byte-array
418 * \param[in] data_len Length of \a data in octets
419 * \returns uint64_t of \a data interpreted as big-endian
420 *
421 * This is like osmo_load64be_ext, except that if data_len is less than
422 * sizeof(uint64_t), the data is interpreted as the least significant bytes
423 * (osmo_load64be_ext loads them as the most significant bytes into the
424 * returned uint64_t). In this way, any integer size up to 64 bits can be
425 * decoded conveniently by using sizeof(), without the need to call specific
426 * numbered functions (osmo_load16, 32, ...). */
427uint64_t osmo_decode_big_endian(const uint8_t *data, size_t data_len)
428{
429 uint64_t value = 0;
430
431 while (data_len > 0) {
432 value = (value << 8) + *data;
433 data += 1;
434 data_len -= 1;
435 }
436
437 return value;
438}
439
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200440/*! Generic big-endian encoding of big endian number up to 64bit
Harald Welte9709b2e2016-04-25 18:47:53 +0200441 * \param[in] value unsigned integer value to be stored
442 * \param[in] data_len number of octets
443 * \returns static buffer containing big-endian stored value
444 *
445 * This is like osmo_store64be_ext, except that this returns a static buffer of
446 * the result (for convenience, but not threadsafe). If data_len is less than
447 * sizeof(uint64_t), only the least significant bytes of value are encoded. */
448uint8_t *osmo_encode_big_endian(uint64_t value, size_t data_len)
449{
450 static uint8_t buf[sizeof(uint64_t)];
451 OSMO_ASSERT(data_len <= ARRAY_SIZE(buf));
452 osmo_store64be_ext(value, buf, data_len);
453 return buf;
454}
Harald Welteaeecc482016-11-26 10:41:40 +0100455
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200456/*! Copy a C-string into a sized buffer
Harald Welteaeecc482016-11-26 10:41:40 +0100457 * \param[in] src source string
458 * \param[out] dst destination string
Neels Hofmeyrdf83ece2017-01-13 13:55:43 +0100459 * \param[in] siz size of the \a dst buffer
460 * \returns length of \a src
Harald Welteaeecc482016-11-26 10:41:40 +0100461 *
Neels Hofmeyrdf83ece2017-01-13 13:55:43 +0100462 * Copy at most \a siz bytes from \a src to \a dst, ensuring that the result is
463 * NUL terminated. The NUL character is included in \a siz, i.e. passing the
464 * actual sizeof(*dst) is correct.
Harald Welteaeecc482016-11-26 10:41:40 +0100465 */
466size_t osmo_strlcpy(char *dst, const char *src, size_t siz)
467{
Neels Hofmeyrbcf9f232017-10-25 04:16:45 +0200468 size_t ret = src ? strlen(src) : 0;
Harald Welteaeecc482016-11-26 10:41:40 +0100469
470 if (siz) {
471 size_t len = (ret >= siz) ? siz - 1 : ret;
Neels Hofmeyrebd3cdd2017-11-18 23:07:38 +0100472 if (src)
473 memcpy(dst, src, len);
Harald Welteaeecc482016-11-26 10:41:40 +0100474 dst[len] = '\0';
475 }
476 return ret;
477}
Neels Hofmeyr0aeda1b2017-01-13 14:16:02 +0100478
Neels Hofmeyr4335bad2017-10-07 04:39:14 +0200479/*! Validate that a given string is a hex string within given size limits.
480 * Note that each hex digit amounts to a nibble, so if checking for a hex
481 * string to result in N bytes, pass amount of digits as 2*N.
482 * \param str A nul-terminated string to validate, or NULL.
483 * \param min_digits least permitted amount of digits.
484 * \param max_digits most permitted amount of digits.
485 * \param require_even if true, require an even amount of digits.
486 * \returns true when the hex_str contains only hexadecimal digits (no
487 * whitespace) and matches the requested length; also true
488 * when min_digits <= 0 and str is NULL.
489 */
490bool osmo_is_hexstr(const char *str, int min_digits, int max_digits,
491 bool require_even)
492{
493 int len;
494 /* Use unsigned char * to avoid a compiler warning of
495 * "error: array subscript has type 'char' [-Werror=char-subscripts]" */
496 const unsigned char *pos = (const unsigned char*)str;
497 if (!pos)
498 return min_digits < 1;
499 for (len = 0; *pos && len < max_digits; len++, pos++)
500 if (!isxdigit(*pos))
501 return false;
502 if (len < min_digits)
503 return false;
504 /* With not too many digits, we should have reached *str == nul */
505 if (*pos)
506 return false;
507 if (require_even && (len & 1))
508 return false;
Harald Weltefebe83c2017-10-03 17:41:59 +0800509
510 return true;
511}
512
513/*! Determine if a given identifier is valid, i.e. doesn't contain illegal chars
514 * \param[in] str String to validate
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100515 * \param[in] sep_chars Permitted separation characters between identifiers.
516 * \returns true in case \a str contains only valid identifiers and sep_chars, false otherwise
Harald Weltefebe83c2017-10-03 17:41:59 +0800517 */
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100518bool osmo_separated_identifiers_valid(const char *str, const char *sep_chars)
Harald Weltefebe83c2017-10-03 17:41:59 +0800519{
520 /* characters that are illegal in names */
521 static const char illegal_chars[] = "., {}[]()<>|~\\^`'\"?=;/+*&%$#!";
522 unsigned int i;
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100523 size_t len;
Harald Weltefebe83c2017-10-03 17:41:59 +0800524
525 /* an empty string is not a valid identifier */
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100526 if (!str || (len = strlen(str)) == 0)
Harald Weltefebe83c2017-10-03 17:41:59 +0800527 return false;
528
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100529 for (i = 0; i < len; i++) {
530 if (sep_chars && strchr(sep_chars, str[i]))
531 continue;
Harald Weltefebe83c2017-10-03 17:41:59 +0800532 /* check for 7-bit ASCII */
533 if (str[i] & 0x80)
534 return false;
Neels Hofmeyre5a2bdb2017-12-16 04:54:37 +0100535 if (!isprint((int)str[i]))
536 return false;
Harald Weltefebe83c2017-10-03 17:41:59 +0800537 /* check for some explicit reserved control characters */
538 if (strchr(illegal_chars, str[i]))
539 return false;
540 }
541
Neels Hofmeyr4335bad2017-10-07 04:39:14 +0200542 return true;
543}
544
Neels Hofmeyr937ddea2017-12-16 00:46:50 +0100545/*! Determine if a given identifier is valid, i.e. doesn't contain illegal chars
546 * \param[in] str String to validate
547 * \returns true in case \a str contains valid identifier, false otherwise
548 */
549bool osmo_identifier_valid(const char *str)
550{
551 return osmo_separated_identifiers_valid(str, NULL);
552}
553
Harald Welte98ed3392019-03-28 13:26:53 +0100554/*! Return the string with all non-printable characters escapeda, in user-supplied buffer.
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100555 * \param[in] str A string that may contain any characters.
556 * \param[in] len Pass -1 to print until nul char, or >= 0 to force a length.
557 * \param[inout] buf string buffer to write escaped characters to.
558 * \param[in] bufsize size of \a buf.
Harald Welte98ed3392019-03-28 13:26:53 +0100559 * \returns buf containing an escaped representation, possibly truncated.
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100560 */
Harald Welte98ed3392019-03-28 13:26:53 +0100561char *osmo_escape_str_buf(const char *str, int in_len, char *buf, size_t bufsize)
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100562{
563 int in_pos = 0;
564 int next_unprintable = 0;
565 int out_pos = 0;
566 char *out = buf;
567 /* -1 to leave space for a final \0 */
568 int out_len = bufsize-1;
569
570 if (!str)
571 return "(null)";
572
573 if (in_len < 0)
574 in_len = strlen(str);
575
576 while (in_pos < in_len) {
577 for (next_unprintable = in_pos;
578 next_unprintable < in_len && isprint((int)str[next_unprintable])
579 && str[next_unprintable] != '"'
580 && str[next_unprintable] != '\\';
581 next_unprintable++);
582
Harald Welte98ed3392019-03-28 13:26:53 +0100583 if (next_unprintable == in_len && in_pos == 0) {
584 osmo_strlcpy(buf, str, bufsize);
585 return buf;
586 }
Neels Hofmeyr9910bbc2017-12-16 00:54:52 +0100587
588 while (in_pos < next_unprintable && out_pos < out_len)
589 out[out_pos++] = str[in_pos++];
590
591 if (out_pos == out_len || in_pos == in_len)
592 goto done;
593
594 switch (str[next_unprintable]) {
595#define BACKSLASH_CASE(c, repr) \
596 case c: \
597 if (out_pos > out_len-2) \
598 goto done; \
599 out[out_pos++] = '\\'; \
600 out[out_pos++] = repr; \
601 break
602
603 BACKSLASH_CASE('\n', 'n');
604 BACKSLASH_CASE('\r', 'r');
605 BACKSLASH_CASE('\t', 't');
606 BACKSLASH_CASE('\0', '0');
607 BACKSLASH_CASE('\a', 'a');
608 BACKSLASH_CASE('\b', 'b');
609 BACKSLASH_CASE('\v', 'v');
610 BACKSLASH_CASE('\f', 'f');
611 BACKSLASH_CASE('\\', '\\');
612 BACKSLASH_CASE('"', '"');
613#undef BACKSLASH_CASE
614
615 default:
616 out_pos += snprintf(&out[out_pos], out_len - out_pos, "\\%u", (unsigned char)str[in_pos]);
617 if (out_pos > out_len) {
618 out_pos = out_len;
619 goto done;
620 }
621 break;
622 }
623 in_pos ++;
624 }
625
626done:
627 out[out_pos] = '\0';
628 return out;
629}
630
631/*! Return the string with all non-printable characters escaped.
632 * Call osmo_escape_str_buf() with a static buffer.
633 * \param[in] str A string that may contain any characters.
634 * \param[in] len Pass -1 to print until nul char, or >= 0 to force a length.
635 * \returns buf containing an escaped representation, possibly truncated, or str itself.
636 */
637const char *osmo_escape_str(const char *str, int in_len)
638{
639 return osmo_escape_str_buf(str, in_len, namebuf, sizeof(namebuf));
640}
641
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200642/*! Like osmo_escape_str(), but returns double-quotes around a string, or "NULL" for a NULL string.
643 * This allows passing any char* value and get its C representation as string.
644 * \param[in] str A string that may contain any characters.
Neels Hofmeyr03e75532018-09-07 03:12:05 +0200645 * \param[in] in_len Pass -1 to print until nul char, or >= 0 to force a length.
646 * \returns buf containing a quoted and escaped representation, possibly truncated.
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200647 */
Harald Welte4a62eda2019-03-18 18:27:00 +0100648char *osmo_quote_str_buf(const char *str, int in_len, char *buf, size_t bufsize)
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200649{
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200650 int l;
651 if (!str)
652 return "NULL";
653 if (bufsize < 3)
654 return "<buf-too-small>";
655 buf[0] = '"';
Harald Welte98ed3392019-03-28 13:26:53 +0100656 osmo_escape_str_buf(str, in_len, buf + 1, bufsize - 2);
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200657 l = strlen(buf);
658 buf[l] = '"';
659 buf[l+1] = '\0'; /* both osmo_escape_str_buf() and max_len above ensure room for '\0' */
660 return buf;
661}
662
Neels Hofmeyr03e75532018-09-07 03:12:05 +0200663/*! Like osmo_quote_str_buf() but returns the result in a static buffer.
664 * The static buffer is shared with get_value_string() and osmo_escape_str().
665 * \param[in] str A string that may contain any characters.
666 * \param[in] in_len Pass -1 to print until nul char, or >= 0 to force a length.
667 * \returns static buffer containing a quoted and escaped representation, possibly truncated.
668 */
Neels Hofmeyr04eb56f2018-04-09 00:41:28 +0200669const char *osmo_quote_str(const char *str, int in_len)
670{
671 return osmo_quote_str_buf(str, in_len, namebuf, sizeof(namebuf));
672}
673
Harald Welte15a5f8d2018-06-06 16:58:17 +0200674/*! perform an integer square root operation on unsigned 32bit integer.
675 * This implementation is taken from "Hacker's Delight" Figure 11-1 "Integer square root, Newton's
676 * method", which can also be found at http://www.hackersdelight.org/hdcodetxt/isqrt.c.txt */
677uint32_t osmo_isqrt32(uint32_t x)
678{
679 uint32_t x1;
680 int s, g0, g1;
681
682 if (x <= 1)
683 return x;
684
685 s = 1;
686 x1 = x - 1;
687 if (x1 > 0xffff) {
688 s = s + 8;
689 x1 = x1 >> 16;
690 }
691 if (x1 > 0xff) {
692 s = s + 4;
693 x1 = x1 >> 8;
694 }
695 if (x1 > 0xf) {
696 s = s + 2;
697 x1 = x1 >> 4;
698 }
699 if (x1 > 0x3) {
700 s = s + 1;
701 }
702
703 g0 = 1 << s; /* g0 = 2**s */
704 g1 = (g0 + (x >> s)) >> 1; /* g1 = (g0 + x/g0)/2 */
705
706 /* converges after four to five divisions for arguments up to 16,785,407 */
707 while (g1 < g0) {
708 g0 = g1;
709 g1 = (g0 + (x/g0)) >> 1;
710 }
711 return g0;
712}
713
Neels Hofmeyr7c749892018-09-07 03:01:38 +0200714/*! Convert a string to lowercase, while checking buffer size boundaries.
715 * The result written to \a dest is guaranteed to be nul terminated if \a dest_len > 0.
716 * If dest == src, the string is converted in-place, if necessary truncated at dest_len - 1 characters
717 * length as well as nul terminated.
718 * Note: similar osmo_str2lower(), but safe to use for src strings of arbitrary length.
719 * \param[out] dest Target buffer to write lowercase string.
720 * \param[in] dest_len Maximum buffer size of dest (e.g. sizeof(dest)).
721 * \param[in] src String to convert to lowercase.
722 * \returns Length of \a src, like osmo_strlcpy(), but if \a dest == \a src at most \a dest_len - 1.
723 */
724size_t osmo_str_tolower_buf(char *dest, size_t dest_len, const char *src)
725{
726 size_t rc;
727 if (dest == src) {
728 if (dest_len < 1)
729 return 0;
730 dest[dest_len - 1] = '\0';
731 rc = strlen(dest);
732 } else {
733 if (dest_len < 1)
734 return strlen(src);
735 rc = osmo_strlcpy(dest, src, dest_len);
736 }
737 for (; *dest; dest++)
738 *dest = tolower(*dest);
739 return rc;
740}
741
742/*! Convert a string to lowercase, using a static buffer.
743 * The resulting string may be truncated if the internally used static buffer is shorter than src.
744 * The internal buffer is at least 128 bytes long, i.e. guaranteed to hold at least 127 characters and a
745 * terminating nul.
746 * See also osmo_str_tolower_buf().
747 * \param[in] src String to convert to lowercase.
748 * \returns Resulting lowercase string in a static buffer, always nul terminated.
749 */
750const char *osmo_str_tolower(const char *src)
751{
752 static char buf[128];
753 osmo_str_tolower_buf(buf, sizeof(buf), src);
754 return buf;
755}
756
757/*! Convert a string to uppercase, while checking buffer size boundaries.
758 * The result written to \a dest is guaranteed to be nul terminated if \a dest_len > 0.
759 * If dest == src, the string is converted in-place, if necessary truncated at dest_len - 1 characters
760 * length as well as nul terminated.
761 * Note: similar osmo_str2upper(), but safe to use for src strings of arbitrary length.
762 * \param[out] dest Target buffer to write uppercase string.
763 * \param[in] dest_len Maximum buffer size of dest (e.g. sizeof(dest)).
764 * \param[in] src String to convert to uppercase.
765 * \returns Length of \a src, like osmo_strlcpy(), but if \a dest == \a src at most \a dest_len - 1.
766 */
767size_t osmo_str_toupper_buf(char *dest, size_t dest_len, const char *src)
768{
769 size_t rc;
770 if (dest == src) {
771 if (dest_len < 1)
772 return 0;
773 dest[dest_len - 1] = '\0';
774 rc = strlen(dest);
775 } else {
776 if (dest_len < 1)
777 return strlen(src);
778 rc = osmo_strlcpy(dest, src, dest_len);
779 }
780 for (; *dest; dest++)
781 *dest = toupper(*dest);
782 return rc;
783}
784
785/*! Convert a string to uppercase, using a static buffer.
786 * The resulting string may be truncated if the internally used static buffer is shorter than src.
787 * The internal buffer is at least 128 bytes long, i.e. guaranteed to hold at least 127 characters and a
788 * terminating nul.
789 * See also osmo_str_toupper_buf().
790 * \param[in] src String to convert to uppercase.
791 * \returns Resulting uppercase string in a static buffer, always nul terminated.
792 */
793const char *osmo_str_toupper(const char *src)
794{
795 static char buf[128];
796 osmo_str_toupper_buf(buf, sizeof(buf), src);
797 return buf;
798}
799
Oliver Smith894be2d2019-01-11 13:13:37 +0100800/*! Calculate the Luhn checksum (as used for IMEIs).
801 * \param[in] in Input digits in ASCII string representation.
802 * \param[in] in_len Count of digits to use for the input (14 for IMEI).
803 * \returns checksum char (e.g. '3'); negative on error
804 */
805const char osmo_luhn(const char* in, int in_len)
806{
807 int i, sum = 0;
808
809 /* All input must be numbers */
810 for (i = 0; i < in_len; i++) {
811 if (!isdigit(in[i]))
812 return -EINVAL;
813 }
814
815 /* Double every second digit and add it to sum */
816 for (i = in_len - 1; i >= 0; i -= 2) {
817 int dbl = (in[i] - '0') * 2;
818 if (dbl > 9)
819 dbl -= 9;
820 sum += dbl;
821 }
822
823 /* Add other digits to sum */
824 for (i = in_len - 2; i >= 0; i -= 2)
825 sum += in[i] - '0';
826
827 /* Final checksum */
828 return (sum * 9) % 10 + '0';
829}
830
Neels Hofmeyr0aeda1b2017-01-13 14:16:02 +0100831/*! @} */