blob: 78297967713ebab0043802b3f4a17ea6da276e4f [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>
48#include <osmocom/sgsn/gprs_llc.h>
49#include <osmocom/sgsn/gprs_sgsn.h>
50#include <osmocom/sgsn/gprs_gmm.h>
51#include <osmocom/sgsn/gprs_subscriber.h>
52#include <osmocom/sgsn/gprs_sndcp.h>
Harald Welte2720e732010-05-17 00:44:57 +020053
Daniel Willmann6292c8d2016-05-21 17:35:57 +020054#ifdef BUILD_IU
Neels Hofmeyra7a39472017-07-05 15:19:52 +020055#include <osmocom/ranap/iu_client.h>
Daniel Willmann6292c8d2016-05-21 17:35:57 +020056#include <osmocom/ranap/ranap_ies_defs.h>
57#endif
58
Harald Welte2720e732010-05-17 00:44:57 +020059#include <gtp.h>
60#include <pdp.h>
61
Harald Welte686f4d62016-11-01 03:32:50 +010062/* TS 23.003: The MSISDN shall take the dummy MSISDN value composed of
63 * 15 digits set to 0 (encoded as an E.164 international number) when
64 * the MSISDN is not available in messages in which the presence of the
65 * MSISDN parameter */
66static const uint8_t dummy_msisdn[] =
67 { 0x91, /* No extension, international, E.164 */
68 0, 0, 0, 0, 0, 0, 0, /* 14 digits of zeroes */
69 0xF0 /* 15th digit of zero + padding */ };
70
Harald Welte2720e732010-05-17 00:44:57 +020071const struct value_string gtp_cause_strs[] = {
72 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
73 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
74 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
75 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
76 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
77 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
78 { GTPCAUSE_ACC_REQ, "Request accepted" },
79 { GTPCAUSE_NON_EXIST, "Non-existent" },
80 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
81 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
82 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
83 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
84 { GTPCAUSE_MS_REFUSES, "MS refuses" },
85 { GTPCAUSE_NO_RESOURCES, "No resources available" },
86 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
87 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
88 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
89 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
90 { GTPCAUSE_SYS_FAIL, "System failure" },
91 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
92 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
93 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
94 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
95 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
96 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
97 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
98 { GTPCAUSE_NO_MEMORY, "No memory is available" },
99 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
100 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
101 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
102 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
103 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
104 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
105 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
106 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
107 { 0, NULL }
108};
109
Harald Welte6add7c22010-07-02 22:47:39 +0200110/* Generate the GTP IMSI IE according to 09.60 Section 7.9.2 */
111static uint64_t imsi_str2gtp(char *str)
112{
113 uint64_t imsi64 = 0;
114 unsigned int n;
115 unsigned int imsi_len = strlen(str);
116
117 if (imsi_len > 16) {
118 LOGP(DGPRS, LOGL_NOTICE, "IMSI length > 16 not supported!\n");
119 return 0;
120 }
121
122 for (n = 0; n < 16; n++) {
123 uint64_t val;
124 if (n < imsi_len)
125 val = (str[n]-'0') & 0xf;
126 else
127 val = 0xf;
128 imsi64 |= (val << (n*4));
129 }
130 return imsi64;
131}
132
Harald Welte2720e732010-05-17 00:44:57 +0200133/* generate a PDP context based on the IE's from the 04.08 message,
134 * and send the GTP create pdp context request to the GGSN */
Harald Welte77289c22010-05-18 14:32:29 +0200135struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Welted193cb32010-05-17 22:58:03 +0200136 struct sgsn_mm_ctx *mmctx,
137 uint16_t nsapi,
138 struct tlv_parsed *tp)
Harald Welte2720e732010-05-17 00:44:57 +0200139{
Holger Hans Peter Freyther072bee52015-05-17 17:36:23 +0200140 struct gprs_ra_id raid;
Harald Welted193cb32010-05-17 22:58:03 +0200141 struct sgsn_pdp_ctx *pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200142 struct pdp_t *pdp;
Harald Welte6add7c22010-07-02 22:47:39 +0200143 uint64_t imsi_ui64;
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400144 size_t qos_len;
145 const uint8_t *qos;
Harald Welte2720e732010-05-17 00:44:57 +0200146 int rc;
147
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200148 pctx = sgsn_pdp_ctx_alloc(mmctx, ggsn, nsapi);
Harald Welted193cb32010-05-17 22:58:03 +0200149 if (!pctx) {
150 LOGP(DGPRS, LOGL_ERROR, "Couldn't allocate PDP Ctx\n");
151 return NULL;
152 }
153
Harald Welte6add7c22010-07-02 22:47:39 +0200154 imsi_ui64 = imsi_str2gtp(mmctx->imsi);
155
Harald Welte2720e732010-05-17 00:44:57 +0200156 rc = pdp_newpdp(&pdp, imsi_ui64, nsapi, NULL);
157 if (rc) {
Harald Welted193cb32010-05-17 22:58:03 +0200158 LOGP(DGPRS, LOGL_ERROR, "Out of libgtp PDP Contexts\n");
159 return NULL;
Harald Welte2720e732010-05-17 00:44:57 +0200160 }
Harald Weltebb1c8052010-06-03 06:38:38 +0200161 pdp->priv = pctx;
Harald Welted193cb32010-05-17 22:58:03 +0200162 pctx->lib = pdp;
Harald Welted193cb32010-05-17 22:58:03 +0200163
Harald Welte2720e732010-05-17 00:44:57 +0200164 //pdp->peer = /* sockaddr_in of GGSN (receive) */
165 //pdp->ipif = /* not used by library */
166 pdp->version = ggsn->gtp_version;
167 pdp->hisaddr0 = ggsn->remote_addr;
168 pdp->hisaddr1 = ggsn->remote_addr;
169 //pdp->cch_pdp = 512; /* Charging Flat Rate */
170
Holger Hans Peter Freyther0f7a2792015-05-22 10:03:21 +0800171 /* MS provided APN, subscription was verified by the caller */
172 pdp->selmode = 0xFC | 0x00;
Harald Welte2720e732010-05-17 00:44:57 +0200173
174 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
Maxa3b73e92017-09-27 15:08:17 +0200175 LOGPDPCTXP(LOGL_NOTICE, pctx, "Create PDP Context\n");
Harald Welte2720e732010-05-17 00:44:57 +0200176
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400177 /* Put the MSISDN in case we have it */
Harald Welte686f4d62016-11-01 03:32:50 +0100178 if (mmctx->subscr && mmctx->subscr->sgsn_data->msisdn_len) {
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400179 pdp->msisdn.l = mmctx->subscr->sgsn_data->msisdn_len;
180 if (pdp->msisdn.l > sizeof(pdp->msisdn.v))
Holger Hans Peter Freyther9861c122015-10-12 10:43:17 +0200181 pdp->msisdn.l = sizeof(pdp->msisdn.v);
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400182 memcpy(pdp->msisdn.v, mmctx->subscr->sgsn_data->msisdn,
183 pdp->msisdn.l);
Harald Welte686f4d62016-11-01 03:32:50 +0100184 } else {
185 /* use the dummy 15-digits-zero MSISDN value */
186 pdp->msisdn.l = sizeof(dummy_msisdn);
187 memcpy(pdp->msisdn.v, dummy_msisdn, pdp->msisdn.l);
Holger Hans Peter Freyther9ba273d2015-04-23 09:53:53 -0400188 }
Harald Welte2720e732010-05-17 00:44:57 +0200189
190 /* End User Address from GMM requested PDP address */
191 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
192 if (pdp->eua.l > sizeof(pdp->eua.v))
193 pdp->eua.l = sizeof(pdp->eua.v);
194 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
195 pdp->eua.l);
196 /* Highest 4 bits of first byte need to be set to 1, otherwise
197 * the IE is identical with the 04.08 PDP Address IE */
198 pdp->eua.v[0] |= 0xf0;
199
200 /* APN name from GMM */
Pau Espin Pedrolfaeea342018-07-17 18:08:54 +0200201 if (TLVP_PRESENT(tp, GSM48_IE_GSM_APN)) {
202 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
203 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
204 pdp->apn_use.l = sizeof(pdp->apn_use.v);
205 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN), pdp->apn_use.l);
206 } else {
207 pdp->apn_use.l = 0;
208 }
Harald Welte2720e732010-05-17 00:44:57 +0200209
210 /* Protocol Configuration Options from GMM */
Pau Espin Pedrolfaeea342018-07-17 18:08:54 +0200211 if (TLVP_PRESENT(tp, GSM48_IE_GSM_PROTO_CONF_OPT)) {
212 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
213 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
214 pdp->pco_req.l = sizeof(pdp->pco_req.v);
215 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
216 pdp->pco_req.l);
217 } else {
218 pdp->pco_req.l = 0;
219 }
Harald Welte2720e732010-05-17 00:44:57 +0200220
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400221 /* QoS options from GMM or remote */
222 if (TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS) > 0) {
223 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS);
224 qos = TLVP_VAL(tp, OSMO_IE_GSM_SUB_QOS);
225 } else {
226 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
227 qos = TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS);
228 }
229
Holger Hans Peter Freyther4bd931f2015-04-23 11:50:41 -0400230 if (qos_len <= 3) {
231 pdp->qos_req.l = qos_len + 1;
232 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
233 pdp->qos_req.l = sizeof(pdp->qos_req.v);
234 pdp->qos_req.v[0] = 0; /* Allocation/Retention policy */
235 memcpy(&pdp->qos_req.v[1], qos, pdp->qos_req.l - 1);
236 } else {
237 pdp->qos_req.l = qos_len;
238 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
239 pdp->qos_req.l = sizeof(pdp->qos_req.v);
240 memcpy(pdp->qos_req.v, qos, pdp->qos_req.l);
241 }
Harald Welte2720e732010-05-17 00:44:57 +0200242
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200243 /* charging characteristics if present */
Holger Hans Peter Freyther9f30e402017-07-20 10:13:28 +0200244 if (TLVP_LEN(tp, OSMO_IE_GSM_CHARG_CHAR) >= sizeof(pdp->cch_pdp))
245 pdp->cch_pdp = tlvp_val16be(tp, OSMO_IE_GSM_CHARG_CHAR);
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200246
Harald Welte2720e732010-05-17 00:44:57 +0200247 /* SGSN address for control plane */
Harald Welte61ca7ce2010-06-02 23:17:33 +0200248 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
249 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
250 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte2720e732010-05-17 00:44:57 +0200251
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200252 /* SGSN address for user plane
253 * Default to the control plane addr for now. If we are connected to a
254 * hnbgw via IuPS we'll need to send a PDP context update with the
255 * correct IP address after the RAB Assignment is complete */
Harald Welte61ca7ce2010-06-02 23:17:33 +0200256 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
257 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
258 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte2720e732010-05-17 00:44:57 +0200259
Harald Weltea4feac22017-08-01 19:08:21 +0200260 /* Encode RAT Type according to TS 29.060 7.7.50 */
261 pdp->rattype.l = 1;
262 if (mmctx->ran_type == MM_CTX_T_UTRAN_Iu)
263 pdp->rattype.v[0] = 1;
264 else
265 pdp->rattype.v[0] = 2;
266 pdp->rattype_given = 1;
267
268 /* Include RAI and ULI all the time */
Holger Hans Peter Freyther22093ef2015-05-12 21:46:58 +0200269 pdp->rai_given = 1;
270 pdp->rai.l = 6;
Harald Weltea4feac22017-08-01 19:08:21 +0200271
272 /* Routing Area Identifier with LAC and RAC fixed values, as
273 * requested in 29.006 7.3.1 */
Holger Hans Peter Freyther072bee52015-05-17 17:36:23 +0200274 raid = mmctx->ra;
275 raid.lac = 0xFFFE;
276 raid.rac = 0xFF;
Max25c65c32018-01-08 14:43:53 +0100277 gsm48_encode_ra((struct gsm48_ra_id *)pdp->rai.v, &raid);
Holger Hans Peter Freyther22093ef2015-05-12 21:46:58 +0200278
Harald Weltea4feac22017-08-01 19:08:21 +0200279 /* Encode User Location Information accordint to TS 29.060 7.7.51 */
280 pdp->userloc_given = 1;
281 pdp->userloc.l = 8;
Harald Welte42e8f212016-05-02 08:34:57 +0200282 switch (mmctx->ran_type) {
283 case MM_CTX_T_GERAN_Gb:
284 case MM_CTX_T_GERAN_Iu:
285 pdp->rattype.v[0] = 2;
286 /* User Location Information */
287 pdp->userloc_given = 1;
288 pdp->userloc.l = 8;
289 pdp->userloc.v[0] = 0; /* CGI for GERAN */
290 bssgp_create_cell_id(&pdp->userloc.v[1], &mmctx->ra, mmctx->gb.cell_id);
291 break;
292 case MM_CTX_T_UTRAN_Iu:
Harald Weltea4feac22017-08-01 19:08:21 +0200293 pdp->userloc.v[0] = 1; /* SAI for UTRAN */
294 /* SAI is like CGI but with SAC instead of CID, so we can abuse this function */
295 bssgp_create_cell_id(&pdp->userloc.v[1], &mmctx->ra, mmctx->iu.sac);
Harald Welte42e8f212016-05-02 08:34:57 +0200296 break;
297 }
Holger Hans Peter Freyther6ddb6ac2015-05-12 22:00:22 +0200298
Holger Hans Peter Freytherd6900df2015-05-12 22:20:05 +0200299 /* include the IMEI(SV) */
300 pdp->imeisv_given = 1;
301 gsm48_encode_bcd_number(&pdp->imeisv.v[0], 8, 0, mmctx->imei);
302 pdp->imeisv.l = pdp->imeisv.v[0];
303 memmove(&pdp->imeisv.v[0], &pdp->imeisv.v[1], 8);
304
Harald Welte6abf94e2010-05-18 10:35:06 +0200305 /* change pdp state to 'requested' */
306 pctx->state = PDP_STATE_CR_REQ;
Harald Welte2720e732010-05-17 00:44:57 +0200307
Harald Welted193cb32010-05-17 22:58:03 +0200308 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
309 /* FIXME */
310
311 return pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200312}
313
Harald Welte3357add2010-12-24 19:21:13 +0100314/* SGSN wants to delete a PDP context */
Harald Welte77289c22010-05-18 14:32:29 +0200315int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx)
316{
Pau Espin Pedrol03dc7732018-07-17 12:42:12 +0200317 LOGPDPCTXP(LOGL_INFO, pctx, "Delete PDP Context\n");
Harald Welte77289c22010-05-18 14:32:29 +0200318
319 /* FIXME: decide if we need teardown or not ! */
Pau Espin Pedrol03dc7732018-07-17 12:42:12 +0200320 return gtp_delete_context_req2(pctx->ggsn->gsn, pctx->lib, pctx, 1);
Harald Welte77289c22010-05-18 14:32:29 +0200321}
Harald Welte6abf94e2010-05-18 10:35:06 +0200322
323struct cause_map {
324 uint8_t cause_in;
325 uint8_t cause_out;
326};
327
328static uint8_t cause_map(const struct cause_map *map, uint8_t in, uint8_t deflt)
329{
330 const struct cause_map *m;
331
332 for (m = map; m->cause_in && m->cause_out; m++) {
333 if (m->cause_in == in)
334 return m->cause_out;
335 }
336 return deflt;
337}
338
339/* how do we map from gtp cause to SM cause */
340static const struct cause_map gtp2sm_cause_map[] = {
341 { GTPCAUSE_NO_RESOURCES, GSM_CAUSE_INSUFF_RSRC },
342 { GTPCAUSE_NOT_SUPPORTED, GSM_CAUSE_SERV_OPT_NOTSUPP },
343 { GTPCAUSE_MAN_IE_INCORRECT, GSM_CAUSE_INV_MAND_INFO },
344 { GTPCAUSE_MAN_IE_MISSING, GSM_CAUSE_INV_MAND_INFO },
345 { GTPCAUSE_OPT_IE_INCORRECT, GSM_CAUSE_PROTO_ERR_UNSPEC },
346 { GTPCAUSE_SYS_FAIL, GSM_CAUSE_NET_FAIL },
347 { GTPCAUSE_ROAMING_REST, GSM_CAUSE_REQ_SERV_OPT_NOTSUB },
348 { GTPCAUSE_PTIMSI_MISMATCH, GSM_CAUSE_PROTO_ERR_UNSPEC },
349 { GTPCAUSE_CONN_SUSP, GSM_CAUSE_PROTO_ERR_UNSPEC },
350 { GTPCAUSE_AUTH_FAIL, GSM_CAUSE_AUTH_FAILED },
351 { GTPCAUSE_USER_AUTH_FAIL, GSM_CAUSE_ACT_REJ_GGSN },
352 { GTPCAUSE_CONTEXT_NOT_FOUND, GSM_CAUSE_PROTO_ERR_UNSPEC },
353 { GTPCAUSE_ADDR_OCCUPIED, GSM_CAUSE_INSUFF_RSRC },
354 { GTPCAUSE_NO_MEMORY, GSM_CAUSE_INSUFF_RSRC },
355 { GTPCAUSE_RELOC_FAIL, GSM_CAUSE_PROTO_ERR_UNSPEC },
356 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, GSM_CAUSE_PROTO_ERR_UNSPEC },
357 { GTPCAUSE_MISSING_APN, GSM_CAUSE_MISSING_APN },
358 { GTPCAUSE_UNKNOWN_PDP, GSM_CAUSE_UNKNOWN_PDP },
359 { 0, 0 }
360};
361
Daniel Willmann62ff3842016-05-21 01:40:19 +0200362static int send_act_pdp_cont_acc(struct sgsn_pdp_ctx *pctx)
363{
364 struct sgsn_signal_data sig_data;
Philippf1f34362016-08-26 17:00:21 +0200365 int rc;
366 struct gprs_llc_lle *lle;
Daniel Willmann62ff3842016-05-21 01:40:19 +0200367
368 /* Inform others about it */
369 memset(&sig_data, 0, sizeof(sig_data));
370 sig_data.pdp = pctx;
371 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_ACT, &sig_data);
372
373 /* Send PDP CTX ACT to MS */
Philippf1f34362016-08-26 17:00:21 +0200374 rc = gsm48_tx_gsm_act_pdp_acc(pctx);
Harald Welte7e5bb622016-09-28 08:20:58 +0800375 if (rc < 0)
Philippf1f34362016-08-26 17:00:21 +0200376 return rc;
377
Neels Hofmeyrc6a44bb2016-09-28 13:44:39 +0200378 if (pctx->mm->ran_type == MM_CTX_T_GERAN_Gb) {
379 /* Send SNDCP XID to MS */
380 lle = &pctx->mm->gb.llme->lle[pctx->sapi];
381 rc = sndcp_sn_xid_req(lle,pctx->nsapi);
382 if (rc < 0)
383 return rc;
384 }
Philippf1f34362016-08-26 17:00:21 +0200385
386 return 0;
Daniel Willmann62ff3842016-05-21 01:40:19 +0200387}
388
Harald Welte2720e732010-05-17 00:44:57 +0200389/* The GGSN has confirmed the creation of a PDP Context */
390static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
391{
Harald Welted193cb32010-05-17 22:58:03 +0200392 struct sgsn_pdp_ctx *pctx = cbp;
Harald Welte6abf94e2010-05-18 10:35:06 +0200393 uint8_t reject_cause;
Harald Welte2720e732010-05-17 00:44:57 +0200394
Daniel Willmann46553142014-09-03 17:46:44 +0200395 LOGPDPCTXP(LOGL_INFO, pctx, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte2720e732010-05-17 00:44:57 +0200396 cause, get_value_string(gtp_cause_strs, cause));
397
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200398 if (!pctx->mm) {
399 LOGP(DGPRS, LOGL_INFO,
400 "No MM context, aborting CREATE PDP CTX CONF\n");
401 return -EIO;
402 }
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);
Harald Welte6abf94e2010-05-18 10:35:06 +0200455 /* Send PDP CTX ACT REJ to MS */
Holger Hans Peter Freyther65762e02014-04-04 12:49:00 +0200456 gsm48_tx_gsm_act_pdp_rej(pctx->mm, pctx->ti, reject_cause,
Harald Welte6abf94e2010-05-18 10:35:06 +0200457 0, NULL);
Harald Weltef11b6d22010-06-02 10:09:50 +0200458 sgsn_pdp_ctx_free(pctx);
Harald Welte6abf94e2010-05-18 10:35:06 +0200459
460 return EOF;
Harald Welte2720e732010-05-17 00:44:57 +0200461}
462
Daniel Willmann21b269f2016-05-11 12:43:47 +0200463void sgsn_pdp_upd_gtp_u(struct sgsn_pdp_ctx *pdp, void *addr, size_t alen)
464{
465 pdp->lib->gsnlu.l = alen;
466 memcpy(pdp->lib->gsnlu.v, addr, alen);
467 gtp_update_context(pdp->ggsn->gsn, pdp->lib, pdp, &pdp->lib->hisaddr0);
468}
469
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200470void sgsn_ggsn_echo_req(struct sgsn_ggsn_ctx *ggc)
471{
472 gtp_echo_req(ggc->gsn, ggc->gtp_version, NULL, &ggc->remote_addr);
473}
474
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200475#ifdef BUILD_IU
476/* Callback for RAB assignment response */
477int sgsn_ranap_rab_ass_resp(struct sgsn_mm_ctx *ctx, RANAP_RAB_SetupOrModifiedItemIEs_t *setup_ies)
478{
479 uint8_t rab_id;
480 bool require_pdp_update = false;
481 struct sgsn_pdp_ctx *pdp = NULL;
482 RANAP_RAB_SetupOrModifiedItem_t *item = &setup_ies->raB_SetupOrModifiedItem;
483
484 rab_id = item->rAB_ID.buf[0];
485
486 pdp = sgsn_pdp_ctx_by_nsapi(ctx, rab_id);
487 if (!pdp) {
488 LOGP(DRANAP, LOGL_ERROR, "RAB Assignment Response for unknown RAB/NSAPI=%u\n", rab_id);
489 return -1;
490 }
491
492 if (item->transportLayerAddress) {
493 LOGPC(DRANAP, LOGL_INFO, " Setup: (%u/%s)", rab_id, osmo_hexdump(item->transportLayerAddress->buf,
494 item->transportLayerAddress->size));
495 switch (item->transportLayerAddress->size) {
496 case 7:
497 /* It must be IPv4 inside a X213 NSAP */
498 memcpy(pdp->lib->gsnlu.v, &item->transportLayerAddress->buf[3], 4);
499 break;
500 case 4:
501 /* It must be a raw IPv4 address */
502 memcpy(pdp->lib->gsnlu.v, item->transportLayerAddress->buf, 4);
503 break;
504 case 16:
505 /* TODO: It must be a raw IPv6 address */
506 case 19:
507 /* TODO: It must be IPv6 inside a X213 NSAP */
508 default:
509 LOGP(DRANAP, LOGL_ERROR, "RAB Assignment Resp: Unknown "
510 "transport layer address size %u\n",
511 item->transportLayerAddress->size);
512 return -1;
513 }
514 require_pdp_update = true;
515 }
516
517 /* The TEI on the RNC side might have changed, too */
518 if (item->iuTransportAssociation &&
519 item->iuTransportAssociation->present == RANAP_IuTransportAssociation_PR_gTP_TEI &&
520 item->iuTransportAssociation->choice.gTP_TEI.buf &&
521 item->iuTransportAssociation->choice.gTP_TEI.size >= 4) {
522 uint32_t tei = osmo_load32be(item->iuTransportAssociation->choice.gTP_TEI.buf);
523 LOGP(DRANAP, LOGL_DEBUG, "Updating TEID on RNC side from 0x%08x to 0x%08x\n",
524 pdp->lib->teid_own, tei);
525 pdp->lib->teid_own = tei;
526 require_pdp_update = true;
527 }
528
529 if (require_pdp_update)
530 gtp_update_context(pdp->ggsn->gsn, pdp->lib, pdp, &pdp->lib->hisaddr0);
531
532 if (pdp->state != PDP_STATE_CR_CONF) {
533 send_act_pdp_cont_acc(pdp);
534 pdp->state = PDP_STATE_CR_CONF;
535 }
536 return 0;
537
538}
539#endif
540
Harald Welte2720e732010-05-17 00:44:57 +0200541/* Confirmation of a PDP Context Delete */
Harald Welte77289c22010-05-18 14:32:29 +0200542static int delete_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
Harald Welte2720e732010-05-17 00:44:57 +0200543{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200544 struct sgsn_signal_data sig_data;
Harald Welte77289c22010-05-18 14:32:29 +0200545 struct sgsn_pdp_ctx *pctx = cbp;
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200546 int rc = 0;
Harald Welte77289c22010-05-18 14:32:29 +0200547
Daniel Willmann46553142014-09-03 17:46:44 +0200548 LOGPDPCTXP(LOGL_INFO, pctx, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte2720e732010-05-17 00:44:57 +0200549 cause, get_value_string(gtp_cause_strs, cause));
Harald Welte77289c22010-05-18 14:32:29 +0200550
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200551 memset(&sig_data, 0, sizeof(sig_data));
552 sig_data.pdp = pctx;
553 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_DEACT, &sig_data);
554
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200555 if (pctx->mm) {
Daniel Willmannf9f43872016-05-20 22:36:23 +0200556 if (pctx->mm->ran_type == MM_CTX_T_GERAN_Gb) {
557 /* Deactivate the SNDCP layer */
558 sndcp_sm_deactivate_ind(&pctx->mm->gb.llme->lle[pctx->sapi], pctx->nsapi);
Daniel Willmann7bc69862016-05-21 00:55:25 +0200559 } else {
560#ifdef BUILD_IU
561 /* Deactivate radio bearer */
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200562 ranap_iu_rab_deact(pctx->mm->iu.ue_ctx, 1);
Daniel Willmann7bc69862016-05-21 00:55:25 +0200563#else
564 return -ENOTSUP;
565#endif
Daniel Willmannf9f43872016-05-20 22:36:23 +0200566 }
Harald Welte8fc60f02010-06-28 22:21:57 +0200567
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200568 /* Confirm deactivation of PDP context to MS */
569 rc = gsm48_tx_gsm_deact_pdp_acc(pctx);
570 } else {
571 LOGPDPCTXP(LOGL_NOTICE, pctx,
572 "Not deactivating SNDCP layer since the MM context "
573 "is not available\n");
574 }
Harald Welte77289c22010-05-18 14:32:29 +0200575
576 sgsn_pdp_ctx_free(pctx);
577
578 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200579}
580
581/* Confirmation of an GTP ECHO request */
Harald Weltea9b473a2010-12-24 21:13:26 +0100582static int echo_conf(struct pdp_t *pdp, void *cbp, int recovery)
Harald Welte2720e732010-05-17 00:44:57 +0200583{
584 if (recovery < 0) {
Daniel Willmann46553142014-09-03 17:46:44 +0200585 LOGP(DGPRS, LOGL_NOTICE, "GTP Echo Request timed out\n");
Harald Welte2720e732010-05-17 00:44:57 +0200586 /* FIXME: if version == 1, retry with version 0 */
587 } else {
588 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
Harald Weltea9b473a2010-12-24 21:13:26 +0100589 }
590 return 0;
591}
592
593/* Any message received by GGSN contains a recovery IE */
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200594static int cb_recovery2(struct sockaddr_in *peer, struct pdp_t *pdp, uint8_t recovery)
Harald Weltea9b473a2010-12-24 21:13:26 +0100595{
596 struct sgsn_ggsn_ctx *ggsn;
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200597 struct sgsn_pdp_ctx *pctx = NULL;
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100598
Harald Weltea9b473a2010-12-24 21:13:26 +0100599 ggsn = sgsn_ggsn_ctx_by_addr(&peer->sin_addr);
600 if (!ggsn) {
Daniel Willmann46553142014-09-03 17:46:44 +0200601 LOGP(DGPRS, LOGL_NOTICE, "Received Recovery IE for unknown GGSN\n");
Harald Weltea9b473a2010-12-24 21:13:26 +0100602 return -EINVAL;
603 }
604
605 if (ggsn->remote_restart_ctr == -1) {
606 /* First received ECHO RESPONSE, note the restart ctr */
607 ggsn->remote_restart_ctr = recovery;
608 } else if (ggsn->remote_restart_ctr != recovery) {
609 /* counter has changed (GGSN restart): release all PDP */
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200610 LOGP(DGPRS, LOGL_NOTICE, "GGSN recovery (%u->%u) pdp=%p, "
611 "releasing all%s PDP contexts\n",
612 ggsn->remote_restart_ctr, recovery, pdp, pdp ? " other" : "");
Harald Weltea9b473a2010-12-24 21:13:26 +0100613 ggsn->remote_restart_ctr = recovery;
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200614 if (pdp)
615 pctx = pdp->priv;
616 sgsn_ggsn_ctx_drop_all_pdp_except(ggsn, pctx);
Harald Welte2720e732010-05-17 00:44:57 +0200617 }
618 return 0;
619}
620
621/* libgtp callback for confirmations */
622static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
623{
624 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
625 type, cause, pdp, cbp);
626
627 if (cause == EOF)
628 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
629 type, pdp, cbp);
630
631 switch (type) {
632 case GTP_ECHO_REQ:
Harald Welte3357add2010-12-24 19:21:13 +0100633 /* libgtp hands us the RECOVERY number instead of a cause */
Harald Weltea9b473a2010-12-24 21:13:26 +0100634 return echo_conf(pdp, cbp, cause);
Harald Welte2720e732010-05-17 00:44:57 +0200635 case GTP_CREATE_PDP_REQ:
636 return create_pdp_conf(pdp, cbp, cause);
637 case GTP_DELETE_PDP_REQ:
Harald Welte77289c22010-05-18 14:32:29 +0200638 return delete_pdp_conf(pdp, cbp, cause);
Harald Welte2720e732010-05-17 00:44:57 +0200639 default:
640 break;
641 }
642 return 0;
643}
644
645/* Called whenever a PDP context is deleted for any reason */
646static int cb_delete_context(struct pdp_t *pdp)
647{
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200648 struct sgsn_pdp_ctx *pctx = pdp->priv;
649
Pau Espin Pedrol80d407f2018-07-09 20:42:20 +0200650 LOGPDPX(DGPRS, LOGL_INFO, pdp, "Context %p was deleted\n", pdp);
Maxa3b73e92017-09-27 15:08:17 +0200651
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200652 /* unlink the now non-existing library handle from the pdp
653 * context */
654 pctx->lib = NULL;
655
656 sgsn_ggsn_ctx_drop_pdp(pctx);
Harald Welte2720e732010-05-17 00:44:57 +0200657 return 0;
658}
659
660/* Called when we receive a Version Not Supported message */
661static int cb_unsup_ind(struct sockaddr_in *peer)
662{
663 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
664 "from %s:%u\n", inet_ntoa(peer->sin_addr),
665 ntohs(peer->sin_port));
666 return 0;
667}
668
669/* Called when we receive a Supported Ext Headers Notification */
670static int cb_extheader_ind(struct sockaddr_in *peer)
671{
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100672 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Notification "
Harald Welte2720e732010-05-17 00:44:57 +0200673 "from %s:%u\n", inet_ntoa(peer->sin_addr),
674 ntohs(peer->sin_port));
675 return 0;
676}
677
Pau Espin Pedrole77ee122018-02-12 17:40:33 +0100678/* Called whenever we receive a DATA packet */
Harald Weltebb1c8052010-06-03 06:38:38 +0200679static int cb_data_ind(struct pdp_t *lib, void *packet, unsigned int len)
Harald Welte2720e732010-05-17 00:44:57 +0200680{
Harald Weltebb35c452010-06-09 16:22:28 +0200681 struct bssgp_paging_info pinfo;
Harald Weltebb1c8052010-06-03 06:38:38 +0200682 struct sgsn_pdp_ctx *pdp;
Harald Weltebb35c452010-06-09 16:22:28 +0200683 struct sgsn_mm_ctx *mm;
684 struct msgb *msg;
Harald Weltebb1c8052010-06-03 06:38:38 +0200685 uint8_t *ud;
686
Harald Weltebb1c8052010-06-03 06:38:38 +0200687 pdp = lib->priv;
688 if (!pdp) {
Harald Weltefdf453c2012-07-14 12:15:19 +0200689 LOGP(DGPRS, LOGL_NOTICE,
690 "GTP DATA IND from GGSN for unknown PDP\n");
Harald Weltebb1c8052010-06-03 06:38:38 +0200691 return -EIO;
692 }
Harald Weltebb35c452010-06-09 16:22:28 +0200693 mm = pdp->mm;
Harald Weltefdf453c2012-07-14 12:15:19 +0200694 if (!mm) {
695 LOGP(DGPRS, LOGL_ERROR,
Max0436e422017-03-02 13:28:52 +0100696 "PDP context (address=%u) without MM context!\n",
697 pdp->address);
Harald Weltefdf453c2012-07-14 12:15:19 +0200698 return -EIO;
699 }
Harald Weltebb1c8052010-06-03 06:38:38 +0200700
Max0436e422017-03-02 13:28:52 +0100701 DEBUGP(DGPRS, "GTP DATA IND from GGSN for %s, length=%u\n", mm->imsi,
702 len);
703
Daniel Willmann21b269f2016-05-11 12:43:47 +0200704 if (mm->ran_type == MM_CTX_T_UTRAN_Iu) {
705#ifdef BUILD_IU
706 /* Ignore the packet for now and page the UE to get the RAB
707 * reestablished */
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200708 ranap_iu_page_ps(mm->imsi, &mm->p_tmsi, mm->ra.lac, mm->ra.rac);
Daniel Willmann21b269f2016-05-11 12:43:47 +0200709
710 return 0;
711#else
712 return -ENOTSUP;
713#endif
714 }
715
Sylvain Munaut5914bad2010-06-09 20:49:24 +0200716 msg = msgb_alloc_headroom(len+256, 128, "GTP->SNDCP");
Harald Weltebb1c8052010-06-03 06:38:38 +0200717 ud = msgb_put(msg, len);
718 memcpy(ud, packet, len);
719
Harald Weltef97ee042015-12-25 19:12:21 +0100720 msgb_tlli(msg) = mm->gb.tlli;
721 msgb_bvci(msg) = mm->gb.bvci;
722 msgb_nsei(msg) = mm->gb.nsei;
Harald Weltebb1c8052010-06-03 06:38:38 +0200723
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100724 switch (mm->gmm_state) {
Harald Weltebb35c452010-06-09 16:22:28 +0200725 case GMM_REGISTERED_SUSPENDED:
726 /* initiate PS PAGING procedure */
727 memset(&pinfo, 0, sizeof(pinfo));
728 pinfo.mode = BSSGP_PAGING_PS;
729 pinfo.scope = BSSGP_PAGING_BVCI;
Harald Weltef97ee042015-12-25 19:12:21 +0100730 pinfo.bvci = mm->gb.bvci;
Harald Weltebb35c452010-06-09 16:22:28 +0200731 pinfo.imsi = mm->imsi;
Harald Welte937a9ec2010-07-01 11:53:25 +0200732 pinfo.ptmsi = &mm->p_tmsi;
Harald Weltebb35c452010-06-09 16:22:28 +0200733 pinfo.drx_params = mm->drx_parms;
734 pinfo.qos[0] = 0; // FIXME
Harald Weltef97ee042015-12-25 19:12:21 +0100735 bssgp_tx_paging(mm->gb.nsei, 0, &pinfo);
Harald Welteefbdee92010-06-10 00:20:12 +0200736 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PAGING_PS]);
Harald Weltebb35c452010-06-09 16:22:28 +0200737 /* FIXME: queue the packet we received from GTP */
738 break;
739 case GMM_REGISTERED_NORMAL:
740 break;
741 default:
742 LOGP(DGPRS, LOGL_ERROR, "GTP DATA IND for TLLI %08X in state "
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100743 "%u\n", mm->gb.tlli, mm->gmm_state);
Harald Weltebb35c452010-06-09 16:22:28 +0200744 msgb_free(msg);
745 return -1;
746 }
747
Harald Welteefbdee92010-06-10 00:20:12 +0200748 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_OUT]);
749 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_OUT], len);
750 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_UDATA_OUT]);
751 rate_ctr_add(&mm->ctrg->ctr[GMM_CTR_BYTES_UDATA_OUT], len);
752
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200753 /* It is easier to have a global count */
754 pdp->cdr_bytes_out += len;
755
Harald Weltef97ee042015-12-25 19:12:21 +0100756 return sndcp_unitdata_req(msg, &mm->gb.llme->lle[pdp->sapi],
Harald Weltebb35c452010-06-09 16:22:28 +0200757 pdp->nsapi, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200758}
759
Harald Welteebabdea2010-06-01 18:28:10 +0200760/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte8911cef2010-07-01 19:56:19 +0200761int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
762 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu)
Harald Welteebabdea2010-06-01 18:28:10 +0200763{
764 struct sgsn_mm_ctx *mmctx;
765 struct sgsn_pdp_ctx *pdp;
Harald Welteebabdea2010-06-01 18:28:10 +0200766
767 /* look-up the MM context for this message */
Harald Welte8911cef2010-07-01 19:56:19 +0200768 mmctx = sgsn_mm_ctx_by_tlli(tlli, ra_id);
Harald Welteebabdea2010-06-01 18:28:10 +0200769 if (!mmctx) {
770 LOGP(DGPRS, LOGL_ERROR,
771 "Cannot find MM CTX for TLLI %08x\n", tlli);
772 return -EIO;
773 }
774 /* look-up the PDP context for this message */
775 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, nsapi);
776 if (!pdp) {
777 LOGP(DGPRS, LOGL_ERROR, "Cannot find PDP CTX for "
778 "TLLI=%08x, NSAPI=%u\n", tlli, nsapi);
779 return -EIO;
780 }
781 if (!pdp->lib) {
782 LOGP(DGPRS, LOGL_ERROR, "PDP CTX without libgtp\n");
783 return -EIO;
784 }
Harald Welteefbdee92010-06-10 00:20:12 +0200785
786 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_IN]);
787 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_IN], npdu_len);
788 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_UDATA_IN]);
789 rate_ctr_add(&mmctx->ctrg->ctr[GMM_CTR_BYTES_UDATA_IN], npdu_len);
790
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200791 /* It is easier to have a global count */
792 pdp->cdr_bytes_in += npdu_len;
793
Harald Welteefbdee92010-06-10 00:20:12 +0200794 return gtp_data_req(pdp->ggsn->gsn, pdp->lib, npdu, npdu_len);
Harald Welteebabdea2010-06-01 18:28:10 +0200795}
796
Harald Welte2720e732010-05-17 00:44:57 +0200797/* libgtp select loop integration */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200798static int sgsn_gtp_fd_cb(struct osmo_fd *fd, unsigned int what)
Harald Welte2720e732010-05-17 00:44:57 +0200799{
800 struct sgsn_instance *sgi = fd->data;
801 int rc;
802
803 if (!(what & BSC_FD_READ))
804 return 0;
805
806 switch (fd->priv_nr) {
807 case 0:
808 rc = gtp_decaps0(sgi->gsn);
809 break;
810 case 1:
811 rc = gtp_decaps1c(sgi->gsn);
812 break;
813 case 2:
814 rc = gtp_decaps1u(sgi->gsn);
815 break;
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200816 default:
817 rc = -EINVAL;
818 break;
Harald Welte2720e732010-05-17 00:44:57 +0200819 }
820 return rc;
821}
822
Harald Welte2720e732010-05-17 00:44:57 +0200823static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
824{
Harald Welteb4a31292010-05-18 18:24:53 +0200825 struct timeval next;
Harald Welte2720e732010-05-17 00:44:57 +0200826
827 /* Retrieve next retransmission as struct timeval */
828 gtp_retranstimeout(sgi->gsn, &next);
829
Harald Welte2720e732010-05-17 00:44:57 +0200830 /* re-schedule the timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200831 osmo_timer_schedule(&sgi->gtp_timer, next.tv_sec, next.tv_usec/1000);
Harald Welte2720e732010-05-17 00:44:57 +0200832}
833
834/* timer callback for libgtp retransmissions and ping */
835static void sgsn_gtp_tmr_cb(void *data)
836{
837 struct sgsn_instance *sgi = data;
838
839 /* Do all the retransmissions as needed */
840 gtp_retrans(sgi->gsn);
841
842 sgsn_gtp_tmr_start(sgi);
843}
844
845int sgsn_gtp_init(struct sgsn_instance *sgi)
846{
847 int rc;
848 struct gsn_t *gsn;
849
850 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
851 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
852 if (rc) {
853 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
854 return rc;
855 }
Maxf89be662017-10-27 18:56:34 +0200856 LOGP(DGPRS, LOGL_NOTICE, "Created GTP on %s\n", inet_ntoa(sgi->cfg.gtp_listenaddr.sin_addr));
857
Harald Welte2720e732010-05-17 00:44:57 +0200858 gsn = sgi->gsn;
859
Max6f244022017-10-20 14:28:04 +0200860 if (gsn->mode != GTP_MODE_SGSN)
861 return -EINVAL;
862
Harald Welte2720e732010-05-17 00:44:57 +0200863 sgi->gtp_fd0.fd = gsn->fd0;
864 sgi->gtp_fd0.priv_nr = 0;
865 sgi->gtp_fd0.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200866 sgi->gtp_fd0.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200867 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200868 rc = osmo_fd_register(&sgi->gtp_fd0);
Harald Welte2720e732010-05-17 00:44:57 +0200869 if (rc < 0)
870 return rc;
871
872 sgi->gtp_fd1c.fd = gsn->fd1c;
873 sgi->gtp_fd1c.priv_nr = 1;
874 sgi->gtp_fd1c.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200875 sgi->gtp_fd1c.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200876 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200877 rc = osmo_fd_register(&sgi->gtp_fd1c);
878 if (rc < 0) {
879 osmo_fd_unregister(&sgi->gtp_fd0);
Harald Welte2720e732010-05-17 00:44:57 +0200880 return rc;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200881 }
Harald Welte2720e732010-05-17 00:44:57 +0200882
883 sgi->gtp_fd1u.fd = gsn->fd1u;
884 sgi->gtp_fd1u.priv_nr = 2;
885 sgi->gtp_fd1u.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200886 sgi->gtp_fd1u.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200887 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200888 rc = osmo_fd_register(&sgi->gtp_fd1u);
889 if (rc < 0) {
890 osmo_fd_unregister(&sgi->gtp_fd0);
891 osmo_fd_unregister(&sgi->gtp_fd1c);
Harald Welte2720e732010-05-17 00:44:57 +0200892 return rc;
Holger Hans Peter Freyther3a708af2013-07-04 18:39:02 +0200893 }
Harald Welte2720e732010-05-17 00:44:57 +0200894
895 /* Start GTP re-transmission timer */
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200896 osmo_timer_setup(&sgi->gtp_timer, sgsn_gtp_tmr_cb, sgi);
Harald Welte2720e732010-05-17 00:44:57 +0200897 sgsn_gtp_tmr_start(sgi);
898
899 /* Register callbackcs with libgtp */
900 gtp_set_cb_delete_context(gsn, cb_delete_context);
901 gtp_set_cb_conf(gsn, cb_conf);
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200902 gtp_set_cb_recovery2(gsn, cb_recovery2);
Harald Welte2720e732010-05-17 00:44:57 +0200903 gtp_set_cb_data_ind(gsn, cb_data_ind);
904 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
905 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
906
907 return 0;
908}