blob: 9c3ccf0d11ce9d3a499d0620adf6d9137974ec5e [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
Harald Welte652a7232010-07-22 21:55:24 +020075#ifdef MSGB_DEBUG
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010076#include <osmocom/core/panic.h>
Harald Welte929d8872010-11-05 07:47:41 +010077#define MSGB_ABORT(msg, fmt, args ...) do { \
Harald Weltedab02872010-11-09 13:42:26 +010078 osmo_panic("msgb(%p): " fmt, msg, ## args); \
Harald Welte929d8872010-11-05 07:47:41 +010079 } while(0)
80#else
81#define MSGB_ABORT(msg, fmt, args ...)
Harald Welte652a7232010-07-22 21:55:24 +020082#endif
83
Neels Hofmeyr87e45502017-06-20 00:17:59 +020084/*! obtain L1 header of msgb */
Harald Weltefdd0a702010-03-01 22:30:51 +010085#define msgb_l1(m) ((void *)(m->l1h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +020086/*! obtain L2 header of msgb */
Harald Welteec8b4502010-02-20 20:34:29 +010087#define msgb_l2(m) ((void *)(m->l2h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +020088/*! obtain L3 header of msgb */
Harald Welteec8b4502010-02-20 20:34:29 +010089#define msgb_l3(m) ((void *)(m->l3h))
Neels Hofmeyr87e45502017-06-20 00:17:59 +020090/*! obtain SMS header of msgb */
Harald Weltebb77c9d2010-04-30 14:26:12 +020091#define msgb_sms(m) ((void *)(m->l4h))
Harald Welteec8b4502010-02-20 20:34:29 +010092
Neels Hofmeyr87e45502017-06-20 00:17:59 +020093/*! determine length of L1 message
Harald Weltebd598e32011-08-16 23:26:52 +020094 * \param[in] msgb message buffer
95 * \returns size of L1 message in bytes
96 *
97 * This function computes the number of bytes between the tail of the
98 * message and the layer 1 header.
99 */
Harald Weltefdd0a702010-03-01 22:30:51 +0100100static inline unsigned int msgb_l1len(const struct msgb *msgb)
101{
102 return msgb->tail - (uint8_t *)msgb_l1(msgb);
103}
104
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200105/*! determine length of L2 message
Harald Weltebd598e32011-08-16 23:26:52 +0200106 * \param[in] msgb message buffer
107 * \returns size of L2 message in bytes
108 *
109 * This function computes the number of bytes between the tail of the
110 * message and the layer 2 header.
111 */
Harald Welteec8b4502010-02-20 20:34:29 +0100112static inline unsigned int msgb_l2len(const struct msgb *msgb)
113{
114 return msgb->tail - (uint8_t *)msgb_l2(msgb);
115}
116
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200117/*! determine length of L3 message
Harald Weltebd598e32011-08-16 23:26:52 +0200118 * \param[in] msgb message buffer
119 * \returns size of L3 message in bytes
120 *
121 * This function computes the number of bytes between the tail of the
122 * message and the layer 3 header.
123 */
Harald Welteec8b4502010-02-20 20:34:29 +0100124static inline unsigned int msgb_l3len(const struct msgb *msgb)
125{
126 return msgb->tail - (uint8_t *)msgb_l3(msgb);
127}
128
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200129/*! determine the length of the header
Harald Weltebd598e32011-08-16 23:26:52 +0200130 * \param[in] msgb message buffer
131 * \returns number of bytes between start of buffer and start of msg
132 *
133 * This function computes the length difference between the underlying
134 * data buffer and the used section of the \a msgb.
135 */
Harald Welteec8b4502010-02-20 20:34:29 +0100136static inline unsigned int msgb_headlen(const struct msgb *msgb)
137{
138 return msgb->len - msgb->data_len;
139}
Harald Welte652a7232010-07-22 21:55:24 +0200140
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200141/*! determine how much tail room is left in msgb
Harald Weltebd598e32011-08-16 23:26:52 +0200142 * \param[in] msgb message buffer
143 * \returns number of bytes remaining at end of msgb
144 *
145 * This function computes the amount of octets left in the underlying
146 * data buffer after the end of the message.
147 */
Harald Welte652a7232010-07-22 21:55:24 +0200148static inline int msgb_tailroom(const struct msgb *msgb)
149{
150 return (msgb->head + msgb->data_len) - msgb->tail;
151}
152
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200153/*! determine the amount of headroom in msgb
Harald Weltebd598e32011-08-16 23:26:52 +0200154 * \param[in] msgb message buffer
155 * \returns number of bytes left ahead of message start in msgb
156 *
157 * This function computes the amount of bytes left in the underlying
158 * data buffer before the start of the actual message.
159 */
Harald Welte652a7232010-07-22 21:55:24 +0200160static inline int msgb_headroom(const struct msgb *msgb)
161{
162 return (msgb->data - msgb->head);
163}
164
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200165/*! append data to end of message buffer
Harald Weltebd598e32011-08-16 23:26:52 +0200166 * \param[in] msgb message buffer
167 * \param[in] len number of bytes to append to message
168 * \returns pointer to start of newly-appended data
169 *
170 * This function will move the \a tail pointer of the message buffer \a
171 * len bytes further, thus enlarging the message by \a len bytes.
172 *
173 * The return value is a pointer to start of the newly added section at
174 * the end of the message and can be used for actually filling/copying
175 * data into it.
176 */
Harald Welteec8b4502010-02-20 20:34:29 +0100177static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
178{
179 unsigned char *tmp = msgb->tail;
Harald Welte46a45a62010-11-09 13:41:48 +0100180 if (msgb_tailroom(msgb) < (int) len)
Neels Hofmeyr418ca582016-09-09 02:03:43 +0200181 MSGB_ABORT(msgb, "Not enough tailroom msgb_put (%u < %u)\n",
Harald Welte929d8872010-11-05 07:47:41 +0100182 msgb_tailroom(msgb), len);
Harald Welteec8b4502010-02-20 20:34:29 +0100183 msgb->tail += len;
184 msgb->len += len;
185 return tmp;
186}
Harald Weltebd598e32011-08-16 23:26:52 +0200187
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200188/*! append a uint8 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200189 * \param[in] msgb message buffer
190 * \param[in] word unsigned 8bit byte to be appended
191 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100192static inline void msgb_put_u8(struct msgb *msgb, uint8_t word)
193{
194 uint8_t *space = msgb_put(msgb, 1);
195 space[0] = word & 0xFF;
196}
Harald Weltebd598e32011-08-16 23:26:52 +0200197
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200198/*! append a uint16 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200199 * \param[in] msgb message buffer
200 * \param[in] word unsigned 16bit byte to be appended
201 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100202static inline void msgb_put_u16(struct msgb *msgb, uint16_t word)
203{
204 uint8_t *space = msgb_put(msgb, 2);
Max53777012014-06-04 19:07:41 +0200205 osmo_store16be(word, space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100206}
Harald Weltebd598e32011-08-16 23:26:52 +0200207
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200208/*! append a uint32 value to the end of the message
Harald Weltebd598e32011-08-16 23:26:52 +0200209 * \param[in] msgb message buffer
210 * \param[in] word unsigned 32bit byte to be appended
211 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100212static inline void msgb_put_u32(struct msgb *msgb, uint32_t word)
213{
214 uint8_t *space = msgb_put(msgb, 4);
Max53777012014-06-04 19:07:41 +0200215 osmo_store32be(word, space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100216}
Harald Weltebd598e32011-08-16 23:26:52 +0200217
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200218/*! remove data from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200219 * \param[in] msgb message buffer
220 * \param[in] len number of bytes to remove from end
221 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100222static inline unsigned char *msgb_get(struct msgb *msgb, unsigned int len)
223{
Harald Weltecac3cd62012-09-10 20:58:20 +0200224 unsigned char *tmp = msgb->tail - len;
Harald Welte972b5022012-09-08 19:58:59 +0200225 if (msgb_length(msgb) < len)
226 MSGB_ABORT(msgb, "msgb too small to get %u (len %u)\n",
227 len, msgb_length(msgb));
228 msgb->tail -= len;
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100229 msgb->len -= len;
230 return tmp;
231}
Max53777012014-06-04 19:07:41 +0200232
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200233/*! remove uint8 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200234 * \param[in] msgb message buffer
235 * \returns 8bit value taken from end of msgb
236 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100237static inline uint8_t msgb_get_u8(struct msgb *msgb)
238{
239 uint8_t *space = msgb_get(msgb, 1);
240 return space[0];
241}
Max53777012014-06-04 19:07:41 +0200242
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200243/*! remove uint16 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200244 * \param[in] msgb message buffer
245 * \returns 16bit value taken from end of msgb
246 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100247static inline uint16_t msgb_get_u16(struct msgb *msgb)
248{
249 uint8_t *space = msgb_get(msgb, 2);
Max53777012014-06-04 19:07:41 +0200250 return osmo_load16be(space);
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100251}
Max53777012014-06-04 19:07:41 +0200252
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200253/*! remove uint32 from end of message
Harald Weltebd598e32011-08-16 23:26:52 +0200254 * \param[in] msgb message buffer
255 * \returns 32bit value taken from end of msgb
256 */
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100257static inline uint32_t msgb_get_u32(struct msgb *msgb)
258{
259 uint8_t *space = msgb_get(msgb, 4);
Max53777012014-06-04 19:07:41 +0200260 return osmo_load32be(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/*! prepend (push) some data to start of message
Harald Weltebd598e32011-08-16 23:26:52 +0200264 * \param[in] msgb message buffer
265 * \param[in] len number of bytes to pre-pend
266 * \returns pointer to newly added portion at start of \a msgb
267 *
268 * This function moves the \a data pointer of the \ref msgb further
269 * to the front (by \a len bytes), thereby enlarging the message by \a
270 * len bytes.
271 *
272 * The return value is a pointer to the newly added section in the
273 * beginning of the message. It can be used to fill/copy data into it.
274 */
Harald Welteec8b4502010-02-20 20:34:29 +0100275static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
276{
Harald Welte46a45a62010-11-09 13:41:48 +0100277 if (msgb_headroom(msgb) < (int) len)
Harald Welte929d8872010-11-05 07:47:41 +0100278 MSGB_ABORT(msgb, "Not enough headroom msgb_push (%u < %u)\n",
279 msgb_headroom(msgb), len);
Harald Welteec8b4502010-02-20 20:34:29 +0100280 msgb->data -= len;
281 msgb->len += len;
282 return msgb->data;
283}
Max53777012014-06-04 19:07:41 +0200284
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200285/*! prepend a uint8 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100286 * \param[in] msgb message buffer
287 * \param[in] word unsigned 8bit byte to be prepended
288 */
289static inline void msgb_push_u8(struct msgb *msg, uint8_t word)
290{
291 uint8_t *space = msgb_push(msg, 1);
292 space[0] = word;
293}
294
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200295/*! prepend a uint16 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100296 * \param[in] msgb message buffer
297 * \param[in] word unsigned 16bit byte to be prepended
298 */
299static inline void msgb_push_u16(struct msgb *msg, uint16_t word)
300{
301 uint16_t *space = (uint16_t *) msgb_push(msg, 2);
302 osmo_store16be(word, space);
303}
304
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200305/*! prepend a uint32 value to the head of the message
Harald Welte8593f1f2016-11-11 19:26:51 +0100306 * \param[in] msgb message buffer
307 * \param[in] word unsigned 32bit byte to be prepended
308 */
309static inline void msgb_push_u32(struct msgb *msg, uint32_t word)
310{
311 uint32_t *space = (uint32_t *) msgb_push(msg, 4);
312 osmo_store32be(word, space);
313}
314
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200315/*! remove (pull) a header from the front of the message buffer
Harald Weltebd598e32011-08-16 23:26:52 +0200316 * \param[in] msgb message buffer
317 * \param[in] len number of octets to be pulled
318 * \returns pointer to new start of msgb
319 *
320 * This function moves the \a data pointer of the \ref msgb further back
321 * in the message, thereby shrinking the size of the message by \a len
322 * bytes.
323 */
Harald Welteec8b4502010-02-20 20:34:29 +0100324static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
325{
326 msgb->len -= len;
327 return msgb->data += len;
328}
Harald Welteec8b4502010-02-20 20:34:29 +0100329
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200330/*! remove (pull) all headers in front of l3h from the message buffer.
Jacob Erlbeck8dac4152014-01-28 11:03:11 +0100331 * \param[in] msgb message buffer with a valid l3h
332 * \returns pointer to new start of msgb (l3h)
333 *
334 * This function moves the \a data pointer of the \ref msgb further back
335 * in the message, thereby shrinking the size of the message.
336 * l1h and l2h will be cleared.
337 */
338static inline unsigned char *msgb_pull_to_l3(struct msgb *msg)
339{
340 unsigned char *ret = msgb_pull(msg, msg->l3h - msg->data);
341 msg->l1h = msg->l2h = NULL;
342 return ret;
343}
344
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200345/*! remove (pull) all headers in front of l2h from the message buffer.
Harald Welte59a9ebf2017-04-15 19:04:34 +0200346 * \param[in] msgb message buffer with a valid l2h
347 * \returns pointer to new start of msgb (l2h)
348 *
349 * This function moves the \a data pointer of the \ref msgb further back
350 * in the message, thereby shrinking the size of the message.
351 * l1h will be cleared.
352 */
353static inline unsigned char *msgb_pull_to_l2(struct msgb *msg)
354{
355 unsigned char *ret = msgb_pull(msg, msg->l2h - msg->data);
356 msg->l1h = NULL;
357 return ret;
358}
359
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200360/*! remove uint8 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200361 * \param[in] msgb message buffer
362 * \returns 8bit value taken from end of msgb
363 */
364static inline uint8_t msgb_pull_u8(struct msgb *msgb)
365{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100366 uint8_t *space = msgb_pull(msgb, 1) - 1;
Harald Welte972b5022012-09-08 19:58:59 +0200367 return space[0];
368}
Max53777012014-06-04 19:07:41 +0200369
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200370/*! remove uint16 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200371 * \param[in] msgb message buffer
372 * \returns 16bit value taken from end of msgb
373 */
374static inline uint16_t msgb_pull_u16(struct msgb *msgb)
375{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100376 uint8_t *space = msgb_pull(msgb, 2) - 2;
Max53777012014-06-04 19:07:41 +0200377 return osmo_load16be(space);
Harald Welte972b5022012-09-08 19:58:59 +0200378}
Max53777012014-06-04 19:07:41 +0200379
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200380/*! remove uint32 from front of message
Harald Welte972b5022012-09-08 19:58:59 +0200381 * \param[in] msgb message buffer
382 * \returns 32bit value taken from end of msgb
383 */
384static inline uint32_t msgb_pull_u32(struct msgb *msgb)
385{
Steve Markgraf5905d5b2012-11-14 19:36:00 +0100386 uint8_t *space = msgb_pull(msgb, 4) - 4;
Max53777012014-06-04 19:07:41 +0200387 return osmo_load32be(space);
Harald Welte972b5022012-09-08 19:58:59 +0200388}
389
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200390/*! Increase headroom of empty msgb, reducing the tailroom
Harald Weltebd598e32011-08-16 23:26:52 +0200391 * \param[in] msg message buffer
392 * \param[in] len amount of extra octets to be reserved as headroom
393 *
394 * This function reserves some memory at the beginning of the underlying
395 * data buffer. The idea is to reserve space in case further headers
396 * have to be pushed to the \ref msgb during further processing.
397 *
398 * Calling this function leads to undefined reusults if it is called on
399 * a non-empty \ref msgb.
400 */
Harald Welteec8b4502010-02-20 20:34:29 +0100401static inline void msgb_reserve(struct msgb *msg, int len)
402{
403 msg->data += len;
404 msg->tail += len;
405}
406
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200407/*! Trim the msgb to a given absolute length
Harald Welteb0f91512012-01-14 21:53:41 +0100408 * \param[in] msg message buffer
409 * \param[in] len new total length of buffer
410 * \returns 0 in case of success, negative in case of error
411 */
412static inline int msgb_trim(struct msgb *msg, int len)
413{
Jacob Erlbeckff42b262015-11-27 13:26:19 +0100414 if (len < 0)
415 MSGB_ABORT(msg, "Negative length is not allowed\n");
Harald Welte3068d572012-01-14 22:07:59 +0100416 if (len > msg->data_len)
Harald Welteb0f91512012-01-14 21:53:41 +0100417 return -1;
418
Harald Welte3068d572012-01-14 22:07:59 +0100419 msg->len = len;
420 msg->tail = msg->data + len;
Harald Welteb0f91512012-01-14 21:53:41 +0100421
422 return 0;
423}
424
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200425/*! Trim the msgb to a given layer3 length
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100426 * \param[in] msg message buffer
Harald Welteb0f91512012-01-14 21:53:41 +0100427 * \param[in] l3len new layer3 length
428 * \returns 0 in case of success, negative in case of error
429 */
430static inline int msgb_l3trim(struct msgb *msg, int l3len)
431{
432 return msgb_trim(msg, (msg->l3h - msg->data) + l3len);
433}
434
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200435/*! Allocate message buffer with specified headroom
Harald Weltebd598e32011-08-16 23:26:52 +0200436 * \param[in] size size in bytes, including headroom
437 * \param[in] headroom headroom in bytes
438 * \param[in] name human-readable name
439 * \returns allocated message buffer with specified headroom
440 *
441 * This function is a convenience wrapper around \ref msgb_alloc
442 * followed by \ref msgb_reserve in order to create a new \ref msgb with
443 * user-specified amount of headroom.
444 */
Harald Welteec8b4502010-02-20 20:34:29 +0100445static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
446 const char *name)
447{
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +0200448 osmo_static_assert(size > headroom, headroom_bigger);
Holger Hans Peter Freyther5853f082011-01-16 17:38:22 +0100449
Harald Welteec8b4502010-02-20 20:34:29 +0100450 struct msgb *msg = msgb_alloc(size, name);
451 if (msg)
452 msgb_reserve(msg, headroom);
453 return msg;
454}
455
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200456/*! Check a message buffer for consistency
Jacob Erlbeck8db11342015-11-27 13:26:15 +0100457 * \param[in] msg message buffer
458 * \returns 0 (false) if inconsistent, != 0 (true) otherwise
459 */
460static inline int msgb_test_invariant(const struct msgb *msg)
461{
462 const unsigned char *lbound;
463 if (!msg || !msg->data || !msg->tail ||
464 (msg->data + msg->len != msg->tail) ||
465 (msg->data < msg->head) ||
466 (msg->tail > msg->head + msg->data_len))
467 return 0;
468
469 lbound = msg->head;
470
471 if (msg->l1h) {
472 if (msg->l1h < lbound)
473 return 0;
474 lbound = msg->l1h;
475 }
476 if (msg->l2h) {
477 if (msg->l2h < lbound)
478 return 0;
479 lbound = msg->l2h;
480 }
481 if (msg->l3h) {
482 if (msg->l3h < lbound)
483 return 0;
484 lbound = msg->l3h;
485 }
486 if (msg->l4h) {
487 if (msg->l4h < lbound)
488 return 0;
489 lbound = msg->l4h;
490 }
491
492 return lbound <= msg->head + msg->data_len;
493}
494
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200495/* non inline functions to ease binding */
Harald Weltebd598e32011-08-16 23:26:52 +0200496
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200497uint8_t *msgb_data(const struct msgb *msg);
Neels Hofmeyrf45334b2016-09-16 00:15:56 +0200498
499void *msgb_talloc_ctx_init(void *root_ctx, unsigned int pool_size);
500void msgb_set_talloc_ctx(void *ctx) OSMO_DEPRECATED("Use msgb_talloc_ctx_init() instead");
Philipp Maierc5b47cc2017-10-10 16:53:21 +0200501int msgb_printf(struct msgb *msgb, const char *format, ...);
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200502
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200503/*! @} */