blob: e99cb6cc82b72c8ae6b6f3e3a6ecde1fa0f757d7 [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
52struct ggsn_ctx {
53 unsigned int gtp_version;
54 struct in_addr remote_addr;
55 struct gsn_t *gsn;
56};
57
58const struct value_string gtp_cause_strs[] = {
59 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
60 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
61 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
62 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
63 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
64 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
65 { GTPCAUSE_ACC_REQ, "Request accepted" },
66 { GTPCAUSE_NON_EXIST, "Non-existent" },
67 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
68 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
69 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
70 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
71 { GTPCAUSE_MS_REFUSES, "MS refuses" },
72 { GTPCAUSE_NO_RESOURCES, "No resources available" },
73 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
74 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
75 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
76 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
77 { GTPCAUSE_SYS_FAIL, "System failure" },
78 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
79 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
80 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
81 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
82 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
83 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
84 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
85 { GTPCAUSE_NO_MEMORY, "No memory is available" },
86 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
87 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
88 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
89 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
90 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
91 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
92 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
93 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
94 { 0, NULL }
95};
96
97/* generate a PDP context based on the IE's from the 04.08 message,
98 * and send the GTP create pdp context request to the GGSN */
99int sgsn_create_pdp_ctx(struct ggsn_ctx *ggsn, struct sgsn_mm_ctx *mmctx,
100 uint16_t nsapi, struct tlv_parsed *tp)
101{
Harald Welte2720e732010-05-17 00:44:57 +0200102 struct pdp_t *pdp;
103 uint64_t imsi_ui64;
104 int rc;
105
106 rc = pdp_newpdp(&pdp, imsi_ui64, nsapi, NULL);
107 if (rc) {
108 LOGP(DGPRS, LOGL_ERROR, "Out of PDP Contexts\n");
109 return -ENOMEM;
110 }
111 //pdp->peer = /* sockaddr_in of GGSN (receive) */
112 //pdp->ipif = /* not used by library */
113 pdp->version = ggsn->gtp_version;
114 pdp->hisaddr0 = ggsn->remote_addr;
115 pdp->hisaddr1 = ggsn->remote_addr;
116 //pdp->cch_pdp = 512; /* Charging Flat Rate */
117
118 /* MS provided APN, subscription not verified */
119 pdp->selmode = 0x01;
120
121 /* IMSI, TEID/TEIC, FLLU/FLLC, TID, NSAPI set in pdp_newpdp */
122
123 /* FIXME: MSISDN in BCD format from mmctx */
124 //pdp->msisdn.l/.v
125
126 /* End User Address from GMM requested PDP address */
127 pdp->eua.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_PDP_ADDR);
128 if (pdp->eua.l > sizeof(pdp->eua.v))
129 pdp->eua.l = sizeof(pdp->eua.v);
130 memcpy(pdp->eua.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_PDP_ADDR),
131 pdp->eua.l);
132 /* Highest 4 bits of first byte need to be set to 1, otherwise
133 * the IE is identical with the 04.08 PDP Address IE */
134 pdp->eua.v[0] |= 0xf0;
135
136 /* APN name from GMM */
137 pdp->apn_use.l = TLVP_LEN(tp, GSM48_IE_GSM_APN);
138 if (pdp->apn_use.l > sizeof(pdp->apn_use.v))
139 pdp->apn_use.l = sizeof(pdp->apn_use.v);
140 memcpy(pdp->apn_use.v, TLVP_VAL(tp, GSM48_IE_GSM_APN),
141 pdp->apn_use.l);
142
143 /* Protocol Configuration Options from GMM */
144 pdp->pco_req.l = TLVP_LEN(tp, GSM48_IE_GSM_PROTO_CONF_OPT);
145 if (pdp->pco_req.l > sizeof(pdp->pco_req.v))
146 pdp->pco_req.l = sizeof(pdp->pco_req.v);
147 memcpy(pdp->pco_req.v, TLVP_VAL(tp, GSM48_IE_GSM_PROTO_CONF_OPT),
148 pdp->pco_req.l);
149
150 /* QoS options from GMM */
151 pdp->qos_req.l = TLVP_LEN(tp, OSMO_IE_GSM_REQ_QOS);
152 if (pdp->qos_req.l > sizeof(pdp->qos_req.v))
153 pdp->qos_req.l = sizeof(pdp->qos_req.v);
154 memcpy(pdp->qos_req.v, TLVP_VAL(tp, OSMO_IE_GSM_REQ_QOS),
155 pdp->qos_req.l);
156
157 /* SGSN address for control plane */
158 pdp->gsnlc.l = sizeof(sgsn->cfg.gtp_listenaddr);
159 memcpy(pdp->gsnlc.v, &sgsn->cfg.gtp_listenaddr,
160 sizeof(sgsn->cfg.gtp_listenaddr));
161
162 /* SGSN address for user plane */
163 pdp->gsnlu.l = sizeof(sgsn->cfg.gtp_listenaddr);
164 memcpy(pdp->gsnlu.v, &sgsn->cfg.gtp_listenaddr,
165 sizeof(sgsn->cfg.gtp_listenaddr));
166
167 /* FIXME: change pdp state to 'requested' */
168
169 /* FIXME: pass along a pointer to the MM CTX */
170 return gtp_create_context_req(ggsn->gsn, pdp, mmctx);
171}
172
173/* The GGSN has confirmed the creation of a PDP Context */
174static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
175{
176 struct sgsn_mm_ctx *mmctx = cbp;
177
178 DEBUGP(DGPRS, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
179 cause, get_value_string(gtp_cause_strs, cause));
180
181 /* Check for cause value if it was really successful */
182 if (cause < 0) {
183 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
184 if (pdp->version == 1) {
185 pdp->version = 0;
Harald Welte8fc1a462010-05-17 00:53:10 +0200186 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte2720e732010-05-17 00:44:57 +0200187 return 0;
188 } else {
189 pdp_freepdp(pdp);
190 return EOF;
191 }
192 }
193
194 /* Check for cause value if it was really successful */
195 if (cause != GTPCAUSE_ACC_REQ) {
196 pdp_freepdp(pdp);
197 return EOF;
198 }
199
200 /* FIXME: Determine MM ctx for the PDP ctx */
201 /* FIXME: Send PDP CTX ACT ACK/REJ to MS */
202 return 0;
203}
204
205/* If we receive a 04.08 DEACT PDP CTX REQ or GPRS DETACH, we need to
206 * look-up the PDP context and request its deletion from the SGSN */
207int sgsn_delete_pdp_ctx(struct ggsn_ctx *ggsn, struct sgsn_mm_ctx *mmctx,
208 struct tlv_parsed *tp)
209{
210 //return gtp_delete_context_req(gsn, pdp, cbp, teardown);
211}
212
213/* Confirmation of a PDP Context Delete */
214static int delete_pdp_conf(struct pdp_t *pdp, int cause)
215{
216 DEBUGP(DGPRS, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
217 cause, get_value_string(gtp_cause_strs, cause));
218 return 0;
219}
220
221/* Confirmation of an GTP ECHO request */
222static int echo_conf(int recovery)
223{
224 if (recovery < 0) {
225 DEBUGP(DGPRS, "GTP Echo Request timed out\n");
226 /* FIXME: if version == 1, retry with version 0 */
227 } else {
228 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
229 }
230 return 0;
231}
232
233/* libgtp callback for confirmations */
234static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
235{
236 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
237 type, cause, pdp, cbp);
238
239 if (cause == EOF)
240 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
241 type, pdp, cbp);
242
243 switch (type) {
244 case GTP_ECHO_REQ:
245 return echo_conf(cause);
246 case GTP_CREATE_PDP_REQ:
247 return create_pdp_conf(pdp, cbp, cause);
248 case GTP_DELETE_PDP_REQ:
249 return delete_pdp_conf(pdp, cause);
250 default:
251 break;
252 }
253 return 0;
254}
255
256/* Called whenever a PDP context is deleted for any reason */
257static int cb_delete_context(struct pdp_t *pdp)
258{
259 LOGP(DGPRS, LOGL_INFO, "PDP Context was deleted\n");
260 return 0;
261}
262
263/* Called when we receive a Version Not Supported message */
264static int cb_unsup_ind(struct sockaddr_in *peer)
265{
266 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
267 "from %s:%u\n", inet_ntoa(peer->sin_addr),
268 ntohs(peer->sin_port));
269 return 0;
270}
271
272/* Called when we receive a Supported Ext Headers Notification */
273static int cb_extheader_ind(struct sockaddr_in *peer)
274{
275 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
276 "from %s:%u\n", inet_ntoa(peer->sin_addr),
277 ntohs(peer->sin_port));
278 return 0;
279}
280
281/* Called whenever we recive a DATA packet */
282static int cb_data_ind(struct pdp_t *pdp, void *packet, unsigned int len)
283{
284 DEBUGP(DGPRS, "GTP DATA IND from GGSN, length=%u\n", len);
285
286 return 0;
287}
288
289/* libgtp select loop integration */
290static int sgsn_gtp_fd_cb(struct bsc_fd *fd, unsigned int what)
291{
292 struct sgsn_instance *sgi = fd->data;
293 int rc;
294
295 if (!(what & BSC_FD_READ))
296 return 0;
297
298 switch (fd->priv_nr) {
299 case 0:
300 rc = gtp_decaps0(sgi->gsn);
301 break;
302 case 1:
303 rc = gtp_decaps1c(sgi->gsn);
304 break;
305 case 2:
306 rc = gtp_decaps1u(sgi->gsn);
307 break;
308 }
309 return rc;
310}
311
312static void timeval_normalize(struct timeval *tv)
313{
314 unsigned int sec = tv->tv_usec / 1000000;
315 tv->tv_sec += sec;
316 tv->tv_usec -= sec * 1000000;
317}
318
319/* diff = a - b */
320static int timeval_diff(struct timeval *diff,
321 struct timeval *a,
322 struct timeval *b)
323{
324 /* Step 1: normalize input values */
325 timeval_normalize(a);
326 timeval_normalize(b);
327
328 if (b->tv_sec > a->tv_sec ||
329 b->tv_sec == a->tv_sec && b->tv_usec > a->tv_usec) {
330 b->tv_sec = b->tv_usec = 0;
331 return -ERANGE;
332 }
333
334 if (b->tv_usec > a->tv_usec) {
335 a->tv_sec -= 1;
336 a->tv_usec += 1000000;
337 }
338
339 diff->tv_usec = a->tv_usec - b->tv_usec;
340 diff->tv_sec = a->tv_sec - b->tv_sec;
341
342 return 0;
343}
344
345static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
346{
347 struct timeval now, next, diff;
348
349 /* Retrieve next retransmission as struct timeval */
350 gtp_retranstimeout(sgi->gsn, &next);
351
352 /* Calculate the difference to now */
353 gettimeofday(&now, NULL);
354 timeval_diff(&diff, &next, &now);
355
356 /* re-schedule the timer */
357 bsc_schedule_timer(&sgi->gtp_timer, diff.tv_sec, diff.tv_usec/1000);
358}
359
360/* timer callback for libgtp retransmissions and ping */
361static void sgsn_gtp_tmr_cb(void *data)
362{
363 struct sgsn_instance *sgi = data;
364
365 /* Do all the retransmissions as needed */
366 gtp_retrans(sgi->gsn);
367
368 sgsn_gtp_tmr_start(sgi);
369}
370
371int sgsn_gtp_init(struct sgsn_instance *sgi)
372{
373 int rc;
374 struct gsn_t *gsn;
375
376 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
377 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
378 if (rc) {
379 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
380 return rc;
381 }
382 gsn = sgi->gsn;
383
384 sgi->gtp_fd0.fd = gsn->fd0;
385 sgi->gtp_fd0.priv_nr = 0;
386 sgi->gtp_fd0.data = sgi;
387 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
388 rc = bsc_register_fd(&sgi->gtp_fd0);
389 if (rc < 0)
390 return rc;
391
392 sgi->gtp_fd1c.fd = gsn->fd1c;
393 sgi->gtp_fd1c.priv_nr = 1;
394 sgi->gtp_fd1c.data = sgi;
395 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
396 bsc_register_fd(&sgi->gtp_fd1c);
397 if (rc < 0)
398 return rc;
399
400 sgi->gtp_fd1u.fd = gsn->fd1u;
401 sgi->gtp_fd1u.priv_nr = 2;
402 sgi->gtp_fd1u.data = sgi;
403 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
404 bsc_register_fd(&sgi->gtp_fd1u);
405 if (rc < 0)
406 return rc;
407
408 /* Start GTP re-transmission timer */
409 sgi->gtp_timer.cb = sgsn_gtp_tmr_cb;
410 sgsn_gtp_tmr_start(sgi);
411
412 /* Register callbackcs with libgtp */
413 gtp_set_cb_delete_context(gsn, cb_delete_context);
414 gtp_set_cb_conf(gsn, cb_conf);
415 gtp_set_cb_data_ind(gsn, cb_data_ind);
416 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
417 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
418
419 return 0;
420}