blob: 2449151dd1997ae66b9c832201916d4477fd6c96 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welteec8b4502010-02-20 20:34:29 +01002
3/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <stdint.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010023#include <osmocom/core/linuxlist.h>
24#include <osmocom/core/utils.h>
Max53777012014-06-04 19:07:41 +020025#include <osmocom/core/bits.h>
Neels Hofmeyrf45334b2016-09-16 00:15:56 +020026#include <osmocom/core/defs.h>
Harald Welteec8b4502010-02-20 20:34:29 +010027
Harald Welteba6988b2011-08-17 12:46:48 +020028/*! \defgroup msgb Message buffers
29 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020030 * \file msgb.h */
Harald Weltebd598e32011-08-16 23:26:52 +020031
Harald Welte652a7232010-07-22 21:55:24 +020032#define MSGB_DEBUG
33
Neels Hofmeyr87e45502017-06-20 00:17:59 +020034/*! Osmocom message buffer */
Harald Welteec8b4502010-02-20 20:34:29 +010035struct msgb {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020036 struct llist_head list; /*!< linked list header */
Harald Welteec8b4502010-02-20 20:34:29 +010037
Pablo Neira Ayuso29cbf612011-07-07 19:46:44 +020038
Harald Welteec8b4502010-02-20 20:34:29 +010039 /* Part of which TRX logical channel we were received / transmitted */
Harald Welte074c9f92010-04-30 14:29:11 +020040 /* FIXME: move them into the control buffer */
Harald Weltec5a0ded2011-07-18 16:59:27 +020041 union {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020042 void *dst; /*!< reference of origin/destination */
Harald Weltec5a0ded2011-07-18 16:59:27 +020043 struct gsm_bts_trx *trx;
44 };
Neels Hofmeyr87e45502017-06-20 00:17:59 +020045 struct gsm_lchan *lchan; /*!< logical channel */
Harald Welteec8b4502010-02-20 20:34:29 +010046
Neels Hofmeyr87e45502017-06-20 00:17:59 +020047 unsigned char *l1h; /*!< pointer to Layer1 header (if any) */
48 unsigned char *l2h; /*!< pointer to A-bis layer 2 header: OML, RSL(RLL), NS */
49 unsigned char *l3h; /*!< pointer to Layer 3 header. For OML: FOM; RSL: 04.08; GPRS: BSSGP */
50 unsigned char *l4h; /*!< pointer to layer 4 header */
Harald Welteec8b4502010-02-20 20:34:29 +010051
Neels Hofmeyr87e45502017-06-20 00:17:59 +020052 unsigned long cb[5]; /*!< control buffer */
Harald Welte074c9f92010-04-30 14:29:11 +020053
Neels Hofmeyr87e45502017-06-20 00:17:59 +020054 uint16_t data_len; /*!< length of underlying data array */
55 uint16_t len; /*!< length of bytes used in msgb */
Harald Welteec8b4502010-02-20 20:34:29 +010056
Neels Hofmeyr87e45502017-06-20 00:17:59 +020057 unsigned char *head; /*!< start of underlying memory buffer */
58 unsigned char *tail; /*!< end of message in buffer */
59 unsigned char *data; /*!< start of message in buffer */
60 unsigned char _data[0]; /*!< optional immediate data array */
Harald Welteec8b4502010-02-20 20:34:29 +010061};
62
63extern struct msgb *msgb_alloc(uint16_t size, const char *name);
64extern void msgb_free(struct msgb *m);
65extern void msgb_enqueue(struct llist_head *queue, struct msgb *msg);
66extern struct msgb *msgb_dequeue(struct llist_head *queue);
67extern void msgb_reset(struct msgb *m);
Harald Welte972b5022012-09-08 19:58:59 +020068uint16_t msgb_length(const struct msgb *msg);
Jacob Erlbeckbaa225e2014-02-28 15:14:40 +010069extern const char *msgb_hexdump(const struct msgb *msg);
Jacob Erlbeckcdd05f02015-11-27 13:26:13 +010070extern int msgb_resize_area(struct msgb *msg, uint8_t *area,
71 int old_size, int new_size);
72extern struct msgb *msgb_copy(const struct msgb *msg, const char *name);
Jacob Erlbeck8db11342015-11-27 13:26:15 +010073static int msgb_test_invariant(const struct msgb *msg) __attribute__((pure));
Harald Welteec8b4502010-02-20 20:34:29 +010074
Neels Hofmeyr3fad5d72017-11-20 14:15:03 +010075/*! Free all msgbs from a queue built with msgb_enqueue().
76 * \param[in] queue list head of a msgb queue.
77 */
78static inline void msgb_queue_free(struct llist_head *queue)
79{
80 struct msgb *msg;
81 while ((msg = msgb_dequeue(queue))) msgb_free(msg);
82}
83
Pau Espin Pedrol8ce6f482018-08-17 10:33:57 +020084/*! Enqueue message buffer to tail of a queue and increment queue size counter
85 * \param[in] queue linked list header of queue
86 * \param[in] msg message buffer to be added to the queue
87 * \param[in] count pointer to variable holding size of the queue
88 *
89 * The function will append the specified message buffer \a msg to the queue
90 * implemented by \ref llist_head \a queue using function \ref msgb_enqueue_count,
91 * then increment \a count
92 */
93static inline void msgb_enqueue_count(struct llist_head *queue, struct msgb *msg,
94 unsigned int *count)
95{
96 msgb_enqueue(queue, msg);
97 (*count)++;
98}
99
100/*! Dequeue message buffer from head of queue and decrement queue size counter
101 * \param[in] queue linked list header of queue
102 * \param[in] count pointer to variable holding size of the queue
103 * \returns message buffer (if any) or NULL if queue empty
104 *
105 * The function will remove the first message buffer from the queue
106 * implemented by \ref llist_head \a queue using function \ref msgb_enqueue_count,
107 * and decrement \a count, all if queue is not empty.
108 */
109static inline struct msgb *msgb_dequeue_count(struct llist_head *queue,
110 unsigned int *count)
111{
112 struct msgb *msg = msgb_dequeue(queue);
113 if (msg)
114 (*count)--;
115 return msg;
116}
117
Harald Welte652a7232010-07-22 21:55:24 +0200118#ifdef MSGB_DEBUG
Pablo Neira Ayuso83419342011-03-22 16:36:13 +0100119#include <osmocom/core/panic.h>
Harald Welte929d8872010-11-05 07:47:41 +0100120#define MSGB_ABORT(msg, fmt, args ...) do { \
Harald Weltedab02872010-11-09 13:42:26 +0100121 osmo_panic("msgb(%p): " fmt, msg, ## args); \
Harald Welte929d8872010-11-05 07:47:41 +0100122 } while(0)
123#else
124#define MSGB_ABORT(msg, fmt, args ...)
Harald Welte652a7232010-07-22 21:55:24 +0200125#endif
126
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200127/*! obtain L1 header of msgb */
Harald Weltefdd0a702010-03-01 22:30:51 +0100128#define msgb_l1(m) ((void *)(m->l1h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200129/*! obtain L2 header of msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100130#define msgb_l2(m) ((void *)(m->l2h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200131/*! obtain L3 header of msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100132#define msgb_l3(m) ((void *)(m->l3h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200133/*! obtain SMS header of msgb */
Harald Weltebb77c9d2010-04-30 14:26:12 +0200134#define msgb_sms(m) ((void *)(m->l4h))
Harald Welteec8b4502010-02-20 20:34:29 +0100135
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200136/*! determine length of L1 message
Harald Weltebd598e32011-08-16 23:26:52 +0200137 * \param[in] msgb message buffer
138 * \returns size of L1 message in bytes
139 *
140 * This function computes the number of bytes between the tail of the
141 * message and the layer 1 header.
142 */
Harald Weltefdd0a702010-03-01 22:30:51 +0100143static inline unsigned int msgb_l1len(const struct msgb *msgb)
144{
145 return msgb->tail - (uint8_t *)msgb_l1(msgb);
146}
147
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200148/*! determine length of L2 message
Harald Weltebd598e32011-08-16 23:26:52 +0200149 * \param[in] msgb message buffer
150 * \returns size of L2 message in bytes
151 *
152 * This function computes the number of bytes between the tail of the
153 * message and the layer 2 header.
154 */
Harald Welteec8b4502010-02-20 20:34:29 +0100155static inline unsigned int msgb_l2len(const struct msgb *msgb)
156{
157 return msgb->tail - (uint8_t *)msgb_l2(msgb);
158}
159
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200160/*! determine length of L3 message
Harald Weltebd598e32011-08-16 23:26:52 +0200161 * \param[in] msgb message buffer
162 * \returns size of L3 message in bytes
163 *
164 * This function computes the number of bytes between the tail of the
165 * message and the layer 3 header.
166 */
Harald Welteec8b4502010-02-20 20:34:29 +0100167static inline unsigned int msgb_l3len(const struct msgb *msgb)
168{
169 return msgb->tail - (uint8_t *)msgb_l3(msgb);
170}
171
Vadim Yanitskiye521ede2018-11-07 03:53:03 +0700172/*! determine length of L4 message
173 * \param[in] msgb message buffer
174 * \returns size of L4 message in bytes
175 *
176 * This function computes the number of bytes between the tail of the
177 * message and the layer 4 header.
178 */
179static inline unsigned int msgb_l4len(const struct msgb *msgb)
180{
181 return msgb->tail - (uint8_t *)msgb_sms(msgb);
182}
183
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200184/*! determine the length of the header
Harald Weltebd598e32011-08-16 23:26:52 +0200185 * \param[in] msgb message buffer
186 * \returns number of bytes between start of buffer and start of msg
187 *
188 * This function computes the length difference between the underlying
189 * data buffer and the used section of the \a msgb.
190 */
Harald Welteec8b4502010-02-20 20:34:29 +0100191static inline unsigned int msgb_headlen(const struct msgb *msgb)
192{
193 return msgb->len - msgb->data_len;
194}
Harald Welte652a7232010-07-22 21:55:24 +0200195
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200196/*! determine how much tail room is left in msgb
Harald Weltebd598e32011-08-16 23:26:52 +0200197 * \param[in] msgb message buffer
198 * \returns number of bytes remaining at end of msgb
199 *
200 * This function computes the amount of octets left in the underlying
201 * data buffer after the end of the message.
202 */
Harald Welte652a7232010-07-22 21:55:24 +0200203static inline int msgb_tailroom(const struct msgb *msgb)
204{
205 return (msgb->head + msgb->data_len) - msgb->tail;
206}
207
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200208/*! determine the amount of headroom in msgb
Harald Weltebd598e32011-08-16 23:26:52 +0200209 * \param[in] msgb message buffer
210 * \returns number of bytes left ahead of message start in msgb
211 *
212 * This function computes the amount of bytes left in the underlying
213 * data buffer before the start of the actual message.
214 */
Harald Welte652a7232010-07-22 21:55:24 +0200215static inline int msgb_headroom(const struct msgb *msgb)
216{
217 return (msgb->data - msgb->head);
218}
219
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200220/*! append data to end of message buffer
Harald Weltebd598e32011-08-16 23:26:52 +0200221 * \param[in] msgb message buffer
222 * \param[in] len number of bytes to append to message
223 * \returns pointer to start of newly-appended data
224 *
225 * This function will move the \a tail pointer of the message buffer \a
226 * len bytes further, thus enlarging the message by \a len bytes.
227 *
228 * The return value is a pointer to start of the newly added section at
229 * the end of the message and can be used for actually filling/copying
230 * data into it.
231 */
Harald Welteec8b4502010-02-20 20:34:29 +0100232static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
233{
234 unsigned char *tmp = msgb->tail;
Harald Welte46a45a62010-11-09 13:41:48 +0100235 if (msgb_tailroom(msgb) < (int) len)
Neels Hofmeyr418ca582016-09-09 02:03:43 +0200236 MSGB_ABORT(msgb, "Not enough tailroom msgb_put (%u < %u)\n",
Harald Welte929d8872010-11-05 07:47:41 +0100237 msgb_tailroom(msgb), len);
Harald Welteec8b4502010-02-20 20:34:29 +0100238 msgb->tail += len;
239 msgb->len += len;
240 return tmp;
241}
Harald Weltebd598e32011-08-16 23:26:52 +0200242
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200243/*! append a uint8 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200244 * \param[in] msgb message buffer
245 * \param[in] word unsigned 8bit byte to be appended
246 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100247static inline void msgb_put_u8(struct msgb *msgb, uint8_t word)
248{
249 uint8_t *space = msgb_put(msgb, 1);
250 space[0] = word & 0xFF;
251}
Harald Weltebd598e32011-08-16 23:26:52 +0200252
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200253/*! append a uint16 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200254 * \param[in] msgb message buffer
255 * \param[in] word unsigned 16bit byte to be appended
256 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100257static inline void msgb_put_u16(struct msgb *msgb, uint16_t word)
258{
259 uint8_t *space = msgb_put(msgb, 2);
Max53777012014-06-04 19:07:41 +0200260 osmo_store16be(word, space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100261}
Harald Weltebd598e32011-08-16 23:26:52 +0200262
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200263/*! append a uint32 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200264 * \param[in] msgb message buffer
265 * \param[in] word unsigned 32bit byte to be appended
266 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100267static inline void msgb_put_u32(struct msgb *msgb, uint32_t word)
268{
269 uint8_t *space = msgb_put(msgb, 4);
Max53777012014-06-04 19:07:41 +0200270 osmo_store32be(word, space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100271}
Harald Weltebd598e32011-08-16 23:26:52 +0200272
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200273/*! remove data from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200274 * \param[in] msgb message buffer
275 * \param[in] len number of bytes to remove from end
276 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100277static inline unsigned char *msgb_get(struct msgb *msgb, unsigned int len)
278{
Harald Welte972b5022012-09-08 19:58:59 +0200279 if (msgb_length(msgb) < len)
280 MSGB_ABORT(msgb, "msgb too small to get %u (len %u)\n",
281 len, msgb_length(msgb));
282 msgb->tail -= len;
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100283 msgb->len -= len;
Pau Espin Pedrol9fa09122018-04-11 20:09:13 +0200284 return msgb->tail;
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100285}
Max53777012014-06-04 19:07:41 +0200286
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200287/*! remove uint8 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200288 * \param[in] msgb message buffer
289 * \returns 8bit value taken from end of msgb
290 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100291static inline uint8_t msgb_get_u8(struct msgb *msgb)
292{
293 uint8_t *space = msgb_get(msgb, 1);
294 return space[0];
295}
Max53777012014-06-04 19:07:41 +0200296
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200297/*! remove uint16 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200298 * \param[in] msgb message buffer
299 * \returns 16bit value taken from end of msgb
300 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100301static inline uint16_t msgb_get_u16(struct msgb *msgb)
302{
303 uint8_t *space = msgb_get(msgb, 2);
Max53777012014-06-04 19:07:41 +0200304 return osmo_load16be(space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100305}
Max53777012014-06-04 19:07:41 +0200306
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200307/*! remove uint32 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200308 * \param[in] msgb message buffer
309 * \returns 32bit value taken from end of msgb
310 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100311static inline uint32_t msgb_get_u32(struct msgb *msgb)
312{
313 uint8_t *space = msgb_get(msgb, 4);
Max53777012014-06-04 19:07:41 +0200314 return osmo_load32be(space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100315}
Harald Weltebd598e32011-08-16 23:26:52 +0200316
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200317/*! prepend (push) some data to start of message
Harald Weltebd598e32011-08-16 23:26:52 +0200318 * \param[in] msgb message buffer
319 * \param[in] len number of bytes to pre-pend
320 * \returns pointer to newly added portion at start of \a msgb
321 *
322 * This function moves the \a data pointer of the \ref msgb further
323 * to the front (by \a len bytes), thereby enlarging the message by \a
324 * len bytes.
325 *
326 * The return value is a pointer to the newly added section in the
327 * beginning of the message. It can be used to fill/copy data into it.
328 */
Harald Welteec8b4502010-02-20 20:34:29 +0100329static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
330{
Harald Welte46a45a62010-11-09 13:41:48 +0100331 if (msgb_headroom(msgb) < (int) len)
Harald Welte929d8872010-11-05 07:47:41 +0100332 MSGB_ABORT(msgb, "Not enough headroom msgb_push (%u < %u)\n",
333 msgb_headroom(msgb), len);
Harald Welteec8b4502010-02-20 20:34:29 +0100334 msgb->data -= len;
335 msgb->len += len;
336 return msgb->data;
337}
Max53777012014-06-04 19:07:41 +0200338
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200339/*! prepend a uint8 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100340 * \param[in] msgb message buffer
341 * \param[in] word unsigned 8bit byte to be prepended
342 */
343static inline void msgb_push_u8(struct msgb *msg, uint8_t word)
344{
345 uint8_t *space = msgb_push(msg, 1);
346 space[0] = word;
347}
348
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200349/*! prepend a uint16 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100350 * \param[in] msgb message buffer
351 * \param[in] word unsigned 16bit byte to be prepended
352 */
353static inline void msgb_push_u16(struct msgb *msg, uint16_t word)
354{
355 uint16_t *space = (uint16_t *) msgb_push(msg, 2);
356 osmo_store16be(word, space);
357}
358
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200359/*! prepend a uint32 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100360 * \param[in] msgb message buffer
361 * \param[in] word unsigned 32bit byte to be prepended
362 */
363static inline void msgb_push_u32(struct msgb *msg, uint32_t word)
364{
365 uint32_t *space = (uint32_t *) msgb_push(msg, 4);
366 osmo_store32be(word, space);
367}
368
Max84fb5bb2018-11-08 13:23:59 +0100369static inline unsigned char *msgb_wrap_with_TL(struct msgb *msgb, uint8_t tag)
370{
371 uint8_t *data = msgb_push(msgb, 2);
372
373 data[0] = tag;
374 data[1] = msgb->len - 2;
375 return data;
376}
377
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200378/*! remove (pull) a header from the front of the message buffer
Harald Weltebd598e32011-08-16 23:26:52 +0200379 * \param[in] msgb message buffer
380 * \param[in] len number of octets to be pulled
381 * \returns pointer to new start of msgb
382 *
383 * This function moves the \a data pointer of the \ref msgb further back
384 * in the message, thereby shrinking the size of the message by \a len
385 * bytes.
386 */
Harald Welteec8b4502010-02-20 20:34:29 +0100387static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
388{
Pau Espin Pedrolc62fc2d2018-04-11 20:14:08 +0200389 if (msgb_length(msgb) < len)
390 MSGB_ABORT(msgb, "msgb too small to pull %u (len %u)\n",
391 len, msgb_length(msgb));
Harald Welteec8b4502010-02-20 20:34:29 +0100392 msgb->len -= len;
393 return msgb->data += len;
394}
Harald Welteec8b4502010-02-20 20:34:29 +0100395
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200396/*! remove (pull) all headers in front of l3h from the message buffer.
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100397 * \param[in] msgb message buffer with a valid l3h
398 * \returns pointer to new start of msgb (l3h)
399 *
400 * This function moves the \a data pointer of the \ref msgb further back
401 * in the message, thereby shrinking the size of the message.
402 * l1h and l2h will be cleared.
403 */
404static inline unsigned char *msgb_pull_to_l3(struct msgb *msg)
405{
406 unsigned char *ret = msgb_pull(msg, msg->l3h - msg->data);
407 msg->l1h = msg->l2h = NULL;
408 return ret;
409}
410
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200411/*! remove (pull) all headers in front of l2h from the message buffer.
Harald Welte59a9ebf2017-04-15 19:04:34 +0200412 * \param[in] msgb message buffer with a valid l2h
413 * \returns pointer to new start of msgb (l2h)
414 *
415 * This function moves the \a data pointer of the \ref msgb further back
416 * in the message, thereby shrinking the size of the message.
417 * l1h will be cleared.
418 */
419static inline unsigned char *msgb_pull_to_l2(struct msgb *msg)
420{
421 unsigned char *ret = msgb_pull(msg, msg->l2h - msg->data);
422 msg->l1h = NULL;
423 return ret;
424}
425
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200426/*! remove uint8 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200427 * \param[in] msgb message buffer
428 * \returns 8bit value taken from end of msgb
429 */
430static inline uint8_t msgb_pull_u8(struct msgb *msgb)
431{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100432 uint8_t *space = msgb_pull(msgb, 1) - 1;
Harald Welte972b5022012-09-08 19:58:59 +0200433 return space[0];
434}
Max53777012014-06-04 19:07:41 +0200435
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200436/*! remove uint16 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200437 * \param[in] msgb message buffer
438 * \returns 16bit value taken from end of msgb
439 */
440static inline uint16_t msgb_pull_u16(struct msgb *msgb)
441{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100442 uint8_t *space = msgb_pull(msgb, 2) - 2;
Max53777012014-06-04 19:07:41 +0200443 return osmo_load16be(space);
Harald Welte972b5022012-09-08 19:58:59 +0200444}
Max53777012014-06-04 19:07:41 +0200445
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200446/*! remove uint32 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200447 * \param[in] msgb message buffer
448 * \returns 32bit value taken from end of msgb
449 */
450static inline uint32_t msgb_pull_u32(struct msgb *msgb)
451{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100452 uint8_t *space = msgb_pull(msgb, 4) - 4;
Max53777012014-06-04 19:07:41 +0200453 return osmo_load32be(space);
Harald Welte972b5022012-09-08 19:58:59 +0200454}
455
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200456/*! Increase headroom of empty msgb, reducing the tailroom
Harald Weltebd598e32011-08-16 23:26:52 +0200457 * \param[in] msg message buffer
458 * \param[in] len amount of extra octets to be reserved as headroom
459 *
460 * This function reserves some memory at the beginning of the underlying
461 * data buffer. The idea is to reserve space in case further headers
462 * have to be pushed to the \ref msgb during further processing.
463 *
464 * Calling this function leads to undefined reusults if it is called on
465 * a non-empty \ref msgb.
466 */
Harald Welteec8b4502010-02-20 20:34:29 +0100467static inline void msgb_reserve(struct msgb *msg, int len)
468{
469 msg->data += len;
470 msg->tail += len;
471}
472
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200473/*! Trim the msgb to a given absolute length
Harald Welteb0f91512012-01-14 21:53:41 +0100474 * \param[in] msg message buffer
475 * \param[in] len new total length of buffer
476 * \returns 0 in case of success, negative in case of error
477 */
478static inline int msgb_trim(struct msgb *msg, int len)
479{
Jacob Erlbeckff42b262015-11-27 13:26:19 +0100480 if (len < 0)
481 MSGB_ABORT(msg, "Negative length is not allowed\n");
Harald Welte3068d572012-01-14 22:07:59 +0100482 if (len > msg->data_len)
Harald Welteb0f91512012-01-14 21:53:41 +0100483 return -1;
484
Harald Welte3068d572012-01-14 22:07:59 +0100485 msg->len = len;
486 msg->tail = msg->data + len;
Harald Welteb0f91512012-01-14 21:53:41 +0100487
488 return 0;
489}
490
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200491/*! Trim the msgb to a given layer3 length
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100492 * \param[in] msg message buffer
Harald Welteb0f91512012-01-14 21:53:41 +0100493 * \param[in] l3len new layer3 length
494 * \returns 0 in case of success, negative in case of error
495 */
496static inline int msgb_l3trim(struct msgb *msg, int l3len)
497{
498 return msgb_trim(msg, (msg->l3h - msg->data) + l3len);
499}
500
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200501/*! Allocate message buffer with specified headroom
Harald Weltebd598e32011-08-16 23:26:52 +0200502 * \param[in] size size in bytes, including headroom
503 * \param[in] headroom headroom in bytes
504 * \param[in] name human-readable name
505 * \returns allocated message buffer with specified headroom
506 *
507 * This function is a convenience wrapper around \ref msgb_alloc
508 * followed by \ref msgb_reserve in order to create a new \ref msgb with
509 * user-specified amount of headroom.
510 */
Harald Welteec8b4502010-02-20 20:34:29 +0100511static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
512 const char *name)
513{
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200514 osmo_static_assert(size > headroom, headroom_bigger);
Holger Hans Peter Freyther5853f082011-01-16 17:38:22 +0100515
Harald Welteec8b4502010-02-20 20:34:29 +0100516 struct msgb *msg = msgb_alloc(size, name);
517 if (msg)
518 msgb_reserve(msg, headroom);
519 return msg;
520}
521
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200522/*! Check a message buffer for consistency
Jacob Erlbeck8db11342015-11-27 13:26:15 +0100523 * \param[in] msg message buffer
524 * \returns 0 (false) if inconsistent, != 0 (true) otherwise
525 */
526static inline int msgb_test_invariant(const struct msgb *msg)
527{
528 const unsigned char *lbound;
529 if (!msg || !msg->data || !msg->tail ||
530 (msg->data + msg->len != msg->tail) ||
531 (msg->data < msg->head) ||
532 (msg->tail > msg->head + msg->data_len))
533 return 0;
534
535 lbound = msg->head;
536
537 if (msg->l1h) {
538 if (msg->l1h < lbound)
539 return 0;
540 lbound = msg->l1h;
541 }
542 if (msg->l2h) {
543 if (msg->l2h < lbound)
544 return 0;
545 lbound = msg->l2h;
546 }
547 if (msg->l3h) {
548 if (msg->l3h < lbound)
549 return 0;
550 lbound = msg->l3h;
551 }
552 if (msg->l4h) {
553 if (msg->l4h < lbound)
554 return 0;
555 lbound = msg->l4h;
556 }
557
558 return lbound <= msg->head + msg->data_len;
559}
560
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200561/* non inline functions to ease binding */
Harald Weltebd598e32011-08-16 23:26:52 +0200562
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200563uint8_t *msgb_data(const struct msgb *msg);
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200564
565void *msgb_talloc_ctx_init(void *root_ctx, unsigned int pool_size);
566void msgb_set_talloc_ctx(void *ctx) OSMO_DEPRECATED("Use msgb_talloc_ctx_init() instead");
Philipp Maierc5b47cc2017-10-10 16:53:21 +0200567int msgb_printf(struct msgb *msgb, const char *format, ...);
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200568
Harald Welte57217702018-02-09 02:01:48 +0100569static inline const char *msgb_hexdump_l2(const struct msgb *msg)
570{
571 if (!msgb_l2(msg) || !(msgb_l2len(msg)))
572 return "[]";
Harald Welteebd2b0f2018-02-09 10:32:03 +0100573 return osmo_hexdump((const unsigned char *) msgb_l2(msg), msgb_l2len(msg));
Harald Welte57217702018-02-09 02:01:48 +0100574}
575
576static inline const char *msgb_hexdump_l3(const struct msgb *msg)
577{
578 if (!msgb_l3(msg) || !(msgb_l3len(msg)))
579 return "[]";
Harald Welteebd2b0f2018-02-09 10:32:03 +0100580 return osmo_hexdump((const unsigned char*) msgb_l3(msg), msgb_l3len(msg));
Harald Welte57217702018-02-09 02:01:48 +0100581}
582
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200583/*! @} */