blob: 2521ca868437e2a0434551f573b3beec6abac379 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
2 * All Rights Reserved
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 */
19
20
21#include <unistd.h>
22#include <string.h>
23#include <stdlib.h>
24#include <sys/types.h>
25
26#include <osmocore/msgb.h>
27//#include <openbsc/gsm_data.h>
28#include <osmocore/talloc.h>
29//#include <openbsc/debug.h>
30
31void *tall_msgb_ctx;
32
33struct 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
48 msg->head = msg->data;
49 msg->data = msg->data;
50 /* reset tail pointer */
51 msg->tail = msg->data;
52 //msg->end = msg->tail + size;
53
54 return msg;
55}
56
57void msgb_free(struct msgb *m)
58{
59 talloc_free(m);
60}
61
62void msgb_enqueue(struct llist_head *queue, struct msgb *msg)
63{
64 llist_add_tail(&msg->list, queue);
65}
66
67struct msgb *msgb_dequeue(struct llist_head *queue)
68{
69 struct llist_head *lh;
70
71 if (llist_empty(queue))
72 return NULL;
73
74 lh = queue->next;
75 llist_del(lh);
76
77 return llist_entry(lh, struct msgb, list);
78}
79
80void msgb_reset(struct msgb *msg)
81{
82 msg->len = 0;
83 msg->len = 0;
84 msg->data = msg->_data;
85
86 msg->head = msg->data;
87 msg->data = msg->data;
88 /* reset tail pointer */
89 msg->tail = msg->data;
90
91 /* reset pointers */
92 msg->bts_link = NULL;
93 msg->trx = NULL;
94 msg->lchan = NULL;
95 msg->l2h = NULL;
96 msg->l3h = NULL;
97 msg->smsh = NULL;
98}