blob: 395c7c2ca334927ad8b1141e7bc5c34d9fccdd8b [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001#ifndef _MSGB_H
2#define _MSGB_H
3
4/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
5 * All Rights Reserved
6 *
7 * 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
23#include <stdint.h>
24#include "linuxlist.h"
25
Harald Welte652a7232010-07-22 21:55:24 +020026#define MSGB_DEBUG
27
Harald Welteec8b4502010-02-20 20:34:29 +010028struct msgb {
29 struct llist_head list;
30
Harald Welteec8b4502010-02-20 20:34:29 +010031 /* Part of which TRX logical channel we were received / transmitted */
Harald Welte074c9f92010-04-30 14:29:11 +020032 /* FIXME: move them into the control buffer */
Harald Welteec8b4502010-02-20 20:34:29 +010033 struct gsm_bts_trx *trx;
34 struct gsm_lchan *lchan;
35
Harald Welte00096ac2010-03-01 12:55:15 +010036 /* the Layer1 header (if any) */
37 unsigned char *l1h;
Harald Welte3415d412010-02-21 19:03:41 +010038 /* the A-bis layer 2 header: OML, RSL(RLL), NS */
Harald Welteec8b4502010-02-20 20:34:29 +010039 unsigned char *l2h;
Harald Welte3415d412010-02-21 19:03:41 +010040 /* the layer 3 header. For OML: FOM; RSL: 04.08; GPRS: BSSGP */
Harald Welteec8b4502010-02-20 20:34:29 +010041 unsigned char *l3h;
Harald Welte3415d412010-02-21 19:03:41 +010042 /* the layer 4 header */
Harald Weltebb77c9d2010-04-30 14:26:12 +020043 unsigned char *l4h;
Harald Welteec8b4502010-02-20 20:34:29 +010044
Harald Welte074c9f92010-04-30 14:29:11 +020045 /* the 'control buffer', large enough to contain 5 pointers */
46 unsigned long cb[5];
47
Harald Welteec8b4502010-02-20 20:34:29 +010048 uint16_t data_len;
49 uint16_t len;
50
51 unsigned char *head;
52 unsigned char *tail;
53 unsigned char *data;
54 unsigned char _data[0];
55};
56
57extern struct msgb *msgb_alloc(uint16_t size, const char *name);
58extern void msgb_free(struct msgb *m);
59extern void msgb_enqueue(struct llist_head *queue, struct msgb *msg);
60extern struct msgb *msgb_dequeue(struct llist_head *queue);
61extern void msgb_reset(struct msgb *m);
62
Harald Welte652a7232010-07-22 21:55:24 +020063#ifdef MSGB_DEBUG
Sylvain Munaut7459d6c2010-07-25 18:09:28 +020064#include <osmocore/panic.h>
Harald Welte652a7232010-07-22 21:55:24 +020065static inline void msgb_abort(struct msgb *msg, const char *text)
66{
Sylvain Munaut7459d6c2010-07-25 18:09:28 +020067 osmo_panic("%s", text);
Harald Welte652a7232010-07-22 21:55:24 +020068}
69#endif
70
Harald Weltefdd0a702010-03-01 22:30:51 +010071#define msgb_l1(m) ((void *)(m->l1h))
Harald Welteec8b4502010-02-20 20:34:29 +010072#define msgb_l2(m) ((void *)(m->l2h))
73#define msgb_l3(m) ((void *)(m->l3h))
Harald Weltebb77c9d2010-04-30 14:26:12 +020074#define msgb_sms(m) ((void *)(m->l4h))
Harald Welteec8b4502010-02-20 20:34:29 +010075
Harald Weltefdd0a702010-03-01 22:30:51 +010076static inline unsigned int msgb_l1len(const struct msgb *msgb)
77{
78 return msgb->tail - (uint8_t *)msgb_l1(msgb);
79}
80
Harald Welteec8b4502010-02-20 20:34:29 +010081static inline unsigned int msgb_l2len(const struct msgb *msgb)
82{
83 return msgb->tail - (uint8_t *)msgb_l2(msgb);
84}
85
86static inline unsigned int msgb_l3len(const struct msgb *msgb)
87{
88 return msgb->tail - (uint8_t *)msgb_l3(msgb);
89}
90
91static inline unsigned int msgb_headlen(const struct msgb *msgb)
92{
93 return msgb->len - msgb->data_len;
94}
Harald Welte652a7232010-07-22 21:55:24 +020095
96static inline int msgb_tailroom(const struct msgb *msgb)
97{
98 return (msgb->head + msgb->data_len) - msgb->tail;
99}
100
101static inline int msgb_headroom(const struct msgb *msgb)
102{
103 return (msgb->data - msgb->head);
104}
105
Harald Welteec8b4502010-02-20 20:34:29 +0100106static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
107{
108 unsigned char *tmp = msgb->tail;
Harald Welte652a7232010-07-22 21:55:24 +0200109#ifdef MSGB_DEBUG
110 if (msgb_tailroom(msgb) < len)
111 msgb_abort(msgb, "Not enough tailroom\n");
112#endif
Harald Welteec8b4502010-02-20 20:34:29 +0100113 msgb->tail += len;
114 msgb->len += len;
115 return tmp;
116}
Ingo Albrecht48e17f82010-03-07 18:03:41 +0100117static inline void msgb_put_u8(struct msgb *msgb, uint8_t word)
118{
119 uint8_t *space = msgb_put(msgb, 1);
120 space[0] = word & 0xFF;
121}
122static inline void msgb_put_u16(struct msgb *msgb, uint16_t word)
123{
124 uint8_t *space = msgb_put(msgb, 2);
125 space[0] = word >> 8 & 0xFF;
126 space[1] = word & 0xFF;
127}
128static inline void msgb_put_u32(struct msgb *msgb, uint32_t word)
129{
130 uint8_t *space = msgb_put(msgb, 4);
131 space[0] = word >> 24 & 0xFF;
132 space[1] = word >> 16 & 0xFF;
133 space[2] = word >> 8 & 0xFF;
134 space[3] = word & 0xFF;
135}
136static inline unsigned char *msgb_get(struct msgb *msgb, unsigned int len)
137{
138 unsigned char *tmp = msgb->data;
139 msgb->data += len;
140 msgb->len -= len;
141 return tmp;
142}
143static inline uint8_t msgb_get_u8(struct msgb *msgb)
144{
145 uint8_t *space = msgb_get(msgb, 1);
146 return space[0];
147}
148static inline uint16_t msgb_get_u16(struct msgb *msgb)
149{
150 uint8_t *space = msgb_get(msgb, 2);
151 return space[0] << 8 | space[1];
152}
153static inline uint32_t msgb_get_u32(struct msgb *msgb)
154{
155 uint8_t *space = msgb_get(msgb, 4);
156 return space[0] << 24 | space[1] << 16 | space[2] << 8 | space[3];
157}
Harald Welteec8b4502010-02-20 20:34:29 +0100158static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
159{
Harald Welte652a7232010-07-22 21:55:24 +0200160#ifdef MSGB_DEBUG
161 if (msgb_headroom(msgb) < len)
162 msgb_abort(msgb, "Not enough headroom\n");
163#endif
Harald Welteec8b4502010-02-20 20:34:29 +0100164 msgb->data -= len;
165 msgb->len += len;
166 return msgb->data;
167}
168static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
169{
170 msgb->len -= len;
171 return msgb->data += len;
172}
Harald Welteec8b4502010-02-20 20:34:29 +0100173
174/* increase the headroom of an empty msgb, reducing the tailroom */
175static inline void msgb_reserve(struct msgb *msg, int len)
176{
177 msg->data += len;
178 msg->tail += len;
179}
180
181static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
182 const char *name)
183{
184 struct msgb *msg = msgb_alloc(size, name);
185 if (msg)
186 msgb_reserve(msg, headroom);
187 return msg;
188}
189
Holger Hans Peter Freytheracffb602010-10-18 18:22:31 +0200190/* non inline functions to ease binding */
191uint8_t *msgb_data(const struct msgb *msg);
192uint16_t msgb_length(const struct msgb *msg);
193
194
Harald Welteec8b4502010-02-20 20:34:29 +0100195#endif /* _MSGB_H */