LAPDm: When Rx DATA from L1, L1 does not know the SAPI
[osmocom-bb.git] / src / msgb.c
1 /* (C) 2008 by Harald Welte <laforge@gnumonks.org>
2  * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
3  * All Rights Reserved
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  */
20
21
22 #include <unistd.h>
23 #include <string.h>
24 #include <stdlib.h>
25
26 #include <osmocom/core/msgb.h>
27 //#include <openbsc/gsm_data.h>
28 #include <osmocom/core/talloc.h>
29 //#include <openbsc/debug.h>
30
31 void *tall_msgb_ctx;
32
33 struct msgb *msgb_alloc(uint16_t size, const char *name)
34 {
35         struct msgb *msg;
36
37         msg = _talloc_zero(tall_msgb_ctx, sizeof(*msg) + size, name);
38
39         if (!msg) {
40                 //LOGP(DRSL, LOGL_FATAL, "unable to allocate msgb\n");
41                 return NULL;
42         }
43
44         msg->data_len = size;
45         msg->len = 0;
46         msg->data = msg->_data;
47         msg->head = msg->_data;
48         msg->tail = msg->_data;
49
50         return msg;
51 }
52
53 void msgb_free(struct msgb *m)
54 {
55         talloc_free(m);
56 }
57
58 void msgb_enqueue(struct llist_head *queue, struct msgb *msg)
59 {
60         llist_add_tail(&msg->list, queue);
61 }
62
63 struct msgb *msgb_dequeue(struct llist_head *queue)
64 {
65         struct llist_head *lh;
66
67         if (llist_empty(queue))
68                 return NULL;
69
70         lh = queue->next;
71         llist_del(lh);
72         
73         return llist_entry(lh, struct msgb, list);
74 }
75
76 void msgb_reset(struct msgb *msg)
77 {
78         msg->len = 0;
79         msg->data = msg->_data;
80         msg->head = msg->_data;
81         msg->tail = msg->_data;
82
83         msg->trx = NULL;
84         msg->lchan = NULL;
85         msg->l2h = NULL;
86         msg->l3h = NULL;
87         msg->l4h = NULL;
88
89         memset(&msg->cb, 0, sizeof(msg->cb));
90 }
91
92 uint8_t *msgb_data(const struct msgb *msg)
93 {
94         return msg->data;
95 }
96
97 uint16_t msgb_length(const struct msgb *msg)
98 {
99         return msg->len;
100 }