blob: a96eb5c78a122911fffd9c58dcceb5c2e9f6c6a3 [file] [log] [blame]
Harald Welte8f77f192010-05-17 00:44:57 +02001/* GPRS SGSN integration with libgtp of OpenGGSN */
Harald Welte3a333192010-06-04 17:43:19 +02002/* libgtp implements the GPRS Tunelling Protocol GTP per TS 09.60 / 29.060 */
Harald Welte8f77f192010-05-17 00:44:57 +02003
4/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther51808442010-10-06 20:37:09 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freyther786cfee2015-04-23 09:53:53 -04006 * (C) 2015 by Holger Hans Peter Freyther
Harald Welte8f77f192010-05-17 00:44:57 +02007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-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 Welte8f77f192010-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 Welte0e3e88e2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte8f77f192010-05-17 00:44:57 +020018 *
Harald Welte0e3e88e2011-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 Welte8f77f192010-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 Welte8f77f192010-05-17 00:44:57 +020033#include <sys/socket.h>
34#include <netinet/in.h>
35#include <arpa/inet.h>
36
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010037#include <osmocom/core/talloc.h>
38#include <osmocom/core/select.h>
39#include <osmocom/core/rate_ctr.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080040#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte8f77f192010-05-17 00:44:57 +020041
Harald Weltecfb6b282012-06-16 14:59:56 +080042#include <openbsc/gsm_04_08_gprs.h>
Harald Welte8f77f192010-05-17 00:44:57 +020043#include <openbsc/signal.h>
44#include <openbsc/debug.h>
45#include <openbsc/sgsn.h>
Harald Welted0e36dc2010-06-01 18:28:10 +020046#include <openbsc/gprs_llc.h>
Harald Welte8f77f192010-05-17 00:44:57 +020047#include <openbsc/gprs_sgsn.h>
Harald Welte29d838e2010-05-18 10:35:06 +020048#include <openbsc/gprs_gmm.h>
Holger Hans Peter Freyther786cfee2015-04-23 09:53:53 -040049#include <openbsc/gsm_subscriber.h>
Harald Welte8f77f192010-05-17 00:44:57 +020050
51#include <gtp.h>
52#include <pdp.h>
53
Harald Welte8f77f192010-05-17 00:44:57 +020054const struct value_string gtp_cause_strs[] = {
55 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
56 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
57 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
58 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
59 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
60 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
61 { GTPCAUSE_ACC_REQ, "Request accepted" },
62 { GTPCAUSE_NON_EXIST, "Non-existent" },
63 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
64 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
65 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
66 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
67 { GTPCAUSE_MS_REFUSES, "MS refuses" },
68 { GTPCAUSE_NO_RESOURCES, "No resources available" },
69 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
70 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
71 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
72 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
73 { GTPCAUSE_SYS_FAIL, "System failure" },
74 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
75 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
76 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
77 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
78 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
79 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
80 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
81 { GTPCAUSE_NO_MEMORY, "No memory is available" },
82 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
83 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
84 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
85 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
86 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
87 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
88 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
89 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
90 { 0, NULL }
91};
92
Harald Weltec1920c02010-07-02 22:47:39 +020093/* Generate the GTP IMSI IE according to 09.60 Section 7.9.2 */
94static uint64_t imsi_str2gtp(char *str)
95{
96 uint64_t imsi64 = 0;
97 unsigned int n;
98 unsigned int imsi_len = strlen(str);
99
100 if (imsi_len > 16) {
101 LOGP(DGPRS, LOGL_NOTICE, "IMSI length > 16 not supported!\n");
102 return 0;
103 }
104
105 for (n = 0; n < 16; n++) {
106 uint64_t val;
107 if (n < imsi_len)
108 val = (str[n]-'0') & 0xf;
109 else
110 val = 0xf;
111 imsi64 |= (val << (n*4));
112 }
113 return imsi64;
114}
115
Harald Welte8f77f192010-05-17 00:44:57 +0200116/* generate a PDP context based on the IE's from the 04.08 message,
117 * and send the GTP create pdp context request to the GGSN */
Harald Welteeb471c92010-05-18 14:32:29 +0200118struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200119 struct sgsn_mm_ctx *mmctx,
120 uint16_t nsapi,
121 struct tlv_parsed *tp)
Harald Welte8f77f192010-05-17 00:44:57 +0200122{
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200123 struct sgsn_pdp_ctx *pctx;
Harald Welte8f77f192010-05-17 00:44:57 +0200124 struct pdp_t *pdp;
Harald Weltec1920c02010-07-02 22:47:39 +0200125 uint64_t imsi_ui64;
Holger Hans Peter Freyther532b09d2015-04-23 11:33:35 -0400126 size_t qos_len;
127 const uint8_t *qos;
Harald Welte8f77f192010-05-17 00:44:57 +0200128 int rc;
129
Harald Welteeb471c92010-05-18 14:32:29 +0200130 LOGP(DGPRS, LOGL_ERROR, "Create PDP Context\n");
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200131 pctx = sgsn_pdp_ctx_alloc(mmctx, nsapi);
132 if (!pctx) {
133 LOGP(DGPRS, LOGL_ERROR, "Couldn't allocate PDP Ctx\n");
134 return NULL;
135 }
136
Harald Weltec1920c02010-07-02 22:47:39 +0200137 imsi_ui64 = imsi_str2gtp(mmctx->imsi);
138
Harald Welte8f77f192010-05-17 00:44:57 +0200139 rc = pdp_newpdp(&pdp, imsi_ui64, nsapi, NULL);
140 if (rc) {
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200141 LOGP(DGPRS, LOGL_ERROR, "Out of libgtp PDP Contexts\n");
142 return NULL;
Harald Welte8f77f192010-05-17 00:44:57 +0200143 }
Harald Welteef1bef72010-06-03 06:38:38 +0200144 pdp->priv = pctx;
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200145 pctx->lib = pdp;
146 pctx->ggsn = ggsn;
147
Harald Welte8f77f192010-05-17 00:44:57 +0200148 //pdp->peer = /* sockaddr_in of GGSN (receive) */
149 //pdp->ipif = /* not used by library */
150 pdp->version = ggsn->gtp_version;
151 pdp->hisaddr0 = ggsn->remote_addr;
152 pdp->hisaddr1 = ggsn->remote_addr;
153 //pdp->cch_pdp = 512; /* Charging Flat Rate */
154
155 /* MS provided APN, subscription not verified */
156 pdp->selmode = 0x01;
157
158 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
159
Holger Hans Peter Freyther786cfee2015-04-23 09:53:53 -0400160 /* Put the MSISDN in case we have it */
161 if (mmctx->subscr) {
162 pdp->msisdn.l = mmctx->subscr->sgsn_data->msisdn_len;
163 if (pdp->msisdn.l > sizeof(pdp->msisdn.v))
164 pdp->msisdn.l = sizeof(pdp->msisdn.l);
165 memcpy(pdp->msisdn.v, mmctx->subscr->sgsn_data->msisdn,
166 pdp->msisdn.l);
167 }
Harald Welte8f77f192010-05-17 00:44:57 +0200168
169 /* End User Address from GMM requested PDP address */
170 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
171 if (pdp->eua.l > sizeof(pdp->eua.v))
172 pdp->eua.l = sizeof(pdp->eua.v);
173 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
174 pdp->eua.l);
175 /* Highest 4 bits of first byte need to be set to 1, otherwise
176 * the IE is identical with the 04.08 PDP Address IE */
177 pdp->eua.v[0] |= 0xf0;
178
179 /* APN name from GMM */
180 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
181 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
182 pdp->apn_use.l = sizeof(pdp->apn_use.v);
183 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN),
184 pdp->apn_use.l);
185
186 /* Protocol Configuration Options from GMM */
187 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
188 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
189 pdp->pco_req.l = sizeof(pdp->pco_req.v);
190 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
191 pdp->pco_req.l);
192
Holger Hans Peter Freyther532b09d2015-04-23 11:33:35 -0400193 /* QoS options from GMM or remote */
194 if (TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS) > 0) {
195 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_SUB_QOS);
196 qos = TLVP_VAL(tp, OSMO_IE_GSM_SUB_QOS);
197 } else {
198 qos_len = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
199 qos = TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS);
200 }
201
Holger Hans Peter Freyther05f7b042015-04-23 11:50:41 -0400202 if (qos_len <= 3) {
203 pdp->qos_req.l = qos_len + 1;
204 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
205 pdp->qos_req.l = sizeof(pdp->qos_req.v);
206 pdp->qos_req.v[0] = 0; /* Allocation/Retention policy */
207 memcpy(&pdp->qos_req.v[1], qos, pdp->qos_req.l - 1);
208 } else {
209 pdp->qos_req.l = qos_len;
210 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
211 pdp->qos_req.l = sizeof(pdp->qos_req.v);
212 memcpy(pdp->qos_req.v, qos, pdp->qos_req.l);
213 }
Harald Welte8f77f192010-05-17 00:44:57 +0200214
215 /* SGSN address for control plane */
Harald Welteaff6aeb2010-06-02 23:17:33 +0200216 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
217 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
218 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte8f77f192010-05-17 00:44:57 +0200219
220 /* SGSN address for user plane */
Harald Welteaff6aeb2010-06-02 23:17:33 +0200221 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
222 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
223 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte8f77f192010-05-17 00:44:57 +0200224
Holger Hans Peter Freyther0d5ee642015-04-22 21:40:39 -0400225 /* Assume we are a GERAN system */
226 pdp->rattype.l = 1;
227 pdp->rattype.v[0] = 2;
228 pdp->rattype_given = 1;
229
Holger Hans Peter Freythera8b50302015-05-12 22:00:22 +0200230 /* Include RAI and ULI all the time */
Holger Hans Peter Freyther293b8212015-05-12 21:46:58 +0200231 pdp->rai_given = 1;
232 pdp->rai.l = 6;
233 gsm48_construct_ra(pdp->rai.v, &mmctx->ra);
234
Holger Hans Peter Freythera8b50302015-05-12 22:00:22 +0200235 pdp->userloc_given = 1;
236 pdp->userloc.l = 8;
237 pdp->userloc.v[0] = 0; /* CGI for GERAN */
238 bssgp_create_cell_id(&pdp->userloc.v[1], &mmctx->ra, mmctx->cell_id);
239
Holger Hans Peter Freyther3f1e7722015-05-12 22:20:05 +0200240 /* include the IMEI(SV) */
241 pdp->imeisv_given = 1;
242 gsm48_encode_bcd_number(&pdp->imeisv.v[0], 8, 0, mmctx->imei);
243 pdp->imeisv.l = pdp->imeisv.v[0];
244 memmove(&pdp->imeisv.v[0], &pdp->imeisv.v[1], 8);
245
Harald Welte29d838e2010-05-18 10:35:06 +0200246 /* change pdp state to 'requested' */
247 pctx->state = PDP_STATE_CR_REQ;
Harald Welte8f77f192010-05-17 00:44:57 +0200248
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200249 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
250 /* FIXME */
251
252 return pctx;
Harald Welte8f77f192010-05-17 00:44:57 +0200253}
254
Harald Weltef28e1a02010-12-24 19:21:13 +0100255/* SGSN wants to delete a PDP context */
Harald Welteeb471c92010-05-18 14:32:29 +0200256int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx)
257{
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200258 LOGPDPCTXP(LOGL_ERROR, pctx, "Delete PDP Context\n");
Harald Welteeb471c92010-05-18 14:32:29 +0200259
260 /* FIXME: decide if we need teardown or not ! */
261 return gtp_delete_context_req(pctx->ggsn->gsn, pctx->lib, pctx, 1);
262}
Harald Welte29d838e2010-05-18 10:35:06 +0200263
264struct cause_map {
265 uint8_t cause_in;
266 uint8_t cause_out;
267};
268
269static uint8_t cause_map(const struct cause_map *map, uint8_t in, uint8_t deflt)
270{
271 const struct cause_map *m;
272
273 for (m = map; m->cause_in && m->cause_out; m++) {
274 if (m->cause_in == in)
275 return m->cause_out;
276 }
277 return deflt;
278}
279
280/* how do we map from gtp cause to SM cause */
281static const struct cause_map gtp2sm_cause_map[] = {
282 { GTPCAUSE_NO_RESOURCES, GSM_CAUSE_INSUFF_RSRC },
283 { GTPCAUSE_NOT_SUPPORTED, GSM_CAUSE_SERV_OPT_NOTSUPP },
284 { GTPCAUSE_MAN_IE_INCORRECT, GSM_CAUSE_INV_MAND_INFO },
285 { GTPCAUSE_MAN_IE_MISSING, GSM_CAUSE_INV_MAND_INFO },
286 { GTPCAUSE_OPT_IE_INCORRECT, GSM_CAUSE_PROTO_ERR_UNSPEC },
287 { GTPCAUSE_SYS_FAIL, GSM_CAUSE_NET_FAIL },
288 { GTPCAUSE_ROAMING_REST, GSM_CAUSE_REQ_SERV_OPT_NOTSUB },
289 { GTPCAUSE_PTIMSI_MISMATCH, GSM_CAUSE_PROTO_ERR_UNSPEC },
290 { GTPCAUSE_CONN_SUSP, GSM_CAUSE_PROTO_ERR_UNSPEC },
291 { GTPCAUSE_AUTH_FAIL, GSM_CAUSE_AUTH_FAILED },
292 { GTPCAUSE_USER_AUTH_FAIL, GSM_CAUSE_ACT_REJ_GGSN },
293 { GTPCAUSE_CONTEXT_NOT_FOUND, GSM_CAUSE_PROTO_ERR_UNSPEC },
294 { GTPCAUSE_ADDR_OCCUPIED, GSM_CAUSE_INSUFF_RSRC },
295 { GTPCAUSE_NO_MEMORY, GSM_CAUSE_INSUFF_RSRC },
296 { GTPCAUSE_RELOC_FAIL, GSM_CAUSE_PROTO_ERR_UNSPEC },
297 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, GSM_CAUSE_PROTO_ERR_UNSPEC },
298 { GTPCAUSE_MISSING_APN, GSM_CAUSE_MISSING_APN },
299 { GTPCAUSE_UNKNOWN_PDP, GSM_CAUSE_UNKNOWN_PDP },
300 { 0, 0 }
301};
302
Harald Welte8f77f192010-05-17 00:44:57 +0200303/* The GGSN has confirmed the creation of a PDP Context */
304static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
305{
Holger Hans Peter Freytherf14098a2015-05-02 19:55:38 +0200306 struct sgsn_signal_data sig_data;
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200307 struct sgsn_pdp_ctx *pctx = cbp;
Harald Welte29d838e2010-05-18 10:35:06 +0200308 uint8_t reject_cause;
Harald Welte8f77f192010-05-17 00:44:57 +0200309
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200310 LOGPDPCTXP(LOGL_INFO, pctx, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte8f77f192010-05-17 00:44:57 +0200311 cause, get_value_string(gtp_cause_strs, cause));
312
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200313 if (!pctx->mm) {
314 LOGP(DGPRS, LOGL_INFO,
315 "No MM context, aborting CREATE PDP CTX CONF\n");
316 return -EIO;
317 }
318
Harald Welte8f77f192010-05-17 00:44:57 +0200319 /* Check for cause value if it was really successful */
320 if (cause < 0) {
321 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
Harald Weltea640f132010-06-01 11:52:41 +0200322 if (pdp && pdp->version == 1) {
Harald Welte8f77f192010-05-17 00:44:57 +0200323 pdp->version = 0;
Harald Welte17072d12010-05-17 00:53:10 +0200324 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte8f77f192010-05-17 00:44:57 +0200325 return 0;
326 } else {
Harald Welte29d838e2010-05-18 10:35:06 +0200327 reject_cause = GSM_CAUSE_NET_FAIL;
328 goto reject;
Harald Welte8f77f192010-05-17 00:44:57 +0200329 }
330 }
331
332 /* Check for cause value if it was really successful */
333 if (cause != GTPCAUSE_ACC_REQ) {
Harald Welte29d838e2010-05-18 10:35:06 +0200334 reject_cause = cause_map(gtp2sm_cause_map, cause,
335 GSM_CAUSE_ACT_REJ_GGSN);
336 goto reject;
Harald Welte8f77f192010-05-17 00:44:57 +0200337 }
338
Harald Welted0e36dc2010-06-01 18:28:10 +0200339 /* Activate the SNDCP layer */
340 sndcp_sm_activate_ind(&pctx->mm->llme->lle[pctx->sapi], pctx->nsapi);
341
Holger Hans Peter Freytherf14098a2015-05-02 19:55:38 +0200342 /* Inform others about it */
343 memset(&sig_data, 0, sizeof(sig_data));
344 sig_data.pdp = pctx;
345 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_ACT, &sig_data);
346
Harald Welte29d838e2010-05-18 10:35:06 +0200347 /* Send PDP CTX ACT to MS */
348 return gsm48_tx_gsm_act_pdp_acc(pctx);
349
350reject:
Holger Hans Peter Freyther7e066c12013-07-30 08:45:29 +0200351 /*
352 * In case of a timeout pdp will be NULL but we have a valid pointer
353 * in pctx->lib. For other rejects pctx->lib and pdp might be the
354 * same.
355 */
Harald Welte29d838e2010-05-18 10:35:06 +0200356 pctx->state = PDP_STATE_NONE;
Holger Hans Peter Freyther7e066c12013-07-30 08:45:29 +0200357 if (pctx->lib && pctx->lib != pdp)
358 pdp_freepdp(pctx->lib);
359 pctx->lib = NULL;
360
Harald Weltea640f132010-06-01 11:52:41 +0200361 if (pdp)
362 pdp_freepdp(pdp);
Harald Welte29d838e2010-05-18 10:35:06 +0200363 /* Send PDP CTX ACT REJ to MS */
Holger Hans Peter Freyther511c31f2014-04-04 12:49:00 +0200364 gsm48_tx_gsm_act_pdp_rej(pctx->mm, pctx->ti, reject_cause,
Harald Welte29d838e2010-05-18 10:35:06 +0200365 0, NULL);
Harald Welte4aa41482010-06-02 10:09:50 +0200366 sgsn_pdp_ctx_free(pctx);
Harald Welte29d838e2010-05-18 10:35:06 +0200367
368 return EOF;
Harald Welte8f77f192010-05-17 00:44:57 +0200369}
370
Harald Welte8f77f192010-05-17 00:44:57 +0200371/* Confirmation of a PDP Context Delete */
Harald Welteeb471c92010-05-18 14:32:29 +0200372static int delete_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
Harald Welte8f77f192010-05-17 00:44:57 +0200373{
Holger Hans Peter Freytherf14098a2015-05-02 19:55:38 +0200374 struct sgsn_signal_data sig_data;
Harald Welteeb471c92010-05-18 14:32:29 +0200375 struct sgsn_pdp_ctx *pctx = cbp;
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200376 int rc = 0;
Harald Welteeb471c92010-05-18 14:32:29 +0200377
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200378 LOGPDPCTXP(LOGL_INFO, pctx, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
Harald Welte8f77f192010-05-17 00:44:57 +0200379 cause, get_value_string(gtp_cause_strs, cause));
Harald Welteeb471c92010-05-18 14:32:29 +0200380
Holger Hans Peter Freytherf14098a2015-05-02 19:55:38 +0200381 memset(&sig_data, 0, sizeof(sig_data));
382 sig_data.pdp = pctx;
383 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_DEACT, &sig_data);
384
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200385 if (pctx->mm) {
386 /* Deactivate the SNDCP layer */
387 sndcp_sm_deactivate_ind(&pctx->mm->llme->lle[pctx->sapi], pctx->nsapi);
Harald Welte502e8a52010-06-28 22:21:57 +0200388
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200389 /* Confirm deactivation of PDP context to MS */
390 rc = gsm48_tx_gsm_deact_pdp_acc(pctx);
391 } else {
392 LOGPDPCTXP(LOGL_NOTICE, pctx,
393 "Not deactivating SNDCP layer since the MM context "
394 "is not available\n");
395 }
Harald Welteeb471c92010-05-18 14:32:29 +0200396
Harald Welte095b3de2012-07-14 12:15:19 +0200397 /* unlink the now non-existing library handle from the pdp
398 * context */
399 pctx->lib = NULL;
400
Harald Welteeb471c92010-05-18 14:32:29 +0200401 sgsn_pdp_ctx_free(pctx);
402
403 return rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200404}
405
406/* Confirmation of an GTP ECHO request */
Harald Welte94ecef32010-12-24 21:13:26 +0100407static int echo_conf(struct pdp_t *pdp, void *cbp, int recovery)
Harald Welte8f77f192010-05-17 00:44:57 +0200408{
409 if (recovery < 0) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200410 LOGP(DGPRS, LOGL_NOTICE, "GTP Echo Request timed out\n");
Harald Welte8f77f192010-05-17 00:44:57 +0200411 /* FIXME: if version == 1, retry with version 0 */
412 } else {
413 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
Harald Welte94ecef32010-12-24 21:13:26 +0100414 }
415 return 0;
416}
417
418/* Any message received by GGSN contains a recovery IE */
419static int cb_recovery(struct sockaddr_in *peer, uint8_t recovery)
420{
421 struct sgsn_ggsn_ctx *ggsn;
422
423 ggsn = sgsn_ggsn_ctx_by_addr(&peer->sin_addr);
424 if (!ggsn) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200425 LOGP(DGPRS, LOGL_NOTICE, "Received Recovery IE for unknown GGSN\n");
Harald Welte94ecef32010-12-24 21:13:26 +0100426 return -EINVAL;
427 }
428
429 if (ggsn->remote_restart_ctr == -1) {
430 /* First received ECHO RESPONSE, note the restart ctr */
431 ggsn->remote_restart_ctr = recovery;
432 } else if (ggsn->remote_restart_ctr != recovery) {
433 /* counter has changed (GGSN restart): release all PDP */
434 LOGP(DGPRS, LOGL_NOTICE, "GGSN recovery (%u->%u), "
435 "releasing all PDP contexts\n",
436 ggsn->remote_restart_ctr, recovery);
437 ggsn->remote_restart_ctr = recovery;
438 drop_all_pdp_for_ggsn(ggsn);
Harald Welte8f77f192010-05-17 00:44:57 +0200439 }
440 return 0;
441}
442
443/* libgtp callback for confirmations */
444static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
445{
446 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
447 type, cause, pdp, cbp);
448
449 if (cause == EOF)
450 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
451 type, pdp, cbp);
452
453 switch (type) {
454 case GTP_ECHO_REQ:
Harald Weltef28e1a02010-12-24 19:21:13 +0100455 /* libgtp hands us the RECOVERY number instead of a cause */
Harald Welte94ecef32010-12-24 21:13:26 +0100456 return echo_conf(pdp, cbp, cause);
Harald Welte8f77f192010-05-17 00:44:57 +0200457 case GTP_CREATE_PDP_REQ:
458 return create_pdp_conf(pdp, cbp, cause);
459 case GTP_DELETE_PDP_REQ:
Harald Welteeb471c92010-05-18 14:32:29 +0200460 return delete_pdp_conf(pdp, cbp, cause);
Harald Welte8f77f192010-05-17 00:44:57 +0200461 default:
462 break;
463 }
464 return 0;
465}
466
467/* Called whenever a PDP context is deleted for any reason */
468static int cb_delete_context(struct pdp_t *pdp)
469{
470 LOGP(DGPRS, LOGL_INFO, "PDP Context was deleted\n");
471 return 0;
472}
473
474/* Called when we receive a Version Not Supported message */
475static int cb_unsup_ind(struct sockaddr_in *peer)
476{
477 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
478 "from %s:%u\n", inet_ntoa(peer->sin_addr),
479 ntohs(peer->sin_port));
480 return 0;
481}
482
483/* Called when we receive a Supported Ext Headers Notification */
484static int cb_extheader_ind(struct sockaddr_in *peer)
485{
486 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
487 "from %s:%u\n", inet_ntoa(peer->sin_addr),
488 ntohs(peer->sin_port));
489 return 0;
490}
491
492/* Called whenever we recive a DATA packet */
Harald Welteef1bef72010-06-03 06:38:38 +0200493static int cb_data_ind(struct pdp_t *lib, void *packet, unsigned int len)
Harald Welte8f77f192010-05-17 00:44:57 +0200494{
Harald Welte92f27a92010-06-09 16:22:28 +0200495 struct bssgp_paging_info pinfo;
Harald Welteef1bef72010-06-03 06:38:38 +0200496 struct sgsn_pdp_ctx *pdp;
Harald Welte92f27a92010-06-09 16:22:28 +0200497 struct sgsn_mm_ctx *mm;
498 struct msgb *msg;
Harald Welteef1bef72010-06-03 06:38:38 +0200499 uint8_t *ud;
500
Harald Welte8f77f192010-05-17 00:44:57 +0200501 DEBUGP(DGPRS, "GTP DATA IND from GGSN, length=%u\n", len);
Harald Welte8f77f192010-05-17 00:44:57 +0200502
Harald Welteef1bef72010-06-03 06:38:38 +0200503 pdp = lib->priv;
504 if (!pdp) {
Harald Welte095b3de2012-07-14 12:15:19 +0200505 LOGP(DGPRS, LOGL_NOTICE,
506 "GTP DATA IND from GGSN for unknown PDP\n");
Harald Welteef1bef72010-06-03 06:38:38 +0200507 return -EIO;
508 }
Harald Welte92f27a92010-06-09 16:22:28 +0200509 mm = pdp->mm;
Harald Welte095b3de2012-07-14 12:15:19 +0200510 if (!mm) {
511 LOGP(DGPRS, LOGL_ERROR,
512 "PDP context (imsi=%s) without MM context!\n", mm->imsi);
513 return -EIO;
514 }
Harald Welteef1bef72010-06-03 06:38:38 +0200515
Sylvain Munautb59499b2010-06-09 20:49:24 +0200516 msg = msgb_alloc_headroom(len+256, 128, "GTP->SNDCP");
Harald Welteef1bef72010-06-03 06:38:38 +0200517 ud = msgb_put(msg, len);
518 memcpy(ud, packet, len);
519
Harald Welte92f27a92010-06-09 16:22:28 +0200520 msgb_tlli(msg) = mm->tlli;
521 msgb_bvci(msg) = mm->bvci;
522 msgb_nsei(msg) = mm->nsei;
Harald Welteef1bef72010-06-03 06:38:38 +0200523
Harald Welte92f27a92010-06-09 16:22:28 +0200524 switch (mm->mm_state) {
525 case GMM_REGISTERED_SUSPENDED:
526 /* initiate PS PAGING procedure */
527 memset(&pinfo, 0, sizeof(pinfo));
528 pinfo.mode = BSSGP_PAGING_PS;
529 pinfo.scope = BSSGP_PAGING_BVCI;
530 pinfo.bvci = mm->bvci;
531 pinfo.imsi = mm->imsi;
Harald Weltef81c3c82010-07-01 11:53:25 +0200532 pinfo.ptmsi = &mm->p_tmsi;
Harald Welte92f27a92010-06-09 16:22:28 +0200533 pinfo.drx_params = mm->drx_parms;
534 pinfo.qos[0] = 0; // FIXME
Holger Hans Peter Freyther511c31f2014-04-04 12:49:00 +0200535 bssgp_tx_paging(mm->nsei, 0, &pinfo);
Harald Welte0fe506b2010-06-10 00:20:12 +0200536 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PAGING_PS]);
Harald Welte92f27a92010-06-09 16:22:28 +0200537 /* FIXME: queue the packet we received from GTP */
538 break;
539 case GMM_REGISTERED_NORMAL:
540 break;
541 default:
542 LOGP(DGPRS, LOGL_ERROR, "GTP DATA IND for TLLI %08X in state "
543 "%u\n", mm->tlli, mm->mm_state);
544 msgb_free(msg);
545 return -1;
546 }
547
Harald Welte0fe506b2010-06-10 00:20:12 +0200548 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_OUT]);
549 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_OUT], len);
550 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_UDATA_OUT]);
551 rate_ctr_add(&mm->ctrg->ctr[GMM_CTR_BYTES_UDATA_OUT], len);
552
Holger Hans Peter Freyther33d469b2015-05-05 22:25:48 +0200553 /* It is easier to have a global count */
554 pdp->cdr_bytes_out += len;
555
Harald Welte92f27a92010-06-09 16:22:28 +0200556 return sndcp_unitdata_req(msg, &mm->llme->lle[pdp->sapi],
557 pdp->nsapi, mm);
Harald Welte8f77f192010-05-17 00:44:57 +0200558}
559
Harald Welted0e36dc2010-06-01 18:28:10 +0200560/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte3322cb32010-07-01 19:56:19 +0200561int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
562 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu)
Harald Welted0e36dc2010-06-01 18:28:10 +0200563{
564 struct sgsn_mm_ctx *mmctx;
565 struct sgsn_pdp_ctx *pdp;
Harald Welted0e36dc2010-06-01 18:28:10 +0200566
567 /* look-up the MM context for this message */
Harald Welte3322cb32010-07-01 19:56:19 +0200568 mmctx = sgsn_mm_ctx_by_tlli(tlli, ra_id);
Harald Welted0e36dc2010-06-01 18:28:10 +0200569 if (!mmctx) {
570 LOGP(DGPRS, LOGL_ERROR,
571 "Cannot find MM CTX for TLLI %08x\n", tlli);
572 return -EIO;
573 }
574 /* look-up the PDP context for this message */
575 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, nsapi);
576 if (!pdp) {
577 LOGP(DGPRS, LOGL_ERROR, "Cannot find PDP CTX for "
578 "TLLI=%08x, NSAPI=%u\n", tlli, nsapi);
579 return -EIO;
580 }
581 if (!pdp->lib) {
582 LOGP(DGPRS, LOGL_ERROR, "PDP CTX without libgtp\n");
583 return -EIO;
584 }
Harald Welte0fe506b2010-06-10 00:20:12 +0200585
586 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_IN]);
587 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_IN], npdu_len);
588 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_UDATA_IN]);
589 rate_ctr_add(&mmctx->ctrg->ctr[GMM_CTR_BYTES_UDATA_IN], npdu_len);
590
Holger Hans Peter Freyther33d469b2015-05-05 22:25:48 +0200591 /* It is easier to have a global count */
592 pdp->cdr_bytes_in += npdu_len;
593
Harald Welte0fe506b2010-06-10 00:20:12 +0200594 return gtp_data_req(pdp->ggsn->gsn, pdp->lib, npdu, npdu_len);
Harald Welted0e36dc2010-06-01 18:28:10 +0200595}
596
Harald Welte8f77f192010-05-17 00:44:57 +0200597/* libgtp select loop integration */
Pablo Neira Ayuso04d24cd2011-05-06 12:11:23 +0200598static int sgsn_gtp_fd_cb(struct osmo_fd *fd, unsigned int what)
Harald Welte8f77f192010-05-17 00:44:57 +0200599{
600 struct sgsn_instance *sgi = fd->data;
601 int rc;
602
603 if (!(what & BSC_FD_READ))
604 return 0;
605
606 switch (fd->priv_nr) {
607 case 0:
608 rc = gtp_decaps0(sgi->gsn);
609 break;
610 case 1:
611 rc = gtp_decaps1c(sgi->gsn);
612 break;
613 case 2:
614 rc = gtp_decaps1u(sgi->gsn);
615 break;
Harald Welte50d44fe2010-05-18 17:20:49 +0200616 default:
617 rc = -EINVAL;
618 break;
Harald Welte8f77f192010-05-17 00:44:57 +0200619 }
620 return rc;
621}
622
Harald Welte8f77f192010-05-17 00:44:57 +0200623static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
624{
Harald Welte56087152010-05-18 18:24:53 +0200625 struct timeval next;
Harald Welte8f77f192010-05-17 00:44:57 +0200626
627 /* Retrieve next retransmission as struct timeval */
628 gtp_retranstimeout(sgi->gsn, &next);
629
Harald Welte8f77f192010-05-17 00:44:57 +0200630 /* re-schedule the timer */
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200631 osmo_timer_schedule(&sgi->gtp_timer, next.tv_sec, next.tv_usec/1000);
Harald Welte8f77f192010-05-17 00:44:57 +0200632}
633
634/* timer callback for libgtp retransmissions and ping */
635static void sgsn_gtp_tmr_cb(void *data)
636{
637 struct sgsn_instance *sgi = data;
638
639 /* Do all the retransmissions as needed */
640 gtp_retrans(sgi->gsn);
641
642 sgsn_gtp_tmr_start(sgi);
643}
644
645int sgsn_gtp_init(struct sgsn_instance *sgi)
646{
647 int rc;
648 struct gsn_t *gsn;
649
650 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
651 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
652 if (rc) {
653 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
654 return rc;
655 }
656 gsn = sgi->gsn;
657
658 sgi->gtp_fd0.fd = gsn->fd0;
659 sgi->gtp_fd0.priv_nr = 0;
660 sgi->gtp_fd0.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200661 sgi->gtp_fd0.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200662 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
Pablo Neira Ayuso04d24cd2011-05-06 12:11:23 +0200663 rc = osmo_fd_register(&sgi->gtp_fd0);
Harald Welte8f77f192010-05-17 00:44:57 +0200664 if (rc < 0)
665 return rc;
666
667 sgi->gtp_fd1c.fd = gsn->fd1c;
668 sgi->gtp_fd1c.priv_nr = 1;
669 sgi->gtp_fd1c.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200670 sgi->gtp_fd1c.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200671 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
Holger Hans Peter Freyther44051a22013-07-04 18:39:02 +0200672 rc = osmo_fd_register(&sgi->gtp_fd1c);
673 if (rc < 0) {
674 osmo_fd_unregister(&sgi->gtp_fd0);
Harald Welte8f77f192010-05-17 00:44:57 +0200675 return rc;
Holger Hans Peter Freyther44051a22013-07-04 18:39:02 +0200676 }
Harald Welte8f77f192010-05-17 00:44:57 +0200677
678 sgi->gtp_fd1u.fd = gsn->fd1u;
679 sgi->gtp_fd1u.priv_nr = 2;
680 sgi->gtp_fd1u.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200681 sgi->gtp_fd1u.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200682 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
Holger Hans Peter Freyther44051a22013-07-04 18:39:02 +0200683 rc = osmo_fd_register(&sgi->gtp_fd1u);
684 if (rc < 0) {
685 osmo_fd_unregister(&sgi->gtp_fd0);
686 osmo_fd_unregister(&sgi->gtp_fd1c);
Harald Welte8f77f192010-05-17 00:44:57 +0200687 return rc;
Holger Hans Peter Freyther44051a22013-07-04 18:39:02 +0200688 }
Harald Welte8f77f192010-05-17 00:44:57 +0200689
690 /* Start GTP re-transmission timer */
691 sgi->gtp_timer.cb = sgsn_gtp_tmr_cb;
Harald Welteb2788dc2010-05-18 18:28:13 +0200692 sgi->gtp_timer.data = sgi;
Harald Welte8f77f192010-05-17 00:44:57 +0200693 sgsn_gtp_tmr_start(sgi);
694
695 /* Register callbackcs with libgtp */
696 gtp_set_cb_delete_context(gsn, cb_delete_context);
697 gtp_set_cb_conf(gsn, cb_conf);
Harald Welte94ecef32010-12-24 21:13:26 +0100698 gtp_set_cb_recovery(gsn, cb_recovery);
Harald Welte8f77f192010-05-17 00:44:57 +0200699 gtp_set_cb_data_ind(gsn, cb_data_ind);
700 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
701 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
702
703 return 0;
704}