Merge commit 'ab1246e0b5ffa0ac8d7b8e8fbe7c51bc22c8e751'
[osmocom-bb.git] / src / host / layer23 / src / misc / rslms.c
1 /* RSLms - GSM 08.58 like protocol between L2 and L3 of GSM Um interface */
2
3 /* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4  *
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 <errno.h>
25 #include <stdio.h>
26
27 #include <osmocore/msgb.h>
28 #include <osmocore/rsl.h>
29 #include <osmocore/tlv.h>
30 #include <osmocore/protocol/gsm_04_08.h>
31
32 #include <osmocom/bb/common/logging.h>
33 #include <osmocom/bb/common/lapdm.h>
34 #include <osmocom/bb/misc/rslms.h>
35 #include <osmocom/bb/misc/layer3.h>
36 #include <osmocom/bb/common/osmocom_data.h>
37 #include <osmocom/bb/common/l1ctl.h>
38
39 /* Send a 'simple' RLL request to L2 */
40 int rslms_tx_rll_req(struct osmocom_ms *ms, uint8_t msg_type,
41                      uint8_t chan_nr, uint8_t link_id)
42 {
43         struct msgb *msg;
44
45         msg = rsl_rll_simple(msg_type, chan_nr, link_id, 1);
46
47         return rslms_recvmsg(msg, ms);
48 }
49
50 /* Send a RLL request (including L3 info) to L2 */
51 int rslms_tx_rll_req_l3(struct osmocom_ms *ms, uint8_t msg_type,
52                         uint8_t chan_nr, uint8_t link_id, struct msgb *msg)
53 {
54         rsl_rll_push_l3(msg, msg_type, chan_nr, link_id, 1);
55
56         return rslms_recvmsg(msg, ms);
57 }
58
59 static int rslms_rx_udata_ind(struct msgb *msg, struct osmocom_ms *ms)
60 {
61         struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
62         struct tlv_parsed tv;
63         int rc = 0;
64         
65         DEBUGP(DRSL, "RSLms UNIT DATA IND chan_nr=0x%02x link_id=0x%02x\n",
66                 rllh->chan_nr, rllh->link_id);
67
68         rsl_tlv_parse(&tv, rllh->data, msgb_l2len(msg)-sizeof(*rllh));
69         if (!TLVP_PRESENT(&tv, RSL_IE_L3_INFO)) {
70                 DEBUGP(DRSL, "UNIT_DATA_IND without L3 INFO ?!?\n");
71                 return -EIO;
72         }
73         msg->l3h = (uint8_t *) TLVP_VAL(&tv, RSL_IE_L3_INFO);
74
75         if (rllh->chan_nr == RSL_CHAN_PCH_AGCH) {
76                 rc = gsm48_rx_ccch(msg, ms);
77         } else if (rllh->chan_nr == RSL_CHAN_BCCH) {
78                 rc = gsm48_rx_bcch(msg, ms);
79         }
80
81         return rc;
82 }
83
84 static int rslms_rx_rll(struct msgb *msg, struct osmocom_ms *ms)
85 {
86         struct abis_rsl_rll_hdr *rllh = msgb_l2(msg);
87         int rc = 0;
88
89         switch (rllh->c.msg_type) {
90         case RSL_MT_DATA_IND:
91                 DEBUGP(DRSL, "RSLms DATA IND\n");
92                 /* FIXME: implement this */
93                 break;
94         case RSL_MT_UNIT_DATA_IND:
95                 rc = rslms_rx_udata_ind(msg, ms);
96                 break;
97         case RSL_MT_EST_IND:
98                 DEBUGP(DRSL, "RSLms EST IND\n");
99                 /* FIXME: implement this */
100                 break;
101         case RSL_MT_EST_CONF:
102                 DEBUGP(DRSL, "RSLms EST CONF\n");
103                 /* FIXME: implement this */
104                 break;
105         case RSL_MT_REL_CONF:
106                 DEBUGP(DRSL, "RSLms REL CONF\n");
107                 /* FIXME: implement this */
108                 break;
109         case RSL_MT_ERROR_IND:
110                 DEBUGP(DRSL, "RSLms ERR IND\n");
111                 /* FIXME: implement this */
112                 break;
113         default:
114                 LOGP(DRSL, LOGL_NOTICE, "unknown RSLms message type "
115                         "0x%02x\n", rllh->c.msg_type);
116                 rc = -EINVAL;
117                 break;
118         }
119         msgb_free(msg);
120         return rc;
121 }
122
123 /* input function that L2 calls when sending messages up to L3 */
124 static int layer3_from_layer2(struct msgb *msg, struct osmocom_ms *ms)
125 {
126         struct abis_rsl_common_hdr *rslh = msgb_l2(msg);
127         int rc = 0;
128
129         switch (rslh->msg_discr & 0xfe) {
130         case ABIS_RSL_MDISC_RLL:
131                 rc = rslms_rx_rll(msg, ms);
132                 break;
133         default:
134                 /* FIXME: implement this */
135                 LOGP(DRSL, LOGL_NOTICE, "unknown RSLms msg_discr 0x%02x\n",
136                         rslh->msg_discr);
137                 msgb_free(msg);
138                 rc = -EINVAL;
139                 break;
140         }
141
142         return rc;
143 }
144
145 int layer3_init(struct osmocom_ms *ms)
146 {
147         return osmol2_register_handler(ms, &layer3_from_layer2);
148 }