blob: a6f010016d8e4bbb475f565a4d41d400846b5dee [file] [log] [blame]
Harald Welte77847ad2015-10-06 22:07:04 +02001/* hnb-gw specific code for RUA (Ranap User Adaption) */
2
3/* (C) 2015 by Harald Welte <laforge@gnumonks.org>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21
Harald Welte318e4d52015-09-10 18:47:08 +020022#include <osmocom/core/msgb.h>
23#include <osmocom/core/utils.h>
Harald Welteffa7c0a2015-12-23 00:03:41 +010024#include <osmocom/netif/stream.h>
Harald Welte318e4d52015-09-10 18:47:08 +020025
Harald Weltec4338de2015-12-24 00:40:52 +010026#include <osmocom/sigtran/sccp_sap.h>
27#include <osmocom/sigtran/sua.h>
28
Harald Welte318e4d52015-09-10 18:47:08 +020029#include <unistd.h>
30#include <errno.h>
31#include <string.h>
32
33#include "asn1helpers.h"
34
35#include "hnbgw.h"
Harald Welte350814a2015-09-10 22:32:15 +020036#include "hnbgw_ranap.h"
Harald Welte318e4d52015-09-10 18:47:08 +020037#include "rua_common.h"
38#include "rua_ies_defs.h"
Harald Weltec4338de2015-12-24 00:40:52 +010039#include "context_map.h"
Harald Welte318e4d52015-09-10 18:47:08 +020040
41static int hnbgw_rua_tx(struct hnb_context *ctx, struct msgb *msg)
42{
43 if (!msg)
44 return -EINVAL;
45
Harald Welteffa7c0a2015-12-23 00:03:41 +010046 msgb_sctp_ppid(msg) = IUH_PPI_RUA;
Daniel Willmann6480cad2016-01-06 18:06:26 +010047 osmo_stream_srv_send(ctx->conn, msg);
48
49 return 0;
Harald Welte318e4d52015-09-10 18:47:08 +020050}
51
Harald Weltecd5e9812015-12-23 22:14:16 +010052int rua_tx_udt(struct hnb_context *hnb, const uint8_t *data, unsigned int len)
Harald Welte64b4ebe2015-09-10 19:29:59 +020053{
Harald Weltee2e5d4d2015-09-10 23:49:45 +020054 RUA_ConnectionlessTransfer_t out;
55 RUA_ConnectionlessTransferIEs_t ies;
56 struct msgb *msg;
57 int rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +020058
Harald Weltee2e5d4d2015-09-10 23:49:45 +020059 memset(&ies, 0, sizeof(ies));
Harald Weltecd5e9812015-12-23 22:14:16 +010060 ies.ranaP_Message.buf = (uint8_t *) data;
61 ies.ranaP_Message.size = len;
Harald Weltee2e5d4d2015-09-10 23:49:45 +020062
63 /* FIXME: msgb_free(msg)? ownership not yet clear */
64
65 memset(&out, 0, sizeof(out));
66 rc = rua_encode_connectionlesstransferies(&out, &ies);
67 if (rc < 0)
68 return rc;
69
70 msg = rua_generate_initiating_message(RUA_ProcedureCode_id_ConnectionlessTransfer,
71 RUA_Criticality_reject,
72 &asn_DEF_RUA_ConnectionlessTransfer,
73 &out);
Harald Weltecd5e9812015-12-23 22:14:16 +010074 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_RUA_ConnectionlessTransfer, &out);
Harald Weltee2e5d4d2015-09-10 23:49:45 +020075
Harald Weltec4338de2015-12-24 00:40:52 +010076 DEBUGP(DRUA, "transmitting RUA payload of %u bytes\n", msgb_length(msg));
Harald Weltee2e5d4d2015-09-10 23:49:45 +020077
Harald Weltec4338de2015-12-24 00:40:52 +010078 return hnbgw_rua_tx(hnb, msg);
Harald Welte64b4ebe2015-09-10 19:29:59 +020079}
80
Harald Weltecd5e9812015-12-23 22:14:16 +010081int rua_tx_dt(struct hnb_context *hnb, int is_ps, uint32_t context_id,
82 const uint8_t *data, unsigned int len)
Harald Welte0f0ea812015-09-11 18:58:28 +020083{
84 RUA_DirectTransfer_t out;
85 RUA_DirectTransferIEs_t ies;
Harald Weltecd5e9812015-12-23 22:14:16 +010086 uint32_t ctxidbuf;
Harald Welte0f0ea812015-09-11 18:58:28 +020087 struct msgb *msg;
88 int rc;
89
90 memset(&ies, 0, sizeof(ies));
Harald Weltecd5e9812015-12-23 22:14:16 +010091 if (is_ps)
92 ies.cN_DomainIndicator = RUA_CN_DomainIndicator_ps_domain;
93 else
94 ies.cN_DomainIndicator = RUA_CN_DomainIndicator_cs_domain;
95 asn1_u24_to_bitstring(&ies.context_ID, &ctxidbuf, context_id);
96 ies.ranaP_Message.buf = (uint8_t *) data;
97 ies.ranaP_Message.size = len;
Harald Welte0f0ea812015-09-11 18:58:28 +020098
99 /* FIXME: msgb_free(msg)? ownership not yet clear */
100
101 memset(&out, 0, sizeof(out));
102 rc = rua_encode_directtransferies(&out, &ies);
103 if (rc < 0)
104 return rc;
105
106 msg = rua_generate_initiating_message(RUA_ProcedureCode_id_DirectTransfer,
107 RUA_Criticality_reject,
108 &asn_DEF_RUA_DirectTransfer,
109 &out);
Harald Weltecd5e9812015-12-23 22:14:16 +0100110 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_RUA_DirectTransfer, &out);
Harald Welte0f0ea812015-09-11 18:58:28 +0200111
Harald Welte5bea8002015-12-26 23:40:31 +0100112 DEBUGP(DRUA, "transmitting RUA (cn=%s) payload of %u bytes\n",
113 is_ps ? "ps" : "cs", msgb_length(msg));
Harald Welte0f0ea812015-09-11 18:58:28 +0200114
Harald Weltecd5e9812015-12-23 22:14:16 +0100115 return hnbgw_rua_tx(hnb, msg);
Harald Welte0f0ea812015-09-11 18:58:28 +0200116}
117
Harald Weltecd5e9812015-12-23 22:14:16 +0100118int rua_tx_disc(struct hnb_context *hnb, int is_ps, uint32_t context_id,
119 const RUA_Cause_t *cause, const uint8_t *data, unsigned int len)
120{
121 RUA_Disconnect_t out;
122 RUA_DisconnectIEs_t ies;
123 struct msgb *msg;
124 uint32_t ctxidbuf;
125 int rc;
126
127 memset(&ies, 0, sizeof(ies));
128 if (is_ps)
129 ies.cN_DomainIndicator = RUA_CN_DomainIndicator_ps_domain;
130 else
131 ies.cN_DomainIndicator = RUA_CN_DomainIndicator_cs_domain;
132 asn1_u24_to_bitstring(&ies.context_ID, &ctxidbuf, context_id);
133 memcpy(&ies.cause, cause, sizeof(ies.cause));
134 if (data && len) {
135 ies.presenceMask |= DISCONNECTIES_RUA_RANAP_MESSAGE_PRESENT;
136 ies.ranaP_Message.buf = (uint8_t *) data;
137 ies.ranaP_Message.size = len;
138 }
139
140 /* FIXME: msgb_free(msg)? ownership not yet clear */
141
142 memset(&out, 0, sizeof(out));
143 rc = rua_encode_disconnecties(&out, &ies);
144 if (rc < 0)
145 return rc;
146
147 msg = rua_generate_initiating_message(RUA_ProcedureCode_id_Disconnect,
148 RUA_Criticality_reject,
149 &asn_DEF_RUA_Disconnect,
150 &out);
151 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_RUA_Disconnect, &out);
152
Harald Welte5bea8002015-12-26 23:40:31 +0100153 DEBUGP(DRUA, "transmitting RUA (cn=%s) payload of %u bytes\n",
154 is_ps ? "ps" : "cs", msgb_length(msg));
155
Harald Weltecd5e9812015-12-23 22:14:16 +0100156
157 return hnbgw_rua_tx(hnb, msg);
158}
159
160
Harald Welte0f0ea812015-09-11 18:58:28 +0200161
Harald Weltec4338de2015-12-24 00:40:52 +0100162/* forward a RUA message to the SCCP User API to SCCP/SUA */
163static int rua_to_scu(struct hnb_context *hnb, struct hnbgw_cnlink *cn,
164 enum osmo_scu_prim_type type,
165 uint32_t context_id, uint32_t cause,
166 const uint8_t *data, unsigned int len)
167{
168 struct msgb *msg = msgb_alloc(1500, "rua_to_sua");
169 struct osmo_scu_prim *prim;
170 struct hnbgw_context_map *map;
171 int rc;
172
Harald Welte49287972015-12-29 19:00:35 +0100173 if (!cn) {
174 DEBUGP(DRUA, "CN=NULL, discarding message\n");
175 return 0;
176 }
177
Harald Weltec4338de2015-12-24 00:40:52 +0100178 prim = (struct osmo_scu_prim *) msgb_put(msg, sizeof(*prim));
179 osmo_prim_init(&prim->oph, SCCP_SAP_USER, type, PRIM_OP_REQUEST, msg);
180
181 map = context_map_alloc_by_hnb(hnb, context_id, cn);
182
183 /* add primitive header */
184 switch (type) {
185 case OSMO_SCU_PRIM_N_CONNECT:
186 prim->u.connect.called_addr;
187 prim->u.connect.calling_addr;
188 prim->u.connect.sccp_class = 2;
189 prim->u.connect.conn_id = map->scu_conn_id;
190 break;
191 case OSMO_SCU_PRIM_N_DATA:
192 prim->u.data.conn_id = map->scu_conn_id;
193 break;
194 case OSMO_SCU_PRIM_N_DISCONNECT:
195 prim->u.disconnect.conn_id = map->scu_conn_id;
196 prim->u.disconnect.cause = cause;
197 break;
198 case OSMO_SCU_PRIM_N_UNITDATA:
199 prim->u.unitdata.called_addr;
200 prim->u.unitdata.calling_addr;
201 break;
202 default:
203 return -EINVAL;
204 }
205
206 /* add optional data section, if needed */
207 if (data && len) {
208 msg->l2h = msgb_put(msg, len);
209 memcpy(msg->l2h, data, len);
210 }
211
212 rc = osmo_sua_user_link_down(cn->sua_link, &prim->oph);
213
214 return rc;
215}
216
217static uint32_t rua_to_scu_cause(RUA_Cause_t *in)
218{
219 /* FIXME: Implement this! */
220#if 0
221 switch (in->present) {
222 case RUA_Cause_PR_NOTHING:
223 break;
224 case RUA_Cause_PR_radioNetwork:
225 switch (in->choice.radioNetwork) {
226 case RUA_CauseRadioNetwork_normal:
227 case RUA_CauseRadioNetwork_connect_failed:
228 case RUA_CauseRadioNetwork_network_release:
229 case RUA_CauseRadioNetwork_unspecified:
230 }
231 break;
232 case RUA_Cause_PR_transport:
233 switch (in->choice.transport) {
234 case RUA_CauseTransport_transport_resource_unavailable:
235 break;
236 case RUA_CauseTransport_unspecified:
237 break;
238 }
239 break;
240 case RUA_Cause_PR_protocol:
241 switch (in->choice.protocol) {
242 case RUA_CauseProtocol_transfer_syntax_error:
243 break;
244 case RUA_CauseProtocol_abstract_syntax_error_reject:
245 break;
246 case RUA_CauseProtocol_abstract_syntax_error_ignore_and_notify:
247 break;
248 case RUA_CauseProtocol_message_not_compatible_with_receiver_state:
249 break;
250 case RUA_CauseProtocol_semantic_error:
251 break;
252 case RUA_CauseProtocol_unspecified:
253 break;
254 case RUA_CauseProtocol_abstract_syntax_error_falsely_constructed_message:
255 break;
256 }
257 break;
258 case RUA_Cause_PR_misc:
259 switch (in->choice.misc) {
260 case RUA_CauseMisc_processing_overload:
261 break;
262 case RUA_CauseMisc_hardware_failure:
263 break;
264 case RUA_CauseMisc_o_and_m_intervention:
265 break;
266 case RUA_CauseMisc_unspecified:
267 break;
268 }
269 break;
270 default:
271 break;
272 }
273#else
274 return 0;
275#endif
276
277}
278
Harald Welte350814a2015-09-10 22:32:15 +0200279static int rua_rx_init_connect(struct msgb *msg, ANY_t *in)
Harald Welte64b4ebe2015-09-10 19:29:59 +0200280{
281 RUA_ConnectIEs_t ies;
Harald Weltec4338de2015-12-24 00:40:52 +0100282 struct hnb_context *hnb = msg->dst;
283 struct hnbgw_cnlink *cn;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200284 uint32_t context_id;
285 int rc;
286
287 rc = rua_decode_connecties(&ies, in);
288 if (rc < 0)
289 return rc;
290
Harald Welteb0de9062015-12-24 14:10:17 +0100291 context_id = asn1bitstr_to_u24(&ies.context_ID);
Harald Welte64b4ebe2015-09-10 19:29:59 +0200292
Harald Weltec4338de2015-12-24 00:40:52 +0100293 /* route to CS (MSC) or PS (SGSN) domain */
294 switch (ies.cN_DomainIndicator) {
295 case RUA_CN_DomainIndicator_cs_domain:
296 cn = hnb->gw->cnlink_cs;
297 break;
298 case RUA_CN_DomainIndicator_ps_domain:
299 cn = hnb->gw->cnlink_ps;
300 break;
Harald Welte5bea8002015-12-26 23:40:31 +0100301 default:
302 LOGP(DRUA, LOGL_ERROR, "Unsupported Domain %u\n",
303 ies.cN_DomainIndicator);
Daniel Willmann11e912a2016-01-07 13:19:30 +0100304 rua_free_connecties(&ies);
Harald Welte5bea8002015-12-26 23:40:31 +0100305 return -1;
Harald Weltec4338de2015-12-24 00:40:52 +0100306 }
307
Harald Welte37166a22015-12-24 10:12:09 +0100308 DEBUGP(DRUA, "RUA Connect.req(ctx=0x%x, %s)\n", context_id,
Harald Welte64b4ebe2015-09-10 19:29:59 +0200309 ies.establishment_Cause == RUA_Establishment_Cause_emergency_call
310 ? "emergency" : "normal");
Harald Weltec4338de2015-12-24 00:40:52 +0100311
312 rc = rua_to_scu(hnb, cn, OSMO_SCU_PRIM_N_CONNECT,
313 context_id, 0, ies.ranaP_Message.buf,
314 ies.ranaP_Message.size);
315 /* FIXME: what to do with the asn1c-allocated memory */
Daniel Willmann11e912a2016-01-07 13:19:30 +0100316 rua_free_connecties(&ies);
Harald Welte0f0ea812015-09-11 18:58:28 +0200317
318 return rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200319}
320
Harald Welte350814a2015-09-10 22:32:15 +0200321static int rua_rx_init_disconnect(struct msgb *msg, ANY_t *in)
Harald Welte64b4ebe2015-09-10 19:29:59 +0200322{
323 RUA_DisconnectIEs_t ies;
Harald Weltec4338de2015-12-24 00:40:52 +0100324 struct hnb_context *hnb = msg->dst;
325 struct hnbgw_cnlink *cn;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200326 uint32_t context_id;
Harald Weltec4338de2015-12-24 00:40:52 +0100327 uint32_t scu_cause;
328 uint8_t *ranap_data = NULL;
329 unsigned int ranap_len = 0;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200330 int rc;
331
332 rc = rua_decode_disconnecties(&ies, in);
333 if (rc < 0)
334 return rc;
335
Harald Welteb0de9062015-12-24 14:10:17 +0100336 context_id = asn1bitstr_to_u24(&ies.context_ID);
Harald Weltec4338de2015-12-24 00:40:52 +0100337 scu_cause = rua_to_scu_cause(&ies.cause);
Harald Welte64b4ebe2015-09-10 19:29:59 +0200338
Harald Welte37166a22015-12-24 10:12:09 +0100339 DEBUGP(DRUA, "RUA Disconnect.req(ctx=0x%x,cause=%s)\n", context_id,
Harald Welte64b4ebe2015-09-10 19:29:59 +0200340 rua_cause_str(&ies.cause));
Harald Welte0f0ea812015-09-11 18:58:28 +0200341
Harald Weltec4338de2015-12-24 00:40:52 +0100342 /* route to CS (MSC) or PS (SGSN) domain */
343 switch (ies.cN_DomainIndicator) {
344 case RUA_CN_DomainIndicator_cs_domain:
345 cn = hnb->gw->cnlink_cs;
346 break;
347 case RUA_CN_DomainIndicator_ps_domain:
348 cn = hnb->gw->cnlink_ps;
349 break;
350 }
351
352 if (ies.presenceMask & DISCONNECTIES_RUA_RANAP_MESSAGE_PRESENT) {
353 ranap_data = ies.ranaP_Message.buf;
354 ranap_len = ies.ranaP_Message.size;
355 }
356
357 rc = rua_to_scu(hnb, cn, OSMO_SCU_PRIM_N_DISCONNECT,
358 context_id, scu_cause, ranap_data, ranap_len);
359 /* FIXME: what to do with the asn1c-allocated memory */
Daniel Willmann11e912a2016-01-07 13:19:30 +0100360 rua_free_disconnecties(&ies);
Harald Weltec4338de2015-12-24 00:40:52 +0100361
Harald Welte0f0ea812015-09-11 18:58:28 +0200362 return rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200363}
364
Harald Welte350814a2015-09-10 22:32:15 +0200365static int rua_rx_init_dt(struct msgb *msg, ANY_t *in)
Harald Welte64b4ebe2015-09-10 19:29:59 +0200366{
367 RUA_DirectTransferIEs_t ies;
Harald Weltec4338de2015-12-24 00:40:52 +0100368 struct hnb_context *hnb = msg->dst;
369 struct hnbgw_cnlink *cn;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200370 uint32_t context_id;
371 int rc;
372
373 rc = rua_decode_directtransferies(&ies, in);
374 if (rc < 0)
375 return rc;
376
Harald Welteb0de9062015-12-24 14:10:17 +0100377 context_id = asn1bitstr_to_u24(&ies.context_ID);
Harald Welte64b4ebe2015-09-10 19:29:59 +0200378
Harald Welte37166a22015-12-24 10:12:09 +0100379 DEBUGP(DRUA, "RUA Data.req(ctx=0x%x)\n", context_id);
Harald Weltec4338de2015-12-24 00:40:52 +0100380
381 /* route to CS (MSC) or PS (SGSN) domain */
382 switch (ies.cN_DomainIndicator) {
383 case RUA_CN_DomainIndicator_cs_domain:
384 cn = hnb->gw->cnlink_cs;
385 break;
386 case RUA_CN_DomainIndicator_ps_domain:
387 cn = hnb->gw->cnlink_ps;
388 break;
389 }
390
391 rc = rua_to_scu(hnb, cn, OSMO_SCU_PRIM_N_DATA,
392 context_id, 0, ies.ranaP_Message.buf,
393 ies.ranaP_Message.size);
394 /* FIXME: what to do with the asn1c-allocated memory */
Daniel Willmann11e912a2016-01-07 13:19:30 +0100395 rua_free_directtransferies(&ies);
Harald Welte0f0ea812015-09-11 18:58:28 +0200396
397 return rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200398
399}
400
Harald Welte350814a2015-09-10 22:32:15 +0200401static int rua_rx_init_udt(struct msgb *msg, ANY_t *in)
Harald Welte64b4ebe2015-09-10 19:29:59 +0200402{
403 RUA_ConnectionlessTransferIEs_t ies;
Harald Weltec4338de2015-12-24 00:40:52 +0100404 RUA_CN_DomainIndicator_t domain;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200405 int rc;
406
407 rc = rua_decode_connectionlesstransferies(&ies, in);
408 if (rc < 0)
409 return rc;
410
Harald Welte37166a22015-12-24 10:12:09 +0100411 DEBUGP(DRUA, "RUA UData.req()\n");
Harald Welte64b4ebe2015-09-10 19:29:59 +0200412
Harald Weltec4338de2015-12-24 00:40:52 +0100413 /* according tot the spec, we can primarily receive Overload,
414 * Reset, Reset ACK, Error Indication, reset Resource, Reset
415 * Resurce Acknowledge as connecitonless RANAP. There are some
416 * more messages regarding Information Transfer, Direct
417 * Information Transfer and Uplink Information Trnansfer that we
418 * can ignore. In either case, it is RANAP that we need to
419 * decode... */
Harald Welte350814a2015-09-10 22:32:15 +0200420 rc = hnbgw_ranap_rx(msg, ies.ranaP_Message.buf, ies.ranaP_Message.size);
Daniel Willmann11e912a2016-01-07 13:19:30 +0100421 rua_free_connectionlesstransferies(&ies);
Harald Welte350814a2015-09-10 22:32:15 +0200422
423 return rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200424}
425
Harald Welte350814a2015-09-10 22:32:15 +0200426
427static int rua_rx_init_err_ind(struct msgb *msg, ANY_t *in)
Harald Welte64b4ebe2015-09-10 19:29:59 +0200428{
429 RUA_ErrorIndicationIEs_t ies;
430 int rc;
431
432 rc = rua_decode_errorindicationies(&ies, in);
433 if (rc < 0)
434 return rc;
435
Harald Welte831e1ee2015-12-25 10:28:55 +0100436 LOGP(DRUA, LOGL_ERROR, "RUA UData.ErrorInd(%s)\n",
437 rua_cause_str(&ies.cause));
Harald Weltec4338de2015-12-24 00:40:52 +0100438
Daniel Willmann11e912a2016-01-07 13:19:30 +0100439 rua_free_errorindicationies(&ies);
Harald Weltec4338de2015-12-24 00:40:52 +0100440 return rc;
Harald Welte64b4ebe2015-09-10 19:29:59 +0200441}
Harald Welte318e4d52015-09-10 18:47:08 +0200442
Harald Welte350814a2015-09-10 22:32:15 +0200443static int rua_rx_initiating_msg(struct msgb *msg, RUA_InitiatingMessage_t *imsg)
Harald Welte318e4d52015-09-10 18:47:08 +0200444{
445 int rc;
446
447 switch (imsg->procedureCode) {
448 case RUA_ProcedureCode_id_Connect:
Harald Welte350814a2015-09-10 22:32:15 +0200449 rc = rua_rx_init_connect(msg, &imsg->value);
Harald Welte318e4d52015-09-10 18:47:08 +0200450 break;
451 case RUA_ProcedureCode_id_DirectTransfer:
Harald Welte350814a2015-09-10 22:32:15 +0200452 rc = rua_rx_init_dt(msg, &imsg->value);
Harald Welte318e4d52015-09-10 18:47:08 +0200453 break;
454 case RUA_ProcedureCode_id_Disconnect:
Harald Welte350814a2015-09-10 22:32:15 +0200455 rc = rua_rx_init_disconnect(msg, &imsg->value);
Harald Welte318e4d52015-09-10 18:47:08 +0200456 break;
457 case RUA_ProcedureCode_id_ConnectionlessTransfer:
Harald Welte350814a2015-09-10 22:32:15 +0200458 rc = rua_rx_init_udt(msg, &imsg->value);
Harald Welte318e4d52015-09-10 18:47:08 +0200459 break;
460 case RUA_ProcedureCode_id_ErrorIndication:
Harald Welte350814a2015-09-10 22:32:15 +0200461 rc = rua_rx_init_err_ind(msg, &imsg->value);
Harald Welte64b4ebe2015-09-10 19:29:59 +0200462 break;
Harald Welte318e4d52015-09-10 18:47:08 +0200463 case RUA_ProcedureCode_id_privateMessage:
464 break;
465 default:
Harald Welte37166a22015-12-24 10:12:09 +0100466 LOGP(DRUA, LOGL_NOTICE, "Unknown RUA Procedure %u\n",
467 imsg->procedureCode);
468 rc = -1;
Harald Welte318e4d52015-09-10 18:47:08 +0200469 }
Harald Welte37166a22015-12-24 10:12:09 +0100470
471 return rc;
Harald Welte318e4d52015-09-10 18:47:08 +0200472}
473
Harald Welte350814a2015-09-10 22:32:15 +0200474static int rua_rx_successful_outcome_msg(struct msgb *msg, RUA_SuccessfulOutcome_t *in)
Harald Welte318e4d52015-09-10 18:47:08 +0200475{
Harald Weltec4338de2015-12-24 00:40:52 +0100476 /* FIXME */
Harald Welte37166a22015-12-24 10:12:09 +0100477 LOGP(DRUA, LOGL_NOTICE, "Unexpected RUA Sucessful Outcome\n");
478 return -1;
Harald Welte318e4d52015-09-10 18:47:08 +0200479}
480
Harald Welte350814a2015-09-10 22:32:15 +0200481static int rua_rx_unsuccessful_outcome_msg(struct msgb *msg, RUA_UnsuccessfulOutcome_t *in)
Harald Welte318e4d52015-09-10 18:47:08 +0200482{
Harald Weltec4338de2015-12-24 00:40:52 +0100483 /* FIXME */
Harald Welte37166a22015-12-24 10:12:09 +0100484 LOGP(DRUA, LOGL_NOTICE, "Unexpected RUA Unsucessful Outcome\n");
485 return -1;
Harald Welte318e4d52015-09-10 18:47:08 +0200486}
487
488
Harald Welte350814a2015-09-10 22:32:15 +0200489static int _hnbgw_rua_rx(struct msgb *msg, RUA_RUA_PDU_t *pdu)
Harald Welte318e4d52015-09-10 18:47:08 +0200490{
491 int rc;
492
493 /* it's a bit odd that we can't dispatch on procedure code, but
494 * that's not possible */
495 switch (pdu->present) {
496 case RUA_RUA_PDU_PR_initiatingMessage:
Harald Welte350814a2015-09-10 22:32:15 +0200497 rc = rua_rx_initiating_msg(msg, &pdu->choice.initiatingMessage);
Harald Welte318e4d52015-09-10 18:47:08 +0200498 break;
499 case RUA_RUA_PDU_PR_successfulOutcome:
Harald Welte350814a2015-09-10 22:32:15 +0200500 rc = rua_rx_successful_outcome_msg(msg, &pdu->choice.successfulOutcome);
Harald Welte318e4d52015-09-10 18:47:08 +0200501 break;
502 case RUA_RUA_PDU_PR_unsuccessfulOutcome:
Harald Welte350814a2015-09-10 22:32:15 +0200503 rc = rua_rx_unsuccessful_outcome_msg(msg, &pdu->choice.unsuccessfulOutcome);
Harald Welte318e4d52015-09-10 18:47:08 +0200504 break;
505 default:
Harald Welte37166a22015-12-24 10:12:09 +0100506 LOGP(DRUA, LOGL_NOTICE, "Unknown RUA presence %u\n", pdu->present);
507 rc = -1;
Harald Welte318e4d52015-09-10 18:47:08 +0200508 }
Harald Welte37166a22015-12-24 10:12:09 +0100509
510 return rc;
Harald Welte318e4d52015-09-10 18:47:08 +0200511}
512
513int hnbgw_rua_rx(struct hnb_context *hnb, struct msgb *msg)
514{
515 RUA_RUA_PDU_t _pdu, *pdu = &_pdu;
516 asn_dec_rval_t dec_ret;
517 int rc;
518
519 /* decode and handle to _hnbgw_hnbap_rx() */
520
521 memset(pdu, 0, sizeof(*pdu));
522 dec_ret = aper_decode(NULL, &asn_DEF_RUA_RUA_PDU, (void **) &pdu,
523 msg->data, msgb_length(msg), 0, 0);
524 if (dec_ret.code != RC_OK) {
Harald Weltef42317b2015-12-23 15:36:31 +0100525 LOGP(DRUA, LOGL_ERROR, "Error in ASN.1 decode\n");
Harald Welte318e4d52015-09-10 18:47:08 +0200526 return rc;
527 }
528
Harald Welte350814a2015-09-10 22:32:15 +0200529 rc = _hnbgw_rua_rx(msg, pdu);
Harald Welte318e4d52015-09-10 18:47:08 +0200530
531 return rc;
532}
533
534
535int hnbgw_rua_init(void)
536{
Harald Weltec4338de2015-12-24 00:40:52 +0100537 return 0;
Harald Welte318e4d52015-09-10 18:47:08 +0200538}