blob: 82902b40a1c9c6d514d05b79430d46ae15b36f56 [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
82 msg = _talloc_zero(tall_msgb_ctx, sizeof(*msg) + size, name);
83
84 if (!msg) {
Vadim Yanitskiyb4233052018-03-08 21:35:48 +070085 LOGP(DLGLOBAL, LOGL_FATAL, "Unable to allocate a msgb: "
86 "name='%s', size=%u\n", name, size);
Harald Welteec8b4502010-02-20 20:34:29 +010087 return NULL;
88 }
89
90 msg->data_len = size;
91 msg->len = 0;
92 msg->data = msg->_data;
Sylvain Munaut17a5a282010-02-24 22:57:46 +010093 msg->head = msg->_data;
94 msg->tail = msg->_data;
Harald Welteec8b4502010-02-20 20:34:29 +010095
96 return msg;
97}
98
Neels Hofmeyr87e45502017-06-20 00:17:59 +020099/*! Release given message buffer
Vadim Yanitskiy8c8e6d72018-03-08 21:10:23 +0700100 * \param[in] m Message buffer to be freed
Harald Welteba6988b2011-08-17 12:46:48 +0200101 */
Harald Welteec8b4502010-02-20 20:34:29 +0100102void msgb_free(struct msgb *m)
103{
104 talloc_free(m);
105}
106
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200107/*! Enqueue message buffer to tail of a queue
Harald Welteba6988b2011-08-17 12:46:48 +0200108 * \param[in] queue linked list header of queue
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100109 * \param[in] msg message buffer to be added to the queue
Harald Welteba6988b2011-08-17 12:46:48 +0200110 *
111 * The function will append the specified message buffer \a msg to the
112 * queue implemented by \ref llist_head \a queue
113 */
Harald Welteec8b4502010-02-20 20:34:29 +0100114void msgb_enqueue(struct llist_head *queue, struct msgb *msg)
115{
116 llist_add_tail(&msg->list, queue);
117}
118
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200119/*! Dequeue message buffer from head of queue
Harald Welteba6988b2011-08-17 12:46:48 +0200120 * \param[in] queue linked list header of queue
121 * \returns message buffer (if any) or NULL if queue empty
122 *
123 * The function will remove the first message buffer from the queue
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100124 * implemented by \ref llist_head \a queue.
Harald Welteba6988b2011-08-17 12:46:48 +0200125 */
Harald Welteec8b4502010-02-20 20:34:29 +0100126struct msgb *msgb_dequeue(struct llist_head *queue)
127{
128 struct llist_head *lh;
129
130 if (llist_empty(queue))
131 return NULL;
132
133 lh = queue->next;
Maxd826f172016-06-23 13:14:02 +0200134
135 if (lh) {
136 llist_del(lh);
137 return llist_entry(lh, struct msgb, list);
138 } else
139 return NULL;
Harald Welteec8b4502010-02-20 20:34:29 +0100140}
141
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200142/*! Re-set all message buffer pointers
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100143 * \param[in] msg message buffer that is to be resetted
Harald Welteba6988b2011-08-17 12:46:48 +0200144 *
145 * This will re-set the various internal pointers into the underlying
Vadim Yanitskiy8c8e6d72018-03-08 21:10:23 +0700146 * message buffer, i.e. remove all headroom and treat the msgb as
Harald Welteba6988b2011-08-17 12:46:48 +0200147 * completely empty. It also initializes the control buffer to zero.
148 */
Harald Welteec8b4502010-02-20 20:34:29 +0100149void msgb_reset(struct msgb *msg)
150{
151 msg->len = 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100152 msg->data = msg->_data;
Sylvain Munaut17a5a282010-02-24 22:57:46 +0100153 msg->head = msg->_data;
154 msg->tail = msg->_data;
Harald Welteec8b4502010-02-20 20:34:29 +0100155
Harald Welteec8b4502010-02-20 20:34:29 +0100156 msg->trx = NULL;
157 msg->lchan = NULL;
158 msg->l2h = NULL;
159 msg->l3h = NULL;
Harald Weltebb77c9d2010-04-30 14:26:12 +0200160 msg->l4h = NULL;
Harald Welte95df5c02010-05-01 23:53:26 +0200161
162 memset(&msg->cb, 0, sizeof(msg->cb));
Harald Welteec8b4502010-02-20 20:34:29 +0100163}
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200164
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200165/*! get pointer to data section of message buffer
Harald Welteba6988b2011-08-17 12:46:48 +0200166 * \param[in] msg message buffer
167 * \returns pointer to data section of message buffer
168 */
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200169uint8_t *msgb_data(const struct msgb *msg)
170{
171 return msg->data;
172}
173
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200174/*! get length of message buffer
Harald Welteba6988b2011-08-17 12:46:48 +0200175 * \param[in] msg message buffer
176 * \returns length of data section in message buffer
177 */
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200178uint16_t msgb_length(const struct msgb *msg)
179{
180 return msg->len;
181}
Harald Welte9e1f0602011-06-29 18:46:10 +0200182
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200183/*! Set the talloc context for \ref msgb_alloc
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200184 * Deprecated, use msgb_talloc_ctx_init() instead.
Harald Welteba6988b2011-08-17 12:46:48 +0200185 * \param[in] ctx talloc context to be used as root for msgb allocations
186 */
Harald Welte9e1f0602011-06-29 18:46:10 +0200187void msgb_set_talloc_ctx(void *ctx)
188{
189 tall_msgb_ctx = ctx;
190}
Harald Welteba6988b2011-08-17 12:46:48 +0200191
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200192/*! Initialize a msgb talloc context for \ref msgb_alloc.
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200193 * Create a talloc context called "msgb". If \a pool_size is 0, create a named
194 * const as msgb talloc context. If \a pool_size is nonzero, create a talloc
195 * pool, possibly for faster msgb allocations (see talloc_pool()).
196 * \param[in] root_ctx talloc context used as parent for the new "msgb" ctx.
197 * \param[in] pool_size if nonzero, create a talloc pool of this size.
198 * \returns the new msgb talloc context, e.g. for reporting
199 */
200void *msgb_talloc_ctx_init(void *root_ctx, unsigned int pool_size)
201{
202 if (!pool_size)
203 tall_msgb_ctx = talloc_size(root_ctx, 0);
204 else
205 tall_msgb_ctx = talloc_pool(root_ctx, pool_size);
206 talloc_set_name_const(tall_msgb_ctx, "msgb");
207 return tall_msgb_ctx;
208}
209
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200210/*! Copy an msgb.
Jacob Erlbeckcdd05f02015-11-27 13:26:13 +0100211 *
212 * This function allocates a new msgb, copies the data buffer of msg,
213 * and adjusts the pointers (incl l1h-l4h) accordingly. The cb part
214 * is not copied.
215 * \param[in] msg The old msgb object
216 * \param[in] name Human-readable name to be associated with msgb
217 */
218struct msgb *msgb_copy(const struct msgb *msg, const char *name)
219{
220 struct msgb *new_msg;
221
222 new_msg = msgb_alloc(msg->data_len, name);
223 if (!new_msg)
224 return NULL;
225
226 /* copy data */
227 memcpy(new_msg->_data, msg->_data, new_msg->data_len);
228
229 /* copy header */
230 new_msg->len = msg->len;
231 new_msg->data += msg->data - msg->_data;
232 new_msg->head += msg->head - msg->_data;
233 new_msg->tail += msg->tail - msg->_data;
234
235 if (msg->l1h)
236 new_msg->l1h = new_msg->_data + (msg->l1h - msg->_data);
237 if (msg->l2h)
238 new_msg->l2h = new_msg->_data + (msg->l2h - msg->_data);
239 if (msg->l3h)
240 new_msg->l3h = new_msg->_data + (msg->l3h - msg->_data);
241 if (msg->l4h)
242 new_msg->l4h = new_msg->_data + (msg->l4h - msg->_data);
243
244 return new_msg;
245}
246
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200247/*! Resize an area within an msgb
Jacob Erlbeckcdd05f02015-11-27 13:26:13 +0100248 *
249 * This resizes a sub area of the msgb data and adjusts the pointers (incl
250 * l1h-l4h) accordingly. The cb part is not updated. If the area is extended,
251 * the contents of the extension is undefined. The complete sub area must be a
252 * part of [data,tail].
253 *
254 * \param[inout] msg The msgb object
255 * \param[in] area A pointer to the sub-area
256 * \param[in] old_size The old size of the sub-area
257 * \param[in] new_size The new size of the sub-area
258 * \returns 0 on success, -1 if there is not enough space to extend the area
259 */
260int msgb_resize_area(struct msgb *msg, uint8_t *area,
261 int old_size, int new_size)
262{
263 int rc;
264 uint8_t *post_start = area + old_size;
265 int pre_len = area - msg->data;
266 int post_len = msg->len - old_size - pre_len;
267 int delta_size = new_size - old_size;
268
269 if (old_size < 0 || new_size < 0)
270 MSGB_ABORT(msg, "Negative sizes are not allowed\n");
271 if (area < msg->data || post_start > msg->tail)
272 MSGB_ABORT(msg, "Sub area is not fully contained in the msg data\n");
273
274 if (delta_size == 0)
275 return 0;
276
277 if (delta_size > 0) {
278 rc = msgb_trim(msg, msg->len + delta_size);
279 if (rc < 0)
280 return rc;
281 }
282
283 memmove(area + new_size, area + old_size, post_len);
284
285 if (msg->l1h >= post_start)
286 msg->l1h += delta_size;
287 if (msg->l2h >= post_start)
288 msg->l2h += delta_size;
289 if (msg->l3h >= post_start)
290 msg->l3h += delta_size;
291 if (msg->l4h >= post_start)
292 msg->l4h += delta_size;
293
294 if (delta_size < 0)
295 msgb_trim(msg, msg->len + delta_size);
296
297 return 0;
298}
299
300
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200301/*! Return a (static) buffer containing a hexdump of the msg
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100302 * \param[in] msg message buffer
303 * \returns a pointer to a static char array
304 */
305const char *msgb_hexdump(const struct msgb *msg)
306{
307 static char buf[4100];
308 int buf_offs = 0;
309 int nchars;
310 const unsigned char *start = msg->data;
311 const unsigned char *lxhs[4];
312 int i;
313
314 lxhs[0] = msg->l1h;
315 lxhs[1] = msg->l2h;
316 lxhs[2] = msg->l3h;
317 lxhs[3] = msg->l4h;
318
319 for (i = 0; i < ARRAY_SIZE(lxhs); i++) {
320 if (!lxhs[i])
321 continue;
322
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100323 if (lxhs[i] < msg->head)
324 continue;
325 if (lxhs[i] > msg->head + msg->data_len)
326 continue;
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100327 if (lxhs[i] > msg->tail)
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100328 continue;
329 if (lxhs[i] < msg->data || lxhs[i] > msg->tail) {
330 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100331 "(L%d=data%+" PRIdPTR ") ",
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100332 i+1, lxhs[i] - msg->data);
333 buf_offs += nchars;
334 continue;
335 }
336 if (lxhs[i] < start) {
337 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100338 "(L%d%+" PRIdPTR ") ", i+1,
339 start - lxhs[i]);
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100340 buf_offs += nchars;
341 continue;
342 }
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100343 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
344 "%s[L%d]> ",
345 osmo_hexdump(start, lxhs[i] - start),
346 i+1);
347 if (nchars < 0 || nchars + buf_offs >= sizeof(buf))
348 return "ERROR";
349
350 buf_offs += nchars;
351 start = lxhs[i];
352 }
353 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
354 "%s", osmo_hexdump(start, msg->tail - start));
355 if (nchars < 0 || nchars + buf_offs >= sizeof(buf))
356 return "ERROR";
357
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100358 buf_offs += nchars;
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100359
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100360 for (i = 0; i < ARRAY_SIZE(lxhs); i++) {
361 if (!lxhs[i])
362 continue;
363
364 if (lxhs[i] < msg->head || lxhs[i] > msg->head + msg->data_len) {
365 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
366 "(L%d out of range) ", i+1);
367 } else if (lxhs[i] <= msg->data + msg->data_len &&
368 lxhs[i] > msg->tail) {
369 nchars = snprintf(buf + buf_offs, sizeof(buf) - buf_offs,
Neels Hofmeyr42fff582015-12-23 15:12:40 +0100370 "(L%d=tail%+" PRIdPTR ") ",
Jacob Erlbeck86ec3112015-11-27 13:26:14 +0100371 i+1, lxhs[i] - msg->tail);
372 } else
373 continue;
374
375 if (nchars < 0 || nchars + buf_offs >= sizeof(buf))
376 return "ERROR";
377 buf_offs += nchars;
378 }
379
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +0100380 return buf;
381}
382
Philipp Maierc5b47cc2017-10-10 16:53:21 +0200383
384/*! Print a string to the end of message buffer.
385 * \param[in] msg message buffer
386 * \returns 0 on success, -EINVAL on error
387 *
388 * The resulting string is printed to the msgb without a trailing nul
389 * character. A nul following the data tail may be written as an implementation
390 * detail, but a trailing nul is never part of the msgb data in terms of
391 * msgb_length().
392 *
393 * Note: the tailroom must always be one byte longer than the string to be
394 * written. The msgb is filled only up to tailroom=1. This is an implementation
395 * detail that allows leaving a nul character behind the valid data.
396 *
397 * In case of error, the msgb remains unchanged, though data may have been
398 * written to the (unused) memory after the tail pointer.
399 */
400int msgb_printf(struct msgb *msgb, const char *format, ...)
401{
402 va_list args;
403 int str_len;
404 int rc = 0;
405
406 OSMO_ASSERT(msgb);
407 OSMO_ASSERT(format);
408
409 /* Regardless of what we plan to add to the buffer, we must at least
410 * be able to store a string terminator (nullstring) */
411 if (msgb_tailroom(msgb) < 1)
412 return -EINVAL;
413
414 va_start(args, format);
415
416 str_len =
417 vsnprintf((char *)msgb->tail, msgb_tailroom(msgb), format, args);
418
419 if (str_len >= msgb_tailroom(msgb) || str_len < 0) {
420 rc = -EINVAL;
421 } else
422 msgb_put(msgb, str_len);
423
424 va_end(args);
425 return rc;
426}
427
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200428/*! @} */