Add 'src/shared/libosmocore/' from commit '3cae0398eaef6045de883849a236c38d1767cb41'
[osmocom-bb.git] / src / shared / libosmocore / include / osmocore / msgb.h
1 #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
26 struct bts_link;
27
28 struct 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
38         unsigned char *l2h;
39         unsigned char *l3h;
40         unsigned char *smsh;
41
42         uint16_t data_len;
43         uint16_t len;
44
45         unsigned char *head;
46         unsigned char *tail;
47         unsigned char *data;
48         unsigned char _data[0];
49 };
50
51 extern struct msgb *msgb_alloc(uint16_t size, const char *name);
52 extern void msgb_free(struct msgb *m);
53 extern void msgb_enqueue(struct llist_head *queue, struct msgb *msg);
54 extern struct msgb *msgb_dequeue(struct llist_head *queue);
55 extern void msgb_reset(struct msgb *m);
56
57 #define msgb_l2(m)      ((void *)(m->l2h))
58 #define msgb_l3(m)      ((void *)(m->l3h))
59 #define msgb_sms(m)     ((void *)(m->smsh))
60
61 static inline unsigned int msgb_l2len(const struct msgb *msgb)
62 {
63         return msgb->tail - (uint8_t *)msgb_l2(msgb);
64 }
65
66 static inline unsigned int msgb_l3len(const struct msgb *msgb)
67 {
68         return msgb->tail - (uint8_t *)msgb_l3(msgb);
69 }
70
71 static inline unsigned int msgb_headlen(const struct msgb *msgb)
72 {
73         return msgb->len - msgb->data_len;
74 }
75 static inline unsigned char *msgb_put(struct msgb *msgb, unsigned int len)
76 {
77         unsigned char *tmp = msgb->tail;
78         msgb->tail += len;
79         msgb->len += len;
80         return tmp;
81 }
82 static inline unsigned char *msgb_push(struct msgb *msgb, unsigned int len)
83 {
84         msgb->data -= len;
85         msgb->len += len;
86         return msgb->data;
87 }
88 static inline unsigned char *msgb_pull(struct msgb *msgb, unsigned int len)
89 {
90         msgb->len -= len;
91         return msgb->data += len;
92 }
93 static inline int msgb_tailroom(const struct msgb *msgb)
94 {
95         return (msgb->data + msgb->data_len) - msgb->tail;
96 }
97
98 /* increase the headroom of an empty msgb, reducing the tailroom */
99 static inline void msgb_reserve(struct msgb *msg, int len)
100 {
101         msg->data += len;
102         msg->tail += len;
103 }
104
105 static inline struct msgb *msgb_alloc_headroom(int size, int headroom,
106                                                 const char *name)
107 {
108         struct msgb *msg = msgb_alloc(size, name);
109         if (msg)
110                 msgb_reserve(msg, headroom);
111         return msg;
112 }
113
114 #endif /* _MSGB_H */