blob: 1d50d4d0852db55b685e98cb0bc7d4b9677f01f7 [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>
Stefan Sperlingc964a2c2018-02-19 17:02:12 +010023#include <osmocom/core/socket.h>
Harald Welte10dfc5a2015-09-11 01:34:45 +020024#include <osmocom/gsm/gsm48.h>
Harald Welteffa7c0a2015-12-23 00:03:41 +010025#include <osmocom/netif/stream.h>
Harald Welteba43de42015-08-29 20:33:16 +020026
Harald Welteb3dae302015-08-30 12:20:09 +020027#include <unistd.h>
Harald Welteee77cff2015-08-30 16:57:53 +020028#include <errno.h>
Harald Welteb3dae302015-08-30 12:20:09 +020029#include <string.h>
30
Harald Welte30afef32015-08-30 12:28:29 +020031#include "asn1helpers.h"
Neels Hofmeyr83457922016-08-26 23:56:44 +020032#include <osmocom/hnbap/hnbap_common.h>
Neels Hofmeyr96979af2016-01-05 15:19:44 +010033#include <osmocom/ranap/iu_helpers.h>
Harald Welte30afef32015-08-30 12:28:29 +020034
Neels Hofmeyrdf63de22016-08-18 13:13:55 +020035#include <osmocom/iuh/hnbgw.h>
Neels Hofmeyr83457922016-08-26 23:56:44 +020036#include <osmocom/hnbap/hnbap_ies_defs.h>
Harald Welteba43de42015-08-29 20:33:16 +020037
Harald Welteee77cff2015-08-30 16:57:53 +020038#define IU_MSG_NUM_IES 32
39#define IU_MSG_NUM_EXT_IES 32
40
Harald Welte27f9c4a2015-08-30 22:47:18 +020041static int hnbgw_hnbap_tx(struct hnb_context *ctx, struct msgb *msg)
Harald Welteee77cff2015-08-30 16:57:53 +020042{
Harald Welte7b54e322015-09-07 22:41:45 +020043 if (!msg)
44 return -EINVAL;
45
Harald Welteffa7c0a2015-12-23 00:03:41 +010046 msgb_sctp_ppid(msg) = IUH_PPI_HNBAP;
Daniel Willmann6480cad2016-01-06 18:06:26 +010047 osmo_stream_srv_send(ctx->conn, msg);
48
49 return 0;
Harald Welte27f9c4a2015-08-30 22:47:18 +020050}
Harald Welteee77cff2015-08-30 16:57:53 +020051
Stefan Sperlingc964a2c2018-02-19 17:02:12 +010052static int hnbgw_tx_hnb_register_rej(struct hnb_context *ctx)
53{
54 HNBRegisterReject_t reject_out;
55 HNBRegisterRejectIEs_t reject;
56 struct msgb *msg;
57 int rc;
58
59 reject.presenceMask = 0,
60 reject.cause.present = Cause_PR_radioNetwork;
61 reject.cause.choice.radioNetwork = CauseRadioNetwork_unspecified;
62
63 /* encode the Information Elements */
64 memset(&reject_out, 0, sizeof(reject_out));
65 rc = hnbap_encode_hnbregisterrejecties(&reject_out, &reject);
66 if (rc < 0) {
67 LOGP(DHNBAP, LOGL_ERROR, "Failure to encode HNB-REGISTER-REJECT to %s: rc=%d\n",
68 ctx->identity_info, rc);
69 return rc;
70 }
71
72 /* generate a successfull outcome PDU */
73 msg = hnbap_generate_unsuccessful_outcome(ProcedureCode_id_HNBRegister,
74 Criticality_reject,
75 &asn_DEF_HNBRegisterReject,
76 &reject_out);
77
78 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBRegisterReject, &reject_out);
79
80 rc = hnbgw_hnbap_tx(ctx, msg);
81 if (rc == 0) {
82 /* Tell libosmo-netif to destroy this connection when it is done
83 * sending our HNB-REGISTER-REJECT response. */
84 osmo_stream_srv_set_flush_and_destroy(ctx->conn);
85 } else {
86 /* The message was not queued. Destroy the connection right away. */
Alexander Couzensad4ea3b2018-07-24 19:04:47 +020087 hnb_context_release(ctx);
Harald Welte9aad1852018-10-21 11:45:26 +020088 return rc;
Stefan Sperlingc964a2c2018-02-19 17:02:12 +010089 }
Harald Welte9aad1852018-10-21 11:45:26 +020090
91 return 0;
Stefan Sperlingc964a2c2018-02-19 17:02:12 +010092}
93
Harald Welte27f9c4a2015-08-30 22:47:18 +020094static int hnbgw_tx_hnb_register_acc(struct hnb_context *ctx)
95{
96 HNBRegisterAccept_t accept_out;
97 struct msgb *msg;
98 int rc;
99
100 /* Single required response IE: RNC-ID */
101 HNBRegisterAcceptIEs_t accept = {
102 .rnc_id = ctx->gw->config.rnc_id
103 };
104
105 /* encode the Information Elements */
Harald Welte2204f9d2015-09-07 21:10:50 +0200106 memset(&accept_out, 0, sizeof(accept_out));
Harald Welte27f9c4a2015-08-30 22:47:18 +0200107 rc = hnbap_encode_hnbregisteraccepties(&accept_out, &accept);
108 if (rc < 0) {
Neels Hofmeyr2293df02018-01-18 19:01:09 +0100109 LOGP(DHNBAP, LOGL_ERROR, "Failure to encode HNB-REGISTER-ACCEPT to %s: rc=%d\n",
110 ctx->identity_info, rc);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200111 return rc;
Harald Welteee77cff2015-08-30 16:57:53 +0200112 }
113
Harald Welte27f9c4a2015-08-30 22:47:18 +0200114 /* generate a successfull outcome PDU */
115 msg = hnbap_generate_successful_outcome(ProcedureCode_id_HNBRegister,
116 Criticality_reject,
117 &asn_DEF_HNBRegisterAccept,
118 &accept_out);
Harald Welteee77cff2015-08-30 16:57:53 +0200119
Daniel Willmann59d17d82015-12-17 17:56:56 +0100120 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBRegisterAccept, &accept_out);
121
Harald Welte27f9c4a2015-08-30 22:47:18 +0200122 return hnbgw_hnbap_tx(ctx, msg);
Harald Welteee77cff2015-08-30 16:57:53 +0200123}
124
125
Harald Welte27f9c4a2015-08-30 22:47:18 +0200126static int hnbgw_tx_ue_register_acc(struct ue_context *ue)
Harald Welteba43de42015-08-29 20:33:16 +0200127{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200128 UERegisterAccept_t accept_out;
129 UERegisterAcceptIEs_t accept;
130 struct msgb *msg;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200131 uint8_t encoded_imsi[10];
Daniel Willmann92247312015-12-09 19:04:33 +0100132 uint32_t ctx_id;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200133 size_t encoded_imsi_len;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200134 int rc;
Harald Welteba43de42015-08-29 20:33:16 +0200135
Harald Welte056984f2016-01-03 16:31:31 +0100136 encoded_imsi_len = ranap_imsi_encode(encoded_imsi,
Harald Welte1d2c39d2015-09-11 17:49:37 +0200137 sizeof(encoded_imsi), ue->imsi);
Harald Welte10dfc5a2015-09-11 01:34:45 +0200138
Harald Welte2204f9d2015-09-07 21:10:50 +0200139 memset(&accept, 0, sizeof(accept));
Harald Welte10dfc5a2015-09-11 01:34:45 +0200140 accept.uE_Identity.present = UE_Identity_PR_iMSI;
Harald Welte1d2c39d2015-09-11 17:49:37 +0200141 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.iMSI,
142 (const char *)encoded_imsi, encoded_imsi_len);
Daniel Willmann92247312015-12-09 19:04:33 +0100143 asn1_u24_to_bitstring(&accept.context_ID, &ctx_id, ue->context_id);
Harald Welteba43de42015-08-29 20:33:16 +0200144
Harald Welte2204f9d2015-09-07 21:10:50 +0200145 memset(&accept_out, 0, sizeof(accept_out));
Harald Welte27f9c4a2015-08-30 22:47:18 +0200146 rc = hnbap_encode_ueregisteraccepties(&accept_out, &accept);
147 if (rc < 0) {
148 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200149 }
Harald Welte27f9c4a2015-08-30 22:47:18 +0200150
151 msg = hnbap_generate_successful_outcome(ProcedureCode_id_UERegister,
152 Criticality_reject,
153 &asn_DEF_UERegisterAccept,
154 &accept_out);
Daniel Willmann541e4292015-12-22 16:25:29 +0100155
156 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING, &accept.uE_Identity.choice.iMSI);
157 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_UERegisterAccept, &accept_out);
158
Harald Welte27f9c4a2015-08-30 22:47:18 +0200159 return hnbgw_hnbap_tx(ue->hnb, msg);
Harald Welteba43de42015-08-29 20:33:16 +0200160}
161
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200162static int hnbgw_tx_ue_register_rej_tmsi(struct hnb_context *hnb, UE_Identity_t *ue_id)
163{
164 UERegisterReject_t reject_out;
165 UERegisterRejectIEs_t reject;
166 struct msgb *msg;
167 int rc;
168
169 memset(&reject, 0, sizeof(reject));
170 reject.uE_Identity.present = ue_id->present;
171
Neels Hofmeyrc94ed092016-09-26 01:27:55 +0200172 /* Copy the identity over to the reject message */
173 switch (ue_id->present) {
174 case UE_Identity_PR_tMSILAI:
175 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id tMSI %d %s\n",
176 ue_id->choice.tMSILAI.tMSI.size,
177 osmo_hexdump(ue_id->choice.tMSILAI.tMSI.buf,
178 ue_id->choice.tMSILAI.tMSI.size));
179
180 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id pLMNID %d %s\n",
181 ue_id->choice.tMSILAI.lAI.pLMNID.size,
182 osmo_hexdump(ue_id->choice.tMSILAI.lAI.pLMNID.buf,
183 ue_id->choice.tMSILAI.lAI.pLMNID.size));
184
185 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id lAC %d %s\n",
186 ue_id->choice.tMSILAI.lAI.lAC.size,
187 osmo_hexdump(ue_id->choice.tMSILAI.lAI.lAC.buf,
188 ue_id->choice.tMSILAI.lAI.lAC.size));
189
190 BIT_STRING_fromBuf(&reject.uE_Identity.choice.tMSILAI.tMSI,
191 ue_id->choice.tMSILAI.tMSI.buf,
192 ue_id->choice.tMSILAI.tMSI.size * 8
193 - ue_id->choice.tMSILAI.tMSI.bits_unused);
194 OCTET_STRING_fromBuf(&reject.uE_Identity.choice.tMSILAI.lAI.pLMNID,
195 ue_id->choice.tMSILAI.lAI.pLMNID.buf,
196 ue_id->choice.tMSILAI.lAI.pLMNID.size);
197 OCTET_STRING_fromBuf(&reject.uE_Identity.choice.tMSILAI.lAI.lAC,
198 ue_id->choice.tMSILAI.lAI.lAC.buf,
199 ue_id->choice.tMSILAI.lAI.lAC.size);
200 break;
201
202 case UE_Identity_PR_pTMSIRAI:
203 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id pTMSI %d %s\n",
204 ue_id->choice.pTMSIRAI.pTMSI.size,
205 osmo_hexdump(ue_id->choice.pTMSIRAI.pTMSI.buf,
206 ue_id->choice.pTMSIRAI.pTMSI.size));
207
208 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id pLMNID %d %s\n",
209 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.size,
210 osmo_hexdump(ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.buf,
211 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.size));
212
213 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id lAC %d %s\n",
214 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.size,
215 osmo_hexdump(ue_id->choice.pTMSIRAI.rAI.lAI.lAC.buf,
216 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.size));
217
218 LOGP(DHNBAP, LOGL_DEBUG, "REJ UE_Id rAC %d %s\n",
219 ue_id->choice.pTMSIRAI.rAI.rAC.size,
220 osmo_hexdump(ue_id->choice.pTMSIRAI.rAI.rAC.buf,
221 ue_id->choice.pTMSIRAI.rAI.rAC.size));
222
223 BIT_STRING_fromBuf(&reject.uE_Identity.choice.pTMSIRAI.pTMSI,
224 ue_id->choice.pTMSIRAI.pTMSI.buf,
225 ue_id->choice.pTMSIRAI.pTMSI.size * 8
226 - ue_id->choice.pTMSIRAI.pTMSI.bits_unused);
227 OCTET_STRING_fromBuf(&reject.uE_Identity.choice.pTMSIRAI.rAI.lAI.pLMNID,
228 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.buf,
229 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.size);
230 OCTET_STRING_fromBuf(&reject.uE_Identity.choice.pTMSIRAI.rAI.lAI.lAC,
231 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.buf,
232 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.size);
233 OCTET_STRING_fromBuf(&reject.uE_Identity.choice.pTMSIRAI.rAI.rAC,
234 ue_id->choice.pTMSIRAI.rAI.rAC.buf,
235 ue_id->choice.pTMSIRAI.rAI.rAC.size);
236 break;
237
238 default:
239 LOGP(DHNBAP, LOGL_ERROR, "Cannot compose UE Register Reject:"
240 " unsupported UE ID (present=%d)\n", ue_id->present);
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200241 return -1;
242 }
243
Neels Hofmeyrc94ed092016-09-26 01:27:55 +0200244 LOGP(DHNBAP, LOGL_ERROR, "Rejecting UE Register Request:"
245 " TMSI identity registration is switched off\n");
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200246
247 reject.cause.present = Cause_PR_radioNetwork;
248 reject.cause.choice.radioNetwork = CauseRadioNetwork_invalid_UE_identity;
249
250 memset(&reject_out, 0, sizeof(reject_out));
251 rc = hnbap_encode_ueregisterrejecties(&reject_out, &reject);
Neels Hofmeyrc94ed092016-09-26 01:27:55 +0200252 if (rc < 0)
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200253 return rc;
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200254
255 msg = hnbap_generate_unsuccessful_outcome(ProcedureCode_id_UERegister,
256 Criticality_reject,
257 &asn_DEF_UERegisterReject,
258 &reject_out);
259
Neels Hofmeyrc94ed092016-09-26 01:27:55 +0200260 /* Free copied identity IEs */
261 switch (ue_id->present) {
262 case UE_Identity_PR_tMSILAI:
263 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_BIT_STRING,
264 &reject.uE_Identity.choice.tMSILAI.tMSI);
265 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
266 &reject.uE_Identity.choice.tMSILAI.lAI.pLMNID);
267 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
268 &reject.uE_Identity.choice.tMSILAI.lAI.lAC);
269 break;
270
271 case UE_Identity_PR_pTMSIRAI:
272 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_BIT_STRING,
273 &reject.uE_Identity.choice.pTMSIRAI.pTMSI);
274 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
275 &reject.uE_Identity.choice.pTMSIRAI.rAI.lAI.pLMNID);
276 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
277 &reject.uE_Identity.choice.pTMSIRAI.rAI.lAI.lAC);
278 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
279 &reject.uE_Identity.choice.pTMSIRAI.rAI.rAC);
280 break;
281
282 default:
283 /* should never happen after above switch() */
284 break;
285 }
286
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200287 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_UERegisterReject, &reject_out);
288
289 return hnbgw_hnbap_tx(hnb, msg);
290}
291
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200292static int hnbgw_tx_ue_register_acc_tmsi(struct hnb_context *hnb, UE_Identity_t *ue_id)
293{
294 UERegisterAccept_t accept_out;
295 UERegisterAcceptIEs_t accept;
296 struct msgb *msg;
297 uint32_t ctx_id;
298 uint32_t tmsi = 0;
299 struct ue_context *ue;
300 int rc;
301
302 memset(&accept, 0, sizeof(accept));
303 accept.uE_Identity.present = ue_id->present;
304
305 switch (ue_id->present) {
306 case UE_Identity_PR_tMSILAI:
307 BIT_STRING_fromBuf(&accept.uE_Identity.choice.tMSILAI.tMSI,
308 ue_id->choice.tMSILAI.tMSI.buf,
309 ue_id->choice.tMSILAI.tMSI.size * 8
310 - ue_id->choice.tMSILAI.tMSI.bits_unused);
311 tmsi = *(uint32_t*)accept.uE_Identity.choice.tMSILAI.tMSI.buf;
312 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.tMSILAI.lAI.pLMNID,
313 ue_id->choice.tMSILAI.lAI.pLMNID.buf,
314 ue_id->choice.tMSILAI.lAI.pLMNID.size);
315 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.tMSILAI.lAI.lAC,
316 ue_id->choice.tMSILAI.lAI.lAC.buf,
317 ue_id->choice.tMSILAI.lAI.lAC.size);
318 break;
319
320 case UE_Identity_PR_pTMSIRAI:
321 BIT_STRING_fromBuf(&accept.uE_Identity.choice.pTMSIRAI.pTMSI,
322 ue_id->choice.pTMSIRAI.pTMSI.buf,
323 ue_id->choice.pTMSIRAI.pTMSI.size * 8
324 - ue_id->choice.pTMSIRAI.pTMSI.bits_unused);
325 tmsi = *(uint32_t*)accept.uE_Identity.choice.pTMSIRAI.pTMSI.buf;
326 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.pTMSIRAI.rAI.lAI.pLMNID,
327 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.buf,
328 ue_id->choice.pTMSIRAI.rAI.lAI.pLMNID.size);
329 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.pTMSIRAI.rAI.lAI.lAC,
330 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.buf,
331 ue_id->choice.pTMSIRAI.rAI.lAI.lAC.size);
332 OCTET_STRING_fromBuf(&accept.uE_Identity.choice.pTMSIRAI.rAI.rAC,
333 ue_id->choice.pTMSIRAI.rAI.rAC.buf,
334 ue_id->choice.pTMSIRAI.rAI.rAC.size);
335 break;
336
337 default:
338 LOGP(DHNBAP, LOGL_ERROR, "Unsupportedccept UE ID (present=%d)\n",
339 ue_id->present);
340 return -1;
341 }
342
343 tmsi = ntohl(tmsi);
344 LOGP(DHNBAP, LOGL_DEBUG, "HNBAP register with TMSI %x\n",
345 tmsi);
346
347 ue = ue_context_by_tmsi(hnb->gw, tmsi);
348 if (!ue)
349 ue = ue_context_alloc(hnb, NULL, tmsi);
350
351 asn1_u24_to_bitstring(&accept.context_ID, &ctx_id, ue->context_id);
352
353 memset(&accept_out, 0, sizeof(accept_out));
354 rc = hnbap_encode_ueregisteraccepties(&accept_out, &accept);
355 if (rc < 0)
356 return rc;
357
358 msg = hnbap_generate_successful_outcome(ProcedureCode_id_UERegister,
359 Criticality_reject,
360 &asn_DEF_UERegisterAccept,
361 &accept_out);
362
363 switch (ue_id->present) {
364 case UE_Identity_PR_tMSILAI:
365 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_BIT_STRING,
366 &accept.uE_Identity.choice.tMSILAI.tMSI);
367 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
368 &accept.uE_Identity.choice.tMSILAI.lAI.pLMNID);
369 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
370 &accept.uE_Identity.choice.tMSILAI.lAI.lAC);
371 break;
372
373 case UE_Identity_PR_pTMSIRAI:
374 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_BIT_STRING,
375 &accept.uE_Identity.choice.pTMSIRAI.pTMSI);
376 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
377 &accept.uE_Identity.choice.pTMSIRAI.rAI.lAI.pLMNID);
378 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
379 &accept.uE_Identity.choice.pTMSIRAI.rAI.lAI.lAC);
380 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
381 &accept.uE_Identity.choice.pTMSIRAI.rAI.rAC);
382 break;
383
384 default:
385 /* should never happen after above switch() */
386 break;
387 }
388
389 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_UERegisterAccept, &accept_out);
390
391 return hnbgw_hnbap_tx(hnb, msg);
392}
393
Daniel Willmannb433b972016-01-06 18:08:21 +0100394static int hnbgw_rx_hnb_deregister(struct hnb_context *ctx, ANY_t *in)
395{
396 HNBDe_RegisterIEs_t ies;
397 int rc;
398
399 rc = hnbap_decode_hnbde_registeries(&ies, in);
400 if (rc < 0)
401 return rc;
402
Harald Welteda86fe52017-11-21 08:14:37 +0100403 DEBUGP(DHNBAP, "HNB-DE-REGISTER cause=%s\n",
404 hnbap_cause_str(&ies.cause));
Daniel Willmannb433b972016-01-06 18:08:21 +0100405
Daniel Willmannd10002c2016-01-07 12:27:41 +0100406 hnbap_free_hnbde_registeries(&ies);
Alexander Couzensad4ea3b2018-07-24 19:04:47 +0200407 hnb_context_release(ctx);
Daniel Willmannb433b972016-01-06 18:08:21 +0100408
409 return 0;
410}
411
Harald Welte27f9c4a2015-08-30 22:47:18 +0200412static int hnbgw_rx_hnb_register_req(struct hnb_context *ctx, ANY_t *in)
Harald Welteba43de42015-08-29 20:33:16 +0200413{
Stefan Sperlingc964a2c2018-02-19 17:02:12 +0100414 struct hnb_context *hnb;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200415 HNBRegisterRequestIEs_t ies;
416 int rc;
Harald Welteba43de42015-08-29 20:33:16 +0200417
Harald Welte27f9c4a2015-08-30 22:47:18 +0200418 rc = hnbap_decode_hnbregisterrequesties(&ies, in);
Neels Hofmeyr2293df02018-01-18 19:01:09 +0100419 if (rc < 0) {
420 LOGP(DHNBAP, LOGL_ERROR, "Failure to decode HNB-REGISTER-REQ from %s: rc=%d\n",
421 ctx->identity_info, rc);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200422 return rc;
Neels Hofmeyr2293df02018-01-18 19:01:09 +0100423 }
Harald Welteba43de42015-08-29 20:33:16 +0200424
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200425 /* copy all identity parameters from the message to ctx */
Harald Welte27f9c4a2015-08-30 22:47:18 +0200426 asn1_strncpy(ctx->identity_info, &ies.hnB_Identity.hNB_Identity_Info,
427 sizeof(ctx->identity_info));
428 ctx->id.lac = asn1str_to_u16(&ies.lac);
429 ctx->id.sac = asn1str_to_u16(&ies.sac);
430 ctx->id.rac = asn1str_to_u8(&ies.rac);
Daniel Willmannd6a45b42015-12-08 13:55:17 +0100431 ctx->id.cid = asn1bitstr_to_u28(&ies.cellIdentity);
Neels Hofmeyr66d6d762017-12-20 05:25:02 +0100432 gsm48_mcc_mnc_from_bcd(ies.plmNidentity.buf, &ctx->id.mcc, &ctx->id.mnc);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200433
Stefan Sperlingc964a2c2018-02-19 17:02:12 +0100434 llist_for_each_entry(hnb, &ctx->gw->hnb_list, list) {
435 if (hnb->hnb_registered && ctx != hnb && memcmp(&ctx->id, &hnb->id, sizeof(ctx->id)) == 0) {
436 struct osmo_fd *ofd = osmo_stream_srv_get_ofd(ctx->conn);
437 char *name = osmo_sock_get_name(ctx, ofd->fd);
438 LOGP(DHNBAP, LOGL_ERROR, "rejecting HNB-REGISTER-REQ with duplicate cell identity "
439 "MCC=%u,MNC=%u,LAC=%u,RAC=%u,SAC=%u,CID=%u from %s\n",
440 ctx->id.mcc, ctx->id.mnc, ctx->id.lac, ctx->id.rac, ctx->id.sac, ctx->id.cid, name);
441 talloc_free(name);
442 return hnbgw_tx_hnb_register_rej(ctx);
443 }
444 }
445
446 ctx->hnb_registered = true;
447
Daniel Willmannbded9842015-12-17 11:51:17 +0100448 DEBUGP(DHNBAP, "HNB-REGISTER-REQ from %s\n", ctx->identity_info);
Harald Welteee77cff2015-08-30 16:57:53 +0200449
Harald Welte27f9c4a2015-08-30 22:47:18 +0200450 /* Send HNBRegisterAccept */
Daniel Willmannd10002c2016-01-07 12:27:41 +0100451 rc = hnbgw_tx_hnb_register_acc(ctx);
452 hnbap_free_hnbregisterrequesties(&ies);
453 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200454}
455
Harald Welte27f9c4a2015-08-30 22:47:18 +0200456static int hnbgw_rx_ue_register_req(struct hnb_context *ctx, ANY_t *in)
Harald Welteba43de42015-08-29 20:33:16 +0200457{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200458 UERegisterRequestIEs_t ies;
459 struct ue_context *ue;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200460 char imsi[16];
Harald Welte27f9c4a2015-08-30 22:47:18 +0200461 int rc;
Harald Welteba43de42015-08-29 20:33:16 +0200462
Harald Welte27f9c4a2015-08-30 22:47:18 +0200463 rc = hnbap_decode_ueregisterrequesties(&ies, in);
464 if (rc < 0)
465 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200466
Harald Welte10dfc5a2015-09-11 01:34:45 +0200467 switch (ies.uE_Identity.present) {
468 case UE_Identity_PR_iMSI:
Harald Welte056984f2016-01-03 16:31:31 +0100469 ranap_bcd_decode(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSI.buf,
Harald Welte10dfc5a2015-09-11 01:34:45 +0200470 ies.uE_Identity.choice.iMSI.size);
471 break;
472 case UE_Identity_PR_iMSIDS41:
Harald Welte056984f2016-01-03 16:31:31 +0100473 ranap_bcd_decode(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSIDS41.buf,
Harald Welte10dfc5a2015-09-11 01:34:45 +0200474 ies.uE_Identity.choice.iMSIDS41.size);
475 break;
476 case UE_Identity_PR_iMSIESN:
Harald Welte056984f2016-01-03 16:31:31 +0100477 ranap_bcd_decode(imsi, sizeof(imsi), ies.uE_Identity.choice.iMSIESN.iMSIDS41.buf,
Harald Welte10dfc5a2015-09-11 01:34:45 +0200478 ies.uE_Identity.choice.iMSIESN.iMSIDS41.size);
479 break;
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200480 case UE_Identity_PR_tMSILAI:
481 case UE_Identity_PR_pTMSIRAI:
482 if (ctx->gw->config.hnbap_allow_tmsi)
483 rc = hnbgw_tx_ue_register_acc_tmsi(ctx, &ies.uE_Identity);
484 else
485 rc = hnbgw_tx_ue_register_rej_tmsi(ctx, &ies.uE_Identity);
486 /* all has been handled by TMSI, skip the IMSI code below */
487 hnbap_free_ueregisterrequesties(&ies);
488 return rc;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200489 default:
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200490 LOGP(DHNBAP, LOGL_NOTICE,
491 "UE-REGISTER-REQ with unsupported UE Id type %d\n",
492 ies.uE_Identity.present);
Neels Hofmeyrb248c8c2016-04-25 14:51:27 +0200493 hnbap_free_ueregisterrequesties(&ies);
Neels Hofmeyr1a0bb512016-04-25 14:55:35 +0200494 return rc;
Harald Welte10dfc5a2015-09-11 01:34:45 +0200495 }
Harald Welteb534e5c2015-09-11 00:15:16 +0200496
Harald Welte706213a2015-12-25 10:33:09 +0100497 DEBUGP(DHNBAP, "UE-REGISTER-REQ ID_type=%d imsi=%s cause=%ld\n",
Harald Welte10dfc5a2015-09-11 01:34:45 +0200498 ies.uE_Identity.present, imsi, ies.registration_Cause);
499
Harald Weltec4338de2015-12-24 00:40:52 +0100500 ue = ue_context_by_imsi(ctx->gw, imsi);
Harald Welte10dfc5a2015-09-11 01:34:45 +0200501 if (!ue)
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200502 ue = ue_context_alloc(ctx, imsi, 0);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200503
Daniel Willmannd10002c2016-01-07 12:27:41 +0100504 hnbap_free_ueregisterrequesties(&ies);
Harald Welte27f9c4a2015-08-30 22:47:18 +0200505 /* Send UERegisterAccept */
506 return hnbgw_tx_ue_register_acc(ue);
Harald Welteba43de42015-08-29 20:33:16 +0200507}
508
Daniel Willmannefceb182015-12-15 20:30:12 +0100509static int hnbgw_rx_ue_deregister(struct hnb_context *ctx, ANY_t *in)
510{
511 UEDe_RegisterIEs_t ies;
512 struct ue_context *ue;
513 int rc;
514 uint32_t ctxid;
515
516 rc = hnbap_decode_uede_registeries(&ies, in);
517 if (rc < 0)
518 return rc;
519
520 ctxid = asn1bitstr_to_u24(&ies.context_ID);
521
Harald Welteda86fe52017-11-21 08:14:37 +0100522 DEBUGP(DHNBAP, "UE-DE-REGISTER context=%u cause=%s\n",
Harald Welte2963ee22015-12-25 10:32:37 +0100523 ctxid, hnbap_cause_str(&ies.cause));
Daniel Willmannefceb182015-12-15 20:30:12 +0100524
Harald Weltec4338de2015-12-24 00:40:52 +0100525 ue = ue_context_by_id(ctx->gw, ctxid);
Daniel Willmannefceb182015-12-15 20:30:12 +0100526 if (ue)
527 ue_context_free(ue);
528
Daniel Willmannd10002c2016-01-07 12:27:41 +0100529 hnbap_free_uede_registeries(&ies);
Daniel Willmannefceb182015-12-15 20:30:12 +0100530 return 0;
531}
532
Harald Welte3af1db82015-09-11 17:03:16 +0200533static int hnbgw_rx_err_ind(struct hnb_context *hnb, ANY_t *in)
534{
535 ErrorIndicationIEs_t ies;
536 int rc;
537
Harald Welte1d2c39d2015-09-11 17:49:37 +0200538 rc = hnbap_decode_errorindicationies(&ies, in);
Harald Welte3af1db82015-09-11 17:03:16 +0200539 if (rc < 0)
540 return rc;
541
Daniel Willmannbded9842015-12-17 11:51:17 +0100542 LOGP(DHNBAP, LOGL_NOTICE, "HNBAP ERROR.ind, cause: %s\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200543 hnbap_cause_str(&ies.cause));
544
Daniel Willmannd10002c2016-01-07 12:27:41 +0100545 hnbap_free_errorindicationies(&ies);
Harald Welte3af1db82015-09-11 17:03:16 +0200546 return 0;
547}
548
Harald Welte27f9c4a2015-08-30 22:47:18 +0200549static int hnbgw_rx_initiating_msg(struct hnb_context *hnb, InitiatingMessage_t *imsg)
Harald Welteba43de42015-08-29 20:33:16 +0200550{
Harald Welteda86fe52017-11-21 08:14:37 +0100551 int rc = 0;
Harald Welteba43de42015-08-29 20:33:16 +0200552
Harald Welteb3dae302015-08-30 12:20:09 +0200553 switch (imsg->procedureCode) {
Harald Welte27f9c4a2015-08-30 22:47:18 +0200554 case ProcedureCode_id_HNBRegister: /* 8.2 */
555 rc = hnbgw_rx_hnb_register_req(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200556 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200557 case ProcedureCode_id_HNBDe_Register: /* 8.3 */
Daniel Willmannb433b972016-01-06 18:08:21 +0100558 rc = hnbgw_rx_hnb_deregister(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200559 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200560 case ProcedureCode_id_UERegister: /* 8.4 */
561 rc = hnbgw_rx_ue_register_req(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200562 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200563 case ProcedureCode_id_UEDe_Register: /* 8.5 */
Daniel Willmannefceb182015-12-15 20:30:12 +0100564 rc = hnbgw_rx_ue_deregister(hnb, &imsg->value);
Harald Welteba43de42015-08-29 20:33:16 +0200565 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200566 case ProcedureCode_id_ErrorIndication: /* 8.6 */
Harald Welte3af1db82015-09-11 17:03:16 +0200567 rc = hnbgw_rx_err_ind(hnb, &imsg->value);
568 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200569 case ProcedureCode_id_TNLUpdate: /* 8.9 */
570 case ProcedureCode_id_HNBConfigTransfer: /* 8.10 */
571 case ProcedureCode_id_RelocationComplete: /* 8.11 */
572 case ProcedureCode_id_U_RNTIQuery: /* 8.12 */
573 case ProcedureCode_id_privateMessage:
Daniel Willmannbded9842015-12-17 11:51:17 +0100574 LOGP(DHNBAP, LOGL_NOTICE, "Unimplemented HNBAP Procedure %ld\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200575 imsg->procedureCode);
Harald Welteba43de42015-08-29 20:33:16 +0200576 break;
577 default:
Daniel Willmannbded9842015-12-17 11:51:17 +0100578 LOGP(DHNBAP, LOGL_NOTICE, "Unknown HNBAP Procedure %ld\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200579 imsg->procedureCode);
Harald Welteba43de42015-08-29 20:33:16 +0200580 break;
581 }
Harald Welteda86fe52017-11-21 08:14:37 +0100582
583 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200584}
585
Harald Welte27f9c4a2015-08-30 22:47:18 +0200586static int hnbgw_rx_successful_outcome_msg(struct hnb_context *hnb, SuccessfulOutcome_t *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200587{
Neels Hofmeyr02296af2018-01-15 23:30:06 +0100588 /* We don't care much about HNBAP */
589 return 0;
Harald Welteba43de42015-08-29 20:33:16 +0200590}
591
Harald Welte27f9c4a2015-08-30 22:47:18 +0200592static int hnbgw_rx_unsuccessful_outcome_msg(struct hnb_context *hnb, UnsuccessfulOutcome_t *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200593{
Neels Hofmeyr02296af2018-01-15 23:30:06 +0100594 /* We don't care much about HNBAP */
Neels Hofmeyr8a2b6e22018-01-15 23:34:37 +0100595 LOGP(DHNBAP, LOGL_ERROR, "Received Unsuccessful Outcome, procedureCode %ld, criticality %ld,"
596 " from '%s', cell mcc %u mnc %u lac %u rac %u sac %u cid %u\n",
597 msg->procedureCode, msg->criticality, hnb->identity_info,
598 hnb->id.mcc, hnb->id.mnc, hnb->id.lac, hnb->id.rac, hnb->id.sac, hnb->id.cid);
Neels Hofmeyr02296af2018-01-15 23:30:06 +0100599 return 0;
Harald Welteba43de42015-08-29 20:33:16 +0200600}
601
602
Harald Welte27f9c4a2015-08-30 22:47:18 +0200603static int _hnbgw_hnbap_rx(struct hnb_context *hnb, HNBAP_PDU_t *pdu)
Harald Welteba43de42015-08-29 20:33:16 +0200604{
Daniel Willmann5f810f42015-12-17 17:57:51 +0100605 int rc = 0;
Harald Welteb3dae302015-08-30 12:20:09 +0200606
Harald Welteba43de42015-08-29 20:33:16 +0200607 /* it's a bit odd that we can't dispatch on procedure code, but
608 * that's not possible */
Harald Welte27f9c4a2015-08-30 22:47:18 +0200609 switch (pdu->present) {
610 case HNBAP_PDU_PR_initiatingMessage:
611 rc = hnbgw_rx_initiating_msg(hnb, &pdu->choice.initiatingMessage);
Harald Welteba43de42015-08-29 20:33:16 +0200612 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200613 case HNBAP_PDU_PR_successfulOutcome:
614 rc = hnbgw_rx_successful_outcome_msg(hnb, &pdu->choice.successfulOutcome);
Harald Welteba43de42015-08-29 20:33:16 +0200615 break;
Harald Welte27f9c4a2015-08-30 22:47:18 +0200616 case HNBAP_PDU_PR_unsuccessfulOutcome:
617 rc = hnbgw_rx_unsuccessful_outcome_msg(hnb, &pdu->choice.unsuccessfulOutcome);
Harald Welteba43de42015-08-29 20:33:16 +0200618 break;
619 default:
Daniel Willmannbded9842015-12-17 11:51:17 +0100620 LOGP(DHNBAP, LOGL_NOTICE, "Unknown HNBAP Presence %u\n",
Harald Welte3af1db82015-09-11 17:03:16 +0200621 pdu->present);
Daniel Willmann5f810f42015-12-17 17:57:51 +0100622 rc = -1;
Harald Welteba43de42015-08-29 20:33:16 +0200623 }
Daniel Willmann5f810f42015-12-17 17:57:51 +0100624
625 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200626}
627
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200628int hnbgw_hnbap_rx(struct hnb_context *hnb, struct msgb *msg)
Harald Welteba43de42015-08-29 20:33:16 +0200629{
Harald Welte27f9c4a2015-08-30 22:47:18 +0200630 HNBAP_PDU_t _pdu, *pdu = &_pdu;
631 asn_dec_rval_t dec_ret;
Harald Welteee77cff2015-08-30 16:57:53 +0200632 int rc;
633
634 /* decode and handle to _hnbgw_hnbap_rx() */
635
Harald Welte2204f9d2015-09-07 21:10:50 +0200636 memset(pdu, 0, sizeof(*pdu));
Harald Welte27f9c4a2015-08-30 22:47:18 +0200637 dec_ret = aper_decode(NULL, &asn_DEF_HNBAP_PDU, (void **) &pdu,
638 msg->data, msgb_length(msg), 0, 0);
639 if (dec_ret.code != RC_OK) {
Daniel Willmannbded9842015-12-17 11:51:17 +0100640 LOGP(DHNBAP, LOGL_ERROR, "Error in ASN.1 decode\n");
Neels Hofmeyra6a68e62016-11-25 13:21:02 +0100641 return -1;
Harald Welteee77cff2015-08-30 16:57:53 +0200642 }
643
644 rc = _hnbgw_hnbap_rx(hnb, pdu);
Harald Welteee77cff2015-08-30 16:57:53 +0200645
Daniel Willmann59d17d82015-12-17 17:56:56 +0100646 ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_HNBAP_PDU, pdu);
647
Harald Welteee77cff2015-08-30 16:57:53 +0200648 return rc;
Harald Welteba43de42015-08-29 20:33:16 +0200649}
650
651
652int hnbgw_hnbap_init(void)
653{
Harald Welteda86fe52017-11-21 08:14:37 +0100654 return 0;
Harald Welteba43de42015-08-29 20:33:16 +0200655}