blob: f6331b9f01c094805327dffcdc455dc97ef3fe6d [file] [log] [blame]
Harald Welte2720e732010-05-17 00:44:57 +02001/* GPRS SGSN integration with libgtp of OpenGGSN */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010 by On Waves
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <unistd.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
29#include <signal.h>
30#include <sys/fcntl.h>
31#include <sys/stat.h>
32#include <sys/types.h>
33#include <sys/socket.h>
34#include <netinet/in.h>
35#include <arpa/inet.h>
36
37#include <osmocore/talloc.h>
38#include <osmocore/select.h>
39#include <osmocore/rate_ctr.h>
40
41#include <openbsc/signal.h>
42#include <openbsc/debug.h>
43#include <openbsc/sgsn.h>
44//#include <openbsc/gprs_ns.h>
45//#include <openbsc/gprs_bssgp.h>
46#include <openbsc/gprs_sgsn.h>
47#include <openbsc/gsm_04_08_gprs.h>
48
49#include <gtp.h>
50#include <pdp.h>
51
Harald Welte2720e732010-05-17 00:44:57 +020052const struct value_string gtp_cause_strs[] = {
53 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
54 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
55 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
56 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
57 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
58 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
59 { GTPCAUSE_ACC_REQ, "Request accepted" },
60 { GTPCAUSE_NON_EXIST, "Non-existent" },
61 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
62 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
63 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
64 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
65 { GTPCAUSE_MS_REFUSES, "MS refuses" },
66 { GTPCAUSE_NO_RESOURCES, "No resources available" },
67 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
68 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
69 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
70 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
71 { GTPCAUSE_SYS_FAIL, "System failure" },
72 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
73 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
74 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
75 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
76 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
77 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
78 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
79 { GTPCAUSE_NO_MEMORY, "No memory is available" },
80 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
81 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
82 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
83 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
84 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
85 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
86 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
87 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
88 { 0, NULL }
89};
90
91/* generate a PDP context based on the IE's from the 04.08 message,
92 * and send the GTP create pdp context request to the GGSN */
Harald Welted193cb32010-05-17 22:58:03 +020093struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct ggsn_ctx *ggsn,
94 struct sgsn_mm_ctx *mmctx,
95 uint16_t nsapi,
96 struct tlv_parsed *tp)
Harald Welte2720e732010-05-17 00:44:57 +020097{
Harald Welted193cb32010-05-17 22:58:03 +020098 struct sgsn_pdp_ctx *pctx;
Harald Welte2720e732010-05-17 00:44:57 +020099 struct pdp_t *pdp;
100 uint64_t imsi_ui64;
101 int rc;
102
Harald Welted193cb32010-05-17 22:58:03 +0200103 pctx = sgsn_pdp_ctx_alloc(mmctx, nsapi);
104 if (!pctx) {
105 LOGP(DGPRS, LOGL_ERROR, "Couldn't allocate PDP Ctx\n");
106 return NULL;
107 }
108
Harald Welte2720e732010-05-17 00:44:57 +0200109 rc = pdp_newpdp(&pdp, imsi_ui64, nsapi, NULL);
110 if (rc) {
Harald Welted193cb32010-05-17 22:58:03 +0200111 LOGP(DGPRS, LOGL_ERROR, "Out of libgtp PDP Contexts\n");
112 return NULL;
Harald Welte2720e732010-05-17 00:44:57 +0200113 }
Harald Welted193cb32010-05-17 22:58:03 +0200114 pctx->lib = pdp;
115 pctx->ggsn = ggsn;
116
Harald Welte2720e732010-05-17 00:44:57 +0200117 //pdp->peer = /* sockaddr_in of GGSN (receive) */
118 //pdp->ipif = /* not used by library */
119 pdp->version = ggsn->gtp_version;
120 pdp->hisaddr0 = ggsn->remote_addr;
121 pdp->hisaddr1 = ggsn->remote_addr;
122 //pdp->cch_pdp = 512; /* Charging Flat Rate */
123
124 /* MS provided APN, subscription not verified */
125 pdp->selmode = 0x01;
126
127 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
128
129 /* FIXME: MSISDN in BCD format from mmctx */
130 //pdp->msisdn.l/.v
131
132 /* End User Address from GMM requested PDP address */
133 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
134 if (pdp->eua.l > sizeof(pdp->eua.v))
135 pdp->eua.l = sizeof(pdp->eua.v);
136 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
137 pdp->eua.l);
138 /* Highest 4 bits of first byte need to be set to 1, otherwise
139 * the IE is identical with the 04.08 PDP Address IE */
140 pdp->eua.v[0] |= 0xf0;
141
142 /* APN name from GMM */
143 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
144 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
145 pdp->apn_use.l = sizeof(pdp->apn_use.v);
146 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN),
147 pdp->apn_use.l);
148
149 /* Protocol Configuration Options from GMM */
150 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
151 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
152 pdp->pco_req.l = sizeof(pdp->pco_req.v);
153 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
154 pdp->pco_req.l);
155
156 /* QoS options from GMM */
157 pdp->qos_req.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
158 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
159 pdp->qos_req.l = sizeof(pdp->qos_req.v);
160 memcpy(pdp->qos_req.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS),
161 pdp->qos_req.l);
162
163 /* SGSN address for control plane */
164 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr);
165 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr,
166 sizeof(sgsn->cfg.gtp_listenaddr));
167
168 /* SGSN address for user plane */
169 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr);
170 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr,
171 sizeof(sgsn->cfg.gtp_listenaddr));
172
173 /* FIXME: change pdp state to 'requested' */
174
Harald Welted193cb32010-05-17 22:58:03 +0200175 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
176 /* FIXME */
177
178 return pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200179}
180
181/* The GGSN has confirmed the creation of a PDP Context */
182static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
183{
Harald Welted193cb32010-05-17 22:58:03 +0200184 struct sgsn_pdp_ctx *pctx = cbp;
Harald Welte2720e732010-05-17 00:44:57 +0200185
186 DEBUGP(DGPRS, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
187 cause, get_value_string(gtp_cause_strs, cause));
188
189 /* Check for cause value if it was really successful */
190 if (cause < 0) {
191 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
192 if (pdp->version == 1) {
193 pdp->version = 0;
Harald Welte8fc1a462010-05-17 00:53:10 +0200194 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte2720e732010-05-17 00:44:57 +0200195 return 0;
196 } else {
197 pdp_freepdp(pdp);
198 return EOF;
199 }
200 }
201
202 /* Check for cause value if it was really successful */
203 if (cause != GTPCAUSE_ACC_REQ) {
204 pdp_freepdp(pdp);
205 return EOF;
206 }
207
Harald Welte2720e732010-05-17 00:44:57 +0200208 /* FIXME: Send PDP CTX ACT ACK/REJ to MS */
209 return 0;
210}
211
212/* If we receive a 04.08 DEACT PDP CTX REQ or GPRS DETACH, we need to
213 * look-up the PDP context and request its deletion from the SGSN */
214int sgsn_delete_pdp_ctx(struct ggsn_ctx *ggsn, struct sgsn_mm_ctx *mmctx,
215 struct tlv_parsed *tp)
216{
217 //return gtp_delete_context_req(gsn, pdp, cbp, teardown);
218}
219
220/* Confirmation of a PDP Context Delete */
221static int delete_pdp_conf(struct pdp_t *pdp, int cause)
222{
223 DEBUGP(DGPRS, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
224 cause, get_value_string(gtp_cause_strs, cause));
225 return 0;
226}
227
228/* Confirmation of an GTP ECHO request */
229static int echo_conf(int recovery)
230{
231 if (recovery < 0) {
232 DEBUGP(DGPRS, "GTP Echo Request timed out\n");
233 /* FIXME: if version == 1, retry with version 0 */
234 } else {
235 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
236 }
237 return 0;
238}
239
240/* libgtp callback for confirmations */
241static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
242{
243 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
244 type, cause, pdp, cbp);
245
246 if (cause == EOF)
247 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
248 type, pdp, cbp);
249
250 switch (type) {
251 case GTP_ECHO_REQ:
252 return echo_conf(cause);
253 case GTP_CREATE_PDP_REQ:
254 return create_pdp_conf(pdp, cbp, cause);
255 case GTP_DELETE_PDP_REQ:
256 return delete_pdp_conf(pdp, cause);
257 default:
258 break;
259 }
260 return 0;
261}
262
263/* Called whenever a PDP context is deleted for any reason */
264static int cb_delete_context(struct pdp_t *pdp)
265{
266 LOGP(DGPRS, LOGL_INFO, "PDP Context was deleted\n");
267 return 0;
268}
269
270/* Called when we receive a Version Not Supported message */
271static int cb_unsup_ind(struct sockaddr_in *peer)
272{
273 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
274 "from %s:%u\n", inet_ntoa(peer->sin_addr),
275 ntohs(peer->sin_port));
276 return 0;
277}
278
279/* Called when we receive a Supported Ext Headers Notification */
280static int cb_extheader_ind(struct sockaddr_in *peer)
281{
282 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
283 "from %s:%u\n", inet_ntoa(peer->sin_addr),
284 ntohs(peer->sin_port));
285 return 0;
286}
287
288/* Called whenever we recive a DATA packet */
289static int cb_data_ind(struct pdp_t *pdp, void *packet, unsigned int len)
290{
291 DEBUGP(DGPRS, "GTP DATA IND from GGSN, length=%u\n", len);
292
293 return 0;
294}
295
296/* libgtp select loop integration */
297static int sgsn_gtp_fd_cb(struct bsc_fd *fd, unsigned int what)
298{
299 struct sgsn_instance *sgi = fd->data;
300 int rc;
301
302 if (!(what & BSC_FD_READ))
303 return 0;
304
305 switch (fd->priv_nr) {
306 case 0:
307 rc = gtp_decaps0(sgi->gsn);
308 break;
309 case 1:
310 rc = gtp_decaps1c(sgi->gsn);
311 break;
312 case 2:
313 rc = gtp_decaps1u(sgi->gsn);
314 break;
315 }
316 return rc;
317}
318
319static void timeval_normalize(struct timeval *tv)
320{
321 unsigned int sec = tv->tv_usec / 1000000;
322 tv->tv_sec += sec;
323 tv->tv_usec -= sec * 1000000;
324}
325
326/* diff = a - b */
327static int timeval_diff(struct timeval *diff,
328 struct timeval *a,
329 struct timeval *b)
330{
331 /* Step 1: normalize input values */
332 timeval_normalize(a);
333 timeval_normalize(b);
334
335 if (b->tv_sec > a->tv_sec ||
336 b->tv_sec == a->tv_sec && b->tv_usec > a->tv_usec) {
337 b->tv_sec = b->tv_usec = 0;
338 return -ERANGE;
339 }
340
341 if (b->tv_usec > a->tv_usec) {
342 a->tv_sec -= 1;
343 a->tv_usec += 1000000;
344 }
345
346 diff->tv_usec = a->tv_usec - b->tv_usec;
347 diff->tv_sec = a->tv_sec - b->tv_sec;
348
349 return 0;
350}
351
352static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
353{
354 struct timeval now, next, diff;
355
356 /* Retrieve next retransmission as struct timeval */
357 gtp_retranstimeout(sgi->gsn, &next);
358
359 /* Calculate the difference to now */
360 gettimeofday(&now, NULL);
361 timeval_diff(&diff, &next, &now);
362
363 /* re-schedule the timer */
364 bsc_schedule_timer(&sgi->gtp_timer, diff.tv_sec, diff.tv_usec/1000);
365}
366
367/* timer callback for libgtp retransmissions and ping */
368static void sgsn_gtp_tmr_cb(void *data)
369{
370 struct sgsn_instance *sgi = data;
371
372 /* Do all the retransmissions as needed */
373 gtp_retrans(sgi->gsn);
374
375 sgsn_gtp_tmr_start(sgi);
376}
377
378int sgsn_gtp_init(struct sgsn_instance *sgi)
379{
380 int rc;
381 struct gsn_t *gsn;
382
383 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
384 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
385 if (rc) {
386 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
387 return rc;
388 }
389 gsn = sgi->gsn;
390
391 sgi->gtp_fd0.fd = gsn->fd0;
392 sgi->gtp_fd0.priv_nr = 0;
393 sgi->gtp_fd0.data = sgi;
394 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
395 rc = bsc_register_fd(&sgi->gtp_fd0);
396 if (rc < 0)
397 return rc;
398
399 sgi->gtp_fd1c.fd = gsn->fd1c;
400 sgi->gtp_fd1c.priv_nr = 1;
401 sgi->gtp_fd1c.data = sgi;
402 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
403 bsc_register_fd(&sgi->gtp_fd1c);
404 if (rc < 0)
405 return rc;
406
407 sgi->gtp_fd1u.fd = gsn->fd1u;
408 sgi->gtp_fd1u.priv_nr = 2;
409 sgi->gtp_fd1u.data = sgi;
410 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
411 bsc_register_fd(&sgi->gtp_fd1u);
412 if (rc < 0)
413 return rc;
414
415 /* Start GTP re-transmission timer */
416 sgi->gtp_timer.cb = sgsn_gtp_tmr_cb;
417 sgsn_gtp_tmr_start(sgi);
418
419 /* Register callbackcs with libgtp */
420 gtp_set_cb_delete_context(gsn, cb_delete_context);
421 gtp_set_cb_conf(gsn, cb_conf);
422 gtp_set_cb_data_ind(gsn, cb_data_ind);
423 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
424 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
425
426 return 0;
427}