blob: 64786de8f43c073f5206421a9600de7e4a6561df [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>
Harald Welte6abf94e2010-05-18 10:35:06 +020040#include <openbsc/gsm_04_08_gprs.h>
Harald Welte2720e732010-05-17 00:44:57 +020041
42#include <openbsc/signal.h>
43#include <openbsc/debug.h>
44#include <openbsc/sgsn.h>
Harald Welte2720e732010-05-17 00:44:57 +020045#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020046#include <openbsc/gprs_gmm.h>
Harald Welte2720e732010-05-17 00:44:57 +020047
48#include <gtp.h>
49#include <pdp.h>
50
Harald Welte2720e732010-05-17 00:44:57 +020051const struct value_string gtp_cause_strs[] = {
52 { GTPCAUSE_REQ_IMSI, "Request IMSI" },
53 { GTPCAUSE_REQ_IMEI, "Request IMEI" },
54 { GTPCAUSE_REQ_IMSI_IMEI, "Request IMSI and IMEI" },
55 { GTPCAUSE_NO_ID_NEEDED, "No identity needed" },
56 { GTPCAUSE_MS_REFUSES_X, "MS refuses" },
57 { GTPCAUSE_MS_NOT_RESP_X, "MS is not GPRS responding" },
58 { GTPCAUSE_ACC_REQ, "Request accepted" },
59 { GTPCAUSE_NON_EXIST, "Non-existent" },
60 { GTPCAUSE_INVALID_MESSAGE, "Invalid message format" },
61 { GTPCAUSE_IMSI_NOT_KNOWN, "IMSI not known" },
62 { GTPCAUSE_MS_DETACHED, "MS is GPRS detached" },
63 { GTPCAUSE_MS_NOT_RESP, "MS is not GPRS responding" },
64 { GTPCAUSE_MS_REFUSES, "MS refuses" },
65 { GTPCAUSE_NO_RESOURCES, "No resources available" },
66 { GTPCAUSE_NOT_SUPPORTED, "Service not supported" },
67 { GTPCAUSE_MAN_IE_INCORRECT, "Mandatory IE incorrect" },
68 { GTPCAUSE_MAN_IE_MISSING, "Mandatory IE missing" },
69 { GTPCAUSE_OPT_IE_INCORRECT, "Optional IE incorrect" },
70 { GTPCAUSE_SYS_FAIL, "System failure" },
71 { GTPCAUSE_ROAMING_REST, "Roaming restrictions" },
72 { GTPCAUSE_PTIMSI_MISMATCH, "P-TMSI Signature mismatch" },
73 { GTPCAUSE_CONN_SUSP, "GPRS connection suspended" },
74 { GTPCAUSE_AUTH_FAIL, "Authentication failure" },
75 { GTPCAUSE_USER_AUTH_FAIL, "User authentication failed" },
76 { GTPCAUSE_CONTEXT_NOT_FOUND, "Context not found" },
77 { GTPCAUSE_ADDR_OCCUPIED, "All dynamic PDP addresses occupied" },
78 { GTPCAUSE_NO_MEMORY, "No memory is available" },
79 { GTPCAUSE_RELOC_FAIL, "Relocation failure" },
80 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, "Unknown mandatory ext. header" },
81 { GTPCAUSE_SEM_ERR_TFT, "Semantic error in TFT operation" },
82 { GTPCAUSE_SYN_ERR_TFT, "Syntactic error in TFT operation" },
83 { GTPCAUSE_SEM_ERR_FILTER, "Semantic errors in packet filter" },
84 { GTPCAUSE_SYN_ERR_FILTER, "Syntactic errors in packet filter" },
85 { GTPCAUSE_MISSING_APN, "Missing or unknown APN" },
86 { GTPCAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
87 { 0, NULL }
88};
89
90/* generate a PDP context based on the IE's from the 04.08 message,
91 * and send the GTP create pdp context request to the GGSN */
Harald Welte77289c22010-05-18 14:32:29 +020092struct sgsn_pdp_ctx *sgsn_create_pdp_ctx(struct sgsn_ggsn_ctx *ggsn,
Harald Welted193cb32010-05-17 22:58:03 +020093 struct sgsn_mm_ctx *mmctx,
94 uint16_t nsapi,
95 struct tlv_parsed *tp)
Harald Welte2720e732010-05-17 00:44:57 +020096{
Harald Welted193cb32010-05-17 22:58:03 +020097 struct sgsn_pdp_ctx *pctx;
Harald Welte2720e732010-05-17 00:44:57 +020098 struct pdp_t *pdp;
99 uint64_t imsi_ui64;
100 int rc;
101
Harald Welte77289c22010-05-18 14:32:29 +0200102 LOGP(DGPRS, LOGL_ERROR, "Create PDP Context\n");
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
Harald Welte6abf94e2010-05-18 10:35:06 +0200173 /* change pdp state to 'requested' */
174 pctx->state = PDP_STATE_CR_REQ;
Harald Welte2720e732010-05-17 00:44:57 +0200175
Harald Welted193cb32010-05-17 22:58:03 +0200176 rc = gtp_create_context_req(ggsn->gsn, pdp, pctx);
177 /* FIXME */
178
179 return pctx;
Harald Welte2720e732010-05-17 00:44:57 +0200180}
181
Harald Welte77289c22010-05-18 14:32:29 +0200182int sgsn_delete_pdp_ctx(struct sgsn_pdp_ctx *pctx)
183{
184 LOGP(DGPRS, LOGL_ERROR, "Delete PDP Context\n");
185
186 /* FIXME: decide if we need teardown or not ! */
187 return gtp_delete_context_req(pctx->ggsn->gsn, pctx->lib, pctx, 1);
188}
Harald Welte6abf94e2010-05-18 10:35:06 +0200189
190struct cause_map {
191 uint8_t cause_in;
192 uint8_t cause_out;
193};
194
195static uint8_t cause_map(const struct cause_map *map, uint8_t in, uint8_t deflt)
196{
197 const struct cause_map *m;
198
199 for (m = map; m->cause_in && m->cause_out; m++) {
200 if (m->cause_in == in)
201 return m->cause_out;
202 }
203 return deflt;
204}
205
206/* how do we map from gtp cause to SM cause */
207static const struct cause_map gtp2sm_cause_map[] = {
208 { GTPCAUSE_NO_RESOURCES, GSM_CAUSE_INSUFF_RSRC },
209 { GTPCAUSE_NOT_SUPPORTED, GSM_CAUSE_SERV_OPT_NOTSUPP },
210 { GTPCAUSE_MAN_IE_INCORRECT, GSM_CAUSE_INV_MAND_INFO },
211 { GTPCAUSE_MAN_IE_MISSING, GSM_CAUSE_INV_MAND_INFO },
212 { GTPCAUSE_OPT_IE_INCORRECT, GSM_CAUSE_PROTO_ERR_UNSPEC },
213 { GTPCAUSE_SYS_FAIL, GSM_CAUSE_NET_FAIL },
214 { GTPCAUSE_ROAMING_REST, GSM_CAUSE_REQ_SERV_OPT_NOTSUB },
215 { GTPCAUSE_PTIMSI_MISMATCH, GSM_CAUSE_PROTO_ERR_UNSPEC },
216 { GTPCAUSE_CONN_SUSP, GSM_CAUSE_PROTO_ERR_UNSPEC },
217 { GTPCAUSE_AUTH_FAIL, GSM_CAUSE_AUTH_FAILED },
218 { GTPCAUSE_USER_AUTH_FAIL, GSM_CAUSE_ACT_REJ_GGSN },
219 { GTPCAUSE_CONTEXT_NOT_FOUND, GSM_CAUSE_PROTO_ERR_UNSPEC },
220 { GTPCAUSE_ADDR_OCCUPIED, GSM_CAUSE_INSUFF_RSRC },
221 { GTPCAUSE_NO_MEMORY, GSM_CAUSE_INSUFF_RSRC },
222 { GTPCAUSE_RELOC_FAIL, GSM_CAUSE_PROTO_ERR_UNSPEC },
223 { GTPCAUSE_UNKNOWN_MAN_EXTHEADER, GSM_CAUSE_PROTO_ERR_UNSPEC },
224 { GTPCAUSE_MISSING_APN, GSM_CAUSE_MISSING_APN },
225 { GTPCAUSE_UNKNOWN_PDP, GSM_CAUSE_UNKNOWN_PDP },
226 { 0, 0 }
227};
228
Harald Welte2720e732010-05-17 00:44:57 +0200229/* The GGSN has confirmed the creation of a PDP Context */
230static int create_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
231{
Harald Welted193cb32010-05-17 22:58:03 +0200232 struct sgsn_pdp_ctx *pctx = cbp;
Harald Welte6abf94e2010-05-18 10:35:06 +0200233 uint8_t reject_cause;
Harald Welte2720e732010-05-17 00:44:57 +0200234
235 DEBUGP(DGPRS, "Received CREATE PDP CTX CONF, cause=%d(%s)\n",
236 cause, get_value_string(gtp_cause_strs, cause));
237
238 /* Check for cause value if it was really successful */
239 if (cause < 0) {
240 LOGP(DGPRS, LOGL_NOTICE, "Create PDP ctx req timed out\n");
241 if (pdp->version == 1) {
242 pdp->version = 0;
Harald Welte8fc1a462010-05-17 00:53:10 +0200243 gtp_create_context_req(sgsn->gsn, pdp, cbp);
Harald Welte2720e732010-05-17 00:44:57 +0200244 return 0;
245 } else {
Harald Welte6abf94e2010-05-18 10:35:06 +0200246 reject_cause = GSM_CAUSE_NET_FAIL;
247 goto reject;
Harald Welte2720e732010-05-17 00:44:57 +0200248 }
249 }
250
251 /* Check for cause value if it was really successful */
252 if (cause != GTPCAUSE_ACC_REQ) {
Harald Welte6abf94e2010-05-18 10:35:06 +0200253 reject_cause = cause_map(gtp2sm_cause_map, cause,
254 GSM_CAUSE_ACT_REJ_GGSN);
255 goto reject;
Harald Welte2720e732010-05-17 00:44:57 +0200256 }
257
Harald Welte6abf94e2010-05-18 10:35:06 +0200258 /* Send PDP CTX ACT to MS */
259 return gsm48_tx_gsm_act_pdp_acc(pctx);
260
261reject:
262 pctx->state = PDP_STATE_NONE;
263 pdp_freepdp(pdp);
264 sgsn_pdp_ctx_free(pctx);
265 /* Send PDP CTX ACT REJ to MS */
266 return gsm48_tx_gsm_act_pdp_rej(pctx->mm, pdp->ti, reject_cause,
267 0, NULL);
268
269 return EOF;
Harald Welte2720e732010-05-17 00:44:57 +0200270}
271
Harald Welte2720e732010-05-17 00:44:57 +0200272/* Confirmation of a PDP Context Delete */
Harald Welte77289c22010-05-18 14:32:29 +0200273static int delete_pdp_conf(struct pdp_t *pdp, void *cbp, int cause)
Harald Welte2720e732010-05-17 00:44:57 +0200274{
Harald Welte77289c22010-05-18 14:32:29 +0200275 struct sgsn_pdp_ctx *pctx = cbp;
276 int rc;
277
Harald Welte2720e732010-05-17 00:44:57 +0200278 DEBUGP(DGPRS, "Received DELETE PDP CTX CONF, cause=%d(%s)\n",
279 cause, get_value_string(gtp_cause_strs, cause));
Harald Welte77289c22010-05-18 14:32:29 +0200280
281 /* Confirm deactivation of PDP context to MS */
282 rc = gsm48_tx_gsm_deact_pdp_acc(pctx);
283
284 sgsn_pdp_ctx_free(pctx);
285
286 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200287}
288
289/* Confirmation of an GTP ECHO request */
290static int echo_conf(int recovery)
291{
292 if (recovery < 0) {
293 DEBUGP(DGPRS, "GTP Echo Request timed out\n");
294 /* FIXME: if version == 1, retry with version 0 */
295 } else {
296 DEBUGP(DGPRS, "GTP Rx Echo Response\n");
297 }
298 return 0;
299}
300
301/* libgtp callback for confirmations */
302static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
303{
304 DEBUGP(DGPRS, "libgtp cb_conf(type=%d, cause=%d, pdp=%p, cbp=%p)\n",
305 type, cause, pdp, cbp);
306
307 if (cause == EOF)
308 LOGP(DGPRS, LOGL_ERROR, "libgtp EOF (type=%u, pdp=%p, cbp=%p)\n",
309 type, pdp, cbp);
310
311 switch (type) {
312 case GTP_ECHO_REQ:
313 return echo_conf(cause);
314 case GTP_CREATE_PDP_REQ:
315 return create_pdp_conf(pdp, cbp, cause);
316 case GTP_DELETE_PDP_REQ:
Harald Welte77289c22010-05-18 14:32:29 +0200317 return delete_pdp_conf(pdp, cbp, cause);
Harald Welte2720e732010-05-17 00:44:57 +0200318 default:
319 break;
320 }
321 return 0;
322}
323
324/* Called whenever a PDP context is deleted for any reason */
325static int cb_delete_context(struct pdp_t *pdp)
326{
327 LOGP(DGPRS, LOGL_INFO, "PDP Context was deleted\n");
328 return 0;
329}
330
331/* Called when we receive a Version Not Supported message */
332static int cb_unsup_ind(struct sockaddr_in *peer)
333{
334 LOGP(DGPRS, LOGL_INFO, "GTP Version not supported Indication "
335 "from %s:%u\n", inet_ntoa(peer->sin_addr),
336 ntohs(peer->sin_port));
337 return 0;
338}
339
340/* Called when we receive a Supported Ext Headers Notification */
341static int cb_extheader_ind(struct sockaddr_in *peer)
342{
343 LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
344 "from %s:%u\n", inet_ntoa(peer->sin_addr),
345 ntohs(peer->sin_port));
346 return 0;
347}
348
349/* Called whenever we recive a DATA packet */
350static int cb_data_ind(struct pdp_t *pdp, void *packet, unsigned int len)
351{
352 DEBUGP(DGPRS, "GTP DATA IND from GGSN, length=%u\n", len);
Harald Welte6abf94e2010-05-18 10:35:06 +0200353 /* FIXME: resolve PDP/MM context, forward to SNDCP layer */
Harald Welte2720e732010-05-17 00:44:57 +0200354
355 return 0;
356}
357
358/* libgtp select loop integration */
359static int sgsn_gtp_fd_cb(struct bsc_fd *fd, unsigned int what)
360{
361 struct sgsn_instance *sgi = fd->data;
362 int rc;
363
364 if (!(what & BSC_FD_READ))
365 return 0;
366
367 switch (fd->priv_nr) {
368 case 0:
369 rc = gtp_decaps0(sgi->gsn);
370 break;
371 case 1:
372 rc = gtp_decaps1c(sgi->gsn);
373 break;
374 case 2:
375 rc = gtp_decaps1u(sgi->gsn);
376 break;
377 }
378 return rc;
379}
380
381static void timeval_normalize(struct timeval *tv)
382{
383 unsigned int sec = tv->tv_usec / 1000000;
384 tv->tv_sec += sec;
385 tv->tv_usec -= sec * 1000000;
386}
387
388/* diff = a - b */
389static int timeval_diff(struct timeval *diff,
390 struct timeval *a,
391 struct timeval *b)
392{
393 /* Step 1: normalize input values */
394 timeval_normalize(a);
395 timeval_normalize(b);
396
397 if (b->tv_sec > a->tv_sec ||
398 b->tv_sec == a->tv_sec && b->tv_usec > a->tv_usec) {
399 b->tv_sec = b->tv_usec = 0;
400 return -ERANGE;
401 }
402
403 if (b->tv_usec > a->tv_usec) {
404 a->tv_sec -= 1;
405 a->tv_usec += 1000000;
406 }
407
408 diff->tv_usec = a->tv_usec - b->tv_usec;
409 diff->tv_sec = a->tv_sec - b->tv_sec;
410
411 return 0;
412}
413
414static void sgsn_gtp_tmr_start(struct sgsn_instance *sgi)
415{
416 struct timeval now, next, diff;
417
418 /* Retrieve next retransmission as struct timeval */
419 gtp_retranstimeout(sgi->gsn, &next);
420
421 /* Calculate the difference to now */
422 gettimeofday(&now, NULL);
423 timeval_diff(&diff, &next, &now);
424
425 /* re-schedule the timer */
426 bsc_schedule_timer(&sgi->gtp_timer, diff.tv_sec, diff.tv_usec/1000);
427}
428
429/* timer callback for libgtp retransmissions and ping */
430static void sgsn_gtp_tmr_cb(void *data)
431{
432 struct sgsn_instance *sgi = data;
433
434 /* Do all the retransmissions as needed */
435 gtp_retrans(sgi->gsn);
436
437 sgsn_gtp_tmr_start(sgi);
438}
439
440int sgsn_gtp_init(struct sgsn_instance *sgi)
441{
442 int rc;
443 struct gsn_t *gsn;
444
445 rc = gtp_new(&sgi->gsn, sgi->cfg.gtp_statedir,
446 &sgi->cfg.gtp_listenaddr.sin_addr, GTP_MODE_SGSN);
447 if (rc) {
448 LOGP(DGPRS, LOGL_ERROR, "Failed to create GTP: %d\n", rc);
449 return rc;
450 }
451 gsn = sgi->gsn;
452
453 sgi->gtp_fd0.fd = gsn->fd0;
454 sgi->gtp_fd0.priv_nr = 0;
455 sgi->gtp_fd0.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200456 sgi->gtp_fd0.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200457 sgi->gtp_fd0.cb = sgsn_gtp_fd_cb;
458 rc = bsc_register_fd(&sgi->gtp_fd0);
459 if (rc < 0)
460 return rc;
461
462 sgi->gtp_fd1c.fd = gsn->fd1c;
463 sgi->gtp_fd1c.priv_nr = 1;
464 sgi->gtp_fd1c.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200465 sgi->gtp_fd1c.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200466 sgi->gtp_fd1c.cb = sgsn_gtp_fd_cb;
467 bsc_register_fd(&sgi->gtp_fd1c);
468 if (rc < 0)
469 return rc;
470
471 sgi->gtp_fd1u.fd = gsn->fd1u;
472 sgi->gtp_fd1u.priv_nr = 2;
473 sgi->gtp_fd1u.data = sgi;
Harald Welte322a5ee2010-05-18 13:13:11 +0200474 sgi->gtp_fd1u.when = BSC_FD_READ;
Harald Welte2720e732010-05-17 00:44:57 +0200475 sgi->gtp_fd1u.cb = sgsn_gtp_fd_cb;
476 bsc_register_fd(&sgi->gtp_fd1u);
477 if (rc < 0)
478 return rc;
479
480 /* Start GTP re-transmission timer */
481 sgi->gtp_timer.cb = sgsn_gtp_tmr_cb;
482 sgsn_gtp_tmr_start(sgi);
483
484 /* Register callbackcs with libgtp */
485 gtp_set_cb_delete_context(gsn, cb_delete_context);
486 gtp_set_cb_conf(gsn, cb_conf);
487 gtp_set_cb_data_ind(gsn, cb_data_ind);
488 gtp_set_cb_unsup_ind(gsn, cb_unsup_ind);
489 gtp_set_cb_extheader_ind(gsn, cb_extheader_ind);
490
491 return 0;
492}