blob: c8dddc5db72c4f16b343049daa7bc793c021a2fe [file] [log] [blame]
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001/* GTP Hub Implementation */
2
3/* (C) 2015 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <string.h>
23#include <errno.h>
24#include <inttypes.h>
25#include <time.h>
26#include <limits.h>
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +010027#include <unistd.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020028#include <sys/socket.h>
29#include <netinet/in.h>
30#include <arpa/inet.h>
31
32#include <gtp.h>
33#include <gtpie.h>
34
35#include <openbsc/gtphub.h>
36#include <openbsc/debug.h>
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010037#include <openbsc/gprs_utils.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020038
39#include <osmocom/core/utils.h>
40#include <osmocom/core/logging.h>
41#include <osmocom/core/socket.h>
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +010042#include <osmocom/core/rate_ctr.h>
43#include <osmocom/core/stats.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020044
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010045
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020046static const int GTPH_GC_TICK_SECONDS = 1;
47
48void *osmo_gtphub_ctx;
49
Neels Hofmeyr063a8022015-11-16 14:35:13 +010050/* Convenience makro, note: only within this C file. */
51#define LOG(level, fmt, args...) \
52 LOGP(DGTPHUB, level, fmt, ##args)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020053
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010054#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
55 sizeof(*(struct_pointer)))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020056
57/* TODO move this to osmocom/core/select.h ? */
58typedef int (*osmo_fd_cb_t)(struct osmo_fd *fd, unsigned int what);
59
60/* TODO move this to osmocom/core/linuxlist.h ? */
61#define __llist_first(head) (((head)->next == (head)) ? NULL : (head)->next)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010062#define llist_first(head, type, entry) \
63 llist_entry(__llist_first(head), type, entry)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020064
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +010065#define __llist_last(head) (((head)->next == (head)) ? NULL : (head)->prev)
66#define llist_last(head, type, entry) \
67 llist_entry(__llist_last(head), type, entry)
68
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020069/* TODO move GTP header stuff to openggsn/gtp/ ? See gtp_decaps*() */
70
71enum gtp_rc {
72 GTP_RC_UNKNOWN = 0,
73 GTP_RC_TINY = 1, /* no IEs (like ping/pong) */
Neels Hofmeyre921e322015-11-11 00:45:50 +010074 GTP_RC_PDU_C = 2, /* a real packet with IEs */
75 GTP_RC_PDU_U = 3, /* a real packet with User data */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020076
77 GTP_RC_TOOSHORT = -1,
78 GTP_RC_UNSUPPORTED_VERSION = -2,
79 GTP_RC_INVALID_IE = -3,
80};
81
82struct gtp_packet_desc {
83 union gtp_packet *data;
84 int data_len;
85 int header_len;
86 int version;
87 uint8_t type;
88 uint16_t seq;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010089 uint32_t header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020090 uint32_t header_tei;
91 int rc; /* enum gtp_rc */
92 unsigned int plane_idx;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010093 unsigned int side_idx;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +010094 struct gtphub_tunnel *tun;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +010095 time_t timestamp;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020096 union gtpie_member *ie[GTPIE_SIZE];
97};
98
Neels Hofmeyr10fc0242015-12-01 00:23:45 +010099struct pending_delete {
100 struct llist_head entry;
101 struct expiring_item expiry_entry;
102
103 struct gtphub_tunnel *tun;
104 uint8_t teardown_ind;
105 uint8_t nsapi;
106};
107
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100108
109/* counters */
110
111enum gtphub_counters_io {
112 GTPH_CTR_PKTS_IN = 0,
113 GTPH_CTR_PKTS_OUT,
114 GTPH_CTR_BYTES_IN,
115 GTPH_CTR_BYTES_OUT
116};
117
118static const struct rate_ctr_desc gtphub_counters_io_desc[] = {
119 { "packets.in", "Packets ( In)" },
120 { "packets.out", "Packets (Out)" },
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100121 { "bytes.in", "Bytes ( In)" },
122 { "bytes.out", "Bytes (Out)" },
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100123};
124
125static const struct rate_ctr_group_desc gtphub_ctrg_io_desc = {
126 .group_name_prefix = "gtphub.bind",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100127 .group_description = "I/O Statistics",
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100128 .num_ctr = ARRAY_SIZE(gtphub_counters_io_desc),
129 .ctr_desc = gtphub_counters_io_desc,
130 .class_id = OSMO_STATS_CLASS_GLOBAL,
131};
132
133
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100134/* support */
135
136static const char *gtp_type_str(uint8_t type)
137{
138 switch (type) {
139 case 1:
140 return " (Echo Request)";
141 case 2:
142 return " (Echo Response)";
143 case 16:
144 return " (Create PDP Ctx Request)";
145 case 17:
146 return " (Create PDP Ctx Response)";
147 case 18:
148 return " (Update PDP Ctx Request)";
149 case 19:
150 return " (Update PDP Ctx Response)";
151 case 20:
152 return " (Delete PDP Ctx Request)";
153 case 21:
154 return " (Delete PDP Ctx Response)";
155 case 255:
156 return " (User Data)";
157 default:
158 return "";
159 }
160}
161
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200162void gsn_addr_copy(struct gsn_addr *gsna, const struct gsn_addr *src)
163{
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +0100164 *gsna = *src;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200165}
166
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200167int gsn_addr_from_sockaddr(struct gsn_addr *gsna, uint16_t *port,
168 const struct osmo_sockaddr *sa)
169{
170 char addr_str[256];
171 char port_str[6];
172
173 if (osmo_sockaddr_to_strs(addr_str, sizeof(addr_str),
174 port_str, sizeof(port_str),
175 sa, (NI_NUMERICHOST | NI_NUMERICSERV))
176 != 0) {
177 return -1;
178 }
179
180 if (port)
181 *port = atoi(port_str);
182
183 return gsn_addr_from_str(gsna, addr_str);
184}
185
186int gsn_addr_from_str(struct gsn_addr *gsna, const char *numeric_addr_str)
187{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100188 if ((!gsna) || (!numeric_addr_str))
189 return -1;
190
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200191 int af = AF_INET;
192 gsna->len = 4;
193 const char *pos = numeric_addr_str;
194 for (; *pos; pos++) {
195 if (*pos == ':') {
196 af = AF_INET6;
197 gsna->len = 16;
198 break;
199 }
200 }
201
202 int rc = inet_pton(af, numeric_addr_str, gsna->buf);
203 if (rc != 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100204 LOG(LOGL_ERROR, "Cannot resolve numeric address: '%s'\n",
205 numeric_addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200206 return -1;
207 }
208 return 0;
209}
210
211const char *gsn_addr_to_str(const struct gsn_addr *gsna)
212{
213 static char buf[INET6_ADDRSTRLEN + 1];
214 return gsn_addr_to_strb(gsna, buf, sizeof(buf));
215}
216
217const char *gsn_addr_to_strb(const struct gsn_addr *gsna,
218 char *strbuf,
219 int strbuf_len)
220{
221 int af;
222 switch (gsna->len) {
223 case 4:
224 af = AF_INET;
225 break;
226 case 16:
227 af = AF_INET6;
228 break;
229 default:
230 return NULL;
231 }
232
233 const char *r = inet_ntop(af, gsna->buf, strbuf, strbuf_len);
234 if (!r) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100235 LOG(LOGL_ERROR, "Cannot convert gsn_addr to string:"
236 " %s: len=%d, buf=%s\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100237 strerror(errno),
238 (int)gsna->len,
239 osmo_hexdump(gsna->buf, sizeof(gsna->buf)));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200240 }
241 return r;
242}
243
244int gsn_addr_same(const struct gsn_addr *a, const struct gsn_addr *b)
245{
246 if (a == b)
247 return 1;
248 if ((!a) || (!b))
249 return 0;
250 if (a->len != b->len)
251 return 0;
252 return (memcmp(a->buf, b->buf, a->len) == 0)? 1 : 0;
253}
254
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100255static int gsn_addr_get(struct gsn_addr *gsna, const struct gtp_packet_desc *p,
256 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200257{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100258 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200259 return -1;
260
261 unsigned int len;
262 /* gtpie.h fails to declare gtpie_gettlv()'s first arg as const. */
263 if (gtpie_gettlv((union gtpie_member**)p->ie, GTPIE_GSN_ADDR, idx,
264 &len, gsna->buf, sizeof(gsna->buf))
265 != 0)
266 return -1;
267 gsna->len = len;
268 return 0;
269}
270
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100271static int gsn_addr_put(const struct gsn_addr *gsna, struct gtp_packet_desc *p,
272 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200273{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100274 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200275 return -1;
276
277 int ie_idx;
278 ie_idx = gtpie_getie(p->ie, GTPIE_GSN_ADDR, idx);
279
280 if (ie_idx < 0)
281 return -1;
282
283 struct gtpie_tlv *ie = &p->ie[ie_idx]->tlv;
284 int ie_l = ntoh16(ie->l);
285 if (ie_l != gsna->len) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100286 LOG(LOGL_ERROR, "Not implemented:"
287 " replace an IE address of different size:"
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200288 " replace %d with %d\n", (int)ie_l, (int)gsna->len);
289 return -1;
290 }
291
292 memcpy(ie->v, gsna->buf, (int)ie_l);
293 return 0;
294}
295
296/* Validate GTP version 0 data; analogous to validate_gtp1_header(), see there.
297 */
298void validate_gtp0_header(struct gtp_packet_desc *p)
299{
300 const struct gtp0_header *pheader = &(p->data->gtp0.h);
301 p->rc = GTP_RC_UNKNOWN;
302 p->header_len = 0;
303
304 OSMO_ASSERT(p->data_len >= 1);
305 OSMO_ASSERT(p->version == 0);
306
307 if (p->data_len < GTP0_HEADER_SIZE) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100308 LOG(LOGL_ERROR, "GTP0 packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200309 p->rc = GTP_RC_TOOSHORT;
310 return;
311 }
312
313 p->type = ntoh8(pheader->type);
314 p->seq = ntoh16(pheader->seq);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100315 p->header_tei_rx = 0; /* TODO */
316 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200317
318 if (p->data_len == GTP0_HEADER_SIZE) {
319 p->rc = GTP_RC_TINY;
320 p->header_len = GTP0_HEADER_SIZE;
321 return;
322 }
323
324 /* Check packet length field versus length of packet */
325 if (p->data_len != (ntoh16(pheader->length) + GTP0_HEADER_SIZE)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100326 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
327 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100328 GTP0_HEADER_SIZE, (int)ntoh16(pheader->length),
329 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200330 p->rc = GTP_RC_TOOSHORT;
331 return;
332 }
333
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100334 LOG(LOGL_DEBUG, "GTP v0 TID = %" PRIu64 "\n", pheader->tid);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200335 p->header_len = GTP0_HEADER_SIZE;
Neels Hofmeyre921e322015-11-11 00:45:50 +0100336 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200337}
338
339/* Validate GTP version 1 data, and update p->rc with the result, as well as
340 * p->header_len in case of a valid header. */
341void validate_gtp1_header(struct gtp_packet_desc *p)
342{
343 const struct gtp1_header_long *pheader = &(p->data->gtp1l.h);
344 p->rc = GTP_RC_UNKNOWN;
345 p->header_len = 0;
346
347 OSMO_ASSERT(p->data_len >= 1);
348 OSMO_ASSERT(p->version == 1);
349
350 if ((p->data_len < GTP1_HEADER_SIZE_LONG)
351 && (p->data_len != GTP1_HEADER_SIZE_SHORT)){
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100352 LOG(LOGL_ERROR, "GTP packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200353 p->rc = GTP_RC_TOOSHORT;
354 return;
355 }
356
357 p->type = ntoh8(pheader->type);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100358 p->header_tei_rx = ntoh32(pheader->tei);
359 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200360 p->seq = ntoh16(pheader->seq);
361
Neels Hofmeyr28a70f22015-12-06 15:22:54 +0100362 LOG(LOGL_DEBUG, "| GTPv1\n");
363 LOG(LOGL_DEBUG, "| type = %" PRIu8 " 0x%02" PRIx8 "\n", p->type, p->type);
364 LOG(LOGL_DEBUG, "| length = %" PRIu16 " 0x%04" PRIx16 "\n", ntoh16(pheader->length), ntoh16(pheader->length));
365 LOG(LOGL_DEBUG, "| TEI = %" PRIu32 " 0x%08" PRIx32 "\n", p->header_tei_rx, p->header_tei_rx);
366 LOG(LOGL_DEBUG, "| seq = %" PRIu16 " 0x%04" PRIx16 "\n", p->seq, p->seq);
367 LOG(LOGL_DEBUG, "| npdu = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->npdu, pheader->npdu);
368 LOG(LOGL_DEBUG, "| next = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->next, pheader->next);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200369
370 if (p->data_len <= GTP1_HEADER_SIZE_LONG) {
371 p->rc = GTP_RC_TINY;
372 p->header_len = GTP1_HEADER_SIZE_SHORT;
373 return;
374 }
375
376 /* Check packet length field versus length of packet */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100377 int announced_len = ntoh16(pheader->length) + GTP1_HEADER_SIZE_SHORT;
378 if (p->data_len != announced_len) {
379 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
380 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100381 GTP1_HEADER_SIZE_SHORT, (int)ntoh16(pheader->length),
382 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200383 p->rc = GTP_RC_TOOSHORT;
384 return;
385 }
386
Neels Hofmeyre921e322015-11-11 00:45:50 +0100387 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200388 p->header_len = GTP1_HEADER_SIZE_LONG;
389}
390
391/* Examine whether p->data of size p->data_len has a valid GTP header. Set
392 * p->version, p->rc and p->header_len. On error, p->rc <= 0 (see enum
393 * gtp_rc). p->data must point at a buffer with p->data_len set. */
394void validate_gtp_header(struct gtp_packet_desc *p)
395{
396 p->rc = GTP_RC_UNKNOWN;
397
398 /* Need at least 1 byte in order to check version */
399 if (p->data_len < 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100400 LOG(LOGL_ERROR, "Discarding packet - too small: %d\n",
401 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200402 p->rc = GTP_RC_TOOSHORT;
403 return;
404 }
405
406 p->version = p->data->flags >> 5;
407
408 switch (p->version) {
409 case 0:
410 validate_gtp0_header(p);
411 break;
412 case 1:
413 validate_gtp1_header(p);
414 break;
415 default:
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100416 LOG(LOGL_ERROR, "Unsupported GTP version: %d\n", p->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200417 p->rc = GTP_RC_UNSUPPORTED_VERSION;
418 break;
419 }
420}
421
422
423/* Return the value of the i'th IMSI IEI by copying to *imsi.
424 * The first IEI is reached by passing i = 0.
425 * imsi must point at allocated space of (at least) 8 bytes.
426 * Return 1 on success, or 0 if not found. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100427static int get_ie_imsi(union gtpie_member *ie[], int i, uint8_t *imsi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200428{
429 return gtpie_gettv0(ie, GTPIE_IMSI, i, imsi, 8) == 0;
430}
431
432/* Analogous to get_ie_imsi(). nsapi must point at a single uint8_t. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100433static int get_ie_nsapi(union gtpie_member *ie[], int i, uint8_t *nsapi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200434{
435 return gtpie_gettv1(ie, GTPIE_NSAPI, i, nsapi) == 0;
436}
437
438static char imsi_digit_to_char(uint8_t nibble)
439{
440 nibble &= 0x0f;
441 if (nibble > 9)
442 return (nibble == 0x0f) ? '\0' : '?';
443 return '0' + nibble;
444}
445
446/* Return a human readable IMSI string, in a static buffer.
447 * imsi must point at 8 octets of IMSI IE encoded IMSI data. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100448static int imsi_to_str(uint8_t *imsi, const char **imsi_str)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200449{
450 static char str[17];
451 int i;
452
453 for (i = 0; i < 8; i++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +0100454 char c;
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100455 c = imsi_digit_to_char(imsi[i]);
456 if (c == '?')
457 return -1;
458 str[2*i] = c;
459
460 c = imsi_digit_to_char(imsi[i] >> 4);
461 if (c == '?')
462 return -1;
463 str[2*i + 1] = c;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200464 }
465 str[16] = '\0';
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100466 *imsi_str = str;
467 return 1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200468}
469
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100470/* Return 0 if not present, 1 if present and decoded successfully, -1 if
471 * present but cannot be decoded. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100472static int get_ie_imsi_str(union gtpie_member *ie[], int i,
473 const char **imsi_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100474{
475 uint8_t imsi_buf[8];
476 if (!get_ie_imsi(ie, i, imsi_buf))
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100477 return 0;
478 return imsi_to_str(imsi_buf, imsi_str);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100479}
480
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100481/* Return 0 if not present, 1 if present and decoded successfully, -1 if
482 * present but cannot be decoded. */
483static int get_ie_apn_str(union gtpie_member *ie[], const char **apn_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100484{
485 static char apn_buf[GSM_APN_LENGTH];
486 unsigned int len;
487 if (gtpie_gettlv(ie, GTPIE_APN, 0,
488 &len, apn_buf, sizeof(apn_buf)) != 0)
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100489 return 0;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100490
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100491 if (len < 2) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100492 LOG(LOGL_ERROR, "APN IE: invalid length: %d\n",
493 (int)len);
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100494 return -1;
495 }
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100496
497 if (len > (sizeof(apn_buf) - 1))
498 len = sizeof(apn_buf) - 1;
499 apn_buf[len] = '\0';
500
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100501 *apn_str = gprs_apn_to_str(apn_buf, (uint8_t*)apn_buf, len);
502 if (!(*apn_str)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100503 LOG(LOGL_ERROR, "APN IE: present but cannot be decoded: %s\n",
504 osmo_hexdump((uint8_t*)apn_buf, len));
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100505 return -1;
506 }
507 return 1;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100508}
509
510
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200511/* Validate header, and index information elements. Write decoded packet
512 * information to *res. res->data will point at the given data buffer. On
513 * error, p->rc is set <= 0 (see enum gtp_rc). */
514static void gtp_decode(const uint8_t *data, int data_len,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100515 unsigned int from_side_idx,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200516 unsigned int from_plane_idx,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100517 struct gtp_packet_desc *res,
518 time_t now)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200519{
520 ZERO_STRUCT(res);
521 res->data = (union gtp_packet*)data;
522 res->data_len = data_len;
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100523 res->side_idx = from_side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200524 res->plane_idx = from_plane_idx;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100525 res->timestamp = now;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200526
527 validate_gtp_header(res);
528
Neels Hofmeyr87c83d02015-12-03 11:25:27 +0100529 if (res->rc <= 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200530 return;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200531
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100532 LOG(LOGL_DEBUG, "Valid GTP header (v%d)\n", res->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200533
Neels Hofmeyre921e322015-11-11 00:45:50 +0100534 if (from_plane_idx == GTPH_PLANE_USER) {
535 res->rc = GTP_RC_PDU_U;
536 return;
537 }
538
539 if (res->rc != GTP_RC_PDU_C) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100540 LOG(LOGL_DEBUG, "no IEs in this GTP packet\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200541 return;
542 }
543
544 if (gtpie_decaps(res->ie, res->version,
545 (void*)(data + res->header_len),
546 res->data_len - res->header_len) != 0) {
547 res->rc = GTP_RC_INVALID_IE;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100548 LOG(LOGL_ERROR, "INVALID: cannot decode IEs."
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100549 " Dropping GTP packet%s.\n",
550 gtp_type_str(res->type)
551 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200552 return;
553 }
554
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100555#if 1
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100556 /* TODO if (<loglevel is debug>) { ...
557 (waiting for a commit from jerlbeck) */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200558 int i;
559
560 for (i = 0; i < 10; i++) {
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100561 const char *imsi;
562 if (get_ie_imsi_str(res->ie, i, &imsi) < 1)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200563 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100564 LOG(LOGL_DEBUG, "| IMSI %s\n", imsi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200565 }
566
567 for (i = 0; i < 10; i++) {
568 uint8_t nsapi;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100569 if (!get_ie_nsapi(res->ie, i, &nsapi))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200570 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100571 LOG(LOGL_DEBUG, "| NSAPI %d\n", (int)nsapi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200572 }
573
574 for (i = 0; i < 2; i++) {
575 struct gsn_addr addr;
576 if (gsn_addr_get(&addr, res, i) == 0)
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100577 LOG(LOGL_DEBUG, "| addr %s\n", gsn_addr_to_str(&addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200578 }
579
580 for (i = 0; i < 10; i++) {
581 uint32_t tei;
582 if (gtpie_gettv4(res->ie, GTPIE_TEI_DI, i, &tei) != 0)
583 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100584 LOG(LOGL_DEBUG, "| TEI DI (USER) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200585 tei, tei);
586 }
587
588 for (i = 0; i < 10; i++) {
589 uint32_t tei;
590 if (gtpie_gettv4(res->ie, GTPIE_TEI_C, i, &tei) != 0)
591 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100592 LOG(LOGL_DEBUG, "| TEI (CTRL) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200593 tei, tei);
594 }
595#endif
596}
597
598
599/* expiry */
600
601void expiry_init(struct expiry *exq, int expiry_in_seconds)
602{
603 ZERO_STRUCT(exq);
604 exq->expiry_in_seconds = expiry_in_seconds;
605 INIT_LLIST_HEAD(&exq->items);
606}
607
608void expiry_add(struct expiry *exq, struct expiring_item *item, time_t now)
609{
610 item->expiry = now + exq->expiry_in_seconds;
611
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +0100612 OSMO_ASSERT(llist_empty(&exq->items)
613 || (item->expiry
614 >= llist_last(&exq->items, struct expiring_item, entry)->expiry));
615
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200616 /* Add/move to the tail to always sort by expiry, ascending. */
617 llist_del(&item->entry);
618 llist_add_tail(&item->entry, &exq->items);
619}
620
621int expiry_tick(struct expiry *exq, time_t now)
622{
623 int expired = 0;
624 struct expiring_item *m, *n;
625 llist_for_each_entry_safe(m, n, &exq->items, entry) {
626 if (m->expiry <= now) {
627 expiring_item_del(m);
628 expired ++;
629 } else {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200630 /* The items are added sorted by expiry. So when we hit
631 * an unexpired entry, only more unexpired ones will
632 * follow. */
633 break;
634 }
635 }
636 return expired;
637}
638
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100639void expiry_clear(struct expiry *exq)
640{
641 struct expiring_item *m, *n;
642 llist_for_each_entry_safe(m, n, &exq->items, entry) {
643 expiring_item_del(m);
644 }
645}
646
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200647void expiring_item_init(struct expiring_item *item)
648{
649 ZERO_STRUCT(item);
650 INIT_LLIST_HEAD(&item->entry);
651}
652
653void expiring_item_del(struct expiring_item *item)
654{
655 OSMO_ASSERT(item);
656 llist_del(&item->entry);
657 INIT_LLIST_HEAD(&item->entry);
658 if (item->del_cb) {
659 /* avoid loops */
660 del_cb_t del_cb = item->del_cb;
661 item->del_cb = 0;
662 (del_cb)(item);
663 }
664}
665
666
667/* nr_map, nr_pool */
668
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100669void nr_pool_init(struct nr_pool *pool, nr_t nr_min, nr_t nr_max)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200670{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100671 *pool = (struct nr_pool){
672 .nr_min = nr_min,
673 .nr_max = nr_max,
674 .last_nr = nr_max
675 };
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200676}
677
678nr_t nr_pool_next(struct nr_pool *pool)
679{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100680 if (pool->last_nr >= pool->nr_max)
681 pool->last_nr = pool->nr_min;
682 else
683 pool->last_nr ++;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200684
685 return pool->last_nr;
686}
687
688void nr_map_init(struct nr_map *map, struct nr_pool *pool,
689 struct expiry *exq)
690{
691 ZERO_STRUCT(map);
692 map->pool = pool;
693 map->add_items_to_expiry = exq;
694 INIT_LLIST_HEAD(&map->mappings);
695}
696
697void nr_mapping_init(struct nr_mapping *m)
698{
699 ZERO_STRUCT(m);
700 INIT_LLIST_HEAD(&m->entry);
701 expiring_item_init(&m->expiry_entry);
702}
703
704void nr_map_add(struct nr_map *map, struct nr_mapping *mapping, time_t now)
705{
706 /* Generate a mapped number */
707 mapping->repl = nr_pool_next(map->pool);
708
709 /* Add to the tail to always yield a list sorted by expiry, in
710 * ascending order. */
711 llist_add_tail(&mapping->entry, &map->mappings);
Neels Hofmeyr508514c2015-11-24 13:30:38 +0100712 nr_map_refresh(map, mapping, now);
713}
714
715void nr_map_refresh(struct nr_map *map, struct nr_mapping *mapping, time_t now)
716{
717 if (!map->add_items_to_expiry)
718 return;
719 expiry_add(map->add_items_to_expiry,
720 &mapping->expiry_entry,
721 now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200722}
723
724void nr_map_clear(struct nr_map *map)
725{
726 struct nr_mapping *m;
727 struct nr_mapping *n;
728 llist_for_each_entry_safe(m, n, &map->mappings, entry) {
729 nr_mapping_del(m);
730 }
731}
732
733int nr_map_empty(const struct nr_map *map)
734{
735 return llist_empty(&map->mappings);
736}
737
738struct nr_mapping *nr_map_get(const struct nr_map *map,
739 void *origin, nr_t nr_orig)
740{
741 struct nr_mapping *mapping;
742 llist_for_each_entry(mapping, &map->mappings, entry) {
743 if ((mapping->origin == origin)
744 && (mapping->orig == nr_orig))
745 return mapping;
746 }
747 /* Not found. */
748 return NULL;
749}
750
751struct nr_mapping *nr_map_get_inv(const struct nr_map *map, nr_t nr_repl)
752{
753 struct nr_mapping *mapping;
754 llist_for_each_entry(mapping, &map->mappings, entry) {
755 if (mapping->repl == nr_repl) {
756 return mapping;
757 }
758 }
759 /* Not found. */
760 return NULL;
761}
762
763void nr_mapping_del(struct nr_mapping *mapping)
764{
765 OSMO_ASSERT(mapping);
766 llist_del(&mapping->entry);
767 INIT_LLIST_HEAD(&mapping->entry);
768 expiring_item_del(&mapping->expiry_entry);
769}
770
771
772/* gtphub */
773
774const char* const gtphub_plane_idx_names[GTPH_PLANE_N] = {
775 "CTRL",
776 "USER",
777};
778
779const uint16_t gtphub_plane_idx_default_port[GTPH_PLANE_N] = {
780 2123,
781 2152,
782};
783
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100784const char* const gtphub_side_idx_names[GTPH_SIDE_N] = {
785 "SGSN",
786 "GGSN",
787};
788
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200789time_t gtphub_now(void)
790{
791 struct timespec now_tp;
792 OSMO_ASSERT(clock_gettime(CLOCK_MONOTONIC, &now_tp) >= 0);
793 return now_tp.tv_sec;
794}
795
796/* Remove a gtphub_peer from its list and free it. */
797static void gtphub_peer_del(struct gtphub_peer *peer)
798{
Neels Hofmeyr1ed9a862015-11-20 00:04:41 +0100799 OSMO_ASSERT(llist_empty(&peer->addresses));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200800 nr_map_clear(&peer->seq_map);
801 llist_del(&peer->entry);
802 talloc_free(peer);
803}
804
805static void gtphub_peer_addr_del(struct gtphub_peer_addr *pa)
806{
807 OSMO_ASSERT(llist_empty(&pa->ports));
808 llist_del(&pa->entry);
809 talloc_free(pa);
810}
811
812static void gtphub_peer_port_del(struct gtphub_peer_port *pp)
813{
814 OSMO_ASSERT(pp->ref_count == 0);
815 llist_del(&pp->entry);
Neels Hofmeyre38fb662015-12-06 16:44:14 +0100816 rate_ctr_group_free(pp->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200817 talloc_free(pp);
818}
819
820/* From the information in the gtp_packet_desc, return the address of a GGSN.
821 * Return -1 on error. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100822static int gtphub_resolve_ggsn(struct gtphub *hub,
823 struct gtp_packet_desc *p,
824 struct gtphub_peer_port **pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200825
826/* See gtphub_ext.c (wrapped by unit test) */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100827struct gtphub_peer_port *gtphub_resolve_ggsn_addr(struct gtphub *hub,
828 const char *imsi_str,
829 const char *apn_ni_str);
830int gtphub_ares_init(struct gtphub *hub);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200831
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200832static void gtphub_zero(struct gtphub *hub)
833{
834 ZERO_STRUCT(hub);
Neels Hofmeyr16c3f572015-11-11 17:27:01 +0100835 INIT_LLIST_HEAD(&hub->ggsn_lookups);
836 INIT_LLIST_HEAD(&hub->resolved_ggsns);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200837}
838
839static int gtphub_sock_init(struct osmo_fd *ofd,
840 const struct gtphub_cfg_addr *addr,
841 osmo_fd_cb_t cb,
842 void *data,
843 int ofd_id)
844{
845 if (!addr->addr_str) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100846 LOG(LOGL_FATAL, "Cannot bind: empty address.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200847 return -1;
848 }
849 if (!addr->port) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100850 LOG(LOGL_FATAL, "Cannot bind: zero port not permitted.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200851 return -1;
852 }
853
854 ofd->when = BSC_FD_READ;
855 ofd->cb = cb;
856 ofd->data = data;
857 ofd->priv_nr = ofd_id;
858
859 int rc;
860 rc = osmo_sock_init_ofd(ofd,
861 AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
862 addr->addr_str, addr->port,
863 OSMO_SOCK_F_BIND);
864 if (rc < 1) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100865 LOG(LOGL_FATAL, "Cannot bind to %s port %d (rc %d)\n",
866 addr->addr_str, (int)addr->port, rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200867 return -1;
868 }
869
870 return 0;
871}
872
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100873static void gtphub_sock_close(struct osmo_fd *ofd)
874{
875 close(ofd->fd);
876 osmo_fd_unregister(ofd);
877 ofd->cb = NULL;
878}
879
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200880static void gtphub_bind_init(struct gtphub_bind *b)
881{
882 ZERO_STRUCT(b);
883
884 INIT_LLIST_HEAD(&b->peers);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100885
886 b->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
887 &gtphub_ctrg_io_desc, 0);
888 OSMO_ASSERT(b->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200889}
890
891static int gtphub_bind_start(struct gtphub_bind *b,
892 const struct gtphub_cfg_bind *cfg,
893 osmo_fd_cb_t cb, void *cb_data,
894 unsigned int ofd_id)
895{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100896 LOG(LOGL_DEBUG, "Starting bind %s\n", b->label);
897 if (gsn_addr_from_str(&b->local_addr, cfg->bind.addr_str) != 0) {
898 LOG(LOGL_FATAL, "Invalid bind address for %s: %s\n",
899 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200900 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100901 }
902 if (gtphub_sock_init(&b->ofd, &cfg->bind, cb, cb_data, ofd_id) != 0) {
903 LOG(LOGL_FATAL, "Cannot bind for %s: %s\n",
904 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200905 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100906 }
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100907 b->local_port = cfg->bind.port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200908 return 0;
909}
910
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100911static void gtphub_bind_free(struct gtphub_bind *b)
912{
913 OSMO_ASSERT(llist_empty(&b->peers));
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100914 rate_ctr_group_free(b->counters_io);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100915}
916
917static void gtphub_bind_stop(struct gtphub_bind *b) {
918 gtphub_sock_close(&b->ofd);
919 gtphub_bind_free(b);
920}
921
Neels Hofmeyr40348972015-11-17 12:22:28 +0100922/* Recv datagram from from->fd, write sender's address to *from_addr.
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200923 * Return the number of bytes read, zero on error. */
924static int gtphub_read(const struct osmo_fd *from,
925 struct osmo_sockaddr *from_addr,
926 uint8_t *buf, size_t buf_len)
927{
Neels Hofmeyr40348972015-11-17 12:22:28 +0100928 OSMO_ASSERT(from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200929
Neels Hofmeyr40348972015-11-17 12:22:28 +0100930 /* recvfrom requires the available length set in *from_addr_len. */
931 from_addr->l = sizeof(from_addr->a);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200932 errno = 0;
933 ssize_t received = recvfrom(from->fd, buf, buf_len, 0,
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100934 (struct sockaddr*)&from_addr->a,
935 &from_addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200936 /* TODO use recvmsg and get a MSG_TRUNC flag to make sure the message
937 * is not truncated. Then maybe reduce buf's size. */
938
939 if (received <= 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100940 LOG((errno == EAGAIN? LOGL_DEBUG : LOGL_ERROR),
941 "error: %s\n", strerror(errno));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200942 return 0;
943 }
944
Neels Hofmeyr28a70f22015-12-06 15:22:54 +0100945 LOG(LOGL_DEBUG, "Received %d bytes from %s: %s\n",
Neels Hofmeyr40348972015-11-17 12:22:28 +0100946 (int)received, osmo_sockaddr_to_str(from_addr),
947 osmo_hexdump(buf, received));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200948
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200949 return received;
950}
951
952inline void gtphub_port_ref_count_inc(struct gtphub_peer_port *pp)
953{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100954 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200955 OSMO_ASSERT(pp->ref_count < UINT_MAX);
956 pp->ref_count++;
957}
958
959inline void gtphub_port_ref_count_dec(struct gtphub_peer_port *pp)
960{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100961 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200962 OSMO_ASSERT(pp->ref_count > 0);
963 pp->ref_count--;
964}
965
966inline void set_seq(struct gtp_packet_desc *p, uint16_t seq)
967{
968 OSMO_ASSERT(p->version == 1);
969 p->data->gtp1l.h.seq = hton16(seq);
970 p->seq = seq;
971}
972
973inline void set_tei(struct gtp_packet_desc *p, uint32_t tei)
974{
975 OSMO_ASSERT(p->version == 1);
976 p->data->gtp1l.h.tei = hton32(tei);
977 p->header_tei = tei;
978}
979
980static void gtphub_mapping_del_cb(struct expiring_item *expi);
981
982static struct nr_mapping *gtphub_mapping_new()
983{
984 struct nr_mapping *nrm;
985 nrm = talloc_zero(osmo_gtphub_ctx, struct nr_mapping);
986 OSMO_ASSERT(nrm);
987
988 nr_mapping_init(nrm);
989 nrm->expiry_entry.del_cb = gtphub_mapping_del_cb;
990 return nrm;
991}
992
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100993
994#define APPEND(args...) \
995 l = snprintf(pos, left, args); \
996 pos += l; \
997 left -= l
998
999static const char *gtphub_tunnel_side_str(struct gtphub_tunnel *tun,
1000 int side_idx)
1001{
1002 static char buf[256];
1003 char *pos = buf;
1004 int left = sizeof(buf);
1005 int l;
1006
1007 struct gtphub_tunnel_endpoint *c, *u;
1008 c = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1009 u = &tun->endpoint[side_idx][GTPH_PLANE_USER];
1010
1011 /* print both only if they differ. */
1012 if (!c->peer) {
1013 APPEND("(uninitialized)");
1014 } else {
1015 APPEND("%s", gsn_addr_to_str(&c->peer->peer_addr->addr));
1016 }
1017
1018 if (!u->peer) {
1019 if (c->peer) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001020 APPEND("/(uninitialized)");
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001021 }
1022 } else if ((!c->peer)
1023 || (!gsn_addr_same(&u->peer->peer_addr->addr,
1024 &c->peer->peer_addr->addr))) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001025 APPEND("/%s", gsn_addr_to_str(&u->peer->peer_addr->addr));
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001026 }
1027
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001028 APPEND(" (TEI C=%x U=%x)",
1029 c->tei_orig,
1030 u->tei_orig);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001031 return buf;
1032}
1033
1034const char *gtphub_tunnel_str(struct gtphub_tunnel *tun)
1035{
1036 static char buf[512];
1037 char *pos = buf;
1038 int left = sizeof(buf);
1039 int l;
1040
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001041 APPEND("TEI=%x: ", tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001042 APPEND("%s", gtphub_tunnel_side_str(tun, GTPH_SIDE_SGSN));
1043 APPEND(" <-> %s", gtphub_tunnel_side_str(tun, GTPH_SIDE_GGSN));
1044
1045 return buf;
1046}
1047
1048#undef APPEND
1049
1050void gtphub_tunnel_endpoint_set_peer(struct gtphub_tunnel_endpoint *te,
1051 struct gtphub_peer_port *pp)
1052{
1053 if (te->peer)
1054 gtphub_port_ref_count_dec(te->peer);
1055 te->peer = pp;
1056 if (te->peer)
1057 gtphub_port_ref_count_inc(te->peer);
1058}
1059
1060int gtphub_tunnel_complete(struct gtphub_tunnel *tun)
1061{
1062 if (!tun)
1063 return 0;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001064 if (!tun->tei_repl)
1065 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001066 int side_idx;
1067 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001068 for_each_side_and_plane(side_idx, plane_idx) {
1069 struct gtphub_tunnel_endpoint *te =
1070 &tun->endpoint[side_idx][plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001071 if (!(te->peer && te->tei_orig))
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001072 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001073 }
1074 return 1;
1075}
1076
1077static void gtphub_tunnel_del_cb(struct expiring_item *expi)
1078{
1079 struct gtphub_tunnel *tun = container_of(expi,
1080 struct gtphub_tunnel,
1081 expiry_entry);
1082 LOG(LOGL_DEBUG, "expired: %s\n", gtphub_tunnel_str(tun));
1083
1084 llist_del(&tun->entry);
1085 INIT_LLIST_HEAD(&tun->entry); /* mark unused */
1086
1087 expi->del_cb = 0; /* avoid recursion loops */
1088 expiring_item_del(&tun->expiry_entry); /* usually already done, but make sure. */
1089
1090 int side_idx;
1091 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001092 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001093 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1094
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001095 /* clear ref count */
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001096 gtphub_tunnel_endpoint_set_peer(te, NULL);
1097
1098 rate_ctr_group_free(te->counters_io);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001099 }
1100
1101 talloc_free(tun);
1102}
1103
1104static struct gtphub_tunnel *gtphub_tunnel_new()
1105{
1106 struct gtphub_tunnel *tun;
1107 tun = talloc_zero(osmo_gtphub_ctx, struct gtphub_tunnel);
1108 OSMO_ASSERT(tun);
1109
1110 INIT_LLIST_HEAD(&tun->entry);
1111 expiring_item_init(&tun->expiry_entry);
1112
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001113 int side_idx, plane_idx;
1114 for_each_side_and_plane(side_idx, plane_idx) {
1115 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1116 te->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
1117 &gtphub_ctrg_io_desc,
1118 0);
1119 OSMO_ASSERT(te->counters_io);
1120 }
1121
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001122 tun->expiry_entry.del_cb = gtphub_tunnel_del_cb;
1123 return tun;
1124}
1125
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001126static const char *gtphub_peer_strb(struct gtphub_peer *peer, char *buf,
1127 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001128{
1129 if (llist_empty(&peer->addresses))
1130 return "(addressless)";
1131
1132 struct gtphub_peer_addr *a = llist_first(&peer->addresses,
1133 struct gtphub_peer_addr,
1134 entry);
1135 return gsn_addr_to_strb(&a->addr, buf, buflen);
1136}
1137
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001138static const char *gtphub_port_strb(struct gtphub_peer_port *port, char *buf,
1139 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001140{
1141 if (!port)
1142 return "(null port)";
1143
1144 snprintf(buf, buflen, "%s port %d",
1145 gsn_addr_to_str(&port->peer_addr->addr),
1146 (int)port->port);
1147 return buf;
1148}
1149
1150const char *gtphub_peer_str(struct gtphub_peer *peer)
1151{
1152 static char buf[256];
1153 return gtphub_peer_strb(peer, buf, sizeof(buf));
1154}
1155
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01001156const char *gtphub_port_str(struct gtphub_peer_port *port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001157{
1158 static char buf[256];
1159 return gtphub_port_strb(port, buf, sizeof(buf));
1160}
1161
1162static const char *gtphub_port_str2(struct gtphub_peer_port *port)
1163{
1164 static char buf[256];
1165 return gtphub_port_strb(port, buf, sizeof(buf));
1166}
1167
1168static void gtphub_mapping_del_cb(struct expiring_item *expi)
1169{
1170 expi->del_cb = 0; /* avoid recursion loops */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001171 expiring_item_del(expi); /* usually already done, but make sure. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001172
1173 struct nr_mapping *nrm = container_of(expi,
1174 struct nr_mapping,
1175 expiry_entry);
1176 llist_del(&nrm->entry);
1177 INIT_LLIST_HEAD(&nrm->entry); /* mark unused */
1178
1179 /* Just for log */
1180 struct gtphub_peer_port *from = nrm->origin;
1181 OSMO_ASSERT(from);
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001182 LOG(LOGL_DEBUG, "expired: %d: nr mapping from %s: %u->%u\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001183 (int)nrm->expiry_entry.expiry,
1184 gtphub_port_str(from),
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001185 (unsigned int)nrm->orig, (unsigned int)nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001186
1187 gtphub_port_ref_count_dec(from);
1188
1189 talloc_free(nrm);
1190}
1191
1192static struct nr_mapping *gtphub_mapping_have(struct nr_map *map,
1193 struct gtphub_peer_port *from,
1194 nr_t orig_nr,
1195 time_t now)
1196{
1197 struct nr_mapping *nrm;
1198
1199 nrm = nr_map_get(map, from, orig_nr);
1200
1201 if (!nrm) {
1202 nrm = gtphub_mapping_new();
1203 nrm->orig = orig_nr;
1204 nrm->origin = from;
1205 nr_map_add(map, nrm, now);
1206 gtphub_port_ref_count_inc(from);
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001207 LOG(LOGL_DEBUG, "peer %s: sequence map %d --> %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001208 gtphub_port_str(from),
1209 (int)(nrm->orig), (int)(nrm->repl));
1210 } else {
Neels Hofmeyr508514c2015-11-24 13:30:38 +01001211 nr_map_refresh(map, nrm, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001212 }
1213
1214 OSMO_ASSERT(nrm);
1215 return nrm;
1216}
1217
Neels Hofmeyr3317c842015-11-11 17:20:42 +01001218static void gtphub_map_seq(struct gtp_packet_desc *p,
1219 struct gtphub_peer_port *from_port,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001220 struct gtphub_peer_port *to_port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001221{
1222 /* Store a mapping in to_peer's map, so when we later receive a GTP
1223 * packet back from to_peer, the seq nr can be unmapped back to its
1224 * origin (from_peer here). */
1225 struct nr_mapping *nrm;
1226 nrm = gtphub_mapping_have(&to_port->peer_addr->peer->seq_map,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001227 from_port, p->seq, p->timestamp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001228
1229 /* Change the GTP packet to yield the new, mapped seq nr */
1230 set_seq(p, nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001231}
1232
1233static struct gtphub_peer_port *gtphub_unmap_seq(struct gtp_packet_desc *p,
1234 struct gtphub_peer_port *responding_port)
1235{
1236 OSMO_ASSERT(p->version == 1);
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001237 struct nr_mapping *nrm =
1238 nr_map_get_inv(&responding_port->peer_addr->peer->seq_map,
1239 p->seq);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001240 if (!nrm)
1241 return NULL;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001242 LOG(LOGL_DEBUG, "peer %p: sequence unmap %d <-- %d\n",
1243 nrm->origin, (int)(nrm->orig), (int)(nrm->repl));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001244 set_seq(p, nrm->orig);
1245 return nrm->origin;
1246}
1247
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001248static int gtphub_check_mapped_tei(struct gtphub_tunnel *new_tun,
1249 struct gtphub_tunnel *iterated_tun,
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001250 uint32_t *tei_min,
1251 uint32_t *tei_max)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001252{
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001253 if (!new_tun->tei_repl || !iterated_tun->tei_repl)
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001254 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001255
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001256 *tei_min = (*tei_min < iterated_tun->tei_repl)? *tei_min : iterated_tun->tei_repl;
1257 *tei_max = (*tei_max > iterated_tun->tei_repl)? *tei_max : iterated_tun->tei_repl;
1258
1259 if (new_tun->tei_repl != iterated_tun->tei_repl)
1260 return 1;
1261
1262 /* new_tun->tei_repl is already taken. Try to find one out of the known
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001263 * range. */
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001264 LOG(LOGL_DEBUG, "TEI replacement %d already taken.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001265
1266 if ((*tei_max) < 0xffffffff) {
1267 (*tei_max)++;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001268 new_tun->tei_repl = *tei_max;
1269 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001270 return 1;
1271 } else if ((*tei_min) > 1) {
1272 (*tei_min)--;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001273 new_tun->tei_repl = *tei_min;
1274 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001275 return 1;
1276 }
1277
1278 /* None seems to be available. */
1279 return 0;
1280}
1281
1282static int gtphub_check_reused_teis(struct gtphub *hub,
1283 struct gtphub_tunnel *new_tun)
1284{
1285 uint32_t tei_min = 0xffffffff;
1286 uint32_t tei_max = 0;
1287 int side_idx;
1288 int plane_idx;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001289 struct gtphub_tunnel_endpoint *te;
1290 struct gtphub_tunnel_endpoint *te2;
1291
1292 struct gtphub_tunnel *tun, *ntun;
1293
1294 llist_for_each_entry_safe(tun, ntun, &hub->tunnels, entry) {
1295 if (tun == new_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001296 continue;
1297
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001298 /* Check whether the GSN sent a TEI that it is reusing from a
1299 * previous tunnel. */
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001300 int tun_continue = 0;
1301 for_each_side(side_idx) {
1302 for_each_plane(plane_idx) {
1303 te = &tun->endpoint[side_idx][plane_idx];
1304 te2 = &new_tun->endpoint[side_idx][plane_idx];
Neels Hofmeyrf6e4d082015-12-06 19:03:35 +01001305 if ((te->tei_orig == 0)
1306 || (te->tei_orig != te2->tei_orig)
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001307 || (!te->peer)
1308 || (!te2->peer)
1309 || !gsn_addr_same(&te->peer->peer_addr->addr,
1310 &te2->peer->peer_addr->addr))
1311 continue;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001312
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001313 /* The peer is reusing a TEI that I believe to
1314 * be part of another tunnel. The other tunnel
1315 * must be stale, then. */
1316 LOG(LOGL_NOTICE,
1317 "Expiring tunnel due to reused TEI:"
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001318 " %s peer %s sent %s TEI %x,"
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001319 " previously used by tunnel %s...\n",
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001320 gtphub_side_idx_names[side_idx],
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001321 gtphub_port_str(te->peer),
1322 gtphub_plane_idx_names[plane_idx],
1323 te->tei_orig,
1324 gtphub_tunnel_str(tun));
1325 LOG(LOGL_NOTICE, "...while establishing tunnel %s\n",
1326 gtphub_tunnel_str(new_tun));
Neels Hofmeyr52c0bd32015-12-02 14:14:32 +01001327
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001328 expiring_item_del(&tun->expiry_entry);
1329 /* continue to find more matches. There shouldn't be
1330 * any, but let's make sure. However, tun is deleted,
1331 * so we need to skip to the next tunnel. */
1332 tun_continue = 1;
1333 break;
1334 }
1335 if (tun_continue)
1336 break;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001337 }
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001338 if (tun_continue)
1339 continue;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001340
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001341 /* Check whether the mapped TEI is already used by another
1342 * tunnel. */
1343 if (!gtphub_check_mapped_tei(new_tun, tun, &tei_min, &tei_max)) {
1344 LOG(LOGL_ERROR,
1345 "No mapped TEI is readily available."
1346 " Searching for holes between occupied"
1347 " TEIs not implemented.");
1348 return 0;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001349 }
1350
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001351 }
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001352
1353 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001354}
1355
1356static void gtphub_tunnel_refresh(struct gtphub *hub,
1357 struct gtphub_tunnel *tun,
1358 time_t now)
1359{
1360 expiry_add(&hub->expire_slowly,
1361 &tun->expiry_entry,
1362 now);
1363}
1364
1365static struct gtphub_tunnel_endpoint *gtphub_unmap_tei(struct gtphub *hub,
1366 struct gtp_packet_desc *p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001367 struct gtphub_peer_port *from,
1368 struct gtphub_tunnel **unmapped_from_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001369{
1370 OSMO_ASSERT(from);
1371 int other_side = other_side_idx(p->side_idx);
1372
1373 struct gtphub_tunnel *tun;
1374 llist_for_each_entry(tun, &hub->tunnels, entry) {
1375 struct gtphub_tunnel_endpoint *te_from =
1376 &tun->endpoint[p->side_idx][p->plane_idx];
1377 struct gtphub_tunnel_endpoint *te_to =
1378 &tun->endpoint[other_side][p->plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001379 if ((tun->tei_repl == p->header_tei_rx)
Neels Hofmeyrfc1be3a2015-12-02 00:31:31 +01001380 && te_from->peer
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001381 && gsn_addr_same(&te_from->peer->peer_addr->addr,
1382 &from->peer_addr->addr)) {
1383 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001384 if (unmapped_from_tun)
1385 *unmapped_from_tun = tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001386 return te_to;
1387 }
1388 }
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001389
1390 if (unmapped_from_tun)
1391 *unmapped_from_tun = NULL;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001392 return NULL;
1393}
1394
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001395static void gtphub_map_restart_counter(struct gtphub *hub,
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001396 struct gtp_packet_desc *p)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001397{
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001398 if (p->rc != GTP_RC_PDU_C)
1399 return;
1400
1401 int ie_idx;
1402 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1403 if (ie_idx < 0)
1404 return;
1405
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001406 /* Always send gtphub's own restart counter */
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001407 p->ie[ie_idx]->tv1.v = hton8(hub->restart_counter);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001408}
1409
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001410static int gtphub_unmap_header_tei(struct gtphub_peer_port **to_port_p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001411 struct gtphub_tunnel **unmapped_from_tun,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001412 struct gtphub *hub,
1413 struct gtp_packet_desc *p,
1414 struct gtphub_peer_port *from_port)
1415{
1416 OSMO_ASSERT(p->version == 1);
1417 *to_port_p = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001418 if (unmapped_from_tun)
1419 *unmapped_from_tun = NULL;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001420
1421 /* If the header's TEI is zero, no PDP context has been established
1422 * yet. If nonzero, a mapping should actually already exist for this
1423 * TEI, since it must have been announced in a PDP context creation. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001424 if (!p->header_tei_rx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001425 return 0;
1426
1427 /* to_peer has previously announced a TEI, which was stored and
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001428 * mapped in a tunnel struct. */
1429 struct gtphub_tunnel_endpoint *to;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001430 to = gtphub_unmap_tei(hub, p, from_port, unmapped_from_tun);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001431 if (!to) {
1432 LOG(LOGL_ERROR, "Received unknown TEI %" PRIx32 " from %s\n",
1433 p->header_tei_rx, gtphub_port_str(from_port));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001434 return -1;
1435 }
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001436 OSMO_ASSERT(*unmapped_from_tun);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001437
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001438 uint32_t unmapped_tei = to->tei_orig;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001439 set_tei(p, unmapped_tei);
1440
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001441 LOG(LOGL_DEBUG, "Unmapped TEI coming from: %s\n",
1442 gtphub_tunnel_str(*unmapped_from_tun));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001443
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001444 /* May be NULL for an invalidated tunnel. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001445 *to_port_p = to->peer;
1446
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001447 return 0;
1448}
1449
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001450static int gtphub_handle_create_pdp_ctx(struct gtphub *hub,
1451 struct gtp_packet_desc *p,
1452 struct gtphub_peer_port *from_ctrl,
1453 struct gtphub_peer_port *to_ctrl)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001454{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001455 int plane_idx;
1456
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001457 osmo_static_assert((GTPH_PLANE_CTRL == 0) && (GTPH_PLANE_USER == 1),
1458 plane_nrs_match_GSN_addr_IE_indices);
1459
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001460 struct gtphub_tunnel *tun = p->tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001461
1462 if (p->type == GTP_CREATE_PDP_REQ) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001463 if (p->side_idx != GTPH_SIDE_SGSN) {
1464 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001465 " Request from the GGSN side: %s",
1466 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001467 return -1;
1468 }
1469
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001470 if (tun) {
1471 LOG(LOGL_ERROR, "Not implemented: Received"
1472 " Create PDP Context Request for an already"
1473 " established tunnel:"
1474 " from %s, tunnel %s\n",
1475 gtphub_port_str(from_ctrl),
1476 gtphub_tunnel_str(p->tun));
1477 return -1;
1478 }
1479
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001480 /* A new tunnel. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001481 p->tun = tun = gtphub_tunnel_new();
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001482
1483 /* Create TEI mapping */
1484 tun->tei_repl = nr_pool_next(&hub->tei_pool);
1485
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001486 llist_add(&tun->entry, &hub->tunnels);
1487 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001488 /* The endpoint peers on this side (SGSN) will be set from IEs
1489 * below. Also set the GGSN Ctrl endpoint, for logging. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001490 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001491 to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001492 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001493 if (p->side_idx != GTPH_SIDE_GGSN) {
1494 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001495 " Response from the SGSN side: %s",
1496 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001497 return -1;
1498 }
1499
Neels Hofmeyr8c5b0732015-12-03 13:45:15 +01001500 /* The tunnel should already have been resolved from the header
1501 * TEI and be available in tun (== p->tun). Just fill in the
1502 * GSN Addresses below.*/
1503 OSMO_ASSERT(tun);
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001504 OSMO_ASSERT(tun->tei_repl == p->header_tei_rx);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001505 OSMO_ASSERT(to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001506 }
1507
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001508 uint8_t ie_type[] = { GTPIE_TEI_C, GTPIE_TEI_DI };
1509 int ie_mandatory = (p->type == GTP_CREATE_PDP_REQ);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001510 unsigned int side_idx = p->side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001511
1512 for (plane_idx = 0; plane_idx < 2; plane_idx++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01001513 int rc;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001514 struct gsn_addr use_addr;
1515 uint16_t use_port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001516 uint32_t tei_from_ie;
1517 int ie_idx;
1518
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001519 /* Fetch GSN Address and TEI from IEs. As ensured by above
1520 * static asserts, plane_idx corresponds to the GSN Address IE
1521 * index (the first one = 0 = ctrl, second one = 1 = user). */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001522 rc = gsn_addr_get(&use_addr, p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001523 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001524 LOG(LOGL_ERROR, "Cannot read %s GSN Address IE\n",
1525 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001526 return -1;
1527 }
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001528 LOG(LOGL_DEBUG, "Read %s GSN addr %s (%d)\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001529 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001530 gsn_addr_to_str(&use_addr),
1531 use_addr.len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001532
1533 ie_idx = gtpie_getie(p->ie, ie_type[plane_idx], 0);
1534 if (ie_idx < 0) {
1535 if (ie_mandatory) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001536 LOG(LOGL_ERROR,
1537 "Create PDP Context message invalid:"
1538 " missing IE %d\n",
1539 (int)ie_type[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001540 return -1;
1541 }
1542 tei_from_ie = 0;
1543 }
1544 else
1545 tei_from_ie = ntoh32(p->ie[ie_idx]->tv4.v);
1546
1547 /* Make sure an entry for this peer address with default port
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01001548 * exists.
1549 *
1550 * Exception: if sgsn_use_sender is set, instead use the
1551 * sender's address and port for Ctrl -- the User port is not
1552 * known until the first User packet arrives.
1553 *
1554 * Note: doing this here is just an optimization, because
1555 * gtphub_handle_buf() has code to replace the tunnel
1556 * endpoints' addresses with the sender (needed for User
1557 * plane). We could just ignore sgsn_use_sender here. But if we
1558 * set up a default port here and replace it in
1559 * gtphub_handle_buf(), we'd be creating a peer port just to
1560 * expire it right away. */
1561 if (hub->sgsn_use_sender && (side_idx == GTPH_SIDE_SGSN)) {
1562 gsn_addr_from_sockaddr(&use_addr, &use_port, &from_ctrl->sa);
1563 } else {
1564 use_port = gtphub_plane_idx_default_port[plane_idx];
1565
1566 }
1567
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001568 struct gtphub_peer_port *peer_from_ie;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001569 peer_from_ie = gtphub_port_have(hub,
1570 &hub->to_gsns[side_idx][plane_idx],
1571 &use_addr, use_port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001572
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001573 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][plane_idx],
1574 peer_from_ie);
1575
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001576 if (!tei_from_ie &&
1577 !tun->endpoint[side_idx][plane_idx].tei_orig) {
1578 LOG(LOGL_ERROR,
Neels Hofmeyr328d2f72015-12-06 19:13:21 +01001579 "Create PDP Context message omits %s TEI, but"
1580 " no TEI has been announced for this tunnel: %s\n",
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001581 gtphub_plane_idx_names[plane_idx],
1582 gtphub_tunnel_str(tun));
1583 return -1;
1584 }
1585
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001586 if (tei_from_ie) {
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001587 /* Replace TEI in GTP packet IE */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001588 tun->endpoint[side_idx][plane_idx].tei_orig = tei_from_ie;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001589 p->ie[ie_idx]->tv4.v = hton32(tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001590
Neels Hofmeyrcd865d62015-11-30 12:58:48 +01001591 if (!gtphub_check_reused_teis(hub, tun)) {
1592 /* It's highly unlikely that all TEIs are
1593 * taken. But the code looking for an unused
1594 * TEI is, at the time of writing this comment,
1595 * not able to find gaps in the TEI space. To
1596 * explicitly alert the user of this problem,
1597 * rather abort than carry on. */
1598 LOG(LOGL_FATAL, "TEI range exhausted. Cannot create TEI mapping, aborting.\n");
1599 abort();
1600 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001601 }
1602
1603 /* Replace the GSN address to reflect gtphub. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001604 rc = gsn_addr_put(&hub->to_gsns[other_side_idx(side_idx)][plane_idx].local_addr,
1605 p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001606 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001607 LOG(LOGL_ERROR, "Cannot write %s GSN Address IE\n",
1608 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001609 return -1;
1610 }
1611 }
1612
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001613 if (p->type == GTP_CREATE_PDP_REQ) {
1614 LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
1615 gtphub_tunnel_str(tun));
Neels Hofmeyr005f1752015-11-30 12:19:11 +01001616 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001617 LOG(LOGL_DEBUG, "New tunnel: %s\n",
1618 gtphub_tunnel_str(tun));
1619 }
1620
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001621 return 0;
1622}
1623
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001624static void pending_delete_del_cb(struct expiring_item *expi)
1625{
1626 struct pending_delete *pd;
1627 pd = container_of(expi, struct pending_delete, expiry_entry);
1628
1629 llist_del(&pd->entry);
1630 INIT_LLIST_HEAD(&pd->entry);
1631
1632 pd->expiry_entry.del_cb = 0;
1633 expiring_item_del(&pd->expiry_entry);
1634
1635 talloc_free(pd);
1636}
1637
1638static struct pending_delete *pending_delete_new(void)
1639{
1640 struct pending_delete *pd = talloc_zero(osmo_gtphub_ctx, struct pending_delete);
1641 INIT_LLIST_HEAD(&pd->entry);
1642 expiring_item_init(&pd->expiry_entry);
1643 pd->expiry_entry.del_cb = pending_delete_del_cb;
1644 return pd;
1645}
1646
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001647static int gtphub_handle_delete_pdp_ctx(struct gtphub *hub,
1648 struct gtp_packet_desc *p,
1649 struct gtphub_peer_port *from_ctrl,
1650 struct gtphub_peer_port *to_ctrl)
1651{
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001652 struct gtphub_tunnel *known_tun = p->tun;
1653
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001654 if (p->type == GTP_DELETE_PDP_REQ) {
1655 if (!known_tun) {
1656 LOG(LOGL_ERROR, "Cannot find tunnel for Delete PDP Context Request.\n");
1657 return -1;
1658 }
1659
1660 /* Store the Delete Request until a successful Response is seen. */
1661 uint8_t teardown_ind;
1662 uint8_t nsapi;
1663
1664 if (gtpie_gettv1(p->ie, GTPIE_TEARDOWN, 0, &teardown_ind) != 0) {
1665 LOG(LOGL_ERROR, "Missing Teardown Ind IE in Delete PDP Context Request.\n");
1666 return -1;
1667 }
1668
1669 if (gtpie_gettv1(p->ie, GTPIE_NSAPI, 0, &nsapi) != 0) {
1670 LOG(LOGL_ERROR, "Missing NSAPI IE in Delete PDP Context Request.\n");
1671 return -1;
1672 }
1673
1674 struct pending_delete *pd = NULL;
1675
1676 struct pending_delete *pdi = NULL;
1677 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1678 if ((pdi->tun == known_tun)
1679 && (pdi->teardown_ind == teardown_ind)
1680 && (pdi->nsapi == nsapi)) {
1681 pd = pdi;
1682 break;
1683 }
1684 }
1685
1686 if (!pd) {
1687 pd = pending_delete_new();
1688 pd->tun = known_tun;
1689 pd->teardown_ind = teardown_ind;
1690 pd->nsapi = nsapi;
1691
1692 LOG(LOGL_DEBUG, "Tunnel delete pending: %s\n",
1693 gtphub_tunnel_str(known_tun));
1694 llist_add(&pd->entry, &hub->pending_deletes);
1695 }
1696
1697 /* Add or refresh timeout. */
1698 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1699
1700 /* If a pending_delete should expire before the response to
1701 * indicate success comes in, the responding peer will have the
1702 * tunnel deactivated, while the requesting peer gets no reply
1703 * and keeps the tunnel. The hope is that the requesting peer
1704 * will try again and get a useful response. */
1705 } else if (p->type == GTP_DELETE_PDP_RSP) {
1706 /* Find the Delete Request for this Response. */
1707 struct pending_delete *pd = NULL;
1708
1709 struct pending_delete *pdi;
1710 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1711 if (known_tun == pdi->tun) {
1712 pd = pdi;
1713 break;
1714 }
1715 }
1716
1717 if (!pd) {
1718 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1719 " Cannot find matching request.");
1720 /* If we delete the tunnel now, anyone can send a
1721 * Delete response to kill tunnels at will. */
1722 return -1;
1723 }
1724
1725 /* TODO handle teardown_ind and nsapi */
1726
1727 expiring_item_del(&pd->expiry_entry);
1728
1729 uint8_t cause;
1730 if (gtpie_gettv1(p->ie, GTPIE_CAUSE, 0, &cause) != 0) {
1731 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1732 " Missing Cause IE.");
1733 /* If we delete the tunnel now, at least one of the
1734 * peers may still think it is active. */
1735 return -1;
1736 }
1737
1738 if (cause != GTPCAUSE_ACC_REQ) {
1739 LOG(LOGL_NOTICE,
1740 "Delete PDP Context Response indicates failure;"
1741 "for %s\n",
1742 gtphub_tunnel_str(known_tun));
1743 return -1;
1744 }
1745
1746 LOG(LOGL_DEBUG, "Delete PDP Context: removing tunnel %s\n",
1747 gtphub_tunnel_str(known_tun));
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001748 p->tun = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001749 expiring_item_del(&known_tun->expiry_entry);
1750 }
1751
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001752 return 0;
1753}
1754
1755static int gtphub_handle_update_pdp_ctx(struct gtphub *hub,
1756 struct gtp_packet_desc *p,
1757 struct gtphub_peer_port *from_ctrl,
1758 struct gtphub_peer_port *to_ctrl)
1759{
1760 /* TODO */
1761 return 0;
1762}
1763
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001764/* Read GSN address IEs from p, and make sure these peer addresses exist in
1765 * bind[plane_idx] with default ports, in their respective planes (both Ctrl
1766 * and User). Map TEIs announced in IEs, and write mapped TEIs in-place into
1767 * the packet p. */
1768static int gtphub_handle_pdp_ctx(struct gtphub *hub,
1769 struct gtp_packet_desc *p,
1770 struct gtphub_peer_port *from_ctrl,
1771 struct gtphub_peer_port *to_ctrl)
1772{
1773 OSMO_ASSERT(p->plane_idx == GTPH_PLANE_CTRL);
1774
1775 switch (p->type) {
1776 case GTP_CREATE_PDP_REQ:
1777 case GTP_CREATE_PDP_RSP:
1778 return gtphub_handle_create_pdp_ctx(hub, p,
1779 from_ctrl, to_ctrl);
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001780
1781 case GTP_DELETE_PDP_REQ:
1782 case GTP_DELETE_PDP_RSP:
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001783 return gtphub_handle_delete_pdp_ctx(hub, p,
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001784 from_ctrl, to_ctrl);
1785
1786 case GTP_UPDATE_PDP_REQ:
1787 case GTP_UPDATE_PDP_RSP:
1788 return gtphub_handle_update_pdp_ctx(hub, p,
1789 from_ctrl, to_ctrl);
1790
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001791 default:
1792 /* Nothing to do for this message type. */
1793 return 0;
1794 }
1795
1796}
1797
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001798static int gtphub_send_del_pdp_ctx(struct gtphub *hub,
1799 struct gtphub_tunnel *tun,
1800 int to_side)
1801{
1802 static uint8_t del_ctx_msg[16] = {
1803 0x32, /* GTP v1 flags */
1804 GTP_DELETE_PDP_REQ,
1805 0x00, 0x08, /* Length in network byte order */
1806 0x00, 0x00, 0x00, 0x00, /* TEI to be replaced */
1807 0, 0, /* Seq, to be replaced */
1808 0, 0, /* no extensions */
1809 0x13, 0xff, /* 19: Teardown ind = 1 */
1810 0x14, 0 /* 20: NSAPI = 0 */
1811 };
1812
1813 uint32_t *tei = (uint32_t*)&del_ctx_msg[4];
1814 uint16_t *seq = (uint16_t*)&del_ctx_msg[8];
1815
1816 struct gtphub_tunnel_endpoint *te =
1817 &tun->endpoint[to_side][GTPH_PLANE_CTRL];
1818
1819 if (! te->peer)
1820 return 0;
1821
1822 *tei = hton32(te->tei_orig);
1823 *seq = hton16(nr_pool_next(&te->peer->peer_addr->peer->seq_pool));
1824
1825 struct gtphub_bind *to_bind = &hub->to_gsns[to_side][GTPH_PLANE_CTRL];
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01001826 int rc = gtphub_write(&to_bind->ofd, &te->peer->sa,
1827 del_ctx_msg, sizeof(del_ctx_msg));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001828 if (rc != 0) {
1829 LOG(LOGL_ERROR,
1830 "Failed to send out-of-band Delete PDP Context Request to %s\n",
1831 gtphub_port_str(te->peer));
1832 }
1833 return rc;
1834}
1835
1836/* Tell all peers on the other end of tunnels that PDP contexts are void. */
1837static void gtphub_restarted(struct gtphub *hub,
1838 struct gtp_packet_desc *p,
1839 struct gtphub_peer_port *pp)
1840{
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001841 LOG(LOGL_NOTICE, "Peer has restarted: %s\n",
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001842 gtphub_port_str(pp));
1843
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001844 int deleted_count = 0;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001845 struct gtphub_tunnel *tun;
1846 llist_for_each_entry(tun, &hub->tunnels, entry) {
1847 int side_idx;
1848 for_each_side(side_idx) {
Neels Hofmeyrc6d51f52015-12-02 15:44:34 +01001849 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1850 struct gtphub_tunnel_endpoint *te2 = &tun->endpoint[other_side_idx(side_idx)][GTPH_PLANE_CTRL];
1851 if ((!te->peer)
1852 || (!te2->tei_orig)
1853 || (pp->peer_addr->peer != te->peer->peer_addr->peer))
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001854 continue;
1855
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001856 LOG(LOGL_DEBUG, "Deleting tunnel due to peer restart: %s\n",
1857 gtphub_tunnel_str(tun));
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001858 deleted_count ++;
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001859
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001860 /* Send a Delete PDP Context Request to the
1861 * peer on the other side, remember the pending
1862 * delete and wait for the response to delete
1863 * the tunnel. Clear this side of the tunnel to
1864 * make sure it isn't used.
1865 *
1866 * Should the delete message send fail, or if no
1867 * response is received, this tunnel will expire. If
1868 * its TEIs come up in a new PDP Context Request, it
1869 * will be removed. If messages for this tunnel should
1870 * come in (from the not restarted side), they will be
1871 * dropped because the tunnel is rendered unusable. */
1872 gtphub_send_del_pdp_ctx(hub, tun, other_side_idx(side_idx));
1873
1874 struct pending_delete *pd;
1875 pd = pending_delete_new();
1876 pd->tun = tun;
1877 pd->teardown_ind = 0xff;
1878 pd->nsapi = 0;
1879 llist_add(&pd->entry, &hub->pending_deletes);
1880 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1881
1882 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_CTRL],
1883 NULL);
1884 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_USER],
1885 NULL);
1886 }
1887 }
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001888
1889 if (deleted_count)
1890 LOG(LOGL_NOTICE, "Deleting %d tunnels due to restart of: %s\n",
1891 deleted_count,
1892 gtphub_port_str(pp));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001893}
1894
1895static int get_restart_count(struct gtp_packet_desc *p)
1896{
1897 int ie_idx;
1898 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1899 if (ie_idx < 0)
1900 return -1;
1901 return ntoh8(p->ie[ie_idx]->tv1.v);
1902}
1903
1904static void gtphub_check_restart_counter(struct gtphub *hub,
1905 struct gtp_packet_desc *p,
1906 struct gtphub_peer_port *from)
1907{
1908 /* If the peer is sending a Recovery IE (7.7.11) with a restart counter
1909 * that doesn't match the peer's previously sent restart counter, clear
1910 * that peer and cancel PDP contexts. */
1911
1912 int restart = get_restart_count(p);
1913
1914 if ((restart < 0) || (restart > 255))
1915 return;
1916
1917 if ((from->last_restart_count >= 0) && (from->last_restart_count <= 255)) {
1918 if (from->last_restart_count != restart) {
1919 gtphub_restarted(hub, p, from);
1920 }
1921 }
1922
1923 from->last_restart_count = restart;
1924}
1925
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001926static int from_sgsns_read_cb(struct osmo_fd *from_sgsns_ofd, unsigned int what)
1927{
1928 unsigned int plane_idx = from_sgsns_ofd->priv_nr;
1929 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001930 LOG(LOGL_DEBUG, "=== reading from SGSN (%s)\n",
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001931 gtphub_plane_idx_names[plane_idx]);
1932
1933 if (!(what & BSC_FD_READ))
1934 return 0;
1935
1936 struct gtphub *hub = from_sgsns_ofd->data;
1937
1938 static uint8_t buf[4096];
1939 struct osmo_sockaddr from_addr;
1940 struct osmo_sockaddr to_addr;
1941 struct osmo_fd *to_ofd;
1942 int len;
1943 uint8_t *reply_buf;
1944
1945 len = gtphub_read(from_sgsns_ofd, &from_addr, buf, sizeof(buf));
1946 if (len < 1)
1947 return 0;
1948
1949 len = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, &from_addr,
1950 buf, len, gtphub_now(),
1951 &reply_buf, &to_ofd, &to_addr);
1952 if (len < 1)
1953 return 0;
1954
1955 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
1956}
1957
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001958static int from_ggsns_read_cb(struct osmo_fd *from_ggsns_ofd, unsigned int what)
1959{
1960 unsigned int plane_idx = from_ggsns_ofd->priv_nr;
1961 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001962 LOG(LOGL_DEBUG, "=== reading from GGSN (%s)\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001963 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001964 if (!(what & BSC_FD_READ))
1965 return 0;
1966
1967 struct gtphub *hub = from_ggsns_ofd->data;
1968
1969 static uint8_t buf[4096];
1970 struct osmo_sockaddr from_addr;
1971 struct osmo_sockaddr to_addr;
1972 struct osmo_fd *to_ofd;
Neels Hofmeyr16c3f572015-11-11 17:27:01 +01001973 int len;
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001974 uint8_t *reply_buf;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001975
1976 len = gtphub_read(from_ggsns_ofd, &from_addr, buf, sizeof(buf));
1977 if (len < 1)
1978 return 0;
1979
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001980 len = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, &from_addr,
1981 buf, len, gtphub_now(),
1982 &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001983 if (len < 1)
1984 return 0;
1985
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001986 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001987}
1988
1989static int gtphub_unmap(struct gtphub *hub,
1990 struct gtp_packet_desc *p,
1991 struct gtphub_peer_port *from,
1992 struct gtphub_peer_port *to_proxy,
1993 struct gtphub_peer_port **final_unmapped,
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001994 struct gtphub_peer_port **unmapped_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001995{
1996 /* Always (try to) unmap sequence and TEI numbers, which need to be
1997 * replaced in the packet. Either way, give precedence to the proxy, if
1998 * configured. */
1999
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002000 if (unmapped_from_seq)
2001 *unmapped_from_seq = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002002 if (final_unmapped)
2003 *final_unmapped = NULL;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002004 p->tun = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002005
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002006 struct gtphub_peer_port *from_seq = NULL;
2007 struct gtphub_peer_port *from_tei = NULL;
2008 struct gtphub_peer_port *unmapped = NULL;
2009
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002010 from_seq = gtphub_unmap_seq(p, from);
2011
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002012 if (gtphub_unmap_header_tei(&from_tei, &p->tun, hub, p, from) < 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002013 return -1;
2014
2015 struct gtphub_peer *from_peer = from->peer_addr->peer;
2016 if (from_seq && from_tei && (from_seq != from_tei)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002017 LOG(LOGL_DEBUG,
2018 "Seq unmap and TEI unmap yield two different peers."
2019 " Using seq unmap."
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01002020 " (from %s %s: seq %d yields %s, tei %u yields %s)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002021 gtphub_plane_idx_names[p->plane_idx],
2022 gtphub_peer_str(from_peer),
2023 (int)p->seq,
2024 gtphub_port_str(from_seq),
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002025 (unsigned int)p->header_tei_rx,
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002026 gtphub_port_str2(from_tei)
2027 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002028 }
2029 unmapped = (from_seq? from_seq : from_tei);
2030
2031 if (unmapped && to_proxy && (unmapped != to_proxy)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002032 LOG(LOGL_NOTICE,
2033 "Unmap yields a different peer than the configured proxy."
2034 " Using proxy."
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002035 " unmapped: %s proxy: %s\n",
2036 gtphub_port_str(unmapped),
2037 gtphub_port_str2(to_proxy)
2038 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002039 }
2040 unmapped = (to_proxy? to_proxy : unmapped);
2041
2042 if (!unmapped) {
2043 /* Return no error, but returned pointers are all NULL. */
2044 return 0;
2045 }
2046
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002047 if (unmapped_from_seq)
2048 *unmapped_from_seq = from_seq;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002049 if (final_unmapped)
2050 *final_unmapped = unmapped;
2051 return 0;
2052}
2053
2054static int gsn_addr_to_sockaddr(struct gsn_addr *src,
2055 uint16_t port,
2056 struct osmo_sockaddr *dst)
2057{
2058 return osmo_sockaddr_init_udp(dst, gsn_addr_to_str(src), port);
2059}
2060
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002061/* If p is an Echo request, replace p's data with the matching response and
2062 * return 1. If p is no Echo request, return 0, or -1 if an invalid packet is
2063 * detected. */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002064static int gtphub_handle_echo_req(struct gtphub *hub, struct gtp_packet_desc *p,
2065 uint8_t **reply_buf)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002066{
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002067 if (p->type != GTP_ECHO_REQ)
2068 return 0;
2069
2070 static uint8_t echo_response_data[14] = {
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002071 0x32, /* GTP v1 flags */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002072 GTP_ECHO_RSP,
2073 0x00, 14 - 8, /* Length in network byte order */
2074 0x00, 0x00, 0x00, 0x00, /* Zero TEI */
2075 0, 0, /* Seq, to be replaced */
2076 0, 0, /* no extensions */
2077 0x0e, /* Recovery IE */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002078 0 /* Restart counter, to be replaced */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002079 };
2080 uint16_t *seq = (uint16_t*)&echo_response_data[8];
2081 uint8_t *recovery = &echo_response_data[13];
2082
2083 *seq = hton16(p->seq);
2084 *recovery = hub->restart_counter;
2085
2086 *reply_buf = echo_response_data;
2087
2088 return sizeof(echo_response_data);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002089}
2090
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002091struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2092 const struct osmo_sockaddr *addr);
2093
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002094/* Parse buffer as GTP packet, replace elements in-place and return the ofd and
2095 * address to forward to. Return a pointer to the osmo_fd, but copy the
2096 * sockaddr to *to_addr. The reason for this is that the sockaddr may expire at
2097 * any moment, while the osmo_fd is guaranteed to persist. Return the number of
2098 * bytes to forward, 0 or less on failure. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002099int gtphub_handle_buf(struct gtphub *hub,
2100 unsigned int side_idx,
2101 unsigned int plane_idx,
2102 const struct osmo_sockaddr *from_addr,
2103 uint8_t *buf,
2104 size_t received,
2105 time_t now,
2106 uint8_t **reply_buf,
2107 struct osmo_fd **to_ofd,
2108 struct osmo_sockaddr *to_addr)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002109{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002110 struct gtphub_bind *from_bind = &hub->to_gsns[side_idx][plane_idx];
2111 struct gtphub_bind *to_bind = &hub->to_gsns[other_side_idx(side_idx)][plane_idx];
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002112
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002113 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_IN],
2114 received);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002115
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01002116 struct gtp_packet_desc p;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002117 gtp_decode(buf, received, side_idx, plane_idx, &p, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002118
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002119 LOG(LOGL_DEBUG, "%s rx %s from %s %s%s\n",
2120 (side_idx == GTPH_SIDE_GGSN)? "<-" : "->",
2121 gtphub_plane_idx_names[plane_idx],
2122 gtphub_side_idx_names[side_idx],
2123 osmo_sockaddr_to_str(from_addr),
2124 gtp_type_str(p.type));
2125
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002126 if (p.rc <= 0) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002127 LOG(LOGL_ERROR, "INVALID: dropping GTP packet%s from %s %s %s\n",
2128 gtp_type_str(p.type),
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002129 gtphub_side_idx_names[side_idx],
2130 gtphub_plane_idx_names[plane_idx],
2131 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002132 return -1;
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002133 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002134
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002135 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2136
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002137 int reply_len;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002138 reply_len = gtphub_handle_echo_req(hub, &p, reply_buf);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002139 if (reply_len > 0) {
2140 /* It was an echo. Nothing left to do. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002141 osmo_sockaddr_copy(to_addr, from_addr);
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002142 *to_ofd = &from_bind->ofd;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002143
2144 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2145 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2146 reply_len);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002147 LOG(LOGL_DEBUG, "%s Echo response to %s: %d bytes to %s\n",
2148 (side_idx == GTPH_SIDE_GGSN)? "-->" : "<--",
2149 gtphub_side_idx_names[side_idx],
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002150 (int)reply_len, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002151 return reply_len;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002152 }
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002153 if (reply_len < 0)
2154 return -1;
2155
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002156 *to_ofd = &to_bind->ofd;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002157
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002158 /* If a proxy is configured, check that it's indeed that proxy talking
2159 * to us. A proxy is a forced 1:1 connection, e.g. to another gtphub,
2160 * so no-one else is allowed to talk to us from that side. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002161 struct gtphub_peer_port *from_peer = hub->proxy[side_idx][plane_idx];
2162 if (from_peer) {
2163 if (osmo_sockaddr_cmp(&from_peer->sa, from_addr) != 0) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002164 LOG(LOGL_ERROR,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002165 "Rejecting: %s proxy configured, but GTP packet"
2166 " received on %s bind is from another sender:"
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002167 " proxy: %s sender: %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002168 gtphub_side_idx_names[side_idx],
2169 gtphub_side_idx_names[side_idx],
2170 gtphub_port_str(from_peer),
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002171 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002172 return -1;
2173 }
2174 }
2175
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002176 if (!from_peer) {
2177 /* Find or create a peer with a matching address. The sender's
2178 * port may in fact differ. */
2179 from_peer = gtphub_known_addr_have_port(from_bind, from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002180 }
2181
2182 /* If any PDP context has been created, we already have an entry for
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002183 * this GSN. If we don't have an entry, a GGSN has nothing to tell us
2184 * about, while an SGSN may initiate a PDP context. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002185 if (!from_peer) {
2186 if (side_idx == GTPH_SIDE_GGSN) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002187 LOG(LOGL_ERROR, "Dropping packet%s: unknown GGSN peer: %s\n",
2188 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002189 osmo_sockaddr_to_str(from_addr));
2190 return -1;
2191 } else {
2192 /* SGSN */
2193 /* A new peer. If this is on the Ctrl plane, an SGSN
2194 * may make first contact without being known yet, so
2195 * create the peer struct for the current sender. */
2196 if (plane_idx != GTPH_PLANE_CTRL) {
2197 LOG(LOGL_ERROR,
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002198 "Dropping packet%s: User plane peer was not"
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002199 "announced by PDP Context: %s\n",
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002200 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002201 osmo_sockaddr_to_str(from_addr));
2202 return -1;
2203 }
2204
2205 struct gsn_addr from_gsna;
2206 uint16_t from_port;
2207 if (gsn_addr_from_sockaddr(&from_gsna, &from_port, from_addr) != 0)
2208 return -1;
2209
2210 from_peer = gtphub_port_have(hub, from_bind, &from_gsna, from_port);
2211 }
2212 }
2213
2214 if (!from_peer) {
2215 /* This could theoretically happen for invalid address data or
2216 * somesuch. */
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002217 LOG(LOGL_ERROR, "Dropping packet%s: invalid %s peer: %s\n",
2218 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002219 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002220 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002221 return -1;
2222 }
2223
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002224 rate_ctr_add(&from_peer->counters_io->ctr[GTPH_CTR_BYTES_IN],
2225 received);
2226 rate_ctr_inc(&from_peer->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2227
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002228 LOG(LOGL_DEBUG, "from %s peer: %s\n", gtphub_side_idx_names[side_idx],
2229 gtphub_port_str(from_peer));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002230
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002231 struct gtphub_peer_port *to_peer_from_seq;
2232 struct gtphub_peer_port *to_peer;
2233 if (gtphub_unmap(hub, &p, from_peer,
2234 hub->proxy[other_side_idx(side_idx)][plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002235 &to_peer, &to_peer_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002236 != 0) {
2237 return -1;
2238 }
2239
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002240 if (p.tun) {
2241 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[p.side_idx][p.plane_idx];
2242 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_IN],
2243 received);
2244 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2245 }
2246
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002247 if ((!to_peer) && (side_idx == GTPH_SIDE_SGSN)) {
2248 if (gtphub_resolve_ggsn(hub, &p, &to_peer) < 0)
2249 return -1;
2250 }
2251
2252 if (!to_peer) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002253 LOG(LOGL_ERROR, "No %s to send to. Dropping packet%s"
2254 " (type=%" PRIu8 ", header-TEI=%" PRIx32 ", seq=%" PRIx16 ").\n",
2255 gtphub_side_idx_names[other_side_idx(side_idx)],
2256 gtp_type_str(p.type),
2257 p.type, p.header_tei_rx, p.seq
2258 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002259 return -1;
2260 }
2261
2262 if (plane_idx == GTPH_PLANE_CTRL) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002263 /* This may be a Create PDP Context response. If it is, there
2264 * are other addresses in the GTP message to set up apart from
2265 * the sender. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002266 if (gtphub_handle_pdp_ctx(hub, &p, from_peer, to_peer)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002267 != 0)
2268 return -1;
2269 }
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002270
2271 /* Either to_peer was resolved from an existing tunnel,
2272 * or a PDP Ctx and thus a tunnel has just been created,
2273 * or the tunnel has been deleted due to this message. */
2274 OSMO_ASSERT(p.tun || (p.type == GTP_DELETE_PDP_RSP));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002275
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002276 gtphub_check_restart_counter(hub, &p, from_peer);
Neels Hofmeyrbc443302015-12-01 15:20:18 +01002277 gtphub_map_restart_counter(hub, &p);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002278
2279 /* If the GGSN is replying to an SGSN request, the sequence nr has
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002280 * already been unmapped above (to_peer_from_seq != NULL), and we need not
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002281 * create a new mapping. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002282 if (!to_peer_from_seq)
2283 gtphub_map_seq(&p, from_peer, to_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002284
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002285 osmo_sockaddr_copy(to_addr, &to_peer->sa);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002286
2287 *reply_buf = (uint8_t*)p.data;
Neels Hofmeyre921e322015-11-11 00:45:50 +01002288
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002289 if (received) {
2290 rate_ctr_inc(&to_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2291 rate_ctr_add(&to_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2292 received);
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002293
2294 rate_ctr_inc(&to_peer->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2295 rate_ctr_add(&to_peer->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2296 received);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002297 }
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002298
2299 if (p.tun) {
2300 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[other_side_idx(p.side_idx)][p.plane_idx];
2301 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2302 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2303 received);
2304 }
2305
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002306 LOG(LOGL_DEBUG, "%s Forward to %s:"
2307 " header-TEI %" PRIx32", seq %" PRIx16", %d bytes to %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002308 (side_idx == GTPH_SIDE_SGSN)? "-->" : "<--",
2309 gtphub_side_idx_names[other_side_idx(side_idx)],
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002310 p.header_tei, p.seq,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002311 (int)received, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002312 return received;
2313}
2314
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002315static void resolved_gssn_del_cb(struct expiring_item *expi)
2316{
2317 struct gtphub_resolved_ggsn *ggsn;
2318 ggsn = container_of(expi, struct gtphub_resolved_ggsn, expiry_entry);
2319
2320 gtphub_port_ref_count_dec(ggsn->peer);
2321 llist_del(&ggsn->entry);
2322
2323 ggsn->expiry_entry.del_cb = 0;
2324 expiring_item_del(&ggsn->expiry_entry);
2325
2326 talloc_free(ggsn);
2327}
2328
2329void gtphub_resolved_ggsn(struct gtphub *hub, const char *apn_oi_str,
2330 struct gsn_addr *resolved_addr,
2331 time_t now)
2332{
2333 struct gtphub_peer_port *pp;
2334 struct gtphub_resolved_ggsn *ggsn;
2335
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002336 LOG(LOGL_DEBUG, "Resolved GGSN callback: %s %s\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002337 apn_oi_str, osmo_hexdump((unsigned char*)resolved_addr,
2338 sizeof(*resolved_addr)));
Neels Hofmeyr3317c842015-11-11 17:20:42 +01002339
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002340 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002341 resolved_addr, 2123);
2342 if (!pp) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002343 LOG(LOGL_ERROR, "Internal: Cannot create/find peer '%s'\n",
2344 gsn_addr_to_str(resolved_addr));
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002345 return;
2346 }
2347
2348 ggsn = talloc_zero(osmo_gtphub_ctx, struct gtphub_resolved_ggsn);
2349 OSMO_ASSERT(ggsn);
Neels Hofmeyra4370dd2015-11-24 12:46:11 +01002350 INIT_LLIST_HEAD(&ggsn->entry);
2351 expiring_item_init(&ggsn->expiry_entry);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002352
2353 ggsn->peer = pp;
2354 gtphub_port_ref_count_inc(pp);
2355
2356 strncpy(ggsn->apn_oi_str, apn_oi_str, sizeof(ggsn->apn_oi_str));
Neels Hofmeyr3c820ee2015-11-17 12:28:09 +01002357 ggsn->apn_oi_str[sizeof(ggsn->apn_oi_str) - 1] = '\0';
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002358
2359 ggsn->expiry_entry.del_cb = resolved_gssn_del_cb;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002360 expiry_add(&hub->expire_slowly, &ggsn->expiry_entry, now);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002361
2362 llist_add(&ggsn->entry, &hub->resolved_ggsns);
2363}
2364
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002365static int gtphub_gc_peer_port(struct gtphub_peer_port *pp)
2366{
2367 return pp->ref_count == 0;
2368}
2369
2370static int gtphub_gc_peer_addr(struct gtphub_peer_addr *pa)
2371{
2372 struct gtphub_peer_port *pp, *npp;
2373 llist_for_each_entry_safe(pp, npp, &pa->ports, entry) {
2374 if (gtphub_gc_peer_port(pp)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002375 LOG(LOGL_DEBUG, "expired: peer %s\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002376 gtphub_port_str(pp));
2377 gtphub_peer_port_del(pp);
2378 }
2379 }
2380 return llist_empty(&pa->ports);
2381}
2382
2383static int gtphub_gc_peer(struct gtphub_peer *p)
2384{
2385 struct gtphub_peer_addr *pa, *npa;
2386 llist_for_each_entry_safe(pa, npa, &p->addresses, entry) {
2387 if (gtphub_gc_peer_addr(pa)) {
2388 gtphub_peer_addr_del(pa);
2389 }
2390 }
2391
2392 /* Note that there's a ref_count in each gtphub_peer_port instance
2393 * listed within p->addresses, referenced by TEI mappings from
2394 * hub->tei_map. As long as those don't expire, this peer will stay. */
2395
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002396 return llist_empty(&p->addresses)
2397 && nr_map_empty(&p->seq_map);
2398}
2399
2400static void gtphub_gc_bind(struct gtphub_bind *b)
2401{
2402 struct gtphub_peer *p, *n;
2403 llist_for_each_entry_safe(p, n, &b->peers, entry) {
2404 if (gtphub_gc_peer(p)) {
2405 gtphub_peer_del(p);
2406 }
2407 }
2408}
2409
2410void gtphub_gc(struct gtphub *hub, time_t now)
2411{
2412 int expired;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002413 expired = expiry_tick(&hub->expire_quickly, now);
2414 expired += expiry_tick(&hub->expire_slowly, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002415
2416 /* ... */
2417
2418 if (expired) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002419 int s, p;
2420 for_each_side_and_plane(s, p) {
2421 gtphub_gc_bind(&hub->to_gsns[s][p]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002422 }
2423 }
2424}
2425
2426static void gtphub_gc_cb(void *data)
2427{
2428 struct gtphub *hub = data;
2429 gtphub_gc(hub, gtphub_now());
2430 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2431}
2432
2433static void gtphub_gc_start(struct gtphub *hub)
2434{
2435 hub->gc_timer.cb = gtphub_gc_cb;
2436 hub->gc_timer.data = hub;
2437
2438 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2439}
2440
2441/* called by unit tests */
2442void gtphub_init(struct gtphub *hub)
2443{
2444 gtphub_zero(hub);
2445
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002446 INIT_LLIST_HEAD(&hub->tunnels);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01002447 INIT_LLIST_HEAD(&hub->pending_deletes);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002448
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002449 expiry_init(&hub->expire_quickly, GTPH_EXPIRE_QUICKLY_SECS);
2450 expiry_init(&hub->expire_slowly, GTPH_EXPIRE_SLOWLY_MINUTES * 60);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002451
Neels Hofmeyrd121ea62015-11-27 01:20:53 +01002452 nr_pool_init(&hub->tei_pool, 1, 0xffffffff);
2453
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002454 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002455 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002456 for_each_side_and_plane(side_idx, plane_idx) {
2457 gtphub_bind_init(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002458 }
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002459
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002460 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].label = "SGSN Ctrl";
2461 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].label = "GGSN Ctrl";
2462 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].label = "SGSN User";
2463 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].label = "GGSN User";
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002464}
2465
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002466/* For the test suite, this is kept separate from gtphub_stop(), which also
2467 * closes sockets. The test suite avoids using sockets and would cause
2468 * segfaults when trying to close uninitialized ofds. */
2469void gtphub_free(struct gtphub *hub)
2470{
2471 /* By expiring all mappings, a garbage collection should free
2472 * everything else. A gtphub_bind_free() will assert that everything is
2473 * indeed empty. */
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002474 expiry_clear(&hub->expire_quickly);
2475 expiry_clear(&hub->expire_slowly);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002476
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002477 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002478 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002479 for_each_side_and_plane(side_idx, plane_idx) {
2480 gtphub_gc_bind(&hub->to_gsns[side_idx][plane_idx]);
2481 gtphub_bind_free(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002482 }
2483}
2484
2485void gtphub_stop(struct gtphub *hub)
2486{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002487 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002488 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002489 for_each_side_and_plane(side_idx, plane_idx) {
2490 gtphub_bind_stop(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002491 }
2492 gtphub_free(hub);
2493}
2494
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002495static int gtphub_make_proxy(struct gtphub *hub,
2496 struct gtphub_peer_port **pp,
2497 struct gtphub_bind *bind,
2498 const struct gtphub_cfg_addr *addr)
2499{
2500 if (!addr->addr_str)
2501 return 0;
2502
2503 struct gsn_addr gsna;
2504 if (gsn_addr_from_str(&gsna, addr->addr_str) != 0)
2505 return -1;
2506
2507 *pp = gtphub_port_have(hub, bind, &gsna, addr->port);
2508
2509 /* This is *the* proxy. Make sure it is never expired. */
2510 gtphub_port_ref_count_inc(*pp);
2511 return 0;
2512}
2513
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002514int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg,
2515 uint8_t restart_counter)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002516{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002517 gtphub_init(hub);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002518
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002519 hub->restart_counter = restart_counter;
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01002520 hub->sgsn_use_sender = cfg->sgsn_use_sender? 1 : 0;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002521
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002522 /* If a Ctrl plane proxy is configured, ares will never be used. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002523 if (!cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002524 if (gtphub_ares_init(hub) != 0) {
2525 LOG(LOGL_FATAL, "Failed to initialize ares\n");
2526 return -1;
2527 }
2528 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002529
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002530 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002531 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002532 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01002533 int rc;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002534 rc = gtphub_bind_start(&hub->to_gsns[side_idx][plane_idx],
2535 &cfg->to_gsns[side_idx][plane_idx],
2536 (side_idx == GTPH_SIDE_SGSN)
2537 ? from_sgsns_read_cb
2538 : from_ggsns_read_cb,
2539 hub, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002540 if (rc) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002541 LOG(LOGL_FATAL, "Failed to bind for %ss (%s)\n",
2542 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002543 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002544 return rc;
2545 }
2546 }
2547
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002548 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002549 if (gtphub_make_proxy(hub,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002550 &hub->proxy[side_idx][plane_idx],
2551 &hub->to_gsns[side_idx][plane_idx],
2552 &cfg->proxy[side_idx][plane_idx])
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002553 != 0) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002554 LOG(LOGL_FATAL, "Cannot configure %s proxy"
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002555 " %s port %d.\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002556 gtphub_side_idx_names[side_idx],
2557 cfg->proxy[side_idx][plane_idx].addr_str,
2558 (int)cfg->proxy[side_idx][plane_idx].port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002559 return -1;
2560 }
2561 }
2562
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002563 for_each_side_and_plane(side_idx, plane_idx) {
2564 if (hub->proxy[side_idx][plane_idx])
2565 LOG(LOGL_NOTICE, "Using %s %s proxy %s\n",
2566 gtphub_side_idx_names[side_idx],
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002567 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002568 gtphub_port_str(hub->proxy[side_idx][plane_idx]));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002569 }
2570
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002571 if (hub->sgsn_use_sender)
Neels Hofmeyr9d8f5062015-12-03 14:52:33 +01002572 LOG(LOGL_NOTICE, "Using sender address and port for SGSN instead of GSN Addr IE and default ports.\n");
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002573
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002574 gtphub_gc_start(hub);
2575 return 0;
2576}
2577
2578static struct gtphub_peer_addr *gtphub_peer_find_addr(const struct gtphub_peer *peer,
2579 const struct gsn_addr *addr)
2580{
2581 struct gtphub_peer_addr *a;
2582 llist_for_each_entry(a, &peer->addresses, entry) {
2583 if (gsn_addr_same(&a->addr, addr))
2584 return a;
2585 }
2586 return NULL;
2587}
2588
2589static struct gtphub_peer_port *gtphub_addr_find_port(const struct gtphub_peer_addr *a,
2590 uint16_t port)
2591{
2592 OSMO_ASSERT(port);
2593 struct gtphub_peer_port *pp;
2594 llist_for_each_entry(pp, &a->ports, entry) {
2595 if (pp->port == port)
2596 return pp;
2597 }
2598 return NULL;
2599}
2600
2601static struct gtphub_peer_addr *gtphub_addr_find(const struct gtphub_bind *bind,
2602 const struct gsn_addr *addr)
2603{
2604 struct gtphub_peer *peer;
2605 llist_for_each_entry(peer, &bind->peers, entry) {
2606 struct gtphub_peer_addr *a = gtphub_peer_find_addr(peer, addr);
2607 if (a)
2608 return a;
2609 }
2610 return NULL;
2611}
2612
2613static struct gtphub_peer_port *gtphub_port_find(const struct gtphub_bind *bind,
2614 const struct gsn_addr *addr,
2615 uint16_t port)
2616{
2617 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2618 if (!a)
2619 return NULL;
2620 return gtphub_addr_find_port(a, port);
2621}
2622
2623struct gtphub_peer_port *gtphub_port_find_sa(const struct gtphub_bind *bind,
2624 const struct osmo_sockaddr *addr)
2625{
2626 struct gsn_addr gsna;
2627 uint16_t port;
2628 gsn_addr_from_sockaddr(&gsna, &port, addr);
2629 return gtphub_port_find(bind, &gsna, port);
2630}
2631
2632static struct gtphub_peer *gtphub_peer_new(struct gtphub *hub,
2633 struct gtphub_bind *bind)
2634{
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002635 struct gtphub_peer *peer = talloc_zero(osmo_gtphub_ctx,
2636 struct gtphub_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002637 OSMO_ASSERT(peer);
2638
2639 INIT_LLIST_HEAD(&peer->addresses);
2640
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +01002641 nr_pool_init(&peer->seq_pool, 0, 0xffff);
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002642 nr_map_init(&peer->seq_map, &peer->seq_pool, &hub->expire_quickly);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002643
2644 /* TODO use something random to pick the initial sequence nr.
2645 0x6d31 produces the ASCII character sequence 'm1', currently used in
2646 gtphub_nc_test.sh. */
2647 peer->seq_pool.last_nr = 0x6d31 - 1;
2648
2649 llist_add(&peer->entry, &bind->peers);
2650 return peer;
2651}
2652
2653static struct gtphub_peer_addr *gtphub_peer_add_addr(struct gtphub_peer *peer,
2654 const struct gsn_addr *addr)
2655{
2656 struct gtphub_peer_addr *a;
2657 a = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_addr);
2658 OSMO_ASSERT(a);
2659 a->peer = peer;
2660 gsn_addr_copy(&a->addr, addr);
2661 INIT_LLIST_HEAD(&a->ports);
2662 llist_add(&a->entry, &peer->addresses);
2663
2664 return a;
2665}
2666
2667static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
2668 struct gtphub_bind *bind,
2669 const struct gsn_addr *addr)
2670{
2671 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2672 if (a)
2673 return a;
2674
2675 /* If we haven't found an address, that means we need to create an
2676 * entirely new peer for the new address. More addresses may be added
2677 * to this peer later, but not via this function. */
2678 struct gtphub_peer *peer = gtphub_peer_new(hub, bind);
Neels Hofmeyre921e322015-11-11 00:45:50 +01002679
2680 a = gtphub_peer_add_addr(peer, addr);
2681
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002682 LOG(LOGL_DEBUG, "New peer address: %s %s\n",
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002683 bind->label,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002684 gsn_addr_to_str(&a->addr));
2685
2686 return a;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002687}
2688
2689static struct gtphub_peer_port *gtphub_addr_add_port(struct gtphub_peer_addr *a,
2690 uint16_t port)
2691{
2692 struct gtphub_peer_port *pp;
2693
2694 pp = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_port);
2695 OSMO_ASSERT(pp);
2696 pp->peer_addr = a;
2697 pp->port = port;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01002698 pp->last_restart_count = -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002699
2700 if (gsn_addr_to_sockaddr(&a->addr, port, &pp->sa) != 0) {
2701 talloc_free(pp);
2702 return NULL;
2703 }
2704
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002705 pp->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
2706 &gtphub_ctrg_io_desc, 0);
2707
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002708 llist_add(&pp->entry, &a->ports);
2709
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002710 LOG(LOGL_DEBUG, "New peer port: %s port %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002711 gsn_addr_to_str(&a->addr),
2712 (int)port);
2713
2714 return pp;
2715}
2716
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002717struct gtphub_peer_port *gtphub_port_have(struct gtphub *hub,
2718 struct gtphub_bind *bind,
2719 const struct gsn_addr *addr,
2720 uint16_t port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002721{
2722 struct gtphub_peer_addr *a = gtphub_addr_have(hub, bind, addr);
2723
2724 struct gtphub_peer_port *pp = gtphub_addr_find_port(a, port);
2725 if (pp)
2726 return pp;
2727
2728 return gtphub_addr_add_port(a, port);
2729}
2730
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002731/* Find a GGSN peer with a matching address. If the address is known but the
2732 * port not, create a new port for that peer address. */
2733struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2734 const struct osmo_sockaddr *addr)
2735{
2736 struct gtphub_peer_addr *pa;
2737 struct gtphub_peer_port *pp;
2738
2739 struct gsn_addr gsna;
2740 uint16_t port;
2741 gsn_addr_from_sockaddr(&gsna, &port, addr);
2742
2743 pa = gtphub_addr_find(bind, &gsna);
2744 if (!pa)
2745 return NULL;
2746
2747 pp = gtphub_addr_find_port(pa, port);
2748
2749 if (!pp)
2750 pp = gtphub_addr_add_port(pa, port);
2751
2752 return pp;
2753}
2754
2755
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002756/* Return 0 if the message in p is not applicable for GGSN resolution, -1 if
2757 * resolution should be possible but failed, and 1 if resolution was
2758 * successful. *pp will be set to NULL if <1 is returned. */
2759static int gtphub_resolve_ggsn(struct gtphub *hub,
2760 struct gtp_packet_desc *p,
2761 struct gtphub_peer_port **pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002762{
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002763 *pp = NULL;
2764
2765 /* TODO determine from message type whether IEs should be present? */
2766
2767 int rc;
2768 const char *imsi_str;
2769 rc = get_ie_imsi_str(p->ie, 0, &imsi_str);
2770 if (rc < 1)
2771 return rc;
2772 OSMO_ASSERT(imsi_str);
2773
2774 const char *apn_str;
2775 rc = get_ie_apn_str(p->ie, &apn_str);
2776 if (rc < 1)
2777 return rc;
2778 OSMO_ASSERT(apn_str);
2779
2780 *pp = gtphub_resolve_ggsn_addr(hub, imsi_str, apn_str);
2781 return (*pp)? 1 : -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002782}
2783
2784
2785/* TODO move to osmocom/core/socket.c ? */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002786/* use this in osmo_sock_init() to remove dup. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002787/* Internal: call getaddrinfo for osmo_sockaddr_init(). The caller is required
2788 to call freeaddrinfo(*result), iff zero is returned. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002789static int _osmo_getaddrinfo(struct addrinfo **result,
2790 uint16_t family, uint16_t type, uint8_t proto,
2791 const char *host, uint16_t port)
2792{
2793 struct addrinfo hints;
2794 char portbuf[16];
2795
2796 sprintf(portbuf, "%u", port);
2797 memset(&hints, '\0', sizeof(struct addrinfo));
2798 hints.ai_family = family;
2799 if (type == SOCK_RAW) {
2800 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
2801 * SOCK_RAW and IPPROTO_GRE is used.
2802 */
2803 hints.ai_socktype = SOCK_DGRAM;
2804 hints.ai_protocol = IPPROTO_UDP;
2805 } else {
2806 hints.ai_socktype = type;
2807 hints.ai_protocol = proto;
2808 }
2809
2810 return getaddrinfo(host, portbuf, &hints, result);
2811}
2812
2813/* TODO move to osmocom/core/socket.c ? */
2814int osmo_sockaddr_init(struct osmo_sockaddr *addr,
2815 uint16_t family, uint16_t type, uint8_t proto,
2816 const char *host, uint16_t port)
2817{
2818 struct addrinfo *res;
2819 int rc;
2820 rc = _osmo_getaddrinfo(&res, family, type, proto, host, port);
2821
2822 if (rc != 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002823 LOG(LOGL_ERROR, "getaddrinfo returned error %d\n", (int)rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002824 return -EINVAL;
2825 }
2826
2827 OSMO_ASSERT(res->ai_addrlen <= sizeof(addr->a));
2828 memcpy(&addr->a, res->ai_addr, res->ai_addrlen);
2829 addr->l = res->ai_addrlen;
2830 freeaddrinfo(res);
2831
2832 return 0;
2833}
2834
2835int osmo_sockaddr_to_strs(char *addr_str, size_t addr_str_len,
2836 char *port_str, size_t port_str_len,
2837 const struct osmo_sockaddr *addr,
2838 int flags)
2839{
2840 int rc;
2841
2842 if ((addr->l < 1) || (addr->l > sizeof(addr->a))) {
2843 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address size: %d\n", addr->l);
2844 return -1;
2845 }
2846
2847 if (addr->l > sizeof(addr->a)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002848 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: too long: %d\n",
2849 addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002850 return -1;
2851 }
2852
2853 rc = getnameinfo((struct sockaddr*)&addr->a, addr->l,
2854 addr_str, addr_str_len,
2855 port_str, port_str_len,
2856 flags);
2857
2858 if (rc)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002859 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: %s: %s\n",
2860 gai_strerror(rc), osmo_hexdump((uint8_t*)&addr->a,
2861 addr->l));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002862
2863 return rc;
2864}
2865
2866const char *osmo_sockaddr_to_strb(const struct osmo_sockaddr *addr,
2867 char *buf, size_t buf_len)
2868{
2869 const int portbuf_len = 6;
2870 OSMO_ASSERT(buf_len > portbuf_len);
2871 char *portbuf = buf + buf_len - portbuf_len;
2872 buf_len -= portbuf_len;
2873 if (osmo_sockaddr_to_strs(buf, buf_len,
2874 portbuf, portbuf_len,
2875 addr,
2876 NI_NUMERICHOST | NI_NUMERICSERV))
2877 return NULL;
2878
2879 char *pos = buf + strnlen(buf, buf_len-1);
2880 size_t len = buf_len - (pos - buf);
2881
2882 snprintf(pos, len, " port %s", portbuf);
2883 buf[buf_len-1] = '\0';
2884
2885 return buf;
2886}
2887
2888const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *addr)
2889{
2890 static char buf[256];
2891 const char *result = osmo_sockaddr_to_strb(addr, buf, sizeof(buf));
2892 if (! result)
2893 return "(invalid)";
2894 return result;
2895}
2896
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002897int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
2898 const struct osmo_sockaddr *b)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002899{
2900 if (a == b)
2901 return 0;
2902 if (!a)
2903 return -1;
2904 if (!b)
2905 return 1;
2906 if (a->l != b->l) {
2907 /* Lengths are not the same, but determine the order. Will
2908 * anyone ever sort a list by osmo_sockaddr though...? */
2909 int cmp = memcmp(&a->a, &b->a, (a->l < b->l)? a->l : b->l);
2910 if (cmp == 0) {
2911 if (a->l < b->l)
2912 return -1;
2913 else
2914 return 1;
2915 }
2916 return cmp;
2917 }
2918 return memcmp(&a->a, &b->a, a->l);
2919}
2920
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002921void osmo_sockaddr_copy(struct osmo_sockaddr *dst,
2922 const struct osmo_sockaddr *src)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002923{
2924 OSMO_ASSERT(src->l <= sizeof(dst->a));
2925 memcpy(&dst->a, &src->a, src->l);
2926 dst->l = src->l;
2927}