blob: a2d0c7a63ec5f77c1cc09006ed295502883e48c7 [file] [log] [blame]
Harald Welte2720e732010-05-17 00:44:57 +02001/* GPRS SGSN integration with libgtp of OpenGGSN */
Harald Welte993d0602010-06-04 17:43:19 +02002/* libgtp implements the GPRS Tunelling Protocol GTP per TS 09.60 / 29.060 */
Harald Welte2720e732010-05-17 00:44:57 +02003
4/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther85531cc2010-10-06 20:37:09 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -04006 * (C) 2015 by Holger Hans Peter Freyther
Harald Welte2720e732010-05-17 00:44:57 +02007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * 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
Harald Welte2720e732010-05-17 00:44:57 +020012 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte2720e732010-05-17 00:44:57 +020018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * 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/>.
Harald Welte2720e732010-05-17 00:44:57 +020021 *
22 */
23
24#include <unistd.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <getopt.h>
29#include <errno.h>
30#include <signal.h>
31#include <sys/fcntl.h>
32#include <sys/stat.h>
Harald Welte2720e732010-05-17 00:44:57 +020033#include <sys/socket.h>
34#include <netinet/in.h>
35#include <arpa/inet.h>
36
Daniel Willmann6292c8d2016-05-21 17:35:57 +020037#include "bscconfig.h"
38
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010039#include <osmocom/core/talloc.h>
40#include <osmocom/core/select.h>
41#include <osmocom/core/rate_ctr.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080042#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte53373bc2016-04-20 17:11:43 +020043#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Harald Welte2720e732010-05-17 00:44:57 +020044
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020045#include <osmocom/sgsn/signal.h>
46#include <osmocom/sgsn/debug.h>
47#include <osmocom/sgsn/sgsn.h>
Pau Espin Pedrol4398ac02022-12-23 17:12:39 +010048#include <osmocom/sgsn/gprs_ns.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020049#include <osmocom/sgsn/gprs_llc.h>
50#include <osmocom/sgsn/gprs_sgsn.h>
51#include <osmocom/sgsn/gprs_gmm.h>
Pau Espin Pedrol35f0e662019-09-02 18:27:27 +020052#include <osmocom/sgsn/gprs_sm.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020053#include <osmocom/sgsn/gprs_subscriber.h>
54#include <osmocom/sgsn/gprs_sndcp.h>
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +020055#include <osmocom/sgsn/gprs_ranap.h>
Pau Espin Pedrol31c46572019-09-02 16:45:27 +020056#include <osmocom/sgsn/gprs_gmm_fsm.h>
Alexander Couzens4d1d2e72019-10-08 17:31:10 +020057#include <osmocom/sgsn/gprs_mm_state_gb_fsm.h>
Pau Espin Pedrole5c89982021-05-03 18:16:42 +020058#include <osmocom/sgsn/gtp_mme.h>
59#include <osmocom/sgsn/sgsn_rim.h>
Pau Espin Pedrol7a74ae42022-12-23 16:33:17 +010060#include <osmocom/sgsn/gprs_bssgp.h>
Daniel Willmann6292c8d2016-05-21 17:35:57 +020061
Harald Welte2720e732010-05-17 00:44:57 +020062#include <gtp.h>
63#include <pdp.h>
64
Harald Welte686f4d62016-11-01 03:32:50 +010065/* TS 23.003: The MSISDN shall take the dummy MSISDN value composed of
66 * 15 digits set to 0 (encoded as an E.164 international number) when
67 * the MSISDN is not available in messages in which the presence of the
68 * MSISDN parameter */
69static const uint8_t dummy_msisdn[] =
70 { 0x91, /* No extension, international, E.164 */
71 0, 0, 0, 0, 0, 0, 0, /* 14 digits of zeroes */
72 0xF0 /* 15th digit of zero + padding */ };
73
Harald Welte2720e732010-05-17 00:44:57 +020074const struct value_string gtp_cause_strs[] = {
75 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
76 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
77 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
78 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
79 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
80 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
81 { GTPCAUSE_ACC_REQ, "Request accepted" },
82 { GTPCAUSE_NON_EXIST, "Non-existent" },
83 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
84 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
85 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
86 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
87 { GTPCAUSE_MS_REFUSES, "MS refuses" },
88 { GTPCAUSE_NO_RESOURCES, "No resources available" },
89 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
90 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
91 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
92 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
93 { GTPCAUSE_SYS_FAIL, "System failure" },
94 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
95 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
96 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
97 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
98 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
99 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
100 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
101 { GTPCAUSE_NO_MEMORY, "No memory is available" },
102 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
103 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
104 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
105 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
106 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
107 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
108 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
109 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
110 { 0, NULL }
111};
112
Harald Welte6add7c22010-07-02 22:47:39 +0200113/* Generate the GTP IMSI IE according to 09.60 Section 7.9.2 */
114static uint64_t imsi_str2gtp(char *str)
115{
116 uint64_t imsi64 = 0;
117 unsigned int n;
118 unsigned int imsi_len = strlen(str);
119
120 if (imsi_len > 16) {
121 LOGP(DGPRS, LOGL_NOTICE, "IMSI length > 16 not supported!\n");
122 return 0;
123 }
124
125 for (n = 0; n < 16; n++) {
126 uint64_t val;
127 if (n < imsi_len)
128 val = (str[n]-'0') & 0xf;
129 else
130 val = 0xf;
131 imsi64 |= (val << (n*4));
132 }
133 return imsi64;
134}
135
Harald Welte2720e732010-05-17 00:44:57 +0200136/* generate a PDP context based on the IE's from the 04.08 message,
137 * and send the GTP create pdp context request to the GGSN */
Harald Welte77289c22010-05-18 14:32:29 +0200138struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Welted193cb32010-05-17 22:58:03 +0200139 struct sgsn_mm_ctx *mmctx,
140 uint16_t nsapi,
141 struct tlv_parsed *tp)
Harald Welte2720e732010-05-17 00:44:57 +0200142{
Holger Hans Peter Freyther072bee52015-05-17 17:36:23 +0200143 struct gprs_ra_id raid;
Harald Welted193cb32010-05-17 22:58:03 +0200144 struct sgsn_pdp_ctx *pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200145 struct pdp_t *pdp;
Harald Welte6add7c22010-07-02 22:47:39 +0200146 uint64_t imsi_ui64;
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400147 size_t qos_len;
148 const uint8_t *qos;
Harald Welte2720e732010-05-17 00:44:57 +0200149 int rc;
150
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200151 pctx = sgsn_pdp_ctx_alloc(mmctx, ggsn, nsapi);
Harald Welted193cb32010-05-17 22:58:03 +0200152 if (!pctx) {
153 LOGP(DGPRS, LOGL_ERROR, "Couldn't allocate PDP Ctx\n");
154 return NULL;
155 }
156
Harald Welte6add7c22010-07-02 22:47:39 +0200157 imsi_ui64 = imsi_str2gtp(mmctx->imsi);
158
Pau Espin Pedrolf7afd202019-05-31 17:02:31 +0200159 rc = gtp_pdp_newpdp(ggsn->gsn, &pdp, imsi_ui64, nsapi, NULL);
Harald Welte2720e732010-05-17 00:44:57 +0200160 if (rc) {
Harald Welted193cb32010-05-17 22:58:03 +0200161 LOGP(DGPRS, LOGL_ERROR, "Out of libgtp PDP Contexts\n");
162 return NULL;
Harald Welte2720e732010-05-17 00:44:57 +0200163 }
Harald Weltebb1c8052010-06-03 06:38:38 +0200164 pdp->priv = pctx;
Harald Welted193cb32010-05-17 22:58:03 +0200165 pctx->lib = pdp;
Harald Welted193cb32010-05-17 22:58:03 +0200166
Harald Welte2720e732010-05-17 00:44:57 +0200167 //pdp->peer = /* sockaddr_in of GGSN (receive) */
168 //pdp->ipif = /* not used by library */
169 pdp->version = ggsn->gtp_version;
170 pdp->hisaddr0 = ggsn->remote_addr;
171 pdp->hisaddr1 = ggsn->remote_addr;
172 //pdp->cch_pdp = 512; /* Charging Flat Rate */
Keith6d92f142020-09-21 00:09:30 +0200173 pdp->radio_pri = 0x4;
Harald Welte2720e732010-05-17 00:44:57 +0200174
Holger Hans Peter Freyther0f7a2792015-05-22 10:03:21 +0800175 /* MS provided APN, subscription was verified by the caller */
176 pdp->selmode = 0xFC | 0x00;
Harald Welte2720e732010-05-17 00:44:57 +0200177
178 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
Maxa3b73e92017-09-27 15:08:17 +0200179 LOGPDPCTXP(LOGL_NOTICE, pctx, "Create PDP Context\n");
Harald Welte2720e732010-05-17 00:44:57 +0200180
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400181 /* Put the MSISDN in case we have it */
Harald Welte686f4d62016-11-01 03:32:50 +0100182 if (mmctx->subscr && mmctx->subscr->sgsn_data->msisdn_len) {
Maxad2e18f2018-12-10 15:30:52 +0100183 pdp->msisdn.l = OSMO_MIN(mmctx->subscr->sgsn_data->msisdn_len, sizeof(pdp->msisdn.v));
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400184 memcpy(pdp->msisdn.v, mmctx->subscr->sgsn_data->msisdn,
185 pdp->msisdn.l);
Harald Welte686f4d62016-11-01 03:32:50 +0100186 } else {
187 /* use the dummy 15-digits-zero MSISDN value */
188 pdp->msisdn.l = sizeof(dummy_msisdn);
189 memcpy(pdp->msisdn.v, dummy_msisdn, pdp->msisdn.l);
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400190 }
Harald Welte2720e732010-05-17 00:44:57 +0200191
192 /* End User Address from GMM requested PDP address */
193 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
194 if (pdp->eua.l > sizeof(pdp->eua.v))
195 pdp->eua.l = sizeof(pdp->eua.v);
196 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
197 pdp->eua.l);
198 /* Highest 4 bits of first byte need to be set to 1, otherwise
199 * the IE is identical with the 04.08 PDP Address IE */
200 pdp->eua.v[0] |= 0xf0;
201
202 /* APN name from GMM */
Pau Espin Pedrolfaeea342018-07-17 18:08:54 +0200203 if (TLVP_PRESENT(tp, GSM48_IE_GSM_APN)) {
204 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
205 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
206 pdp->apn_use.l = sizeof(pdp->apn_use.v);
207 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN), pdp->apn_use.l);
208 } else {
209 pdp->apn_use.l = 0;
210 }
Harald Welte2720e732010-05-17 00:44:57 +0200211
212 /* Protocol Configuration Options from GMM */
Pau Espin Pedrolfaeea342018-07-17 18:08:54 +0200213 if (TLVP_PRESENT(tp, GSM48_IE_GSM_PROTO_CONF_OPT)) {
214 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
215 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
216 pdp->pco_req.l = sizeof(pdp->pco_req.v);
217 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
218 pdp->pco_req.l);
219 } else {
220 pdp->pco_req.l = 0;
221 }
Harald Welte2720e732010-05-17 00:44:57 +0200222
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400223 /* QoS options from GMM or remote */
224 if (TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS) > 0) {
225 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS);
226 qos = TLVP_VAL(tp, OSMO_IE_GSM_SUB_QOS);
227 } else {
228 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
229 qos = TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS);
230 }
231
Pau Espin Pedrol938ebfb2022-02-18 17:20:44 +0100232 pdp->qos_req.l = qos_len + 1;
233 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
234 pdp->qos_req.l = sizeof(pdp->qos_req.v);
235 pdp->qos_req.v[0] = 0; /* Allocation/Retention policy */
236 memcpy(&pdp->qos_req.v[1], qos, pdp->qos_req.l - 1);
Harald Welte2720e732010-05-17 00:44:57 +0200237
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200238 /* charging characteristics if present */
Holger Hans Peter Freyther9f30e402017-07-20 10:13:28 +0200239 if (TLVP_LEN(tp, OSMO_IE_GSM_CHARG_CHAR) >= sizeof(pdp->cch_pdp))
240 pdp->cch_pdp = tlvp_val16be(tp, OSMO_IE_GSM_CHARG_CHAR);
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200241
Harald Welte2720e732010-05-17 00:44:57 +0200242 /* SGSN address for control plane */
Harald Welte61ca7ce2010-06-02 23:17:33 +0200243 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
244 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
245 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte2720e732010-05-17 00:44:57 +0200246
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200247 /* SGSN address for user plane
248 * Default to the control plane addr for now. If we are connected to a
249 * hnbgw via IuPS we'll need to send a PDP context update with the
250 * correct IP address after the RAB Assignment is complete */
Harald Welte61ca7ce2010-06-02 23:17:33 +0200251 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
252 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
253 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte2720e732010-05-17 00:44:57 +0200254
Harald Weltea4feac22017-08-01 19:08:21 +0200255 /* Encode RAT Type according to TS 29.060 7.7.50 */
256 pdp->rattype.l = 1;
257 if (mmctx->ran_type == MM_CTX_T_UTRAN_Iu)
258 pdp->rattype.v[0] = 1;
259 else
260 pdp->rattype.v[0] = 2;
261 pdp->rattype_given = 1;
262
263 /* Include RAI and ULI all the time */
Holger Hans Peter Freyther22093ef2015-05-12 21:46:58 +0200264 pdp->rai_given = 1;
265 pdp->rai.l = 6;
Harald Weltea4feac22017-08-01 19:08:21 +0200266
267 /* Routing Area Identifier with LAC and RAC fixed values, as
268 * requested in 29.006 7.3.1 */
Holger Hans Peter Freyther072bee52015-05-17 17:36:23 +0200269 raid = mmctx->ra;
270 raid.lac = 0xFFFE;
271 raid.rac = 0xFF;
Max25c65c32018-01-08 14:43:53 +0100272 gsm48_encode_ra((struct gsm48_ra_id *)pdp->rai.v, &raid);
Holger Hans Peter Freyther22093ef2015-05-12 21:46:58 +0200273
Harald Weltea4feac22017-08-01 19:08:21 +0200274 /* Encode User Location Information accordint to TS 29.060 7.7.51 */
275 pdp->userloc_given = 1;
276 pdp->userloc.l = 8;
Harald Welte42e8f212016-05-02 08:34:57 +0200277 switch (mmctx->ran_type) {
278 case MM_CTX_T_GERAN_Gb:
Pau Espin Pedrol05140b82019-08-13 18:38:24 +0200279#if 0
Harald Welte42e8f212016-05-02 08:34:57 +0200280 case MM_CTX_T_GERAN_Iu:
Pau Espin Pedrol05140b82019-08-13 18:38:24 +0200281#endif
Harald Welte42e8f212016-05-02 08:34:57 +0200282 pdp->rattype.v[0] = 2;
283 /* User Location Information */
284 pdp->userloc_given = 1;
285 pdp->userloc.l = 8;
286 pdp->userloc.v[0] = 0; /* CGI for GERAN */
287 bssgp_create_cell_id(&pdp->userloc.v[1], &mmctx->ra, mmctx->gb.cell_id);
288 break;
289 case MM_CTX_T_UTRAN_Iu:
Harald Weltea4feac22017-08-01 19:08:21 +0200290 pdp->userloc.v[0] = 1; /* SAI for UTRAN */
291 /* SAI is like CGI but with SAC instead of CID, so we can abuse this function */
292 bssgp_create_cell_id(&pdp->userloc.v[1], &mmctx->ra, mmctx->iu.sac);
Harald Welte42e8f212016-05-02 08:34:57 +0200293 break;
294 }
Holger Hans Peter Freyther6ddb6ac2015-05-12 22:00:22 +0200295
Holger Hans Peter Freytherd6900df2015-05-12 22:20:05 +0200296 /* include the IMEI(SV) */
297 pdp->imeisv_given = 1;
298 gsm48_encode_bcd_number(&pdp->imeisv.v[0], 8, 0, mmctx->imei);
299 pdp->imeisv.l = pdp->imeisv.v[0];
300 memmove(&pdp->imeisv.v[0], &pdp->imeisv.v[1], 8);
301
Harald Welte6abf94e2010-05-18 10:35:06 +0200302 /* change pdp state to 'requested' */
303 pctx->state = PDP_STATE_CR_REQ;
Harald Welte2720e732010-05-17 00:44:57 +0200304
Harald Welted193cb32010-05-17 22:58:03 +0200305 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
306 /* FIXME */
307
308 return pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200309}
310
Pau Espin Pedrol60581ae2020-10-23 13:03:58 +0200311/* SGSN wants to delete a PDP context, send first DeleteCtxReq on the GTP side,
312 then upon DeleteCtx ACK it will send DeactPdpAcc to the MS if still
313 connected. */
Harald Welte77289c22010-05-18 14:32:29 +0200314int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx)
315{
Pau Espin Pedrol03dc7732018-07-17 12:42:12 +0200316 LOGPDPCTXP(LOGL_INFO, pctx, "Delete PDP Context\n");
Harald Welte77289c22010-05-18 14:32:29 +0200317
Pau Espin Pedrol60581ae2020-10-23 13:03:58 +0200318 OSMO_ASSERT(pctx->ggsn);
319 OSMO_ASSERT(pctx->lib);
320
Harald Welte77289c22010-05-18 14:32:29 +0200321 /* FIXME: decide if we need teardown or not ! */
Pau Espin Pedrol03dc7732018-07-17 12:42:12 +0200322 return gtp_delete_context_req2(pctx->ggsn->gsn, pctx->lib, pctx, 1);
Harald Welte77289c22010-05-18 14:32:29 +0200323}
Harald Welte6abf94e2010-05-18 10:35:06 +0200324
325struct cause_map {
326 uint8_t cause_in;
327 uint8_t cause_out;
328};
329
330static uint8_t cause_map(const struct cause_map *map, uint8_t in, uint8_t deflt)
331{
332 const struct cause_map *m;
333
334 for (m = map; m->cause_in && m->cause_out; m++) {
335 if (m->cause_in == in)
336 return m->cause_out;
337 }
338 return deflt;
339}
340
341/* how do we map from gtp cause to SM cause */
342static const struct cause_map gtp2sm_cause_map[] = {
343 { GTPCAUSE_NO_RESOURCES, GSM_CAUSE_INSUFF_RSRC },
344 { GTPCAUSE_NOT_SUPPORTED, GSM_CAUSE_SERV_OPT_NOTSUPP },
345 { GTPCAUSE_MAN_IE_INCORRECT, GSM_CAUSE_INV_MAND_INFO },
346 { GTPCAUSE_MAN_IE_MISSING, GSM_CAUSE_INV_MAND_INFO },
347 { GTPCAUSE_OPT_IE_INCORRECT, GSM_CAUSE_PROTO_ERR_UNSPEC },
348 { GTPCAUSE_SYS_FAIL, GSM_CAUSE_NET_FAIL },
349 { GTPCAUSE_ROAMING_REST, GSM_CAUSE_REQ_SERV_OPT_NOTSUB },
350 { GTPCAUSE_PTIMSI_MISMATCH, GSM_CAUSE_PROTO_ERR_UNSPEC },
351 { GTPCAUSE_CONN_SUSP, GSM_CAUSE_PROTO_ERR_UNSPEC },
352 { GTPCAUSE_AUTH_FAIL, GSM_CAUSE_AUTH_FAILED },
353 { GTPCAUSE_USER_AUTH_FAIL, GSM_CAUSE_ACT_REJ_GGSN },
354 { GTPCAUSE_CONTEXT_NOT_FOUND, GSM_CAUSE_PROTO_ERR_UNSPEC },
355 { GTPCAUSE_ADDR_OCCUPIED, GSM_CAUSE_INSUFF_RSRC },
356 { GTPCAUSE_NO_MEMORY, GSM_CAUSE_INSUFF_RSRC },
357 { GTPCAUSE_RELOC_FAIL, GSM_CAUSE_PROTO_ERR_UNSPEC },
358 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, GSM_CAUSE_PROTO_ERR_UNSPEC },
359 { GTPCAUSE_MISSING_APN, GSM_CAUSE_MISSING_APN },
360 { GTPCAUSE_UNKNOWN_PDP, GSM_CAUSE_UNKNOWN_PDP },
361 { 0, 0 }
362};
363
Pau Espin Pedrol6dfb5fe2019-08-29 17:21:00 +0200364int send_act_pdp_cont_acc(struct sgsn_pdp_ctx *pctx)
Daniel Willmann62ff3842016-05-21 01:40:19 +0200365{
366 struct sgsn_signal_data sig_data;
Philippf1f34362016-08-26 17:00:21 +0200367 int rc;
368 struct gprs_llc_lle *lle;
Daniel Willmann62ff3842016-05-21 01:40:19 +0200369
370 /* Inform others about it */
371 memset(&sig_data, 0, sizeof(sig_data));
372 sig_data.pdp = pctx;
373 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_ACT, &sig_data);
374
375 /* Send PDP CTX ACT to MS */
Philippf1f34362016-08-26 17:00:21 +0200376 rc = gsm48_tx_gsm_act_pdp_acc(pctx);
Harald Welte7e5bb622016-09-28 08:20:58 +0800377 if (rc < 0)
Philippf1f34362016-08-26 17:00:21 +0200378 return rc;
379
Neels Hofmeyrc6a44bb2016-09-28 13:44:39 +0200380 if (pctx->mm->ran_type == MM_CTX_T_GERAN_Gb) {
381 /* Send SNDCP XID to MS */
382 lle = &pctx->mm->gb.llme->lle[pctx->sapi];
383 rc = sndcp_sn_xid_req(lle,pctx->nsapi);
384 if (rc < 0)
385 return rc;
386 }
Philippf1f34362016-08-26 17:00:21 +0200387
388 return 0;
Daniel Willmann62ff3842016-05-21 01:40:19 +0200389}
390
Harald Welte2720e732010-05-17 00:44:57 +0200391/* The GGSN has confirmed the creation of a PDP Context */
392static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
393{
Harald Welted193cb32010-05-17 22:58:03 +0200394 struct sgsn_pdp_ctx *pctx = cbp;
Alexander Couzens8e168602018-09-18 16:51:56 +0200395 uint8_t reject_cause = 0;
Harald Welte2720e732010-05-17 00:44:57 +0200396
Daniel Willmann46553142014-09-03 17:46:44 +0200397 LOGPDPCTXP(LOGL_INFO, pctx, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte2720e732010-05-17 00:44:57 +0200398 cause, get_value_string(gtp_cause_strs, cause));
399
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200400 if (!pctx->mm) {
Alexander Couzens8e168602018-09-18 16:51:56 +0200401 goto reject;
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200402 }
403
Harald Welte2720e732010-05-17 00:44:57 +0200404 /* Check for cause value if it was really successful */
405 if (cause < 0) {
406 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
Harald Welte1371f7d2010-06-01 11:52:41 +0200407 if (pdp && pdp->version == 1) {
Harald Welte2720e732010-05-17 00:44:57 +0200408 pdp->version = 0;
Harald Welte8fc1a462010-05-17 00:53:10 +0200409 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte2720e732010-05-17 00:44:57 +0200410 return 0;
411 } else {
Harald Welte6abf94e2010-05-18 10:35:06 +0200412 reject_cause = GSM_CAUSE_NET_FAIL;
413 goto reject;
Harald Welte2720e732010-05-17 00:44:57 +0200414 }
415 }
416
417 /* Check for cause value if it was really successful */
418 if (cause != GTPCAUSE_ACC_REQ) {
Harald Welte6abf94e2010-05-18 10:35:06 +0200419 reject_cause = cause_map(gtp2sm_cause_map, cause,
420 GSM_CAUSE_ACT_REJ_GGSN);
421 goto reject;
Harald Welte2720e732010-05-17 00:44:57 +0200422 }
423
Daniel Willmannf9f43872016-05-20 22:36:23 +0200424 if (pctx->mm->ran_type == MM_CTX_T_GERAN_Gb) {
425 /* Activate the SNDCP layer */
426 sndcp_sm_activate_ind(&pctx->mm->gb.llme->lle[pctx->sapi], pctx->nsapi);
427 return send_act_pdp_cont_acc(pctx);
Daniel Willmann6b7b3192016-05-21 00:53:42 +0200428 } else if (pctx->mm->ran_type == MM_CTX_T_UTRAN_Iu) {
429#ifdef BUILD_IU
430 /* Activate a radio bearer */
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200431 iu_rab_act_ps(pdp->nsapi, pctx);
Daniel Willmann6b7b3192016-05-21 00:53:42 +0200432 return 0;
433#else
434 return -ENOTSUP;
435#endif
Daniel Willmannf9f43872016-05-20 22:36:23 +0200436 }
Harald Welte6abf94e2010-05-18 10:35:06 +0200437
Neels Hofmeyr67933a12016-07-23 22:23:17 +0200438 LOGP(DGPRS, LOGL_ERROR, "Unknown ran_type %d\n",
439 pctx->mm->ran_type);
440 reject_cause = GSM_CAUSE_PROTO_ERR_UNSPEC;
441
Harald Welte6abf94e2010-05-18 10:35:06 +0200442reject:
Holger Hans Peter Freyther598e7b32013-07-30 08:45:29 +0200443 /*
444 * In case of a timeout pdp will be NULL but we have a valid pointer
445 * in pctx->lib. For other rejects pctx->lib and pdp might be the
446 * same.
447 */
Harald Welte6abf94e2010-05-18 10:35:06 +0200448 pctx->state = PDP_STATE_NONE;
Holger Hans Peter Freyther598e7b32013-07-30 08:45:29 +0200449 if (pctx->lib && pctx->lib != pdp)
450 pdp_freepdp(pctx->lib);
451 pctx->lib = NULL;
452
Harald Welte1371f7d2010-06-01 11:52:41 +0200453 if (pdp)
454 pdp_freepdp(pdp);
Alexander Couzens8e168602018-09-18 16:51:56 +0200455
Harald Welte6abf94e2010-05-18 10:35:06 +0200456 /* Send PDP CTX ACT REJ to MS */
Alexander Couzens8e168602018-09-18 16:51:56 +0200457 if (pctx->mm)
458 gsm48_tx_gsm_act_pdp_rej(pctx->mm, pctx->ti, reject_cause,
459 0, NULL);
Harald Weltef11b6d22010-06-02 10:09:50 +0200460 sgsn_pdp_ctx_free(pctx);
Harald Welte6abf94e2010-05-18 10:35:06 +0200461
462 return EOF;
Harald Welte2720e732010-05-17 00:44:57 +0200463}
464
Daniel Willmann21b269f2016-05-11 12:43:47 +0200465void sgsn_pdp_upd_gtp_u(struct sgsn_pdp_ctx *pdp, void *addr, size_t alen)
466{
467 pdp->lib->gsnlu.l = alen;
468 memcpy(pdp->lib->gsnlu.v, addr, alen);
469 gtp_update_context(pdp->ggsn->gsn, pdp->lib, pdp, &pdp->lib->hisaddr0);
470}
471
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200472void sgsn_ggsn_echo_req(struct sgsn_ggsn_ctx *ggc)
473{
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200474 LOGGGSN(ggc, LOGL_INFO, "GTP Tx Echo Request\n");
475 gtp_echo_req(ggc->gsn, ggc->gtp_version, ggc, &ggc->remote_addr);
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200476}
477
Pau Espin Pedrole5c89982021-05-03 18:16:42 +0200478int sgsn_mme_ran_info_req(struct sgsn_mme_ctx *mme, const struct bssgp_ran_information_pdu *pdu)
479{
480 char ri_src_str[64], ri_dest_str[64];
481 int ri_len;
482 struct msgb *msg;
483 struct bssgp_normal_hdr *bgph;
484 int rc;
485 uint8_t ri_buf[64];
486 uint8_t *ri_ptr = &ri_buf[0];
487 struct sockaddr_in sk_in = {
488 .sin_family = AF_INET,
489 .sin_port = htons(GTP1C_PORT),
490 .sin_addr = mme->remote_addr,
491 };
492
493 msg = bssgp_encode_rim_pdu(pdu);
494 if (!msg) {
495 LOGMME(mme, DRIM, LOGL_ERROR, "Tx GTP RAN Information Relay: failed to encode pdu\n");
496 return -EINVAL;
497 }
498 bgph = (struct bssgp_normal_hdr *)msgb_bssgph(msg);
499 DEBUGP(DLBSSGP, "Tx GTP RAN Information Relay: RIM-PDU:%s, src=%s, dest=%s\n",
500 bssgp_pdu_str(bgph->pdu_type),
501 bssgp_rim_ri_name_buf(ri_src_str, sizeof(ri_src_str), &pdu->routing_info_src),
502 bssgp_rim_ri_name_buf(ri_dest_str, sizeof(ri_dest_str), &pdu->routing_info_dest));
503
504 if ((ri_len = bssgp_create_rim_ri(ri_ptr, &pdu->routing_info_dest)) < 0) {
505 ri_ptr = NULL;
506 ri_len = 0;
507 }
508
509 rc = gtp_ran_info_relay_req(mme->sgsn->gsn, &sk_in, msgb_data(msg), msgb_length(msg),
510 ri_ptr, ri_len, pdu->routing_info_dest.discr);
511 msgb_free(msg);
512 return rc;
513}
514
Pau Espin Pedrol8969db72021-04-21 20:12:44 +0200515/* Confirmation of a PDP Context Update */
516static int update_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
517{
518 struct sgsn_pdp_ctx *pctx = cbp;
519 int rc;
520
521 LOGPDPCTXP(LOGL_INFO, pctx, "Received Update PDP CTX CONF, cause=%d(%s)\n",
522 cause, get_value_string(gtp_cause_strs, cause));
523
524 /* 3GPP TS 29.060 "7.3.4":
525 * "If the SGSN receives an Update PDP Context Response with a Cause
526 * value other than "Request accepted", it shall abort the update of the
527 * PDP context.""
528 * "If the SGSN receives an Update PDP Context Response with
529 * a Cause value "Non-existent", it shall delete the PDP Context."
530 */
531 if (cause != GTPCAUSE_NON_EXIST)
532 return 0; /* Nothing to do */
533
534 LOGPDPCTXP(LOGL_INFO, pctx, "PDP CTX we tried to update doesn't exist in "
535 "the GGSN anymore, deleting it locally.\n");
536
537 rc = gtp_freepdp(pctx->ggsn->gsn, pctx->lib);
538 /* related mmctx is torn down in cb_delete_context called by gtp_freepdp() */
539 return rc;
540}
541
Harald Welte2720e732010-05-17 00:44:57 +0200542/* Confirmation of a PDP Context Delete */
Harald Welte77289c22010-05-18 14:32:29 +0200543static int delete_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
Harald Welte2720e732010-05-17 00:44:57 +0200544{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200545 struct sgsn_signal_data sig_data;
Harald Welte77289c22010-05-18 14:32:29 +0200546 struct sgsn_pdp_ctx *pctx = cbp;
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200547 int rc = 0;
Harald Welte77289c22010-05-18 14:32:29 +0200548
Daniel Willmann46553142014-09-03 17:46:44 +0200549 LOGPDPCTXP(LOGL_INFO, pctx, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte2720e732010-05-17 00:44:57 +0200550 cause, get_value_string(gtp_cause_strs, cause));
Harald Welte77289c22010-05-18 14:32:29 +0200551
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200552 memset(&sig_data, 0, sizeof(sig_data));
553 sig_data.pdp = pctx;
554 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_DEACT, &sig_data);
555
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200556 if (pctx->mm) {
Daniel Willmannf9f43872016-05-20 22:36:23 +0200557 if (pctx->mm->ran_type == MM_CTX_T_GERAN_Gb) {
558 /* Deactivate the SNDCP layer */
559 sndcp_sm_deactivate_ind(&pctx->mm->gb.llme->lle[pctx->sapi], pctx->nsapi);
Daniel Willmann7bc69862016-05-21 00:55:25 +0200560 } else {
561#ifdef BUILD_IU
562 /* Deactivate radio bearer */
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200563 ranap_iu_rab_deact(pctx->mm->iu.ue_ctx, 1);
Daniel Willmann7bc69862016-05-21 00:55:25 +0200564#else
565 return -ENOTSUP;
566#endif
Daniel Willmannf9f43872016-05-20 22:36:23 +0200567 }
Harald Welte8fc60f02010-06-28 22:21:57 +0200568
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200569 /* Confirm deactivation of PDP context to MS */
570 rc = gsm48_tx_gsm_deact_pdp_acc(pctx);
571 } else {
572 LOGPDPCTXP(LOGL_NOTICE, pctx,
573 "Not deactivating SNDCP layer since the MM context "
574 "is not available\n");
575 }
Harald Welte77289c22010-05-18 14:32:29 +0200576
577 sgsn_pdp_ctx_free(pctx);
578
579 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200580}
581
582/* Confirmation of an GTP ECHO request */
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200583static int echo_conf(void *cbp, bool timeout)
Harald Welte2720e732010-05-17 00:44:57 +0200584{
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200585 struct sgsn_ggsn_ctx *ggc = (struct sgsn_ggsn_ctx *)cbp;
586 if (timeout) {
587 LOGGGSN(ggc, LOGL_NOTICE, "GTP Echo Request timed out\n");
Harald Welte2720e732010-05-17 00:44:57 +0200588 /* FIXME: if version == 1, retry with version 0 */
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200589 sgsn_ggsn_ctx_drop_all_pdp(ggc);
Harald Welte2720e732010-05-17 00:44:57 +0200590 } else {
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200591 LOGGGSN(ggc, LOGL_INFO, "GTP Rx Echo Response\n");
Harald Weltea9b473a2010-12-24 21:13:26 +0100592 }
593 return 0;
594}
595
596/* Any message received by GGSN contains a recovery IE */
Max61f21862022-10-09 14:03:03 +0300597static int cb_recovery3(struct gsn_t *gsn, struct sockaddr_in *peer, struct pdp_t *pdp, uint8_t recovery)
Harald Weltea9b473a2010-12-24 21:13:26 +0100598{
599 struct sgsn_ggsn_ctx *ggsn;
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200600 struct sgsn_pdp_ctx *pctx = NULL;
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100601
Harald Weltea9b473a2010-12-24 21:13:26 +0100602 ggsn = sgsn_ggsn_ctx_by_addr(&peer->sin_addr);
603 if (!ggsn) {
Daniel Willmann46553142014-09-03 17:46:44 +0200604 LOGP(DGPRS, LOGL_NOTICE, "Received Recovery IE for unknown GGSN\n");
Harald Weltea9b473a2010-12-24 21:13:26 +0100605 return -EINVAL;
606 }
607
608 if (ggsn->remote_restart_ctr == -1) {
609 /* First received ECHO RESPONSE, note the restart ctr */
610 ggsn->remote_restart_ctr = recovery;
611 } else if (ggsn->remote_restart_ctr != recovery) {
612 /* counter has changed (GGSN restart): release all PDP */
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200613 LOGP(DGPRS, LOGL_NOTICE, "GGSN recovery (%u->%u) pdp=%p, "
614 "releasing all%s PDP contexts\n",
615 ggsn->remote_restart_ctr, recovery, pdp, pdp ? " other" : "");
Harald Weltea9b473a2010-12-24 21:13:26 +0100616 ggsn->remote_restart_ctr = recovery;
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200617 if (pdp)
618 pctx = pdp->priv;
619 sgsn_ggsn_ctx_drop_all_pdp_except(ggsn, pctx);
Harald Welte2720e732010-05-17 00:44:57 +0200620 }
621 return 0;
622}
623
624/* libgtp callback for confirmations */
625static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
626{
627 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
628 type, cause, pdp, cbp);
629
630 if (cause == EOF)
631 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
632 type, pdp, cbp);
633
634 switch (type) {
635 case GTP_ECHO_REQ:
Pau Espin Pedrol259e3032019-08-28 16:54:16 +0200636 /* libgtp hands us the RECOVERY number instead of a cause (EOF on timeout) */
637 return echo_conf(cbp, cause == EOF);
Harald Welte2720e732010-05-17 00:44:57 +0200638 case GTP_CREATE_PDP_REQ:
639 return create_pdp_conf(pdp, cbp, cause);
Pau Espin Pedrol8969db72021-04-21 20:12:44 +0200640 case GTP_UPDATE_PDP_REQ:
641 return update_pdp_conf(pdp, cbp, cause);
Harald Welte2720e732010-05-17 00:44:57 +0200642 case GTP_DELETE_PDP_REQ:
Harald Welte77289c22010-05-18 14:32:29 +0200643 return delete_pdp_conf(pdp, cbp, cause);
Harald Welte2720e732010-05-17 00:44:57 +0200644 default:
645 break;
646 }
647 return 0;
648}
649
650/* Called whenever a PDP context is deleted for any reason */
651static int cb_delete_context(struct pdp_t *pdp)
652{
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200653 struct sgsn_pdp_ctx *pctx = pdp->priv;
654
Pau Espin Pedrol80d407f2018-07-09 20:42:20 +0200655 LOGPDPX(DGPRS, LOGL_INFO, pdp, "Context %p was deleted\n", pdp);
Maxa3b73e92017-09-27 15:08:17 +0200656
Pau Espin Pedrold8037bc2019-08-29 14:24:23 +0200657 /* unlink the now non-existing library handle from the pdp context.
658 This way we avoid calling pdp_freepdp() on it, since after returning
659 from cb_delete_context callback, libgtp is already doing so. */
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200660 pctx->lib = NULL;
661
662 sgsn_ggsn_ctx_drop_pdp(pctx);
Harald Welte2720e732010-05-17 00:44:57 +0200663 return 0;
664}
665
666/* Called when we receive a Version Not Supported message */
667static int cb_unsup_ind(struct sockaddr_in *peer)
668{
669 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
670 "from %s:%u\n", inet_ntoa(peer->sin_addr),
671 ntohs(peer->sin_port));
672 return 0;
673}
674
675/* Called when we receive a Supported Ext Headers Notification */
676static int cb_extheader_ind(struct sockaddr_in *peer)
677{
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100678 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Notification "
Harald Welte2720e732010-05-17 00:44:57 +0200679 "from %s:%u\n", inet_ntoa(peer->sin_addr),
680 ntohs(peer->sin_port));
681 return 0;
682}
683
Pau Espin Pedrole5c89982021-05-03 18:16:42 +0200684static int cb_gtp_ran_info_relay_ind(struct sockaddr_in *peer, union gtpie_member **ie)
685{
686 char addrbuf[INET_ADDRSTRLEN];
687 struct sgsn_mme_ctx *mme = sgsn_mme_ctx_by_addr(sgsn, &peer->sin_addr);
688 if (!mme) {
689 LOGP(DGTP, LOGL_NOTICE, "Rx GTP RAN Information Relay from unknown MME %s\n",
690 inet_ntop(AF_INET, &peer->sin_addr, addrbuf, sizeof(addrbuf)));
691 return -ECONNREFUSED;
692 }
693
694 LOGMME(mme, DGTP, LOGL_INFO, "Rx GTP RAN Information Relay\n");
695
696 unsigned int len = 0;
697 struct msgb *msg = msgb_alloc(4096, "gtpcv1_ran_info");
698 struct bssgp_ran_information_pdu pdu;
699
700 if (gtpie_gettlv(ie, GTPIE_RAN_T_CONTAIN, 0, &len, msgb_data(msg), 4096) || len <= 0) {
701 LOGMME(mme, DGTP, LOGL_ERROR, "Rx GTP RAN Information Relay: No Transparent Container IE found!\n");
702 goto ret_error;
703 }
704 msgb_put(msg, len);
705 msgb_bssgph(msg) = msg->data;
706 msgb_nsei(msg) = 0;
707 if (bssgp_parse_rim_pdu(&pdu, msg) < 0) {
708 LOGMME(mme, DGTP, LOGL_ERROR, "Rx GTP RAN Information Relay: Failed parsing Transparent Container IE!\n");
709 goto ret_error;
710 }
711
712 msgb_free(msg);
713 return sgsn_rim_rx_from_gtp(&pdu, mme);
714
715ret_error:
716 msgb_free(msg);
717 return -EINVAL;
718}
719
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100720/* Called whenever we receive a DATA packet */
Harald Weltebb1c8052010-06-03 06:38:38 +0200721static int cb_data_ind(struct pdp_t *lib, void *packet, unsigned int len)
Harald Welte2720e732010-05-17 00:44:57 +0200722{
Harald Weltebb1c8052010-06-03 06:38:38 +0200723 struct sgsn_pdp_ctx *pdp;
Harald Weltebb35c452010-06-09 16:22:28 +0200724 struct sgsn_mm_ctx *mm;
725 struct msgb *msg;
Harald Weltebb1c8052010-06-03 06:38:38 +0200726 uint8_t *ud;
727
Harald Weltebb1c8052010-06-03 06:38:38 +0200728 pdp = lib->priv;
729 if (!pdp) {
Harald Weltefdf453c2012-07-14 12:15:19 +0200730 LOGP(DGPRS, LOGL_NOTICE,
731 "GTP DATA IND from GGSN for unknown PDP\n");
Harald Weltebb1c8052010-06-03 06:38:38 +0200732 return -EIO;
733 }
Harald Weltebb35c452010-06-09 16:22:28 +0200734 mm = pdp->mm;
Harald Weltefdf453c2012-07-14 12:15:19 +0200735 if (!mm) {
736 LOGP(DGPRS, LOGL_ERROR,
Max0436e422017-03-02 13:28:52 +0100737 "PDP context (address=%u) without MM context!\n",
738 pdp->address);
Harald Weltefdf453c2012-07-14 12:15:19 +0200739 return -EIO;
740 }
Harald Weltebb1c8052010-06-03 06:38:38 +0200741
Max0436e422017-03-02 13:28:52 +0100742 DEBUGP(DGPRS, "GTP DATA IND from GGSN for %s, length=%u\n", mm->imsi,
743 len);
744
Daniel Willmann21b269f2016-05-11 12:43:47 +0200745 if (mm->ran_type == MM_CTX_T_UTRAN_Iu) {
746#ifdef BUILD_IU
747 /* Ignore the packet for now and page the UE to get the RAB
748 * reestablished */
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200749 ranap_iu_page_ps(mm->imsi, &mm->p_tmsi, mm->ra.lac, mm->ra.rac);
Daniel Willmann21b269f2016-05-11 12:43:47 +0200750
751 return 0;
752#else
753 return -ENOTSUP;
754#endif
755 }
756
Sylvain Munaut5914bad2010-06-09 20:49:24 +0200757 msg = msgb_alloc_headroom(len+256, 128, "GTP->SNDCP");
Harald Weltebb1c8052010-06-03 06:38:38 +0200758 ud = msgb_put(msg, len);
759 memcpy(ud, packet, len);
760
Harald Weltef97ee042015-12-25 19:12:21 +0100761 msgb_tlli(msg) = mm->gb.tlli;
762 msgb_bvci(msg) = mm->gb.bvci;
763 msgb_nsei(msg) = mm->gb.nsei;
Harald Weltebb1c8052010-06-03 06:38:38 +0200764
Pau Espin Pedrol31c46572019-09-02 16:45:27 +0200765 switch (mm->gmm_fsm->state) {
766 case ST_GMM_REGISTERED_SUSPENDED:
Pau Espin Pedrolb3e10aa2020-06-26 12:09:34 +0200767 LOGMMCTXP(LOGL_INFO, mm, "Dropping DL packet for MS in GMM state %s\n",
Pau Espin Pedrolcfd307b2020-06-16 19:26:43 +0200768 osmo_fsm_inst_state_name(mm->gmm_fsm));
Pau Espin Pedrolb3e10aa2020-06-26 12:09:34 +0200769 msgb_free(msg);
770 return -1;
Pau Espin Pedrol31c46572019-09-02 16:45:27 +0200771 case ST_GMM_REGISTERED_NORMAL:
Oliver Smith55e3dc82022-11-17 13:59:51 +0100772 switch (mm->gb.mm_state_fsm->state) {
773 case ST_MM_IDLE:
774 LOGP(DGPRS, LOGL_ERROR, "Dropping DL packet for MS in MM state %s\n",
775 osmo_fsm_inst_state_name(mm->gb.mm_state_fsm));
776 msgb_free(msg);
777 return -1;
778 case ST_MM_READY:
779 /* Go ahead */
780 break;
781 case ST_MM_STANDBY:
Pau Espin Pedrolcfd307b2020-06-16 19:26:43 +0200782 LOGMMCTXP(LOGL_INFO, mm, "Paging MS in GMM state %s, MM state %s\n",
783 osmo_fsm_inst_state_name(mm->gmm_fsm),
784 osmo_fsm_inst_state_name(mm->gb.mm_state_fsm));
Pau Espin Pedrol7a74ae42022-12-23 16:33:17 +0100785 sgsn_bssgp_page_ps_ra(mm);
Alexander Couzens4d1d2e72019-10-08 17:31:10 +0200786
Oliver Smith55e3dc82022-11-17 13:59:51 +0100787 /* FIXME: queue the packet we received from GTP */
788 break;
789 }
Harald Weltebb35c452010-06-09 16:22:28 +0200790 break;
791 default:
792 LOGP(DGPRS, LOGL_ERROR, "GTP DATA IND for TLLI %08X in state "
Pau Espin Pedrol31c46572019-09-02 16:45:27 +0200793 "%s\n", mm->gb.tlli, osmo_fsm_inst_state_name(mm->gmm_fsm));
Harald Weltebb35c452010-06-09 16:22:28 +0200794 msgb_free(msg);
795 return -1;
796 }
797
Pau Espin Pedrola33f0062021-06-04 17:27:03 +0200798 rate_ctr_inc(rate_ctr_group_get_ctr(pdp->ctrg, PDP_CTR_PKTS_UDATA_OUT));
799 rate_ctr_add(rate_ctr_group_get_ctr(pdp->ctrg, PDP_CTR_BYTES_UDATA_OUT), len);
800 rate_ctr_inc(rate_ctr_group_get_ctr(mm->ctrg, GMM_CTR_PKTS_UDATA_OUT));
801 rate_ctr_add(rate_ctr_group_get_ctr(mm->ctrg, GMM_CTR_BYTES_UDATA_OUT), len);
Harald Welteefbdee92010-06-10 00:20:12 +0200802
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200803 /* It is easier to have a global count */
804 pdp->cdr_bytes_out += len;
805
Harald Weltef97ee042015-12-25 19:12:21 +0100806 return sndcp_unitdata_req(msg, &mm->gb.llme->lle[pdp->sapi],
Harald Weltebb35c452010-06-09 16:22:28 +0200807 pdp->nsapi, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200808}
809
Harald Welteebabdea2010-06-01 18:28:10 +0200810/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte8911cef2010-07-01 19:56:19 +0200811int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
812 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu)
Harald Welteebabdea2010-06-01 18:28:10 +0200813{
814 struct sgsn_mm_ctx *mmctx;
815 struct sgsn_pdp_ctx *pdp;
Harald Welteebabdea2010-06-01 18:28:10 +0200816
817 /* look-up the MM context for this message */
Harald Welte8911cef2010-07-01 19:56:19 +0200818 mmctx = sgsn_mm_ctx_by_tlli(tlli, ra_id);
Harald Welteebabdea2010-06-01 18:28:10 +0200819 if (!mmctx) {
820 LOGP(DGPRS, LOGL_ERROR,
821 "Cannot find MM CTX for TLLI %08x\n", tlli);
822 return -EIO;
823 }
824 /* look-up the PDP context for this message */
825 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, nsapi);
826 if (!pdp) {
827 LOGP(DGPRS, LOGL_ERROR, "Cannot find PDP CTX for "
828 "TLLI=%08x, NSAPI=%u\n", tlli, nsapi);
829 return -EIO;
830 }
831 if (!pdp->lib) {
832 LOGP(DGPRS, LOGL_ERROR, "PDP CTX without libgtp\n");
833 return -EIO;
834 }
Harald Welteefbdee92010-06-10 00:20:12 +0200835
Pau Espin Pedrola33f0062021-06-04 17:27:03 +0200836 rate_ctr_inc(rate_ctr_group_get_ctr(pdp->ctrg, PDP_CTR_PKTS_UDATA_IN));
837 rate_ctr_add(rate_ctr_group_get_ctr(pdp->ctrg, PDP_CTR_BYTES_UDATA_IN), npdu_len);
838 rate_ctr_inc(rate_ctr_group_get_ctr(mmctx->ctrg, GMM_CTR_PKTS_UDATA_IN));
839 rate_ctr_add(rate_ctr_group_get_ctr(mmctx->ctrg, GMM_CTR_BYTES_UDATA_IN), npdu_len);
Harald Welteefbdee92010-06-10 00:20:12 +0200840
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200841 /* It is easier to have a global count */
842 pdp->cdr_bytes_in += npdu_len;
843
Harald Welteefbdee92010-06-10 00:20:12 +0200844 return gtp_data_req(pdp->ggsn->gsn, pdp->lib, npdu, npdu_len);
Harald Welteebabdea2010-06-01 18:28:10 +0200845}
846
Harald Welte2720e732010-05-17 00:44:57 +0200847/* libgtp select loop integration */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200848static int sgsn_gtp_fd_cb(struct osmo_fd *fd, unsigned int what)
Harald Welte2720e732010-05-17 00:44:57 +0200849{
850 struct sgsn_instance *sgi = fd->data;
851 int rc;
852
Pau Espin Pedrolb2ebc592020-05-09 19:21:15 +0200853 if (!(what & OSMO_FD_READ))
Harald Welte2720e732010-05-17 00:44:57 +0200854 return 0;
855
856 switch (fd->priv_nr) {
857 case 0:
858 rc = gtp_decaps0(sgi->gsn);
859 break;
860 case 1:
861 rc = gtp_decaps1c(sgi->gsn);
862 break;
863 case 2:
864 rc = gtp_decaps1u(sgi->gsn);
865 break;
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200866 default:
867 rc = -EINVAL;
868 break;
Harald Welte2720e732010-05-17 00:44:57 +0200869 }
870 return rc;
871}
872
Harald Welte2720e732010-05-17 00:44:57 +0200873int sgsn_gtp_init(struct sgsn_instance *sgi)
874{
875 int rc;
876 struct gsn_t *gsn;
877
878 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
879 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
880 if (rc) {
881 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
882 return rc;
883 }
Maxf89be662017-10-27 18:56:34 +0200884 LOGP(DGPRS, LOGL_NOTICE, "Created GTP on %s\n", inet_ntoa(sgi->cfg.gtp_listenaddr.sin_addr));
885
Harald Welte2720e732010-05-17 00:44:57 +0200886 gsn = sgi->gsn;
887
Max6f244022017-10-20 14:28:04 +0200888 if (gsn->mode != GTP_MODE_SGSN)
889 return -EINVAL;
890
Harald Weltebe2330f2020-10-19 12:32:20 +0200891 osmo_fd_setup(&sgi->gtp_fd0, gsn->fd0, OSMO_FD_READ, sgsn_gtp_fd_cb, sgi, 0);
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200892 rc = osmo_fd_register(&sgi->gtp_fd0);
Harald Welte2720e732010-05-17 00:44:57 +0200893 if (rc < 0)
894 return rc;
895
Harald Weltebe2330f2020-10-19 12:32:20 +0200896 osmo_fd_setup(&sgi->gtp_fd1c, gsn->fd1c, OSMO_FD_READ, sgsn_gtp_fd_cb, sgi, 1);
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200897 rc = osmo_fd_register(&sgi->gtp_fd1c);
898 if (rc < 0) {
899 osmo_fd_unregister(&sgi->gtp_fd0);
Harald Welte2720e732010-05-17 00:44:57 +0200900 return rc;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200901 }
Harald Welte2720e732010-05-17 00:44:57 +0200902
Harald Weltebe2330f2020-10-19 12:32:20 +0200903 osmo_fd_setup(&sgi->gtp_fd1u, gsn->fd1u, OSMO_FD_READ, sgsn_gtp_fd_cb, sgi, 2);
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200904 rc = osmo_fd_register(&sgi->gtp_fd1u);
905 if (rc < 0) {
906 osmo_fd_unregister(&sgi->gtp_fd0);
907 osmo_fd_unregister(&sgi->gtp_fd1c);
Harald Welte2720e732010-05-17 00:44:57 +0200908 return rc;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200909 }
Harald Welte2720e732010-05-17 00:44:57 +0200910
Harald Welte2720e732010-05-17 00:44:57 +0200911 /* Register callbackcs with libgtp */
912 gtp_set_cb_delete_context(gsn, cb_delete_context);
913 gtp_set_cb_conf(gsn, cb_conf);
Max61f21862022-10-09 14:03:03 +0300914 gtp_set_cb_recovery3(gsn, cb_recovery3);
Harald Welte2720e732010-05-17 00:44:57 +0200915 gtp_set_cb_data_ind(gsn, cb_data_ind);
916 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
917 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
Pau Espin Pedrole5c89982021-05-03 18:16:42 +0200918 gtp_set_cb_ran_info_relay_ind(gsn, cb_gtp_ran_info_relay_ind);
Harald Welte2720e732010-05-17 00:44:57 +0200919
920 return 0;
921}