blob: 47b413b9cdaf3ae2e9f843e0f3c24c3779df70f9 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +02002 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welteec8b4502010-02-20 20:34:29 +01003 * All Rights Reserved
4 *
Harald Weltee08da972017-11-13 01:00:26 +09005 * SPDX-License-Identifier: GPL-2.0+
6 *
Harald Welteec8b4502010-02-20 20:34:29 +01007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Harald Welteba6988b2011-08-17 12:46:48 +020023/*! \addtogroup msgb
24 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020025 *
Neels Hofmeyr87e45502017-06-20 00:17:59 +020026 * libosmocore message buffers, inspired by Linux kernel skbuff
Harald Welte96e2a002017-06-12 21:44:18 +020027 *
28 * Inspired by the 'struct skbuff' of the Linux kernel, we implement a
29 * 'struct msgb' which we use for handling network
30 * packets aka messages aka PDUs.
31 *
32 * A msgb consists of
33 * * a header with some metadata, such as
34 * * a linked list header for message queues or the like
35 * * pointers to the headers of various protocol layers inside
36 * the packet
37 * * a data section consisting of
38 * * headroom, i.e. space in front of the message, to allow
39 * for additional headers being pushed in front of the current
40 * data
Vadim Yanitskiy8c8e6d72018-03-08 21:10:23 +070041 * * the currently occupied data for the message
Harald Welte96e2a002017-06-12 21:44:18 +020042 * * tailroom, i.e. space at the end of the message, to
43 * allow more data to be added after the end of the current
44 * data
45 *
46 * We have plenty of utility functions around the \ref msgb:
47 * * allocation / release
48 * * enqueue / dequeue from/to message queues
49 * * prepending (pushing) and appending (putting) data
50 * * copying / resizing
51 * * hex-dumping to a string for debug purposes
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020052 *
53 * \file msgb.c
Harald Welteba6988b2011-08-17 12:46:48 +020054 */
55
Harald Welteec8b4502010-02-20 20:34:29 +010056#include <unistd.h>
57#include <string.h>
58#include <stdlib.h>
Neels Hofmeyr42fff582015-12-23 15:12:40 +010059#include <inttypes.h>
Philipp Maierc5b47cc2017-10-10 16:53:21 +020060#include <stdarg.h>
61#include <errno.h>
62
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010063#include <osmocom/core/msgb.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010064#include <osmocom/core/talloc.h>
Vadim Yanitskiyb4233052018-03-08 21:35:48 +070065#include <osmocom/core/logging.h>
Harald Welteec8b4502010-02-20 20:34:29 +010066
Neels Hofmeyrf45334b2016-09-16 00:15:56 +020067void *tall_msgb_ctx = NULL;
Harald Welteec8b4502010-02-20 20:34:29 +010068
Neels Hofmeyr87e45502017-06-20 00:17:59 +020069/*! Allocate a new message buffer
Harald Welteba6988b2011-08-17 12:46:48 +020070 * \param[in] size Length in octets, including headroom
71 * \param[in] name Human-readable name to be associated with msgb
Harald Welte2d2e2cc2016-04-25 12:11:20 +020072 * \returns dynamically-allocated \ref msgb
Harald Welteba6988b2011-08-17 12:46:48 +020073 *
74 * This function allocates a 'struct msgb' as well as the underlying
75 * memory buffer for the actual message data (size specified by \a size)
76 * using the talloc memory context previously set by \ref msgb_set_talloc_ctx
77 */
Harald Welteec8b4502010-02-20 20:34:29 +010078struct msgb *msgb_alloc(uint16_t size, const char *name)
79{
80 struct msgb *msg;
81
Vadim Yanitskiy10959cd2018-03-08 21:57:42 +070082 msg = talloc_named_const(tall_msgb_ctx, sizeof(*msg) + size, name);
Harald Welteec8b4502010-02-20 20:34:29 +010083 if (!msg) {
Vadim Yanitskiyb4233052018-03-08 21:35:48 +070084 LOGP(DLGLOBAL, LOGL_FATAL, "Unable to allocate a msgb: "
85 "name='%s', size=%u\n", name, size);
Harald Welteec8b4502010-02-20 20:34:29 +010086 return NULL;
87 }
88
Vadim Yanitskiy10959cd2018-03-08 21:57:42 +070089 /* Manually zero-initialize allocated memory */
90 memset(msg, 0x00, sizeof(*msg) + size);
91
Harald Welteec8b4502010-02-20 20:34:29 +010092 msg->data_len = size;
93 msg->len = 0;
94 msg->data = msg->_data;
Sylvain Munaut17a5a282010-02-24 22:57:46 +010095 msg->head = msg->_data;
96 msg->tail = msg->_data;
Harald Welteec8b4502010-02-20 20:34:29 +010097
98 return msg;
99}
100
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200101/*! Release given message buffer
Vadim Yanitskiy8c8e6d72018-03-08 21:10:23 +0700102 * \param[in] m Message buffer to be freed
Harald Welteba6988b2011-08-17 12:46:48 +0200103 */
Harald Welteec8b4502010-02-20 20:34:29 +0100104void msgb_free(struct msgb *m)
105{
106 talloc_free(m);
107}
108
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200109/*! Enqueue message buffer to tail of a queue
Harald Welteba6988b2011-08-17 12:46:48 +0200110 * \param[in] queue linked list header of queue
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100111 * \param[in] msg message buffer to be added to the queue
Harald Welteba6988b2011-08-17 12:46:48 +0200112 *
113 * The function will append the specified message buffer \a msg to the
114 * queue implemented by \ref llist_head \a queue
115 */
Harald Welteec8b4502010-02-20 20:34:29 +0100116void msgb_enqueue(struct llist_head *queue, struct msgb *msg)
117{
118 llist_add_tail(&msg->list, queue);
119}
120
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200121/*! Dequeue message buffer from head of queue
Harald Welteba6988b2011-08-17 12:46:48 +0200122 * \param[in] queue linked list header of queue
123 * \returns message buffer (if any) or NULL if queue empty
124 *
125 * The function will remove the first message buffer from the queue
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100126 * implemented by \ref llist_head \a queue.
Harald Welteba6988b2011-08-17 12:46:48 +0200127 */
Harald Welteec8b4502010-02-20 20:34:29 +0100128struct msgb *msgb_dequeue(struct llist_head *queue)
129{
130 struct llist_head *lh;
131
132 if (llist_empty(queue))
133 return NULL;
134
135 lh = queue->next;
Maxd826f172016-06-23 13:14:02 +0200136
137 if (lh) {
138 llist_del(lh);
139 return llist_entry(lh, struct msgb, list);
140 } else
141 return NULL;
Harald Welteec8b4502010-02-20 20:34:29 +0100142}
143
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200144/*! Re-set all message buffer pointers
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100145 * \param[in] msg message buffer that is to be resetted
Harald Welteba6988b2011-08-17 12:46:48 +0200146 *
147 * This will re-set the various internal pointers into the underlying
Vadim Yanitskiy8c8e6d72018-03-08 21:10:23 +0700148 * message buffer, i.e. remove all headroom and treat the msgb as
Harald Welteba6988b2011-08-17 12:46:48 +0200149 * completely empty. It also initializes the control buffer to zero.
150 */
Harald Welteec8b4502010-02-20 20:34:29 +0100151void msgb_reset(struct msgb *msg)
152{
153 msg->len = 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100154 msg->data = msg->_data;
Sylvain Munaut17a5a282010-02-24 22:57:46 +0100155 msg->head = msg->_data;
156 msg->tail = msg->_data;
Harald Welteec8b4502010-02-20 20:34:29 +0100157
Harald Welteec8b4502010-02-20 20:34:29 +0100158 msg->trx = NULL;
159 msg->lchan = NULL;
160 msg->l2h = NULL;
161 msg->l3h = NULL;
Harald Weltebb77c9d2010-04-30 14:26:12 +0200162 msg->l4h = NULL;
Harald Welte95df5c02010-05-01 23:53:26 +0200163
164 memset(&msg->cb, 0, sizeof(msg->cb));
Harald Welteec8b4502010-02-20 20:34:29 +0100165}
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200166
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200167/*! get pointer to data section of message buffer
Harald Welteba6988b2011-08-17 12:46:48 +0200168 * \param[in] msg message buffer
169 * \returns pointer to data section of message buffer
170 */
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200171uint8_t *msgb_data(const struct msgb *msg)
172{
173 return msg->data;
174}
175
Maxdb038252018-12-03 14:14:44 +0100176/*! Compare and print: check data in msgb against given data and print errors if any
177 * \param[in] file text prefix, usually __FILE__, ignored if print == false
178 * \param[in] line numeric prefix, usually __LINE__, ignored if print == false
179 * \param[in] func text prefix, usually __func__, ignored if print == false
180 * \param[in] level while layer (L1, L2 etc) data should be compared against
181 * \param[in] msg message buffer
182 * \param[in] data expected data
183 * \param[in] len length of data
184 * \param[in] print boolean indicating whether we should print anything to stdout
185 * \returns boolean indicating whether msgb content is equal to a given data
186 *
187 * This function is not intended to be called directly but rather used through corresponding macro wrappers.
188 */
189bool _msgb_eq(const char *file, size_t line, const char *func, uint8_t level,
190 const struct msgb *msg, const uint8_t *data, size_t len, bool print)
191{
192 const char *m_dump;
193 unsigned int m_len, i;
194 uint8_t *m_data;
195
196 if (!msg) {
197 if (print)
198 LOGPSRC(DLGLOBAL, LOGL_FATAL, file, line, "%s() NULL msg comparison\n", func);
199 return false;
200 }
201
202 if (!data) {
203 if (print)
204 LOGPSRC(DLGLOBAL, LOGL_FATAL, file, line, "%s() NULL comparison data\n", func);
205 return false;
206 }
207
208 switch (level) {
209 case 0:
210 m_len = msgb_length(msg);
211 m_data = msgb_data(msg);
212 m_dump = print ? msgb_hexdump(msg) : NULL;
213 break;
214 case 1:
215 m_len = msgb_l1len(msg);
216 m_data = msgb_l1(msg);
217 m_dump = print ? msgb_hexdump_l1(msg) : NULL;
218 break;
219 case 2:
220 m_len = msgb_l2len(msg);
221 m_data = msgb_l2(msg);
222 m_dump = print ? msgb_hexdump_l2(msg) : NULL;
223 break;
224 case 3:
225 m_len = msgb_l3len(msg);
226 m_data = msgb_l3(msg);
227 m_dump = print ? msgb_hexdump_l3(msg) : NULL;
228 break;
229 case 4:
230 m_len = msgb_l4len(msg);
231 m_data = msgb_l4(msg);
232 m_dump = print ? msgb_hexdump_l4(msg) : NULL;
233 break;
234 default:
235 LOGPSRC(DLGLOBAL, LOGL_FATAL, file, line,
236 "%s() FIXME: unexpected comparison level %u\n", func, level);
237 return false;
238 }
239
240 if (m_len != len) {
241 if (print)
242 LOGPSRC(DLGLOBAL, LOGL_FATAL, file, line,
243 "%s() Length mismatch: %d != %zu, %s\n", func, m_len, len, m_dump);
244 return false;
245 }
246
247 if (memcmp(m_data, data, len) == 0)
248 return true;
249
250 if (!print)
251 return false;
252
253 LOGPSRC(DLGLOBAL, LOGL_FATAL, file, line,
254 "%s() L%u data mismatch:\nexpected %s\n ", func, level, osmo_hexdump(data, len));
255
256 for(i = 0; i < len; i++)
257 if (data[i] != m_data[i]) {
258 LOGPC(DLGLOBAL, LOGL_FATAL, "!!\n");
259 break;
260 } else
261 LOGPC(DLGLOBAL, LOGL_FATAL, ".. ");
262
Maxa6749ac2019-01-08 14:42:30 +0100263 LOGPC(DLGLOBAL, LOGL_FATAL, " msgb %s\n", osmo_hexdump(m_data, len));
Maxdb038252018-12-03 14:14:44 +0100264
265 return false;
266}
267
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200268/*! get length of message buffer
Harald Welteba6988b2011-08-17 12:46:48 +0200269 * \param[in] msg message buffer
270 * \returns length of data section in message buffer
271 */
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200272uint16_t msgb_length(const struct msgb *msg)
273{
274 return msg->len;
275}
Harald Welte9e1f0602011-06-29 18:46:10 +0200276
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200277/*! Set the talloc context for \ref msgb_alloc
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200278 * Deprecated, use msgb_talloc_ctx_init() instead.
Harald Welteba6988b2011-08-17 12:46:48 +0200279 * \param[in] ctx talloc context to be used as root for msgb allocations
280 */
Harald Welte9e1f0602011-06-29 18:46:10 +0200281void msgb_set_talloc_ctx(void *ctx)
282{
283 tall_msgb_ctx = ctx;
284}
Harald Welteba6988b2011-08-17 12:46:48 +0200285
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200286/*! Initialize a msgb talloc context for \ref msgb_alloc.
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200287 * Create a talloc context called "msgb". If \a pool_size is 0, create a named
288 * const as msgb talloc context. If \a pool_size is nonzero, create a talloc
289 * pool, possibly for faster msgb allocations (see talloc_pool()).
290 * \param[in] root_ctx talloc context used as parent for the new "msgb" ctx.
291 * \param[in] pool_size if nonzero, create a talloc pool of this size.
292 * \returns the new msgb talloc context, e.g. for reporting
293 */
294void *msgb_talloc_ctx_init(void *root_ctx, unsigned int pool_size)
295{
296 if (!pool_size)
297 tall_msgb_ctx = talloc_size(root_ctx, 0);
298 else
299 tall_msgb_ctx = talloc_pool(root_ctx, pool_size);
300 talloc_set_name_const(tall_msgb_ctx, "msgb");
301 return tall_msgb_ctx;
302}
303
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200304/*! Copy an msgb.
Jacob Erlbeckcdd05f02015-11-27 13:26:13 +0100305 *
306 * This function allocates a new msgb, copies the data buffer of msg,
307 * and adjusts the pointers (incl l1h-l4h) accordingly. The cb part
308 * is not copied.
309 * \param[in] msg The old msgb object
310 * \param[in] name Human-readable name to be associated with msgb
311 */
312struct msgb *msgb_copy(const struct msgb *msg, const char *name)
313{
314 struct msgb *new_msg;
315
316 new_msg = msgb_alloc(msg->data_len, name);
317 if (!new_msg)
318 return NULL;
319
320 /* copy data */
321 memcpy(new_msg->_data, msg->_data, new_msg->data_len);
322
323 /* copy header */
324 new_msg->len = msg->len;
325 new_msg->data += msg->data - msg->_data;
326 new_msg->head += msg->head - msg->_data;
327 new_msg->tail += msg->tail - msg->_data;
328
329 if (msg->l1h)
330 new_msg->l1h = new_msg->_data + (msg->l1h - msg->_data);
331 if (msg->l2h)
332 new_msg->l2h = new_msg->_data + (msg->l2h - msg->_data);
333 if (msg->l3h)
334 new_msg->l3h = new_msg->_data + (msg->l3h - msg->_data);
335 if (msg->l4h)
336 new_msg->l4h = new_msg->_data + (msg->l4h - msg->_data);
337
338 return new_msg;
339}
340
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200341/*! Resize an area within an msgb
Jacob Erlbeckcdd05f02015-11-27 13:26:13 +0100342 *
343 * This resizes a sub area of the msgb data and adjusts the pointers (incl
344 * l1h-l4h) accordingly. The cb part is not updated. If the area is extended,
345 * the contents of the extension is undefined. The complete sub area must be a
346 * part of [data,tail].
347 *
348 * \param[inout] msg The msgb object
349 * \param[in] area A pointer to the sub-area
350 * \param[in] old_size The old size of the sub-area
351 * \param[in] new_size The new size of the sub-area
352 * \returns 0 on success, -1 if there is not enough space to extend the area
353 */
354int msgb_resize_area(struct msgb *msg, uint8_t *area,
355 int old_size, int new_size)
356{
357 int rc;
358 uint8_t *post_start = area + old_size;
359 int pre_len = area - msg->data;
360 int post_len = msg->len - old_size - pre_len;
361 int delta_size = new_size - old_size;
362
363 if (old_size < 0 || new_size < 0)
364 MSGB_ABORT(msg, "Negative sizes are not allowed\n");
365 if (area < msg->data || post_start > msg->tail)
366 MSGB_ABORT(msg, "Sub area is not fully contained in the msg data\n");
367
368 if (delta_size == 0)
369 return 0;
370
371 if (delta_size > 0) {
372 rc = msgb_trim(msg, msg->len + delta_size);
373 if (rc < 0)
374 return rc;
375 }
376
377 memmove(area + new_size, area + old_size, post_len);
378
379 if (msg->l1h >= post_start)
380 msg->l1h += delta_size;
381 if (msg->l2h >= post_start)
382 msg->l2h += delta_size;
383 if (msg->l3h >= post_start)
384 msg->l3h += delta_size;
385 if (msg->l4h >= post_start)
386 msg->l4h += delta_size;
387
388 if (delta_size < 0)
389 msgb_trim(msg, msg->len + delta_size);
390
391 return 0;
392}
393
394
Harald Welte4a62eda2019-03-18 18:27:00 +0100395/*! fill user-provided buffer with hexdump of the msg.
396 * \param[out] buf caller-allocated buffer for output string
397 * \param[in] buf_len length of buf
398 * \param[in] msg message buffer to be dumped
399 * \returns buf
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100400 */
Harald Welte4a62eda2019-03-18 18:27:00 +0100401char *msgb_hexdump_buf(char *buf, size_t buf_len, const struct msgb *msg)
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100402{
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100403 int buf_offs = 0;
404 int nchars;
405 const unsigned char *start = msg->data;
406 const unsigned char *lxhs[4];
407 int i;
408
409 lxhs[0] = msg->l1h;
410 lxhs[1] = msg->l2h;
411 lxhs[2] = msg->l3h;
412 lxhs[3] = msg->l4h;
413
414 for (i = 0; i < ARRAY_SIZE(lxhs); i++) {
415 if (!lxhs[i])
416 continue;
417
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100418 if (lxhs[i] < msg->head)
419 continue;
420 if (lxhs[i] > msg->head + msg->data_len)
421 continue;
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100422 if (lxhs[i] > msg->tail)
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100423 continue;
424 if (lxhs[i] < msg->data || lxhs[i] > msg->tail) {
Harald Welte4a62eda2019-03-18 18:27:00 +0100425 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100426 "(L%d=data%+" PRIdPTR ") ",
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100427 i+1, lxhs[i] - msg->data);
428 buf_offs += nchars;
429 continue;
430 }
431 if (lxhs[i] < start) {
Harald Welte4a62eda2019-03-18 18:27:00 +0100432 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100433 "(L%d%+" PRIdPTR ") ", i+1,
434 start - lxhs[i]);
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100435 buf_offs += nchars;
436 continue;
437 }
Harald Welte4a62eda2019-03-18 18:27:00 +0100438 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100439 "%s[L%d]> ",
440 osmo_hexdump(start, lxhs[i] - start),
441 i+1);
Harald Welte4a62eda2019-03-18 18:27:00 +0100442 if (nchars < 0 || nchars + buf_offs >= buf_len)
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100443 return "ERROR";
444
445 buf_offs += nchars;
446 start = lxhs[i];
447 }
Harald Welte4a62eda2019-03-18 18:27:00 +0100448 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100449 "%s", osmo_hexdump(start, msg->tail - start));
Harald Welte4a62eda2019-03-18 18:27:00 +0100450 if (nchars < 0 || nchars + buf_offs >= buf_len)
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100451 return "ERROR";
452
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100453 buf_offs += nchars;
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100454
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100455 for (i = 0; i < ARRAY_SIZE(lxhs); i++) {
456 if (!lxhs[i])
457 continue;
458
459 if (lxhs[i] < msg->head || lxhs[i] > msg->head + msg->data_len) {
Harald Welte4a62eda2019-03-18 18:27:00 +0100460 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100461 "(L%d out of range) ", i+1);
462 } else if (lxhs[i] <= msg->data + msg->data_len &&
463 lxhs[i] > msg->tail) {
Harald Welte4a62eda2019-03-18 18:27:00 +0100464 nchars = snprintf(buf + buf_offs, buf_len - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100465 "(L%d=tail%+" PRIdPTR ") ",
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100466 i+1, lxhs[i] - msg->tail);
467 } else
468 continue;
469
Harald Welte4a62eda2019-03-18 18:27:00 +0100470 if (nchars < 0 || nchars + buf_offs >= buf_len)
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100471 return "ERROR";
472 buf_offs += nchars;
473 }
474
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100475 return buf;
476}
477
Harald Welte4a62eda2019-03-18 18:27:00 +0100478/*! Return a (static) buffer containing a hexdump of the msg.
479 * \param[in] msg message buffer
480 * \returns a pointer to a static char array
481 */
482const char *msgb_hexdump(const struct msgb *msg)
483{
484 static char buf[4100];
485 return msgb_hexdump_buf(buf, sizeof(buf), msg);
486}
Philipp Maierc5b47cc2017-10-10 16:53:21 +0200487
488/*! Print a string to the end of message buffer.
Vadim Yanitskiyb8d06fb2019-03-25 23:59:11 +0700489 * \param[in] msgb message buffer.
490 * \param[in] format format string.
491 * \returns 0 on success, -EINVAL on error.
Philipp Maierc5b47cc2017-10-10 16:53:21 +0200492 *
493 * The resulting string is printed to the msgb without a trailing nul
494 * character. A nul following the data tail may be written as an implementation
495 * detail, but a trailing nul is never part of the msgb data in terms of
496 * msgb_length().
497 *
498 * Note: the tailroom must always be one byte longer than the string to be
499 * written. The msgb is filled only up to tailroom=1. This is an implementation
500 * detail that allows leaving a nul character behind the valid data.
501 *
502 * In case of error, the msgb remains unchanged, though data may have been
503 * written to the (unused) memory after the tail pointer.
504 */
505int msgb_printf(struct msgb *msgb, const char *format, ...)
506{
507 va_list args;
508 int str_len;
509 int rc = 0;
510
511 OSMO_ASSERT(msgb);
512 OSMO_ASSERT(format);
513
514 /* Regardless of what we plan to add to the buffer, we must at least
515 * be able to store a string terminator (nullstring) */
516 if (msgb_tailroom(msgb) < 1)
517 return -EINVAL;
518
519 va_start(args, format);
520
521 str_len =
522 vsnprintf((char *)msgb->tail, msgb_tailroom(msgb), format, args);
523
524 if (str_len >= msgb_tailroom(msgb) || str_len < 0) {
525 rc = -EINVAL;
526 } else
527 msgb_put(msgb, str_len);
528
529 va_end(args);
530 return rc;
531}
532
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200533/*! @} */