blob: edeb975a9ae6465ffce2c4a98303b0024ea8239c [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* (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>
Harald Welte404d8162009-01-01 00:33:02 +000022#include <string.h>
Harald Welte52b1f982008-12-23 20:25:15 +000023#include <stdlib.h>
24#include <sys/types.h>
25
Harald Welte8470bf22008-12-25 23:28:35 +000026#include <openbsc/msgb.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020027#include <openbsc/gsm_data.h>
28#include <openbsc/talloc.h>
29
30static void *tall_msgb_ctx;
Harald Welte52b1f982008-12-23 20:25:15 +000031
Harald Welte966636f2009-06-26 19:39:35 +020032struct msgb *msgb_alloc(u_int16_t size, const char *name)
Harald Welte52b1f982008-12-23 20:25:15 +000033{
Harald Welte2cf161b2009-06-20 22:36:41 +020034 struct msgb *msg;
35
Harald Welte966636f2009-06-26 19:39:35 +020036 msg = _talloc_zero(tall_msgb_ctx, sizeof(*msg) + size, name);
Harald Welte52b1f982008-12-23 20:25:15 +000037
38 if (!msg)
39 return NULL;
40
41 msg->data_len = size;
42 msg->len = 0;
43 msg->data = msg->_data;
44
45 msg->head = msg->data;
46 msg->data = msg->data;
47 /* reset tail pointer */
Harald Welte8470bf22008-12-25 23:28:35 +000048 msg->tail = msg->data;
Harald Welte52b1f982008-12-23 20:25:15 +000049 //msg->end = msg->tail + size;
50
51 return msg;
52}
53
54void msgb_free(struct msgb *m)
55{
Harald Welte2cf161b2009-06-20 22:36:41 +020056 talloc_free(m);
Harald Welte52b1f982008-12-23 20:25:15 +000057}
Harald Welte8470bf22008-12-25 23:28:35 +000058
59void msgb_enqueue(struct llist_head *queue, struct msgb *msg)
60{
61 llist_add_tail(&msg->list, queue);
62}
63
64struct msgb *msgb_dequeue(struct llist_head *queue)
65{
66 struct llist_head *lh;
67
68 if (llist_empty(queue))
69 return NULL;
70
71 lh = queue->next;
Harald Weltead384642008-12-26 10:20:07 +000072 llist_del(lh);
73
Harald Welte8470bf22008-12-25 23:28:35 +000074 return llist_entry(lh, struct msgb, list);
75}
Harald Welte7bfc2672009-07-28 00:41:45 +020076
Holger Hans Peter Freythercbbd4982009-10-09 07:33:36 +020077void msgb_reset(struct msgb *msg)
78{
79 msg->len = 0;
80 msg->len = 0;
81 msg->data = msg->_data;
82
83 msg->head = msg->data;
84 msg->data = msg->data;
85 /* reset tail pointer */
86 msg->tail = msg->data;
87
88 /* reset pointers */
89 msg->bts_link = NULL;
90 msg->trx = NULL;
91 msg->lchan = NULL;
92 msg->l2h = NULL;
93 msg->l3h = NULL;
94 msg->smsh = NULL;
95}
96
Harald Welte7bfc2672009-07-28 00:41:45 +020097static __attribute__((constructor)) void on_dso_load_trau_msgb(void)
98{
99 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 1, "msgb");
100}