blob: e5defe738771fbed75181b13404ceae22d8fddc4 [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
Harald Welte8f77f192010-05-17 00:44:57 +02006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
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>
33#include <sys/types.h>
34#include <sys/socket.h>
35#include <netinet/in.h>
36#include <arpa/inet.h>
37
38#include <osmocore/talloc.h>
39#include <osmocore/select.h>
40#include <osmocore/rate_ctr.h>
Harald Welte29d838e2010-05-18 10:35:06 +020041#include <openbsc/gsm_04_08_gprs.h>
Harald Welte8f77f192010-05-17 00:44:57 +020042
43#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>
47#include <openbsc/gprs_bssgp.h>
Harald Welte8f77f192010-05-17 00:44:57 +020048#include <openbsc/gprs_sgsn.h>
Harald Welte29d838e2010-05-18 10:35:06 +020049#include <openbsc/gprs_gmm.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;
Harald Welte8f77f192010-05-17 00:44:57 +0200126 int rc;
127
Harald Welteeb471c92010-05-18 14:32:29 +0200128 LOGP(DGPRS, LOGL_ERROR, "Create PDP Context\n");
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200129 pctx = sgsn_pdp_ctx_alloc(mmctx, nsapi);
130 if (!pctx) {
131 LOGP(DGPRS, LOGL_ERROR, "Couldn't allocate PDP Ctx\n");
132 return NULL;
133 }
134
Harald Weltec1920c02010-07-02 22:47:39 +0200135 imsi_ui64 = imsi_str2gtp(mmctx->imsi);
136
Harald Welte8f77f192010-05-17 00:44:57 +0200137 rc = pdp_newpdp(&pdp, imsi_ui64, nsapi, NULL);
138 if (rc) {
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200139 LOGP(DGPRS, LOGL_ERROR, "Out of libgtp PDP Contexts\n");
140 return NULL;
Harald Welte8f77f192010-05-17 00:44:57 +0200141 }
Harald Welteef1bef72010-06-03 06:38:38 +0200142 pdp->priv = pctx;
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200143 pctx->lib = pdp;
144 pctx->ggsn = ggsn;
145
Harald Welte8f77f192010-05-17 00:44:57 +0200146 //pdp->peer = /* sockaddr_in of GGSN (receive) */
147 //pdp->ipif = /* not used by library */
148 pdp->version = ggsn->gtp_version;
149 pdp->hisaddr0 = ggsn->remote_addr;
150 pdp->hisaddr1 = ggsn->remote_addr;
151 //pdp->cch_pdp = 512; /* Charging Flat Rate */
152
153 /* MS provided APN, subscription not verified */
154 pdp->selmode = 0x01;
155
156 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
157
158 /* FIXME: MSISDN in BCD format from mmctx */
159 //pdp->msisdn.l/.v
160
161 /* End User Address from GMM requested PDP address */
162 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
163 if (pdp->eua.l > sizeof(pdp->eua.v))
164 pdp->eua.l = sizeof(pdp->eua.v);
165 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
166 pdp->eua.l);
167 /* Highest 4 bits of first byte need to be set to 1, otherwise
168 * the IE is identical with the 04.08 PDP Address IE */
169 pdp->eua.v[0] |= 0xf0;
170
171 /* APN name from GMM */
172 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
173 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
174 pdp->apn_use.l = sizeof(pdp->apn_use.v);
175 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN),
176 pdp->apn_use.l);
177
178 /* Protocol Configuration Options from GMM */
179 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
180 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
181 pdp->pco_req.l = sizeof(pdp->pco_req.v);
182 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
183 pdp->pco_req.l);
184
185 /* QoS options from GMM */
186 pdp->qos_req.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
187 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
188 pdp->qos_req.l = sizeof(pdp->qos_req.v);
189 memcpy(pdp->qos_req.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS),
190 pdp->qos_req.l);
191
192 /* SGSN address for control plane */
Harald Welteaff6aeb2010-06-02 23:17:33 +0200193 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
194 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
195 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte8f77f192010-05-17 00:44:57 +0200196
197 /* SGSN address for user plane */
Harald Welteaff6aeb2010-06-02 23:17:33 +0200198 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr.sin_addr);
199 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr.sin_addr,
200 sizeof(sgsn->cfg.gtp_listenaddr.sin_addr));
Harald Welte8f77f192010-05-17 00:44:57 +0200201
Harald Welte29d838e2010-05-18 10:35:06 +0200202 /* change pdp state to 'requested' */
203 pctx->state = PDP_STATE_CR_REQ;
Harald Welte8f77f192010-05-17 00:44:57 +0200204
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200205 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
206 /* FIXME */
207
208 return pctx;
Harald Welte8f77f192010-05-17 00:44:57 +0200209}
210
Harald Weltef28e1a02010-12-24 19:21:13 +0100211/* SGSN wants to delete a PDP context */
Harald Welteeb471c92010-05-18 14:32:29 +0200212int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx)
213{
214 LOGP(DGPRS, LOGL_ERROR, "Delete PDP Context\n");
215
216 /* FIXME: decide if we need teardown or not ! */
217 return gtp_delete_context_req(pctx->ggsn->gsn, pctx->lib, pctx, 1);
218}
Harald Welte29d838e2010-05-18 10:35:06 +0200219
220struct cause_map {
221 uint8_t cause_in;
222 uint8_t cause_out;
223};
224
225static uint8_t cause_map(const struct cause_map *map, uint8_t in, uint8_t deflt)
226{
227 const struct cause_map *m;
228
229 for (m = map; m->cause_in && m->cause_out; m++) {
230 if (m->cause_in == in)
231 return m->cause_out;
232 }
233 return deflt;
234}
235
236/* how do we map from gtp cause to SM cause */
237static const struct cause_map gtp2sm_cause_map[] = {
238 { GTPCAUSE_NO_RESOURCES, GSM_CAUSE_INSUFF_RSRC },
239 { GTPCAUSE_NOT_SUPPORTED, GSM_CAUSE_SERV_OPT_NOTSUPP },
240 { GTPCAUSE_MAN_IE_INCORRECT, GSM_CAUSE_INV_MAND_INFO },
241 { GTPCAUSE_MAN_IE_MISSING, GSM_CAUSE_INV_MAND_INFO },
242 { GTPCAUSE_OPT_IE_INCORRECT, GSM_CAUSE_PROTO_ERR_UNSPEC },
243 { GTPCAUSE_SYS_FAIL, GSM_CAUSE_NET_FAIL },
244 { GTPCAUSE_ROAMING_REST, GSM_CAUSE_REQ_SERV_OPT_NOTSUB },
245 { GTPCAUSE_PTIMSI_MISMATCH, GSM_CAUSE_PROTO_ERR_UNSPEC },
246 { GTPCAUSE_CONN_SUSP, GSM_CAUSE_PROTO_ERR_UNSPEC },
247 { GTPCAUSE_AUTH_FAIL, GSM_CAUSE_AUTH_FAILED },
248 { GTPCAUSE_USER_AUTH_FAIL, GSM_CAUSE_ACT_REJ_GGSN },
249 { GTPCAUSE_CONTEXT_NOT_FOUND, GSM_CAUSE_PROTO_ERR_UNSPEC },
250 { GTPCAUSE_ADDR_OCCUPIED, GSM_CAUSE_INSUFF_RSRC },
251 { GTPCAUSE_NO_MEMORY, GSM_CAUSE_INSUFF_RSRC },
252 { GTPCAUSE_RELOC_FAIL, GSM_CAUSE_PROTO_ERR_UNSPEC },
253 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, GSM_CAUSE_PROTO_ERR_UNSPEC },
254 { GTPCAUSE_MISSING_APN, GSM_CAUSE_MISSING_APN },
255 { GTPCAUSE_UNKNOWN_PDP, GSM_CAUSE_UNKNOWN_PDP },
256 { 0, 0 }
257};
258
Harald Welte8f77f192010-05-17 00:44:57 +0200259/* The GGSN has confirmed the creation of a PDP Context */
260static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
261{
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200262 struct sgsn_pdp_ctx *pctx = cbp;
Harald Welte29d838e2010-05-18 10:35:06 +0200263 uint8_t reject_cause;
Harald Welte4aa41482010-06-02 10:09:50 +0200264 int rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200265
266 DEBUGP(DGPRS, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
267 cause, get_value_string(gtp_cause_strs, cause));
268
269 /* Check for cause value if it was really successful */
270 if (cause < 0) {
271 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
Harald Weltea640f132010-06-01 11:52:41 +0200272 if (pdp && pdp->version == 1) {
Harald Welte8f77f192010-05-17 00:44:57 +0200273 pdp->version = 0;
Harald Welte17072d12010-05-17 00:53:10 +0200274 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte8f77f192010-05-17 00:44:57 +0200275 return 0;
276 } else {
Harald Welte29d838e2010-05-18 10:35:06 +0200277 reject_cause = GSM_CAUSE_NET_FAIL;
278 goto reject;
Harald Welte8f77f192010-05-17 00:44:57 +0200279 }
280 }
281
282 /* Check for cause value if it was really successful */
283 if (cause != GTPCAUSE_ACC_REQ) {
Harald Welte29d838e2010-05-18 10:35:06 +0200284 reject_cause = cause_map(gtp2sm_cause_map, cause,
285 GSM_CAUSE_ACT_REJ_GGSN);
286 goto reject;
Harald Welte8f77f192010-05-17 00:44:57 +0200287 }
288
Harald Welted0e36dc2010-06-01 18:28:10 +0200289 /* Activate the SNDCP layer */
290 sndcp_sm_activate_ind(&pctx->mm->llme->lle[pctx->sapi], pctx->nsapi);
291
Harald Welte29d838e2010-05-18 10:35:06 +0200292 /* Send PDP CTX ACT to MS */
293 return gsm48_tx_gsm_act_pdp_acc(pctx);
294
295reject:
296 pctx->state = PDP_STATE_NONE;
Harald Weltea640f132010-06-01 11:52:41 +0200297 if (pdp)
298 pdp_freepdp(pdp);
Harald Welte29d838e2010-05-18 10:35:06 +0200299 /* Send PDP CTX ACT REJ to MS */
Harald Welte4aa41482010-06-02 10:09:50 +0200300 rc = gsm48_tx_gsm_act_pdp_rej(pctx->mm, pctx->ti, reject_cause,
Harald Welte29d838e2010-05-18 10:35:06 +0200301 0, NULL);
Harald Welte4aa41482010-06-02 10:09:50 +0200302 sgsn_pdp_ctx_free(pctx);
Harald Welte29d838e2010-05-18 10:35:06 +0200303
304 return EOF;
Harald Welte8f77f192010-05-17 00:44:57 +0200305}
306
Harald Welte8f77f192010-05-17 00:44:57 +0200307/* Confirmation of a PDP Context Delete */
Harald Welteeb471c92010-05-18 14:32:29 +0200308static int delete_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
Harald Welte8f77f192010-05-17 00:44:57 +0200309{
Harald Welteeb471c92010-05-18 14:32:29 +0200310 struct sgsn_pdp_ctx *pctx = cbp;
311 int rc;
312
Harald Welte8f77f192010-05-17 00:44:57 +0200313 DEBUGP(DGPRS, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
314 cause, get_value_string(gtp_cause_strs, cause));
Harald Welteeb471c92010-05-18 14:32:29 +0200315
Harald Welte502e8a52010-06-28 22:21:57 +0200316 /* Deactivate the SNDCP layer */
317 sndcp_sm_deactivate_ind(&pctx->mm->llme->lle[pctx->sapi], pctx->nsapi);
318
Harald Welteeb471c92010-05-18 14:32:29 +0200319 /* Confirm deactivation of PDP context to MS */
320 rc = gsm48_tx_gsm_deact_pdp_acc(pctx);
321
322 sgsn_pdp_ctx_free(pctx);
323
324 return rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200325}
326
327/* Confirmation of an GTP ECHO request */
Harald Welte94ecef32010-12-24 21:13:26 +0100328static int echo_conf(struct pdp_t *pdp, void *cbp, int recovery)
Harald Welte8f77f192010-05-17 00:44:57 +0200329{
330 if (recovery < 0) {
331 DEBUGP(DGPRS, "GTP Echo Request timed out\n");
332 /* FIXME: if version == 1, retry with version 0 */
333 } else {
334 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
Harald Welte94ecef32010-12-24 21:13:26 +0100335 }
336 return 0;
337}
338
339/* Any message received by GGSN contains a recovery IE */
340static int cb_recovery(struct sockaddr_in *peer, uint8_t recovery)
341{
342 struct sgsn_ggsn_ctx *ggsn;
343
344 ggsn = sgsn_ggsn_ctx_by_addr(&peer->sin_addr);
345 if (!ggsn) {
346 DEBUGP(DGPRS, "Received Recovery IE for unknown GGSN\n");
347 return -EINVAL;
348 }
349
350 if (ggsn->remote_restart_ctr == -1) {
351 /* First received ECHO RESPONSE, note the restart ctr */
352 ggsn->remote_restart_ctr = recovery;
353 } else if (ggsn->remote_restart_ctr != recovery) {
354 /* counter has changed (GGSN restart): release all PDP */
355 LOGP(DGPRS, LOGL_NOTICE, "GGSN recovery (%u->%u), "
356 "releasing all PDP contexts\n",
357 ggsn->remote_restart_ctr, recovery);
358 ggsn->remote_restart_ctr = recovery;
359 drop_all_pdp_for_ggsn(ggsn);
Harald Welte8f77f192010-05-17 00:44:57 +0200360 }
361 return 0;
362}
363
364/* libgtp callback for confirmations */
365static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
366{
367 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
368 type, cause, pdp, cbp);
369
370 if (cause == EOF)
371 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
372 type, pdp, cbp);
373
374 switch (type) {
375 case GTP_ECHO_REQ:
Harald Weltef28e1a02010-12-24 19:21:13 +0100376 /* libgtp hands us the RECOVERY number instead of a cause */
Harald Welte94ecef32010-12-24 21:13:26 +0100377 return echo_conf(pdp, cbp, cause);
Harald Welte8f77f192010-05-17 00:44:57 +0200378 case GTP_CREATE_PDP_REQ:
379 return create_pdp_conf(pdp, cbp, cause);
380 case GTP_DELETE_PDP_REQ:
Harald Welteeb471c92010-05-18 14:32:29 +0200381 return delete_pdp_conf(pdp, cbp, cause);
Harald Welte8f77f192010-05-17 00:44:57 +0200382 default:
383 break;
384 }
385 return 0;
386}
387
388/* Called whenever a PDP context is deleted for any reason */
389static int cb_delete_context(struct pdp_t *pdp)
390{
391 LOGP(DGPRS, LOGL_INFO, "PDP Context was deleted\n");
392 return 0;
393}
394
395/* Called when we receive a Version Not Supported message */
396static int cb_unsup_ind(struct sockaddr_in *peer)
397{
398 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
399 "from %s:%u\n", inet_ntoa(peer->sin_addr),
400 ntohs(peer->sin_port));
401 return 0;
402}
403
404/* Called when we receive a Supported Ext Headers Notification */
405static int cb_extheader_ind(struct sockaddr_in *peer)
406{
407 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
408 "from %s:%u\n", inet_ntoa(peer->sin_addr),
409 ntohs(peer->sin_port));
410 return 0;
411}
412
413/* Called whenever we recive a DATA packet */
Harald Welteef1bef72010-06-03 06:38:38 +0200414static int cb_data_ind(struct pdp_t *lib, void *packet, unsigned int len)
Harald Welte8f77f192010-05-17 00:44:57 +0200415{
Harald Welte92f27a92010-06-09 16:22:28 +0200416 struct bssgp_paging_info pinfo;
Harald Welteef1bef72010-06-03 06:38:38 +0200417 struct sgsn_pdp_ctx *pdp;
Harald Welte92f27a92010-06-09 16:22:28 +0200418 struct sgsn_mm_ctx *mm;
419 struct msgb *msg;
Harald Welteef1bef72010-06-03 06:38:38 +0200420 uint8_t *ud;
Harald Welte92f27a92010-06-09 16:22:28 +0200421 int rc;
Harald Welteef1bef72010-06-03 06:38:38 +0200422
Harald Welte8f77f192010-05-17 00:44:57 +0200423 DEBUGP(DGPRS, "GTP DATA IND from GGSN, length=%u\n", len);
Harald Welte8f77f192010-05-17 00:44:57 +0200424
Harald Welteef1bef72010-06-03 06:38:38 +0200425 pdp = lib->priv;
426 if (!pdp) {
427 DEBUGP(DGPRS, "GTP DATA IND from GGSN for unknown PDP\n");
428 return -EIO;
429 }
Harald Welte92f27a92010-06-09 16:22:28 +0200430 mm = pdp->mm;
Harald Welteef1bef72010-06-03 06:38:38 +0200431
Sylvain Munautb59499b2010-06-09 20:49:24 +0200432 msg = msgb_alloc_headroom(len+256, 128, "GTP->SNDCP");
Harald Welteef1bef72010-06-03 06:38:38 +0200433 ud = msgb_put(msg, len);
434 memcpy(ud, packet, len);
435
Harald Welte92f27a92010-06-09 16:22:28 +0200436 msgb_tlli(msg) = mm->tlli;
437 msgb_bvci(msg) = mm->bvci;
438 msgb_nsei(msg) = mm->nsei;
Harald Welteef1bef72010-06-03 06:38:38 +0200439
Harald Welte92f27a92010-06-09 16:22:28 +0200440 switch (mm->mm_state) {
441 case GMM_REGISTERED_SUSPENDED:
442 /* initiate PS PAGING procedure */
443 memset(&pinfo, 0, sizeof(pinfo));
444 pinfo.mode = BSSGP_PAGING_PS;
445 pinfo.scope = BSSGP_PAGING_BVCI;
446 pinfo.bvci = mm->bvci;
447 pinfo.imsi = mm->imsi;
Harald Weltef81c3c82010-07-01 11:53:25 +0200448 pinfo.ptmsi = &mm->p_tmsi;
Harald Welte92f27a92010-06-09 16:22:28 +0200449 pinfo.drx_params = mm->drx_parms;
450 pinfo.qos[0] = 0; // FIXME
451 rc = gprs_bssgp_tx_paging(mm->nsei, 0, &pinfo);
Harald Welte0fe506b2010-06-10 00:20:12 +0200452 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PAGING_PS]);
Harald Welte92f27a92010-06-09 16:22:28 +0200453 /* FIXME: queue the packet we received from GTP */
454 break;
455 case GMM_REGISTERED_NORMAL:
456 break;
457 default:
458 LOGP(DGPRS, LOGL_ERROR, "GTP DATA IND for TLLI %08X in state "
459 "%u\n", mm->tlli, mm->mm_state);
460 msgb_free(msg);
461 return -1;
462 }
463
Harald Welte0fe506b2010-06-10 00:20:12 +0200464 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_OUT]);
465 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_OUT], len);
466 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_UDATA_OUT]);
467 rate_ctr_add(&mm->ctrg->ctr[GMM_CTR_BYTES_UDATA_OUT], len);
468
Harald Welte92f27a92010-06-09 16:22:28 +0200469 return sndcp_unitdata_req(msg, &mm->llme->lle[pdp->sapi],
470 pdp->nsapi, mm);
Harald Welte8f77f192010-05-17 00:44:57 +0200471}
472
Harald Welted0e36dc2010-06-01 18:28:10 +0200473/* Called by SNDCP when it has received/re-assembled a N-PDU */
Harald Welte3322cb32010-07-01 19:56:19 +0200474int sgsn_rx_sndcp_ud_ind(struct gprs_ra_id *ra_id, int32_t tlli, uint8_t nsapi,
475 struct msgb *msg, uint32_t npdu_len, uint8_t *npdu)
Harald Welted0e36dc2010-06-01 18:28:10 +0200476{
477 struct sgsn_mm_ctx *mmctx;
478 struct sgsn_pdp_ctx *pdp;
Harald Welted0e36dc2010-06-01 18:28:10 +0200479
480 /* look-up the MM context for this message */
Harald Welte3322cb32010-07-01 19:56:19 +0200481 mmctx = sgsn_mm_ctx_by_tlli(tlli, ra_id);
Harald Welted0e36dc2010-06-01 18:28:10 +0200482 if (!mmctx) {
483 LOGP(DGPRS, LOGL_ERROR,
484 "Cannot find MM CTX for TLLI %08x\n", tlli);
485 return -EIO;
486 }
487 /* look-up the PDP context for this message */
488 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, nsapi);
489 if (!pdp) {
490 LOGP(DGPRS, LOGL_ERROR, "Cannot find PDP CTX for "
491 "TLLI=%08x, NSAPI=%u\n", tlli, nsapi);
492 return -EIO;
493 }
494 if (!pdp->lib) {
495 LOGP(DGPRS, LOGL_ERROR, "PDP CTX without libgtp\n");
496 return -EIO;
497 }
Harald Welte0fe506b2010-06-10 00:20:12 +0200498
499 rate_ctr_inc(&pdp->ctrg->ctr[PDP_CTR_PKTS_UDATA_IN]);
500 rate_ctr_add(&pdp->ctrg->ctr[PDP_CTR_BYTES_UDATA_IN], npdu_len);
501 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_UDATA_IN]);
502 rate_ctr_add(&mmctx->ctrg->ctr[GMM_CTR_BYTES_UDATA_IN], npdu_len);
503
504 return gtp_data_req(pdp->ggsn->gsn, pdp->lib, npdu, npdu_len);
505
Harald Welted0e36dc2010-06-01 18:28:10 +0200506 return gtp_data_req(pdp->ggsn->gsn, pdp->lib, npdu, npdu_len);
507}
508
Harald Welte8f77f192010-05-17 00:44:57 +0200509/* libgtp select loop integration */
510static int sgsn_gtp_fd_cb(struct bsc_fd *fd, unsigned int what)
511{
512 struct sgsn_instance *sgi = fd->data;
513 int rc;
514
515 if (!(what & BSC_FD_READ))
516 return 0;
517
518 switch (fd->priv_nr) {
519 case 0:
520 rc = gtp_decaps0(sgi->gsn);
521 break;
522 case 1:
523 rc = gtp_decaps1c(sgi->gsn);
524 break;
525 case 2:
526 rc = gtp_decaps1u(sgi->gsn);
527 break;
Harald Welte50d44fe2010-05-18 17:20:49 +0200528 default:
529 rc = -EINVAL;
530 break;
Harald Welte8f77f192010-05-17 00:44:57 +0200531 }
532 return rc;
533}
534
Harald Welte8f77f192010-05-17 00:44:57 +0200535static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
536{
Harald Welte56087152010-05-18 18:24:53 +0200537 struct timeval next;
Harald Welte8f77f192010-05-17 00:44:57 +0200538
539 /* Retrieve next retransmission as struct timeval */
540 gtp_retranstimeout(sgi->gsn, &next);
541
Harald Welte8f77f192010-05-17 00:44:57 +0200542 /* re-schedule the timer */
Harald Welte56087152010-05-18 18:24:53 +0200543 bsc_schedule_timer(&sgi->gtp_timer, next.tv_sec, next.tv_usec/1000);
Harald Welte8f77f192010-05-17 00:44:57 +0200544}
545
546/* timer callback for libgtp retransmissions and ping */
547static void sgsn_gtp_tmr_cb(void *data)
548{
549 struct sgsn_instance *sgi = data;
550
551 /* Do all the retransmissions as needed */
552 gtp_retrans(sgi->gsn);
553
554 sgsn_gtp_tmr_start(sgi);
555}
556
557int sgsn_gtp_init(struct sgsn_instance *sgi)
558{
559 int rc;
560 struct gsn_t *gsn;
561
562 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
563 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
564 if (rc) {
565 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
566 return rc;
567 }
568 gsn = sgi->gsn;
569
570 sgi->gtp_fd0.fd = gsn->fd0;
571 sgi->gtp_fd0.priv_nr = 0;
572 sgi->gtp_fd0.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200573 sgi->gtp_fd0.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200574 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
575 rc = bsc_register_fd(&sgi->gtp_fd0);
576 if (rc < 0)
577 return rc;
578
579 sgi->gtp_fd1c.fd = gsn->fd1c;
580 sgi->gtp_fd1c.priv_nr = 1;
581 sgi->gtp_fd1c.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200582 sgi->gtp_fd1c.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200583 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
584 bsc_register_fd(&sgi->gtp_fd1c);
585 if (rc < 0)
586 return rc;
587
588 sgi->gtp_fd1u.fd = gsn->fd1u;
589 sgi->gtp_fd1u.priv_nr = 2;
590 sgi->gtp_fd1u.data = sgi;
Harald Welte15bd9242010-05-18 13:13:11 +0200591 sgi->gtp_fd1u.when = BSC_FD_READ;
Harald Welte8f77f192010-05-17 00:44:57 +0200592 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
593 bsc_register_fd(&sgi->gtp_fd1u);
594 if (rc < 0)
595 return rc;
596
597 /* Start GTP re-transmission timer */
598 sgi->gtp_timer.cb = sgsn_gtp_tmr_cb;
Harald Welteb2788dc2010-05-18 18:28:13 +0200599 sgi->gtp_timer.data = sgi;
Harald Welte8f77f192010-05-17 00:44:57 +0200600 sgsn_gtp_tmr_start(sgi);
601
602 /* Register callbackcs with libgtp */
603 gtp_set_cb_delete_context(gsn, cb_delete_context);
604 gtp_set_cb_conf(gsn, cb_conf);
Harald Welte94ecef32010-12-24 21:13:26 +0100605 gtp_set_cb_recovery(gsn, cb_recovery);
Harald Welte8f77f192010-05-17 00:44:57 +0200606 gtp_set_cb_data_ind(gsn, cb_data_ind);
607 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
608 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
609
610 return 0;
611}