blob: 4f0c8c383c2bc29228400d5cb24b630e5bfd22c6 [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
26struct bts_link;
27
28struct msgb {
29 struct llist_head list;
30
31 /* ptr to the physical E1 link to the BTS(s) */
32 struct gsm_bts_link *bts_link;
33
34 /* Part of which TRX logical channel we were received / transmitted */
35 struct gsm_bts_trx *trx;
36 struct gsm_lchan *lchan;
37
Harald Welte00096ac2010-03-01 12:55:15 +010038 /* the Layer1 header (if any) */
39 unsigned char *l1h;
Harald Welte3415d412010-02-21 19:03:41 +010040 /* the A-bis layer 2 header: OML, RSL(RLL), NS */
Harald Welteec8b4502010-02-20 20:34:29 +010041 unsigned char *l2h;
Harald Welte3415d412010-02-21 19:03:41 +010042 /* the layer 3 header. For OML: FOM; RSL: 04.08; GPRS: BSSGP */
Harald Welteec8b4502010-02-20 20:34:29 +010043 unsigned char *l3h;
Harald Welte3415d412010-02-21 19:03:41 +010044
45 /* the layer 4 header */
46 union {
47 unsigned char *smsh;
48 unsigned char *llch;
49 };
50
51 /* the layer 5 header, GPRS: GMM header */
52 unsigned char *gmmh;
53 uint32_t tlli;
Harald Welteec8b4502010-02-20 20:34:29 +010054
55 uint16_t data_len;
56 uint16_t len;
57
58 unsigned char *head;
59 unsigned char *tail;
60 unsigned char *data;
61 unsigned char _data[0];
62};
63
64extern struct msgb *msgb_alloc(uint16_t size, const char *name);
65extern void msgb_free(struct msgb *m);
66extern void msgb_enqueue(struct llist_head *queue, struct msgb *msg);
67extern struct msgb *msgb_dequeue(struct llist_head *queue);
68extern void msgb_reset(struct msgb *m);
69
Harald Weltefdd0a702010-03-01 22:30:51 +010070#define msgb_l1(m) ((void *)(m->l1h))
Harald Welteec8b4502010-02-20 20:34:29 +010071#define msgb_l2(m) ((void *)(m->l2h))
72#define msgb_l3(m) ((void *)(m->l3h))
73#define msgb_sms(m) ((void *)(m->smsh))
74
Harald Weltefdd0a702010-03-01 22:30:51 +010075static inline unsigned int msgb_l1len(const struct msgb *msgb)
76{
77 return msgb->tail - (uint8_t *)msgb_l1(msgb);
78}
79
Harald Welteec8b4502010-02-20 20:34:29 +010080static inline unsigned int msgb_l2len(const struct msgb *msgb)
81{
82 return msgb->tail - (uint8_t *)msgb_l2(msgb);
83}
84
85static inline unsigned int msgb_l3len(const struct msgb *msgb)
86{
87 return msgb->tail - (uint8_t *)msgb_l3(msgb);
88}
89
90static inline unsigned int msgb_headlen(const struct msgb *msgb)
91{
92 return msgb->len - msgb->data_len;
93}
94static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
95{
96 unsigned char *tmp = msgb->tail;
97 msgb->tail += len;
98 msgb->len += len;
99 return tmp;
100}
101static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
102{
103 msgb->data -= len;
104 msgb->len += len;
105 return msgb->data;
106}
107static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
108{
109 msgb->len -= len;
110 return msgb->data += len;
111}
112static inline int msgb_tailroom(const struct msgb *msgb)
113{
Harald Welteac778fb2010-02-24 22:54:11 +0100114 return (msgb->head + msgb->data_len) - msgb->tail;
Harald Welteec8b4502010-02-20 20:34:29 +0100115}
116
117/* increase the headroom of an empty msgb, reducing the tailroom */
118static inline void msgb_reserve(struct msgb *msg, int len)
119{
120 msg->data += len;
121 msg->tail += len;
122}
123
124static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
125 const char *name)
126{
127 struct msgb *msg = msgb_alloc(size, name);
128 if (msg)
129 msgb_reserve(msg, headroom);
130 return msg;
131}
132
133#endif /* _MSGB_H */