blob: fb59ad20379188cfb3e63df92adf30a39270c7e5 [file] [log] [blame]
Harald Welte77847ad2015-10-06 22:07:04 +02001/* hnb-gw specific code for HNBAP */
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
Harald Welteba43de42015-08-29 20:33:16 +020021#include <osmocom/core/msgb.h>
Harald Welteb3dae302015-08-30 12:20:09 +020022#include <osmocom/core/utils.h>
Harald Welte10dfc5a2015-09-11 01:34:45 +020023#include <osmocom/gsm/gsm48.h>
Harald Welteba43de42015-08-29 20:33:16 +020024
Harald Welteb3dae302015-08-30 12:20:09 +020025#include <unistd.h>
Harald Welteee77cff2015-08-30 16:57:53 +020026#include <errno.h>
Harald Welteb3dae302015-08-30 12:20:09 +020027#include <string.h>
28
Harald Welte30afef32015-08-30 12:28:29 +020029#include "asn1helpers.h"
Harald Welte1d2c39d2015-09-11 17:49:37 +020030#include "iu_helpers.h"
Harald Welte30afef32015-08-30 12:28:29 +020031
Harald Welteba43de42015-08-29 20:33:16 +020032#include "hnbgw.h"
Harald Welte27f9c4a2015-08-30 22:47:18 +020033#include "hnbap_common.h"
34#include "hnbap_ies_defs.h"
Harald Welteba43de42015-08-29 20:33:16 +020035
Harald Welteee77cff2015-08-30 16:57:53 +020036#define IU_MSG_NUM_IES 32
37#define IU_MSG_NUM_EXT_IES 32
38
Harald Welte27f9c4a2015-08-30 22:47:18 +020039static int hnbgw_hnbap_tx(struct hnb_context *ctx, struct msgb *msg)
Harald Welteee77cff2015-08-30 16:57:53 +020040{
Harald Welte7b54e322015-09-07 22:41:45 +020041 if (!msg)
42 return -EINVAL;
43
Harald Welte3f712562015-09-07 21:53:25 +020044 msgb_ppid(msg) = IUH_PPI_HNBAP;
45 return osmo_wqueue_enqueue(&ctx->wqueue, msg);
Harald Welte27f9c4a2015-08-30 22:47:18 +020046}
Harald Welteee77cff2015-08-30 16:57:53 +020047
Harald Welte27f9c4a2015-08-30 22:47:18 +020048static int hnbgw_tx_hnb_register_acc(struct hnb_context *ctx)
49{
50 HNBRegisterAccept_t accept_out;
51 struct msgb *msg;
52 int rc;
53
54 /* Single required response IE: RNC-ID */
55 HNBRegisterAcceptIEs_t accept = {
56 .rnc_id = ctx->gw->config.rnc_id
57 };
58
59 /* encode the Information Elements */
Harald Welte2204f9d2015-09-07 21:10:50 +020060 memset(&accept_out, 0, sizeof(accept_out));
Harald Welte27f9c4a2015-08-30 22:47:18 +020061 rc = hnbap_encode_hnbregisteraccepties(&accept_out, &accept);
62 if (rc < 0) {
63 return rc;
Harald Welteee77cff2015-08-30 16:57:53 +020064 }
65
Harald Welte27f9c4a2015-08-30 22:47:18 +020066 /* generate a successfull outcome PDU */
67 msg = hnbap_generate_successful_outcome(ProcedureCode_id_HNBRegister,
68 Criticality_reject,
69 &asn_DEF_HNBRegisterAccept,
70 &accept_out);
Harald Welteee77cff2015-08-30 16:57:53 +020071
Daniel Willmann59d17d82015-12-17 17:56:56 +010072 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBRegisterAccept, &accept_out);
73
Harald Welte27f9c4a2015-08-30 22:47:18 +020074 return hnbgw_hnbap_tx(ctx, msg);
Harald Welteee77cff2015-08-30 16:57:53 +020075}
76
77
Harald Welte27f9c4a2015-08-30 22:47:18 +020078static int hnbgw_tx_ue_register_acc(struct ue_context *ue)
Harald Welteba43de42015-08-29 20:33:16 +020079{
Harald Welte27f9c4a2015-08-30 22:47:18 +020080 UERegisterAccept_t accept_out;
81 UERegisterAcceptIEs_t accept;
82 struct msgb *msg;
Harald Welte10dfc5a2015-09-11 01:34:45 +020083 uint8_t encoded_imsi[10];
Daniel Willmann92247312015-12-09 19:04:33 +010084 uint32_t ctx_id;
Harald Welte10dfc5a2015-09-11 01:34:45 +020085 size_t encoded_imsi_len;
Harald Welte27f9c4a2015-08-30 22:47:18 +020086 int rc;
Harald Welteba43de42015-08-29 20:33:16 +020087
Harald Welte1d2c39d2015-09-11 17:49:37 +020088 encoded_imsi_len = encode_iu_imsi(encoded_imsi,
89 sizeof(encoded_imsi), ue->imsi);
Harald Welte10dfc5a2015-09-11 01:34:45 +020090
Harald Welte2204f9d2015-09-07 21:10:50 +020091 memset(&accept, 0, sizeof(accept));
Harald Welte10dfc5a2015-09-11 01:34:45 +020092 accept.uE_Identity.present = UE_Identity_PR_iMSI;
Harald Welte1d2c39d2015-09-11 17:49:37 +020093 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.iMSI,
94 (const char *)encoded_imsi, encoded_imsi_len);
Daniel Willmann92247312015-12-09 19:04:33 +010095 asn1_u24_to_bitstring(&accept.context_ID, &ctx_id, ue->context_id);
Harald Welteba43de42015-08-29 20:33:16 +020096
Harald Welte2204f9d2015-09-07 21:10:50 +020097 memset(&accept_out, 0, sizeof(accept_out));
Harald Welte27f9c4a2015-08-30 22:47:18 +020098 rc = hnbap_encode_ueregisteraccepties(&accept_out, &accept);
99 if (rc < 0) {
100 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200101 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200102
103 msg = hnbap_generate_successful_outcome(ProcedureCode_id_UERegister,
104 Criticality_reject,
105 &asn_DEF_UERegisterAccept,
106 &accept_out);
107 return hnbgw_hnbap_tx(ue->hnb, msg);
Harald Welteba43de42015-08-29 20:33:16 +0200108}
109
Harald Welte27f9c4a2015-08-30 22:47:18 +0200110static int hnbgw_rx_hnb_register_req(struct hnb_context *ctx, ANY_t *in)
Harald Welteba43de42015-08-29 20:33:16 +0200111{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200112 HNBRegisterRequestIEs_t ies;
113 int rc;
Harald Welteba43de42015-08-29 20:33:16 +0200114
Harald Welte27f9c4a2015-08-30 22:47:18 +0200115 rc = hnbap_decode_hnbregisterrequesties(&ies, in);
116 if (rc < 0)
117 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200118
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200119 /* copy all identity parameters from the message to ctx */
Harald Welte27f9c4a2015-08-30 22:47:18 +0200120 asn1_strncpy(ctx->identity_info, &ies.hnB_Identity.hNB_Identity_Info,
121 sizeof(ctx->identity_info));
122 ctx->id.lac = asn1str_to_u16(&ies.lac);
123 ctx->id.sac = asn1str_to_u16(&ies.sac);
124 ctx->id.rac = asn1str_to_u8(&ies.rac);
Daniel Willmannd6a45b42015-12-08 13:55:17 +0100125 ctx->id.cid = asn1bitstr_to_u28(&ies.cellIdentity);
Harald Welteb3dae302015-08-30 12:20:09 +0200126 //ctx->id.mcc FIXME
127 //ctx->id.mnc FIXME
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200128
Daniel Willmannbded9842015-12-17 11:51:17 +0100129 DEBUGP(DHNBAP, "HNB-REGISTER-REQ from %s\n", ctx->identity_info);
Harald Welteee77cff2015-08-30 16:57:53 +0200130
Harald Welte27f9c4a2015-08-30 22:47:18 +0200131 /* Send HNBRegisterAccept */
132 return hnbgw_tx_hnb_register_acc(ctx);
Harald Welteba43de42015-08-29 20:33:16 +0200133}
134
Harald Welte27f9c4a2015-08-30 22:47:18 +0200135static int hnbgw_rx_ue_register_req(struct hnb_context *ctx, ANY_t *in)
Harald Welteba43de42015-08-29 20:33:16 +0200136{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200137 UERegisterRequestIEs_t ies;
138 struct ue_context *ue;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200139 char imsi[16];
Harald Welte27f9c4a2015-08-30 22:47:18 +0200140 int rc;
Harald Welteba43de42015-08-29 20:33:16 +0200141
Harald Welte27f9c4a2015-08-30 22:47:18 +0200142 rc = hnbap_decode_ueregisterrequesties(&ies, in);
143 if (rc < 0)
144 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200145
Harald Welte10dfc5a2015-09-11 01:34:45 +0200146 switch (ies.uE_Identity.present) {
147 case UE_Identity_PR_iMSI:
148 decode_iu_bcd(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSI.buf,
149 ies.uE_Identity.choice.iMSI.size);
150 break;
151 case UE_Identity_PR_iMSIDS41:
152 decode_iu_bcd(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSIDS41.buf,
153 ies.uE_Identity.choice.iMSIDS41.size);
154 break;
155 case UE_Identity_PR_iMSIESN:
156 decode_iu_bcd(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSIESN.iMSIDS41.buf,
157 ies.uE_Identity.choice.iMSIESN.iMSIDS41.size);
158 break;
159 default:
Daniel Willmannbded9842015-12-17 11:51:17 +0100160 LOGP(DHNBAP, LOGL_NOTICE, "UE-REGISTER-REQ without IMSI?!?\n");
Harald Welte10dfc5a2015-09-11 01:34:45 +0200161 return -1;
162 }
Harald Welteb534e5c2015-09-11 00:15:16 +0200163
Daniel Willmannbded9842015-12-17 11:51:17 +0100164 DEBUGP(DHNBAP, "UE-REGSITER-REQ ID_type=%d imsi=%s cause=%ld\n",
Harald Welte10dfc5a2015-09-11 01:34:45 +0200165 ies.uE_Identity.present, imsi, ies.registration_Cause);
166
167 ue = ue_context_by_imsi(imsi);
168 if (!ue)
169 ue = ue_context_alloc(ctx, imsi);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200170
Harald Welte27f9c4a2015-08-30 22:47:18 +0200171 /* Send UERegisterAccept */
172 return hnbgw_tx_ue_register_acc(ue);
Harald Welteba43de42015-08-29 20:33:16 +0200173}
174
Daniel Willmannefceb182015-12-15 20:30:12 +0100175static int hnbgw_rx_ue_deregister(struct hnb_context *ctx, ANY_t *in)
176{
177 UEDe_RegisterIEs_t ies;
178 struct ue_context *ue;
179 int rc;
180 uint32_t ctxid;
181
182 rc = hnbap_decode_uede_registeries(&ies, in);
183 if (rc < 0)
184 return rc;
185
186 ctxid = asn1bitstr_to_u24(&ies.context_ID);
187
Daniel Willmannbded9842015-12-17 11:51:17 +0100188 DEBUGP(DHNBAP, "UE-DE-REGSITER context=%ld cause=%ld\n",
Daniel Willmannefceb182015-12-15 20:30:12 +0100189 ctxid, ies.cause);
190
191 ue = ue_context_by_id(ctxid);
192 if (ue)
193 ue_context_free(ue);
194
195 return 0;
196}
197
Harald Welte3af1db82015-09-11 17:03:16 +0200198static int hnbgw_rx_err_ind(struct hnb_context *hnb, ANY_t *in)
199{
200 ErrorIndicationIEs_t ies;
201 int rc;
202
Harald Welte1d2c39d2015-09-11 17:49:37 +0200203 rc = hnbap_decode_errorindicationies(&ies, in);
Harald Welte3af1db82015-09-11 17:03:16 +0200204 if (rc < 0)
205 return rc;
206
Daniel Willmannbded9842015-12-17 11:51:17 +0100207 LOGP(DHNBAP, LOGL_NOTICE, "HNBAP ERROR.ind, cause: %s\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200208 hnbap_cause_str(&ies.cause));
209
210 return 0;
211}
212
Harald Welte27f9c4a2015-08-30 22:47:18 +0200213static int hnbgw_rx_initiating_msg(struct hnb_context *hnb, InitiatingMessage_t *imsg)
Harald Welteba43de42015-08-29 20:33:16 +0200214{
215 int rc;
216
Harald Welteb3dae302015-08-30 12:20:09 +0200217 switch (imsg->procedureCode) {
Harald Welte27f9c4a2015-08-30 22:47:18 +0200218 case ProcedureCode_id_HNBRegister: /* 8.2 */
219 rc = hnbgw_rx_hnb_register_req(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200220 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200221 case ProcedureCode_id_HNBDe_Register: /* 8.3 */
Harald Welteba43de42015-08-29 20:33:16 +0200222 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200223 case ProcedureCode_id_UERegister: /* 8.4 */
224 rc = hnbgw_rx_ue_register_req(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200225 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200226 case ProcedureCode_id_UEDe_Register: /* 8.5 */
Daniel Willmannefceb182015-12-15 20:30:12 +0100227 rc = hnbgw_rx_ue_deregister(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200228 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200229 case ProcedureCode_id_ErrorIndication: /* 8.6 */
Harald Welte3af1db82015-09-11 17:03:16 +0200230 rc = hnbgw_rx_err_ind(hnb, &imsg->value);
231 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200232 case ProcedureCode_id_TNLUpdate: /* 8.9 */
233 case ProcedureCode_id_HNBConfigTransfer: /* 8.10 */
234 case ProcedureCode_id_RelocationComplete: /* 8.11 */
235 case ProcedureCode_id_U_RNTIQuery: /* 8.12 */
236 case ProcedureCode_id_privateMessage:
Daniel Willmannbded9842015-12-17 11:51:17 +0100237 LOGP(DHNBAP, LOGL_NOTICE, "Unimplemented HNBAP Procedure %ld\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200238 imsg->procedureCode);
Harald Welteba43de42015-08-29 20:33:16 +0200239 break;
240 default:
Daniel Willmannbded9842015-12-17 11:51:17 +0100241 LOGP(DHNBAP, LOGL_NOTICE, "Unknown HNBAP Procedure %ld\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200242 imsg->procedureCode);
Harald Welteba43de42015-08-29 20:33:16 +0200243 break;
244 }
245}
246
Harald Welte27f9c4a2015-08-30 22:47:18 +0200247static int hnbgw_rx_successful_outcome_msg(struct hnb_context *hnb, SuccessfulOutcome_t *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200248{
249
250}
251
Harald Welte27f9c4a2015-08-30 22:47:18 +0200252static int hnbgw_rx_unsuccessful_outcome_msg(struct hnb_context *hnb, UnsuccessfulOutcome_t *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200253{
254
255}
256
257
Harald Welte27f9c4a2015-08-30 22:47:18 +0200258static int _hnbgw_hnbap_rx(struct hnb_context *hnb, HNBAP_PDU_t *pdu)
Harald Welteba43de42015-08-29 20:33:16 +0200259{
Daniel Willmann5f810f42015-12-17 17:57:51 +0100260 int rc = 0;
Harald Welteb3dae302015-08-30 12:20:09 +0200261
Harald Welteba43de42015-08-29 20:33:16 +0200262 /* it's a bit odd that we can't dispatch on procedure code, but
263 * that's not possible */
Harald Welte27f9c4a2015-08-30 22:47:18 +0200264 switch (pdu->present) {
265 case HNBAP_PDU_PR_initiatingMessage:
266 rc = hnbgw_rx_initiating_msg(hnb, &pdu->choice.initiatingMessage);
Harald Welteba43de42015-08-29 20:33:16 +0200267 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200268 case HNBAP_PDU_PR_successfulOutcome:
269 rc = hnbgw_rx_successful_outcome_msg(hnb, &pdu->choice.successfulOutcome);
Harald Welteba43de42015-08-29 20:33:16 +0200270 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200271 case HNBAP_PDU_PR_unsuccessfulOutcome:
272 rc = hnbgw_rx_unsuccessful_outcome_msg(hnb, &pdu->choice.unsuccessfulOutcome);
Harald Welteba43de42015-08-29 20:33:16 +0200273 break;
274 default:
Daniel Willmannbded9842015-12-17 11:51:17 +0100275 LOGP(DHNBAP, LOGL_NOTICE, "Unknown HNBAP Presence %u\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200276 pdu->present);
Daniel Willmann5f810f42015-12-17 17:57:51 +0100277 rc = -1;
Harald Welteba43de42015-08-29 20:33:16 +0200278 }
Daniel Willmann5f810f42015-12-17 17:57:51 +0100279
280 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200281}
282
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200283int hnbgw_hnbap_rx(struct hnb_context *hnb, struct msgb *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200284{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200285 HNBAP_PDU_t _pdu, *pdu = &_pdu;
286 asn_dec_rval_t dec_ret;
Harald Welteee77cff2015-08-30 16:57:53 +0200287 int rc;
288
289 /* decode and handle to _hnbgw_hnbap_rx() */
290
Harald Welte2204f9d2015-09-07 21:10:50 +0200291 memset(pdu, 0, sizeof(*pdu));
Harald Welte27f9c4a2015-08-30 22:47:18 +0200292 dec_ret = aper_decode(NULL, &asn_DEF_HNBAP_PDU, (void **) &pdu,
293 msg->data, msgb_length(msg), 0, 0);
294 if (dec_ret.code != RC_OK) {
Daniel Willmannbded9842015-12-17 11:51:17 +0100295 LOGP(DHNBAP, LOGL_ERROR, "Error in ASN.1 decode\n");
Harald Welteee77cff2015-08-30 16:57:53 +0200296 return rc;
297 }
298
299 rc = _hnbgw_hnbap_rx(hnb, pdu);
Harald Welteee77cff2015-08-30 16:57:53 +0200300
Daniel Willmann59d17d82015-12-17 17:56:56 +0100301 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBAP_PDU, pdu);
302
Harald Welteee77cff2015-08-30 16:57:53 +0200303 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200304}
305
306
307int hnbgw_hnbap_init(void)
308{
309
310}