blob: cad848700ea5165c3a18edea8f8fdf77611ef454 [file] [log] [blame]
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +02001/* Messages on the RANAP interface (Iu mode) */
2
3/* (C) 2009-2015 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2015 by Holger Hans Peter Freyther
5 * (C) 2019 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#include "bscconfig.h"
25
26#ifdef BUILD_IU
27
28#include <gtp.h>
29
30#include <osmocom/core/rate_ctr.h>
31
32#include <osmocom/ranap/ranap_common.h>
33
34#include <osmocom/sgsn/gprs_gmm.h>
Pau Espin Pedrol35f0e662019-09-02 18:27:27 +020035#include <osmocom/sgsn/gprs_sm.h>
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +020036#include <osmocom/sgsn/debug.h>
37#include <osmocom/sgsn/sgsn.h>
38#include <osmocom/sgsn/gprs_ranap.h>
39#include <osmocom/sgsn/gprs_gmm_attach.h>
Pau Espin Pedrolccd12522019-08-30 17:06:36 +020040#include <osmocom/sgsn/gprs_mm_state_iu_fsm.h>
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +020041
42/* Send RAB activation requests for all PDP contexts */
43void activate_pdp_rabs(struct sgsn_mm_ctx *ctx)
44{
45 struct sgsn_pdp_ctx *pdp;
46 if (ctx->ran_type != MM_CTX_T_UTRAN_Iu)
47 return;
48 llist_for_each_entry(pdp, &ctx->pdp_list, list) {
49 iu_rab_act_ps(pdp->nsapi, pdp);
50 }
51}
52
53/* Callback for RAB assignment response */
54static int sgsn_ranap_rab_ass_resp(struct sgsn_mm_ctx *ctx, RANAP_RAB_SetupOrModifiedItemIEs_t *setup_ies)
55{
56 uint8_t rab_id;
57 bool require_pdp_update = false;
58 struct sgsn_pdp_ctx *pdp = NULL;
59 RANAP_RAB_SetupOrModifiedItem_t *item = &setup_ies->raB_SetupOrModifiedItem;
60
61 rab_id = item->rAB_ID.buf[0];
62
63 pdp = sgsn_pdp_ctx_by_nsapi(ctx, rab_id);
64 if (!pdp) {
65 LOGP(DRANAP, LOGL_ERROR, "RAB Assignment Response for unknown RAB/NSAPI=%u\n", rab_id);
66 return -1;
67 }
68
69 if (item->transportLayerAddress) {
70 LOGPC(DRANAP, LOGL_INFO, " Setup: (%u/%s)", rab_id, osmo_hexdump(item->transportLayerAddress->buf,
71 item->transportLayerAddress->size));
72 switch (item->transportLayerAddress->size) {
73 case 7:
74 /* It must be IPv4 inside a X213 NSAP */
75 memcpy(pdp->lib->gsnlu.v, &item->transportLayerAddress->buf[3], 4);
76 break;
77 case 4:
78 /* It must be a raw IPv4 address */
79 memcpy(pdp->lib->gsnlu.v, item->transportLayerAddress->buf, 4);
80 break;
81 case 16:
82 /* TODO: It must be a raw IPv6 address */
83 case 19:
84 /* TODO: It must be IPv6 inside a X213 NSAP */
85 default:
86 LOGP(DRANAP, LOGL_ERROR, "RAB Assignment Resp: Unknown "
87 "transport layer address size %u\n",
88 item->transportLayerAddress->size);
89 return -1;
90 }
91 require_pdp_update = true;
92 }
93
94 /* The TEI on the RNC side might have changed, too */
95 if (item->iuTransportAssociation &&
96 item->iuTransportAssociation->present == RANAP_IuTransportAssociation_PR_gTP_TEI &&
97 item->iuTransportAssociation->choice.gTP_TEI.buf &&
98 item->iuTransportAssociation->choice.gTP_TEI.size >= 4) {
99 uint32_t tei = osmo_load32be(item->iuTransportAssociation->choice.gTP_TEI.buf);
100 LOGP(DRANAP, LOGL_DEBUG, "Updating TEID on RNC side from 0x%08x to 0x%08x\n",
101 pdp->lib->teid_own, tei);
102 pdp->lib->teid_own = tei;
103 require_pdp_update = true;
104 }
105
106 if (require_pdp_update)
107 gtp_update_context(pdp->ggsn->gsn, pdp->lib, pdp, &pdp->lib->hisaddr0);
108
109 if (pdp->state != PDP_STATE_CR_CONF) {
110 send_act_pdp_cont_acc(pdp);
111 pdp->state = PDP_STATE_CR_CONF;
112 }
113 return 0;
114
115}
116
117int sgsn_ranap_iu_event(struct ranap_ue_conn_ctx *ctx, enum ranap_iu_event_type type, void *data)
118{
119 struct sgsn_mm_ctx *mm;
120 int rc = -1;
121
122 mm = sgsn_mm_ctx_by_ue_ctx(ctx);
123
124#define REQUIRE_MM \
125 if (!mm) { \
126 LOGIUP(ctx, LOGL_NOTICE, "Cannot find mm ctx for IU event %d\n", type); \
127 return rc; \
128 }
129
130 switch (type) {
131 case RANAP_IU_EVENT_RAB_ASSIGN:
132 REQUIRE_MM
133 rc = sgsn_ranap_rab_ass_resp(mm, (RANAP_RAB_SetupOrModifiedItemIEs_t *)data);
134 break;
135 case RANAP_IU_EVENT_IU_RELEASE:
136 /* fall thru */
137 case RANAP_IU_EVENT_LINK_INVALIDATED:
138 /* Clean up ranap_ue_conn_ctx here */
Pau Espin Pedrolccd12522019-08-30 17:06:36 +0200139 if (mm) {
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +0200140 LOGMMCTXP(LOGL_INFO, mm, "IU release for imsi %s\n", mm->imsi);
Pau Espin Pedrolccd12522019-08-30 17:06:36 +0200141 osmo_fsm_inst_dispatch(mm->iu.mm_state_fsm, E_PMM_PS_CONN_RELEASE, NULL);
142 } else
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +0200143 LOGIUP(ctx, LOGL_INFO, "IU release\n");
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +0200144 rc = 0;
145 break;
146 case RANAP_IU_EVENT_SECURITY_MODE_COMPLETE:
147 REQUIRE_MM
148 /* Continue authentication here */
149 mm->iu.ue_ctx->integrity_active = 1;
Alexander Couzens10b3d702019-09-11 02:31:12 +0200150 ranap_iu_tx_common_id(mm->iu.ue_ctx, mm->imsi);
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +0200151
152 /* FIXME: remove gmm_authorize */
153 if (mm->pending_req != GSM48_MT_GMM_ATTACH_REQ)
154 gsm48_gmm_authorize(mm);
155 else
156 osmo_fsm_inst_dispatch(mm->gmm_att_req.fsm, E_IU_SECURITY_CMD_COMPLETE, NULL);
157 break;
158 default:
159 if (mm)
160 LOGMMCTXP(LOGL_NOTICE, mm, "Unknown event received: %i\n", type);
161 else
162 LOGIUP(ctx, LOGL_NOTICE, "Unknown event received: %i\n", type);
163 rc = -1;
164 break;
165 }
166 return rc;
167}
168
169int iu_rab_act_ps(uint8_t rab_id, struct sgsn_pdp_ctx *pdp)
170{
171 struct msgb *msg;
172 struct sgsn_mm_ctx *mm = pdp->mm;
173 struct ranap_ue_conn_ctx *uectx;
174 uint32_t ggsn_ip;
175 bool use_x213_nsap;
176
177 uectx = mm->iu.ue_ctx;
178 use_x213_nsap = (uectx->rab_assign_addr_enc == RANAP_NSAP_ADDR_ENC_X213);
179
180 /* Get the IP address for ggsn user plane */
181 memcpy(&ggsn_ip, pdp->lib->gsnru.v, pdp->lib->gsnru.l);
182 ggsn_ip = htonl(ggsn_ip);
183
184 LOGP(DRANAP, LOGL_DEBUG, "Assigning RAB: rab_id=%d, ggsn_ip=%x,"
185 " teid_gn=%x, use_x213_nsap=%d\n",
186 rab_id, ggsn_ip, pdp->lib->teid_gn, use_x213_nsap);
187
188 msg = ranap_new_msg_rab_assign_data(rab_id, ggsn_ip,
189 pdp->lib->teid_gn, use_x213_nsap);
190 msg->l2h = msg->data;
191 return ranap_iu_rab_act(uectx, msg);
192}
193
194
195/* Main entry point for incoming 04.08 GPRS messages from Iu */
196int gsm0408_gprs_rcvmsg_iu(struct msgb *msg, struct gprs_ra_id *ra_id,
197 uint16_t *sai)
198{
199 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
200 uint8_t pdisc = gsm48_hdr_pdisc(gh);
201 struct sgsn_mm_ctx *mmctx;
202 int rc = -EINVAL;
203
204 mmctx = sgsn_mm_ctx_by_ue_ctx(MSG_IU_UE_CTX(msg));
205 if (mmctx) {
206 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
207 if (ra_id)
208 memcpy(&mmctx->ra, ra_id, sizeof(mmctx->ra));
209 }
210
211 /* MMCTX can be NULL */
212
213 switch (pdisc) {
214 case GSM48_PDISC_MM_GPRS:
215 rc = gsm0408_rcv_gmm(mmctx, msg, NULL, false);
216#pragma message "set drop_cipherable arg for gsm0408_rcv_gmm() from IuPS?"
217 break;
218 case GSM48_PDISC_SM_GPRS:
219 rc = gsm0408_rcv_gsm(mmctx, msg, NULL);
220 break;
221 default:
222 LOGMMCTXP(LOGL_NOTICE, mmctx,
223 "Unknown GSM 04.08 discriminator 0x%02x: %s\n",
224 pdisc, osmo_hexdump((uint8_t *)gh, msgb_l3len(msg)));
225 /* FIXME: return status message */
226 break;
227 }
228
229 /* MMCTX can be invalid */
230
231 return rc;
232}
233#endif