blob: ca5857b39148a50993513e0233e48da728dedd45 [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
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020035#include <osmocom/sgsn/gtphub.h>
36#include <osmocom/sgsn/debug.h>
37#include <osmocom/sgsn/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
Harald Welte7e82b742017-08-12 13:43:54 +020045#include <osmocom/gsm/apn.h>
46
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010047
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020048static const int GTPH_GC_TICK_SECONDS = 1;
49
50void *osmo_gtphub_ctx;
51
Neels Hofmeyr063a8022015-11-16 14:35:13 +010052/* Convenience makro, note: only within this C file. */
53#define LOG(level, fmt, args...) \
54 LOGP(DGTPHUB, level, fmt, ##args)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020055
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010056#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
57 sizeof(*(struct_pointer)))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020058
59/* TODO move this to osmocom/core/select.h ? */
60typedef int (*osmo_fd_cb_t)(struct osmo_fd *fd, unsigned int what);
61
62/* TODO move this to osmocom/core/linuxlist.h ? */
63#define __llist_first(head) (((head)->next == (head)) ? NULL : (head)->next)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010064#define llist_first(head, type, entry) \
65 llist_entry(__llist_first(head), type, entry)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020066
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +010067#define __llist_last(head) (((head)->next == (head)) ? NULL : (head)->prev)
68#define llist_last(head, type, entry) \
69 llist_entry(__llist_last(head), type, entry)
70
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020071/* TODO move GTP header stuff to openggsn/gtp/ ? See gtp_decaps*() */
72
73enum gtp_rc {
74 GTP_RC_UNKNOWN = 0,
75 GTP_RC_TINY = 1, /* no IEs (like ping/pong) */
Neels Hofmeyre921e322015-11-11 00:45:50 +010076 GTP_RC_PDU_C = 2, /* a real packet with IEs */
77 GTP_RC_PDU_U = 3, /* a real packet with User data */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020078
79 GTP_RC_TOOSHORT = -1,
80 GTP_RC_UNSUPPORTED_VERSION = -2,
81 GTP_RC_INVALID_IE = -3,
82};
83
84struct gtp_packet_desc {
85 union gtp_packet *data;
86 int data_len;
87 int header_len;
88 int version;
89 uint8_t type;
90 uint16_t seq;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010091 uint32_t header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020092 uint32_t header_tei;
93 int rc; /* enum gtp_rc */
94 unsigned int plane_idx;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010095 unsigned int side_idx;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +010096 struct gtphub_tunnel *tun;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +010097 time_t timestamp;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020098 union gtpie_member *ie[GTPIE_SIZE];
99};
100
Neels Hofmeyr10fc0242015-12-01 00:23:45 +0100101struct pending_delete {
102 struct llist_head entry;
103 struct expiring_item expiry_entry;
104
105 struct gtphub_tunnel *tun;
106 uint8_t teardown_ind;
107 uint8_t nsapi;
108};
109
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100110
111/* counters */
112
113enum gtphub_counters_io {
114 GTPH_CTR_PKTS_IN = 0,
115 GTPH_CTR_PKTS_OUT,
116 GTPH_CTR_BYTES_IN,
117 GTPH_CTR_BYTES_OUT
118};
119
120static const struct rate_ctr_desc gtphub_counters_io_desc[] = {
121 { "packets.in", "Packets ( In)" },
122 { "packets.out", "Packets (Out)" },
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100123 { "bytes.in", "Bytes ( In)" },
124 { "bytes.out", "Bytes (Out)" },
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100125};
126
127static const struct rate_ctr_group_desc gtphub_ctrg_io_desc = {
Max8a01a802017-12-20 13:10:11 +0100128 .group_name_prefix = "gtphub:bind",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100129 .group_description = "I/O Statistics",
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100130 .num_ctr = ARRAY_SIZE(gtphub_counters_io_desc),
131 .ctr_desc = gtphub_counters_io_desc,
132 .class_id = OSMO_STATS_CLASS_GLOBAL,
133};
134
135
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100136/* support */
137
138static const char *gtp_type_str(uint8_t type)
139{
140 switch (type) {
141 case 1:
142 return " (Echo Request)";
143 case 2:
144 return " (Echo Response)";
145 case 16:
146 return " (Create PDP Ctx Request)";
147 case 17:
148 return " (Create PDP Ctx Response)";
149 case 18:
150 return " (Update PDP Ctx Request)";
151 case 19:
152 return " (Update PDP Ctx Response)";
153 case 20:
154 return " (Delete PDP Ctx Request)";
155 case 21:
156 return " (Delete PDP Ctx Response)";
157 case 255:
158 return " (User Data)";
159 default:
160 return "";
161 }
162}
163
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200164void gsn_addr_copy(struct gsn_addr *gsna, const struct gsn_addr *src)
165{
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +0100166 *gsna = *src;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200167}
168
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200169int gsn_addr_from_sockaddr(struct gsn_addr *gsna, uint16_t *port,
170 const struct osmo_sockaddr *sa)
171{
172 char addr_str[256];
173 char port_str[6];
174
175 if (osmo_sockaddr_to_strs(addr_str, sizeof(addr_str),
176 port_str, sizeof(port_str),
177 sa, (NI_NUMERICHOST | NI_NUMERICSERV))
178 != 0) {
179 return -1;
180 }
181
182 if (port)
183 *port = atoi(port_str);
184
185 return gsn_addr_from_str(gsna, addr_str);
186}
187
188int gsn_addr_from_str(struct gsn_addr *gsna, const char *numeric_addr_str)
189{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100190 if ((!gsna) || (!numeric_addr_str))
191 return -1;
192
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200193 int af = AF_INET;
194 gsna->len = 4;
195 const char *pos = numeric_addr_str;
196 for (; *pos; pos++) {
197 if (*pos == ':') {
198 af = AF_INET6;
199 gsna->len = 16;
200 break;
201 }
202 }
203
204 int rc = inet_pton(af, numeric_addr_str, gsna->buf);
205 if (rc != 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100206 LOG(LOGL_ERROR, "Cannot resolve numeric address: '%s'\n",
207 numeric_addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200208 return -1;
209 }
210 return 0;
211}
212
213const char *gsn_addr_to_str(const struct gsn_addr *gsna)
214{
215 static char buf[INET6_ADDRSTRLEN + 1];
216 return gsn_addr_to_strb(gsna, buf, sizeof(buf));
217}
218
219const char *gsn_addr_to_strb(const struct gsn_addr *gsna,
220 char *strbuf,
221 int strbuf_len)
222{
223 int af;
224 switch (gsna->len) {
225 case 4:
226 af = AF_INET;
227 break;
228 case 16:
229 af = AF_INET6;
230 break;
231 default:
232 return NULL;
233 }
234
235 const char *r = inet_ntop(af, gsna->buf, strbuf, strbuf_len);
236 if (!r) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100237 LOG(LOGL_ERROR, "Cannot convert gsn_addr to string:"
238 " %s: len=%d, buf=%s\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100239 strerror(errno),
240 (int)gsna->len,
241 osmo_hexdump(gsna->buf, sizeof(gsna->buf)));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200242 }
243 return r;
244}
245
246int gsn_addr_same(const struct gsn_addr *a, const struct gsn_addr *b)
247{
248 if (a == b)
249 return 1;
250 if ((!a) || (!b))
251 return 0;
252 if (a->len != b->len)
253 return 0;
254 return (memcmp(a->buf, b->buf, a->len) == 0)? 1 : 0;
255}
256
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100257static int gsn_addr_get(struct gsn_addr *gsna, const struct gtp_packet_desc *p,
258 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200259{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100260 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200261 return -1;
262
263 unsigned int len;
264 /* gtpie.h fails to declare gtpie_gettlv()'s first arg as const. */
265 if (gtpie_gettlv((union gtpie_member**)p->ie, GTPIE_GSN_ADDR, idx,
266 &len, gsna->buf, sizeof(gsna->buf))
267 != 0)
268 return -1;
269 gsna->len = len;
270 return 0;
271}
272
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100273static int gsn_addr_put(const struct gsn_addr *gsna, struct gtp_packet_desc *p,
274 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200275{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100276 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200277 return -1;
278
279 int ie_idx;
280 ie_idx = gtpie_getie(p->ie, GTPIE_GSN_ADDR, idx);
281
282 if (ie_idx < 0)
283 return -1;
284
285 struct gtpie_tlv *ie = &p->ie[ie_idx]->tlv;
286 int ie_l = ntoh16(ie->l);
287 if (ie_l != gsna->len) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100288 LOG(LOGL_ERROR, "Not implemented:"
289 " replace an IE address of different size:"
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200290 " replace %d with %d\n", (int)ie_l, (int)gsna->len);
291 return -1;
292 }
293
294 memcpy(ie->v, gsna->buf, (int)ie_l);
295 return 0;
296}
297
298/* Validate GTP version 0 data; analogous to validate_gtp1_header(), see there.
299 */
300void validate_gtp0_header(struct gtp_packet_desc *p)
301{
302 const struct gtp0_header *pheader = &(p->data->gtp0.h);
303 p->rc = GTP_RC_UNKNOWN;
304 p->header_len = 0;
305
306 OSMO_ASSERT(p->data_len >= 1);
307 OSMO_ASSERT(p->version == 0);
308
309 if (p->data_len < GTP0_HEADER_SIZE) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100310 LOG(LOGL_ERROR, "GTP0 packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200311 p->rc = GTP_RC_TOOSHORT;
312 return;
313 }
314
315 p->type = ntoh8(pheader->type);
316 p->seq = ntoh16(pheader->seq);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100317 p->header_tei_rx = 0; /* TODO */
318 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200319
320 if (p->data_len == GTP0_HEADER_SIZE) {
321 p->rc = GTP_RC_TINY;
322 p->header_len = GTP0_HEADER_SIZE;
323 return;
324 }
325
326 /* Check packet length field versus length of packet */
327 if (p->data_len != (ntoh16(pheader->length) + GTP0_HEADER_SIZE)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100328 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
329 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100330 GTP0_HEADER_SIZE, (int)ntoh16(pheader->length),
331 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200332 p->rc = GTP_RC_TOOSHORT;
333 return;
334 }
335
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100336 LOG(LOGL_DEBUG, "GTP v0 TID = %" PRIu64 "\n", pheader->tid);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200337 p->header_len = GTP0_HEADER_SIZE;
Neels Hofmeyre921e322015-11-11 00:45:50 +0100338 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200339}
340
341/* Validate GTP version 1 data, and update p->rc with the result, as well as
342 * p->header_len in case of a valid header. */
343void validate_gtp1_header(struct gtp_packet_desc *p)
344{
345 const struct gtp1_header_long *pheader = &(p->data->gtp1l.h);
346 p->rc = GTP_RC_UNKNOWN;
347 p->header_len = 0;
348
349 OSMO_ASSERT(p->data_len >= 1);
350 OSMO_ASSERT(p->version == 1);
351
352 if ((p->data_len < GTP1_HEADER_SIZE_LONG)
353 && (p->data_len != GTP1_HEADER_SIZE_SHORT)){
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100354 LOG(LOGL_ERROR, "GTP packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200355 p->rc = GTP_RC_TOOSHORT;
356 return;
357 }
358
359 p->type = ntoh8(pheader->type);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100360 p->header_tei_rx = ntoh32(pheader->tei);
361 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200362 p->seq = ntoh16(pheader->seq);
363
Neels Hofmeyr28a70f22015-12-06 15:22:54 +0100364 LOG(LOGL_DEBUG, "| GTPv1\n");
365 LOG(LOGL_DEBUG, "| type = %" PRIu8 " 0x%02" PRIx8 "\n", p->type, p->type);
366 LOG(LOGL_DEBUG, "| length = %" PRIu16 " 0x%04" PRIx16 "\n", ntoh16(pheader->length), ntoh16(pheader->length));
367 LOG(LOGL_DEBUG, "| TEI = %" PRIu32 " 0x%08" PRIx32 "\n", p->header_tei_rx, p->header_tei_rx);
368 LOG(LOGL_DEBUG, "| seq = %" PRIu16 " 0x%04" PRIx16 "\n", p->seq, p->seq);
369 LOG(LOGL_DEBUG, "| npdu = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->npdu, pheader->npdu);
370 LOG(LOGL_DEBUG, "| next = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->next, pheader->next);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200371
372 if (p->data_len <= GTP1_HEADER_SIZE_LONG) {
373 p->rc = GTP_RC_TINY;
374 p->header_len = GTP1_HEADER_SIZE_SHORT;
375 return;
376 }
377
378 /* Check packet length field versus length of packet */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100379 int announced_len = ntoh16(pheader->length) + GTP1_HEADER_SIZE_SHORT;
380 if (p->data_len != announced_len) {
381 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
382 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100383 GTP1_HEADER_SIZE_SHORT, (int)ntoh16(pheader->length),
384 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200385 p->rc = GTP_RC_TOOSHORT;
386 return;
387 }
388
Neels Hofmeyre921e322015-11-11 00:45:50 +0100389 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200390 p->header_len = GTP1_HEADER_SIZE_LONG;
391}
392
393/* Examine whether p->data of size p->data_len has a valid GTP header. Set
394 * p->version, p->rc and p->header_len. On error, p->rc <= 0 (see enum
395 * gtp_rc). p->data must point at a buffer with p->data_len set. */
396void validate_gtp_header(struct gtp_packet_desc *p)
397{
398 p->rc = GTP_RC_UNKNOWN;
399
400 /* Need at least 1 byte in order to check version */
401 if (p->data_len < 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100402 LOG(LOGL_ERROR, "Discarding packet - too small: %d\n",
403 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200404 p->rc = GTP_RC_TOOSHORT;
405 return;
406 }
407
408 p->version = p->data->flags >> 5;
409
410 switch (p->version) {
411 case 0:
412 validate_gtp0_header(p);
413 break;
414 case 1:
415 validate_gtp1_header(p);
416 break;
417 default:
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100418 LOG(LOGL_ERROR, "Unsupported GTP version: %d\n", p->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200419 p->rc = GTP_RC_UNSUPPORTED_VERSION;
420 break;
421 }
422}
423
424
425/* Return the value of the i'th IMSI IEI by copying to *imsi.
426 * The first IEI is reached by passing i = 0.
427 * imsi must point at allocated space of (at least) 8 bytes.
428 * Return 1 on success, or 0 if not found. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100429static int get_ie_imsi(union gtpie_member *ie[], int i, uint8_t *imsi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200430{
431 return gtpie_gettv0(ie, GTPIE_IMSI, i, imsi, 8) == 0;
432}
433
434/* Analogous to get_ie_imsi(). nsapi must point at a single uint8_t. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100435static int get_ie_nsapi(union gtpie_member *ie[], int i, uint8_t *nsapi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200436{
437 return gtpie_gettv1(ie, GTPIE_NSAPI, i, nsapi) == 0;
438}
439
440static char imsi_digit_to_char(uint8_t nibble)
441{
442 nibble &= 0x0f;
443 if (nibble > 9)
444 return (nibble == 0x0f) ? '\0' : '?';
445 return '0' + nibble;
446}
447
448/* Return a human readable IMSI string, in a static buffer.
449 * imsi must point at 8 octets of IMSI IE encoded IMSI data. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100450static int imsi_to_str(uint8_t *imsi, const char **imsi_str)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200451{
452 static char str[17];
453 int i;
454
455 for (i = 0; i < 8; i++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +0100456 char c;
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100457 c = imsi_digit_to_char(imsi[i]);
458 if (c == '?')
459 return -1;
460 str[2*i] = c;
461
462 c = imsi_digit_to_char(imsi[i] >> 4);
463 if (c == '?')
464 return -1;
465 str[2*i + 1] = c;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200466 }
467 str[16] = '\0';
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100468 *imsi_str = str;
469 return 1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200470}
471
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100472/* Return 0 if not present, 1 if present and decoded successfully, -1 if
473 * present but cannot be decoded. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100474static int get_ie_imsi_str(union gtpie_member *ie[], int i,
475 const char **imsi_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100476{
477 uint8_t imsi_buf[8];
478 if (!get_ie_imsi(ie, i, imsi_buf))
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100479 return 0;
480 return imsi_to_str(imsi_buf, imsi_str);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100481}
482
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100483/* Return 0 if not present, 1 if present and decoded successfully, -1 if
484 * present but cannot be decoded. */
485static int get_ie_apn_str(union gtpie_member *ie[], const char **apn_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100486{
487 static char apn_buf[GSM_APN_LENGTH];
488 unsigned int len;
489 if (gtpie_gettlv(ie, GTPIE_APN, 0,
490 &len, apn_buf, sizeof(apn_buf)) != 0)
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100491 return 0;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100492
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100493 if (len < 2) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100494 LOG(LOGL_ERROR, "APN IE: invalid length: %d\n",
495 (int)len);
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100496 return -1;
497 }
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100498
499 if (len > (sizeof(apn_buf) - 1))
500 len = sizeof(apn_buf) - 1;
501 apn_buf[len] = '\0';
502
Harald Welte7e82b742017-08-12 13:43:54 +0200503 *apn_str = osmo_apn_to_str(apn_buf, (uint8_t*)apn_buf, len);
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100504 if (!(*apn_str)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100505 LOG(LOGL_ERROR, "APN IE: present but cannot be decoded: %s\n",
506 osmo_hexdump((uint8_t*)apn_buf, len));
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100507 return -1;
508 }
509 return 1;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100510}
511
512
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200513/* Validate header, and index information elements. Write decoded packet
514 * information to *res. res->data will point at the given data buffer. On
515 * error, p->rc is set <= 0 (see enum gtp_rc). */
516static void gtp_decode(const uint8_t *data, int data_len,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100517 unsigned int from_side_idx,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200518 unsigned int from_plane_idx,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100519 struct gtp_packet_desc *res,
520 time_t now)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200521{
522 ZERO_STRUCT(res);
523 res->data = (union gtp_packet*)data;
524 res->data_len = data_len;
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100525 res->side_idx = from_side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200526 res->plane_idx = from_plane_idx;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100527 res->timestamp = now;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200528
529 validate_gtp_header(res);
530
Neels Hofmeyr87c83d02015-12-03 11:25:27 +0100531 if (res->rc <= 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200532 return;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200533
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100534 LOG(LOGL_DEBUG, "Valid GTP header (v%d)\n", res->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200535
Neels Hofmeyre921e322015-11-11 00:45:50 +0100536 if (from_plane_idx == GTPH_PLANE_USER) {
537 res->rc = GTP_RC_PDU_U;
538 return;
539 }
540
541 if (res->rc != GTP_RC_PDU_C) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100542 LOG(LOGL_DEBUG, "no IEs in this GTP packet\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200543 return;
544 }
545
546 if (gtpie_decaps(res->ie, res->version,
547 (void*)(data + res->header_len),
548 res->data_len - res->header_len) != 0) {
549 res->rc = GTP_RC_INVALID_IE;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100550 LOG(LOGL_ERROR, "INVALID: cannot decode IEs."
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100551 " Dropping GTP packet%s.\n",
552 gtp_type_str(res->type)
553 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200554 return;
555 }
556
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100557#if 1
Neels Hofmeyrcc7db182016-12-18 23:52:38 +0100558 /* TODO if (<loglevel is debug>)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100559 (waiting for a commit from jerlbeck) */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200560 int i;
561
562 for (i = 0; i < 10; i++) {
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100563 const char *imsi;
564 if (get_ie_imsi_str(res->ie, i, &imsi) < 1)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200565 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100566 LOG(LOGL_DEBUG, "| IMSI %s\n", imsi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200567 }
568
569 for (i = 0; i < 10; i++) {
570 uint8_t nsapi;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100571 if (!get_ie_nsapi(res->ie, i, &nsapi))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200572 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100573 LOG(LOGL_DEBUG, "| NSAPI %d\n", (int)nsapi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200574 }
575
576 for (i = 0; i < 2; i++) {
577 struct gsn_addr addr;
578 if (gsn_addr_get(&addr, res, i) == 0)
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100579 LOG(LOGL_DEBUG, "| addr %s\n", gsn_addr_to_str(&addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200580 }
581
582 for (i = 0; i < 10; i++) {
583 uint32_t tei;
584 if (gtpie_gettv4(res->ie, GTPIE_TEI_DI, i, &tei) != 0)
585 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100586 LOG(LOGL_DEBUG, "| TEI DI (USER) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200587 tei, tei);
588 }
589
590 for (i = 0; i < 10; i++) {
591 uint32_t tei;
592 if (gtpie_gettv4(res->ie, GTPIE_TEI_C, i, &tei) != 0)
593 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100594 LOG(LOGL_DEBUG, "| TEI (CTRL) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200595 tei, tei);
596 }
597#endif
598}
599
600
601/* expiry */
602
603void expiry_init(struct expiry *exq, int expiry_in_seconds)
604{
605 ZERO_STRUCT(exq);
606 exq->expiry_in_seconds = expiry_in_seconds;
607 INIT_LLIST_HEAD(&exq->items);
608}
609
610void expiry_add(struct expiry *exq, struct expiring_item *item, time_t now)
611{
612 item->expiry = now + exq->expiry_in_seconds;
613
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +0100614 OSMO_ASSERT(llist_empty(&exq->items)
615 || (item->expiry
616 >= llist_last(&exq->items, struct expiring_item, entry)->expiry));
617
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200618 /* Add/move to the tail to always sort by expiry, ascending. */
619 llist_del(&item->entry);
620 llist_add_tail(&item->entry, &exq->items);
621}
622
623int expiry_tick(struct expiry *exq, time_t now)
624{
625 int expired = 0;
626 struct expiring_item *m, *n;
627 llist_for_each_entry_safe(m, n, &exq->items, entry) {
628 if (m->expiry <= now) {
629 expiring_item_del(m);
630 expired ++;
631 } else {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200632 /* The items are added sorted by expiry. So when we hit
633 * an unexpired entry, only more unexpired ones will
634 * follow. */
635 break;
636 }
637 }
638 return expired;
639}
640
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100641void expiry_clear(struct expiry *exq)
642{
643 struct expiring_item *m, *n;
644 llist_for_each_entry_safe(m, n, &exq->items, entry) {
645 expiring_item_del(m);
646 }
647}
648
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200649void expiring_item_init(struct expiring_item *item)
650{
651 ZERO_STRUCT(item);
652 INIT_LLIST_HEAD(&item->entry);
653}
654
655void expiring_item_del(struct expiring_item *item)
656{
657 OSMO_ASSERT(item);
658 llist_del(&item->entry);
659 INIT_LLIST_HEAD(&item->entry);
660 if (item->del_cb) {
661 /* avoid loops */
662 del_cb_t del_cb = item->del_cb;
663 item->del_cb = 0;
664 (del_cb)(item);
665 }
666}
667
668
669/* nr_map, nr_pool */
670
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100671void nr_pool_init(struct nr_pool *pool, nr_t nr_min, nr_t nr_max)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200672{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100673 *pool = (struct nr_pool){
674 .nr_min = nr_min,
675 .nr_max = nr_max,
676 .last_nr = nr_max
677 };
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200678}
679
680nr_t nr_pool_next(struct nr_pool *pool)
681{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100682 if (pool->last_nr >= pool->nr_max)
683 pool->last_nr = pool->nr_min;
684 else
685 pool->last_nr ++;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200686
687 return pool->last_nr;
688}
689
690void nr_map_init(struct nr_map *map, struct nr_pool *pool,
691 struct expiry *exq)
692{
693 ZERO_STRUCT(map);
694 map->pool = pool;
695 map->add_items_to_expiry = exq;
696 INIT_LLIST_HEAD(&map->mappings);
697}
698
699void nr_mapping_init(struct nr_mapping *m)
700{
701 ZERO_STRUCT(m);
702 INIT_LLIST_HEAD(&m->entry);
703 expiring_item_init(&m->expiry_entry);
704}
705
706void nr_map_add(struct nr_map *map, struct nr_mapping *mapping, time_t now)
707{
708 /* Generate a mapped number */
709 mapping->repl = nr_pool_next(map->pool);
710
711 /* Add to the tail to always yield a list sorted by expiry, in
712 * ascending order. */
713 llist_add_tail(&mapping->entry, &map->mappings);
Neels Hofmeyr508514c2015-11-24 13:30:38 +0100714 nr_map_refresh(map, mapping, now);
715}
716
717void nr_map_refresh(struct nr_map *map, struct nr_mapping *mapping, time_t now)
718{
719 if (!map->add_items_to_expiry)
720 return;
721 expiry_add(map->add_items_to_expiry,
722 &mapping->expiry_entry,
723 now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200724}
725
726void nr_map_clear(struct nr_map *map)
727{
728 struct nr_mapping *m;
729 struct nr_mapping *n;
730 llist_for_each_entry_safe(m, n, &map->mappings, entry) {
731 nr_mapping_del(m);
732 }
733}
734
735int nr_map_empty(const struct nr_map *map)
736{
737 return llist_empty(&map->mappings);
738}
739
740struct nr_mapping *nr_map_get(const struct nr_map *map,
741 void *origin, nr_t nr_orig)
742{
743 struct nr_mapping *mapping;
744 llist_for_each_entry(mapping, &map->mappings, entry) {
745 if ((mapping->origin == origin)
746 && (mapping->orig == nr_orig))
747 return mapping;
748 }
749 /* Not found. */
750 return NULL;
751}
752
753struct nr_mapping *nr_map_get_inv(const struct nr_map *map, nr_t nr_repl)
754{
755 struct nr_mapping *mapping;
756 llist_for_each_entry(mapping, &map->mappings, entry) {
757 if (mapping->repl == nr_repl) {
758 return mapping;
759 }
760 }
761 /* Not found. */
762 return NULL;
763}
764
765void nr_mapping_del(struct nr_mapping *mapping)
766{
767 OSMO_ASSERT(mapping);
768 llist_del(&mapping->entry);
769 INIT_LLIST_HEAD(&mapping->entry);
770 expiring_item_del(&mapping->expiry_entry);
771}
772
773
774/* gtphub */
775
776const char* const gtphub_plane_idx_names[GTPH_PLANE_N] = {
777 "CTRL",
778 "USER",
779};
780
781const uint16_t gtphub_plane_idx_default_port[GTPH_PLANE_N] = {
782 2123,
783 2152,
784};
785
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100786const char* const gtphub_side_idx_names[GTPH_SIDE_N] = {
787 "SGSN",
788 "GGSN",
789};
790
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200791time_t gtphub_now(void)
792{
793 struct timespec now_tp;
Pau Espin Pedrol36abead2018-08-17 13:27:20 +0200794 OSMO_ASSERT(osmo_clock_gettime(CLOCK_MONOTONIC, &now_tp) >= 0);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200795 return now_tp.tv_sec;
796}
797
798/* Remove a gtphub_peer from its list and free it. */
799static void gtphub_peer_del(struct gtphub_peer *peer)
800{
Neels Hofmeyr1ed9a862015-11-20 00:04:41 +0100801 OSMO_ASSERT(llist_empty(&peer->addresses));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200802 nr_map_clear(&peer->seq_map);
803 llist_del(&peer->entry);
804 talloc_free(peer);
805}
806
807static void gtphub_peer_addr_del(struct gtphub_peer_addr *pa)
808{
809 OSMO_ASSERT(llist_empty(&pa->ports));
810 llist_del(&pa->entry);
811 talloc_free(pa);
812}
813
814static void gtphub_peer_port_del(struct gtphub_peer_port *pp)
815{
816 OSMO_ASSERT(pp->ref_count == 0);
817 llist_del(&pp->entry);
Neels Hofmeyre38fb662015-12-06 16:44:14 +0100818 rate_ctr_group_free(pp->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200819 talloc_free(pp);
820}
821
822/* From the information in the gtp_packet_desc, return the address of a GGSN.
823 * Return -1 on error. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100824static int gtphub_resolve_ggsn(struct gtphub *hub,
825 struct gtp_packet_desc *p,
826 struct gtphub_peer_port **pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200827
828/* See gtphub_ext.c (wrapped by unit test) */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100829struct gtphub_peer_port *gtphub_resolve_ggsn_addr(struct gtphub *hub,
830 const char *imsi_str,
831 const char *apn_ni_str);
832int gtphub_ares_init(struct gtphub *hub);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200833
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200834static void gtphub_zero(struct gtphub *hub)
835{
836 ZERO_STRUCT(hub);
Neels Hofmeyr16c3f572015-11-11 17:27:01 +0100837 INIT_LLIST_HEAD(&hub->ggsn_lookups);
838 INIT_LLIST_HEAD(&hub->resolved_ggsns);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200839}
840
841static int gtphub_sock_init(struct osmo_fd *ofd,
842 const struct gtphub_cfg_addr *addr,
843 osmo_fd_cb_t cb,
844 void *data,
845 int ofd_id)
846{
847 if (!addr->addr_str) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100848 LOG(LOGL_FATAL, "Cannot bind: empty address.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200849 return -1;
850 }
851 if (!addr->port) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100852 LOG(LOGL_FATAL, "Cannot bind: zero port not permitted.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200853 return -1;
854 }
855
856 ofd->when = BSC_FD_READ;
857 ofd->cb = cb;
858 ofd->data = data;
859 ofd->priv_nr = ofd_id;
860
861 int rc;
862 rc = osmo_sock_init_ofd(ofd,
863 AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
864 addr->addr_str, addr->port,
865 OSMO_SOCK_F_BIND);
866 if (rc < 1) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100867 LOG(LOGL_FATAL, "Cannot bind to %s port %d (rc %d)\n",
868 addr->addr_str, (int)addr->port, rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200869 return -1;
870 }
871
872 return 0;
873}
874
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100875static void gtphub_sock_close(struct osmo_fd *ofd)
876{
877 close(ofd->fd);
878 osmo_fd_unregister(ofd);
879 ofd->cb = NULL;
880}
881
Maxbb6b00a2017-12-20 12:14:50 +0100882static void gtphub_bind_init(struct gtphub_bind *b, uint32_t idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200883{
884 ZERO_STRUCT(b);
885
886 INIT_LLIST_HEAD(&b->peers);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100887
888 b->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
Maxbb6b00a2017-12-20 12:14:50 +0100889 &gtphub_ctrg_io_desc, idx);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100890 OSMO_ASSERT(b->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200891}
892
893static int gtphub_bind_start(struct gtphub_bind *b,
894 const struct gtphub_cfg_bind *cfg,
895 osmo_fd_cb_t cb, void *cb_data,
896 unsigned int ofd_id)
897{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100898 LOG(LOGL_DEBUG, "Starting bind %s\n", b->label);
899 if (gsn_addr_from_str(&b->local_addr, cfg->bind.addr_str) != 0) {
900 LOG(LOGL_FATAL, "Invalid bind address for %s: %s\n",
901 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200902 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100903 }
904 if (gtphub_sock_init(&b->ofd, &cfg->bind, cb, cb_data, ofd_id) != 0) {
905 LOG(LOGL_FATAL, "Cannot bind for %s: %s\n",
906 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200907 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100908 }
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100909 b->local_port = cfg->bind.port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200910 return 0;
911}
912
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100913static void gtphub_bind_free(struct gtphub_bind *b)
914{
915 OSMO_ASSERT(llist_empty(&b->peers));
Maxbb6b00a2017-12-20 12:14:50 +0100916 if (b->counters_io)
917 rate_ctr_group_free(b->counters_io);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100918}
919
920static void gtphub_bind_stop(struct gtphub_bind *b) {
921 gtphub_sock_close(&b->ofd);
922 gtphub_bind_free(b);
923}
924
Neels Hofmeyr40348972015-11-17 12:22:28 +0100925/* Recv datagram from from->fd, write sender's address to *from_addr.
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200926 * Return the number of bytes read, zero on error. */
927static int gtphub_read(const struct osmo_fd *from,
928 struct osmo_sockaddr *from_addr,
929 uint8_t *buf, size_t buf_len)
930{
Neels Hofmeyr40348972015-11-17 12:22:28 +0100931 OSMO_ASSERT(from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200932
Neels Hofmeyr40348972015-11-17 12:22:28 +0100933 /* recvfrom requires the available length set in *from_addr_len. */
934 from_addr->l = sizeof(from_addr->a);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200935 errno = 0;
936 ssize_t received = recvfrom(from->fd, buf, buf_len, 0,
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100937 (struct sockaddr*)&from_addr->a,
938 &from_addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200939 /* TODO use recvmsg and get a MSG_TRUNC flag to make sure the message
940 * is not truncated. Then maybe reduce buf's size. */
941
942 if (received <= 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100943 LOG((errno == EAGAIN? LOGL_DEBUG : LOGL_ERROR),
944 "error: %s\n", strerror(errno));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200945 return 0;
946 }
947
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100948 LOG(LOGL_DEBUG, "Received %d bytes from %s: %s%s\n",
Neels Hofmeyr40348972015-11-17 12:22:28 +0100949 (int)received, osmo_sockaddr_to_str(from_addr),
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100950 osmo_hexdump(buf, received > 1000? 1000 : received),
951 received > 1000 ? "..." : "");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200952
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200953 return received;
954}
955
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100956static inline void gtphub_port_ref_count_inc(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200957{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100958 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200959 OSMO_ASSERT(pp->ref_count < UINT_MAX);
960 pp->ref_count++;
961}
962
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100963static inline void gtphub_port_ref_count_dec(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200964{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100965 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200966 OSMO_ASSERT(pp->ref_count > 0);
967 pp->ref_count--;
968}
969
Holger Hans Peter Freytherfec29ab2016-01-22 23:36:22 +0100970static inline void set_seq(struct gtp_packet_desc *p, uint16_t seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200971{
972 OSMO_ASSERT(p->version == 1);
973 p->data->gtp1l.h.seq = hton16(seq);
974 p->seq = seq;
975}
976
Holger Hans Peter Freytherfec29ab2016-01-22 23:36:22 +0100977static inline void set_tei(struct gtp_packet_desc *p, uint32_t tei)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200978{
979 OSMO_ASSERT(p->version == 1);
980 p->data->gtp1l.h.tei = hton32(tei);
981 p->header_tei = tei;
982}
983
984static void gtphub_mapping_del_cb(struct expiring_item *expi);
985
986static struct nr_mapping *gtphub_mapping_new()
987{
988 struct nr_mapping *nrm;
989 nrm = talloc_zero(osmo_gtphub_ctx, struct nr_mapping);
990 OSMO_ASSERT(nrm);
991
992 nr_mapping_init(nrm);
993 nrm->expiry_entry.del_cb = gtphub_mapping_del_cb;
994 return nrm;
995}
996
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100997
998#define APPEND(args...) \
999 l = snprintf(pos, left, args); \
1000 pos += l; \
1001 left -= l
1002
1003static const char *gtphub_tunnel_side_str(struct gtphub_tunnel *tun,
1004 int side_idx)
1005{
1006 static char buf[256];
1007 char *pos = buf;
1008 int left = sizeof(buf);
1009 int l;
1010
1011 struct gtphub_tunnel_endpoint *c, *u;
1012 c = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1013 u = &tun->endpoint[side_idx][GTPH_PLANE_USER];
1014
1015 /* print both only if they differ. */
1016 if (!c->peer) {
1017 APPEND("(uninitialized)");
1018 } else {
1019 APPEND("%s", gsn_addr_to_str(&c->peer->peer_addr->addr));
1020 }
1021
1022 if (!u->peer) {
1023 if (c->peer) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001024 APPEND("/(uninitialized)");
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001025 }
1026 } else if ((!c->peer)
1027 || (!gsn_addr_same(&u->peer->peer_addr->addr,
1028 &c->peer->peer_addr->addr))) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001029 APPEND("/%s", gsn_addr_to_str(&u->peer->peer_addr->addr));
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001030 }
1031
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001032 APPEND(" (TEI C=%x U=%x)",
1033 c->tei_orig,
1034 u->tei_orig);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001035 return buf;
1036}
1037
1038const char *gtphub_tunnel_str(struct gtphub_tunnel *tun)
1039{
1040 static char buf[512];
1041 char *pos = buf;
1042 int left = sizeof(buf);
1043 int l;
1044
Neels Hofmeyrea619f12016-12-16 13:09:00 +01001045 if (!tun)
1046 return "null-tunnel";
1047
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001048 APPEND("TEI=%x: ", tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001049 APPEND("%s", gtphub_tunnel_side_str(tun, GTPH_SIDE_SGSN));
1050 APPEND(" <-> %s", gtphub_tunnel_side_str(tun, GTPH_SIDE_GGSN));
1051
1052 return buf;
1053}
1054
1055#undef APPEND
1056
1057void gtphub_tunnel_endpoint_set_peer(struct gtphub_tunnel_endpoint *te,
1058 struct gtphub_peer_port *pp)
1059{
1060 if (te->peer)
1061 gtphub_port_ref_count_dec(te->peer);
1062 te->peer = pp;
1063 if (te->peer)
1064 gtphub_port_ref_count_inc(te->peer);
1065}
1066
1067int gtphub_tunnel_complete(struct gtphub_tunnel *tun)
1068{
1069 if (!tun)
1070 return 0;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001071 if (!tun->tei_repl)
1072 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001073 int side_idx;
1074 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001075 for_each_side_and_plane(side_idx, plane_idx) {
1076 struct gtphub_tunnel_endpoint *te =
1077 &tun->endpoint[side_idx][plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001078 if (!(te->peer && te->tei_orig))
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001079 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001080 }
1081 return 1;
1082}
1083
1084static void gtphub_tunnel_del_cb(struct expiring_item *expi)
1085{
1086 struct gtphub_tunnel *tun = container_of(expi,
1087 struct gtphub_tunnel,
1088 expiry_entry);
1089 LOG(LOGL_DEBUG, "expired: %s\n", gtphub_tunnel_str(tun));
1090
1091 llist_del(&tun->entry);
1092 INIT_LLIST_HEAD(&tun->entry); /* mark unused */
1093
1094 expi->del_cb = 0; /* avoid recursion loops */
1095 expiring_item_del(&tun->expiry_entry); /* usually already done, but make sure. */
1096
1097 int side_idx;
1098 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001099 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001100 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1101
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001102 /* clear ref count */
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001103 gtphub_tunnel_endpoint_set_peer(te, NULL);
1104
1105 rate_ctr_group_free(te->counters_io);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001106 }
1107
1108 talloc_free(tun);
1109}
1110
Maxbb6b00a2017-12-20 12:14:50 +01001111#define CTR_IDX(s, p, a, b) (a + s + (p + b) * 2)
1112
1113/* rate counter index for tunnels: [3; 6] */
1114#define CTR_IDX_TUN(s, p) CTR_IDX(s, p, 1, 1)
1115
1116/* rate counter index for hubs: [7; 10] */
1117#define CTR_IDX_HUB(s, p) CTR_IDX(s, p, 3, 2)
1118
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001119static struct gtphub_tunnel *gtphub_tunnel_new()
1120{
1121 struct gtphub_tunnel *tun;
1122 tun = talloc_zero(osmo_gtphub_ctx, struct gtphub_tunnel);
1123 OSMO_ASSERT(tun);
1124
1125 INIT_LLIST_HEAD(&tun->entry);
1126 expiring_item_init(&tun->expiry_entry);
1127
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001128 int side_idx, plane_idx;
1129 for_each_side_and_plane(side_idx, plane_idx) {
1130 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1131 te->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
1132 &gtphub_ctrg_io_desc,
Maxbb6b00a2017-12-20 12:14:50 +01001133 CTR_IDX_TUN(side_idx, plane_idx));
1134 if (!te->counters_io)
1135 return NULL;
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001136 }
1137
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001138 tun->expiry_entry.del_cb = gtphub_tunnel_del_cb;
1139 return tun;
1140}
1141
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001142static const char *gtphub_peer_strb(struct gtphub_peer *peer, char *buf,
1143 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001144{
1145 if (llist_empty(&peer->addresses))
1146 return "(addressless)";
1147
1148 struct gtphub_peer_addr *a = llist_first(&peer->addresses,
1149 struct gtphub_peer_addr,
1150 entry);
1151 return gsn_addr_to_strb(&a->addr, buf, buflen);
1152}
1153
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001154static const char *gtphub_port_strb(struct gtphub_peer_port *port, char *buf,
1155 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001156{
1157 if (!port)
1158 return "(null port)";
1159
1160 snprintf(buf, buflen, "%s port %d",
1161 gsn_addr_to_str(&port->peer_addr->addr),
1162 (int)port->port);
1163 return buf;
1164}
1165
1166const char *gtphub_peer_str(struct gtphub_peer *peer)
1167{
1168 static char buf[256];
1169 return gtphub_peer_strb(peer, buf, sizeof(buf));
1170}
1171
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01001172const char *gtphub_port_str(struct gtphub_peer_port *port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001173{
1174 static char buf[256];
1175 return gtphub_port_strb(port, buf, sizeof(buf));
1176}
1177
1178static const char *gtphub_port_str2(struct gtphub_peer_port *port)
1179{
1180 static char buf[256];
1181 return gtphub_port_strb(port, buf, sizeof(buf));
1182}
1183
1184static void gtphub_mapping_del_cb(struct expiring_item *expi)
1185{
1186 expi->del_cb = 0; /* avoid recursion loops */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001187 expiring_item_del(expi); /* usually already done, but make sure. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001188
1189 struct nr_mapping *nrm = container_of(expi,
1190 struct nr_mapping,
1191 expiry_entry);
1192 llist_del(&nrm->entry);
1193 INIT_LLIST_HEAD(&nrm->entry); /* mark unused */
1194
1195 /* Just for log */
1196 struct gtphub_peer_port *from = nrm->origin;
1197 OSMO_ASSERT(from);
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001198 LOG(LOGL_DEBUG, "expired: %d: nr mapping from %s: %u->%u\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001199 (int)nrm->expiry_entry.expiry,
1200 gtphub_port_str(from),
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001201 (unsigned int)nrm->orig, (unsigned int)nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001202
1203 gtphub_port_ref_count_dec(from);
1204
1205 talloc_free(nrm);
1206}
1207
1208static struct nr_mapping *gtphub_mapping_have(struct nr_map *map,
1209 struct gtphub_peer_port *from,
1210 nr_t orig_nr,
1211 time_t now)
1212{
1213 struct nr_mapping *nrm;
1214
1215 nrm = nr_map_get(map, from, orig_nr);
1216
1217 if (!nrm) {
1218 nrm = gtphub_mapping_new();
1219 nrm->orig = orig_nr;
1220 nrm->origin = from;
1221 nr_map_add(map, nrm, now);
1222 gtphub_port_ref_count_inc(from);
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001223 LOG(LOGL_DEBUG, "peer %s: sequence map %d --> %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001224 gtphub_port_str(from),
1225 (int)(nrm->orig), (int)(nrm->repl));
1226 } else {
Neels Hofmeyr508514c2015-11-24 13:30:38 +01001227 nr_map_refresh(map, nrm, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001228 }
1229
1230 OSMO_ASSERT(nrm);
1231 return nrm;
1232}
1233
Neels Hofmeyr3317c842015-11-11 17:20:42 +01001234static void gtphub_map_seq(struct gtp_packet_desc *p,
1235 struct gtphub_peer_port *from_port,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001236 struct gtphub_peer_port *to_port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001237{
1238 /* Store a mapping in to_peer's map, so when we later receive a GTP
1239 * packet back from to_peer, the seq nr can be unmapped back to its
1240 * origin (from_peer here). */
1241 struct nr_mapping *nrm;
1242 nrm = gtphub_mapping_have(&to_port->peer_addr->peer->seq_map,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001243 from_port, p->seq, p->timestamp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001244
1245 /* Change the GTP packet to yield the new, mapped seq nr */
1246 set_seq(p, nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001247}
1248
1249static struct gtphub_peer_port *gtphub_unmap_seq(struct gtp_packet_desc *p,
1250 struct gtphub_peer_port *responding_port)
1251{
1252 OSMO_ASSERT(p->version == 1);
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001253 struct nr_mapping *nrm =
1254 nr_map_get_inv(&responding_port->peer_addr->peer->seq_map,
1255 p->seq);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001256 if (!nrm)
1257 return NULL;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001258 LOG(LOGL_DEBUG, "peer %p: sequence unmap %d <-- %d\n",
1259 nrm->origin, (int)(nrm->orig), (int)(nrm->repl));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001260 set_seq(p, nrm->orig);
1261 return nrm->origin;
1262}
1263
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001264static int gtphub_check_mapped_tei(struct gtphub_tunnel *new_tun,
1265 struct gtphub_tunnel *iterated_tun,
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001266 uint32_t *tei_min,
1267 uint32_t *tei_max)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001268{
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001269 if (!new_tun->tei_repl || !iterated_tun->tei_repl)
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001270 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001271
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001272 *tei_min = (*tei_min < iterated_tun->tei_repl)? *tei_min : iterated_tun->tei_repl;
1273 *tei_max = (*tei_max > iterated_tun->tei_repl)? *tei_max : iterated_tun->tei_repl;
1274
1275 if (new_tun->tei_repl != iterated_tun->tei_repl)
1276 return 1;
1277
1278 /* new_tun->tei_repl is already taken. Try to find one out of the known
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001279 * range. */
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001280 LOG(LOGL_DEBUG, "TEI replacement %d already taken.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001281
1282 if ((*tei_max) < 0xffffffff) {
1283 (*tei_max)++;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001284 new_tun->tei_repl = *tei_max;
1285 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001286 return 1;
1287 } else if ((*tei_min) > 1) {
1288 (*tei_min)--;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001289 new_tun->tei_repl = *tei_min;
1290 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001291 return 1;
1292 }
1293
1294 /* None seems to be available. */
1295 return 0;
1296}
1297
1298static int gtphub_check_reused_teis(struct gtphub *hub,
1299 struct gtphub_tunnel *new_tun)
1300{
1301 uint32_t tei_min = 0xffffffff;
1302 uint32_t tei_max = 0;
1303 int side_idx;
1304 int plane_idx;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001305 struct gtphub_tunnel_endpoint *te;
1306 struct gtphub_tunnel_endpoint *te2;
1307
1308 struct gtphub_tunnel *tun, *ntun;
1309
1310 llist_for_each_entry_safe(tun, ntun, &hub->tunnels, entry) {
1311 if (tun == new_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001312 continue;
1313
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001314 /* Check whether the GSN sent a TEI that it is reusing from a
1315 * previous tunnel. */
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001316 int tun_continue = 0;
1317 for_each_side(side_idx) {
1318 for_each_plane(plane_idx) {
1319 te = &tun->endpoint[side_idx][plane_idx];
1320 te2 = &new_tun->endpoint[side_idx][plane_idx];
Neels Hofmeyrf6e4d082015-12-06 19:03:35 +01001321 if ((te->tei_orig == 0)
1322 || (te->tei_orig != te2->tei_orig)
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001323 || (!te->peer)
1324 || (!te2->peer)
1325 || !gsn_addr_same(&te->peer->peer_addr->addr,
1326 &te2->peer->peer_addr->addr))
1327 continue;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001328
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001329 /* The peer is reusing a TEI that I believe to
1330 * be part of another tunnel. The other tunnel
1331 * must be stale, then. */
1332 LOG(LOGL_NOTICE,
1333 "Expiring tunnel due to reused TEI:"
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001334 " %s peer %s sent %s TEI %x,"
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001335 " previously used by tunnel %s...\n",
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001336 gtphub_side_idx_names[side_idx],
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001337 gtphub_port_str(te->peer),
1338 gtphub_plane_idx_names[plane_idx],
1339 te->tei_orig,
1340 gtphub_tunnel_str(tun));
1341 LOG(LOGL_NOTICE, "...while establishing tunnel %s\n",
1342 gtphub_tunnel_str(new_tun));
Neels Hofmeyr52c0bd32015-12-02 14:14:32 +01001343
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001344 expiring_item_del(&tun->expiry_entry);
1345 /* continue to find more matches. There shouldn't be
1346 * any, but let's make sure. However, tun is deleted,
1347 * so we need to skip to the next tunnel. */
1348 tun_continue = 1;
1349 break;
1350 }
1351 if (tun_continue)
1352 break;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001353 }
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001354 if (tun_continue)
1355 continue;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001356
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001357 /* Check whether the mapped TEI is already used by another
1358 * tunnel. */
1359 if (!gtphub_check_mapped_tei(new_tun, tun, &tei_min, &tei_max)) {
1360 LOG(LOGL_ERROR,
1361 "No mapped TEI is readily available."
1362 " Searching for holes between occupied"
1363 " TEIs not implemented.");
1364 return 0;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001365 }
1366
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001367 }
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001368
1369 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001370}
1371
1372static void gtphub_tunnel_refresh(struct gtphub *hub,
1373 struct gtphub_tunnel *tun,
1374 time_t now)
1375{
1376 expiry_add(&hub->expire_slowly,
1377 &tun->expiry_entry,
1378 now);
1379}
1380
1381static struct gtphub_tunnel_endpoint *gtphub_unmap_tei(struct gtphub *hub,
1382 struct gtp_packet_desc *p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001383 struct gtphub_peer_port *from,
1384 struct gtphub_tunnel **unmapped_from_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001385{
1386 OSMO_ASSERT(from);
1387 int other_side = other_side_idx(p->side_idx);
1388
1389 struct gtphub_tunnel *tun;
1390 llist_for_each_entry(tun, &hub->tunnels, entry) {
1391 struct gtphub_tunnel_endpoint *te_from =
1392 &tun->endpoint[p->side_idx][p->plane_idx];
1393 struct gtphub_tunnel_endpoint *te_to =
1394 &tun->endpoint[other_side][p->plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001395 if ((tun->tei_repl == p->header_tei_rx)
Neels Hofmeyrfc1be3a2015-12-02 00:31:31 +01001396 && te_from->peer
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001397 && gsn_addr_same(&te_from->peer->peer_addr->addr,
1398 &from->peer_addr->addr)) {
1399 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001400 if (unmapped_from_tun)
1401 *unmapped_from_tun = tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001402 return te_to;
1403 }
1404 }
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001405
1406 if (unmapped_from_tun)
1407 *unmapped_from_tun = NULL;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001408 return NULL;
1409}
1410
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001411static void gtphub_map_restart_counter(struct gtphub *hub,
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001412 struct gtp_packet_desc *p)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001413{
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001414 if (p->rc != GTP_RC_PDU_C)
1415 return;
1416
1417 int ie_idx;
1418 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1419 if (ie_idx < 0)
1420 return;
1421
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001422 /* Always send gtphub's own restart counter */
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001423 p->ie[ie_idx]->tv1.v = hton8(hub->restart_counter);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001424}
1425
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001426static int gtphub_unmap_header_tei(struct gtphub_peer_port **to_port_p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001427 struct gtphub_tunnel **unmapped_from_tun,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001428 struct gtphub *hub,
1429 struct gtp_packet_desc *p,
1430 struct gtphub_peer_port *from_port)
1431{
1432 OSMO_ASSERT(p->version == 1);
1433 *to_port_p = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001434 if (unmapped_from_tun)
1435 *unmapped_from_tun = NULL;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001436
1437 /* If the header's TEI is zero, no PDP context has been established
1438 * yet. If nonzero, a mapping should actually already exist for this
1439 * TEI, since it must have been announced in a PDP context creation. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001440 if (!p->header_tei_rx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001441 return 0;
1442
1443 /* to_peer has previously announced a TEI, which was stored and
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001444 * mapped in a tunnel struct. */
1445 struct gtphub_tunnel_endpoint *to;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001446 to = gtphub_unmap_tei(hub, p, from_port, unmapped_from_tun);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001447 if (!to) {
1448 LOG(LOGL_ERROR, "Received unknown TEI %" PRIx32 " from %s\n",
1449 p->header_tei_rx, gtphub_port_str(from_port));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001450 return -1;
1451 }
Neels Hofmeyr312bf6c2016-04-14 15:21:31 +02001452
1453 if (unmapped_from_tun) {
1454 OSMO_ASSERT(*unmapped_from_tun);
1455 LOG(LOGL_DEBUG, "Unmapped TEI coming from: %s\n",
1456 gtphub_tunnel_str(*unmapped_from_tun));
1457 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001458
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001459 uint32_t unmapped_tei = to->tei_orig;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001460 set_tei(p, unmapped_tei);
1461
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001462 /* May be NULL for an invalidated tunnel. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001463 *to_port_p = to->peer;
1464
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001465 return 0;
1466}
1467
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001468static int gtphub_handle_create_pdp_ctx(struct gtphub *hub,
1469 struct gtp_packet_desc *p,
1470 struct gtphub_peer_port *from_ctrl,
1471 struct gtphub_peer_port *to_ctrl)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001472{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001473 int plane_idx;
1474
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001475 osmo_static_assert((GTPH_PLANE_CTRL == 0) && (GTPH_PLANE_USER == 1),
1476 plane_nrs_match_GSN_addr_IE_indices);
1477
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001478 struct gtphub_tunnel *tun = p->tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001479
1480 if (p->type == GTP_CREATE_PDP_REQ) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001481 if (p->side_idx != GTPH_SIDE_SGSN) {
1482 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001483 " Request from the GGSN side: %s",
1484 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001485 return -1;
1486 }
1487
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001488 if (tun) {
1489 LOG(LOGL_ERROR, "Not implemented: Received"
1490 " Create PDP Context Request for an already"
1491 " established tunnel:"
1492 " from %s, tunnel %s\n",
1493 gtphub_port_str(from_ctrl),
1494 gtphub_tunnel_str(p->tun));
1495 return -1;
1496 }
1497
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001498 /* A new tunnel. */
Maxbb6b00a2017-12-20 12:14:50 +01001499 tun = gtphub_tunnel_new();
1500 if (!tun) {
1501 LOG(LOGL_ERROR, "Failed to allocate new tunnel %s <-> %s\n",
1502 gtphub_port_str(from_ctrl), gtphub_port_str(to_ctrl));
1503 return -1;
1504 }
1505 p->tun = tun;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001506
1507 /* Create TEI mapping */
1508 tun->tei_repl = nr_pool_next(&hub->tei_pool);
1509
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001510 llist_add(&tun->entry, &hub->tunnels);
1511 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001512 /* The endpoint peers on this side (SGSN) will be set from IEs
1513 * below. Also set the GGSN Ctrl endpoint, for logging. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001514 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001515 to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001516 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001517 if (p->side_idx != GTPH_SIDE_GGSN) {
1518 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001519 " Response from the SGSN side: %s",
1520 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001521 return -1;
1522 }
1523
Neels Hofmeyr8c5b0732015-12-03 13:45:15 +01001524 /* The tunnel should already have been resolved from the header
1525 * TEI and be available in tun (== p->tun). Just fill in the
1526 * GSN Addresses below.*/
1527 OSMO_ASSERT(tun);
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001528 OSMO_ASSERT(tun->tei_repl == p->header_tei_rx);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001529 OSMO_ASSERT(to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001530 }
1531
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001532 uint8_t ie_type[] = { GTPIE_TEI_C, GTPIE_TEI_DI };
1533 int ie_mandatory = (p->type == GTP_CREATE_PDP_REQ);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001534 unsigned int side_idx = p->side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001535
Maxe9bcbe12017-12-20 17:01:05 +01001536 for_each_plane(plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01001537 int rc;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001538 struct gsn_addr use_addr;
1539 uint16_t use_port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001540 uint32_t tei_from_ie;
1541 int ie_idx;
1542
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001543 /* Fetch GSN Address and TEI from IEs. As ensured by above
1544 * static asserts, plane_idx corresponds to the GSN Address IE
1545 * index (the first one = 0 = ctrl, second one = 1 = user). */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001546 rc = gsn_addr_get(&use_addr, p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001547 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001548 LOG(LOGL_ERROR, "Cannot read %s GSN Address IE\n",
1549 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001550 return -1;
1551 }
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001552 LOG(LOGL_DEBUG, "Read %s GSN addr %s (%d)\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001553 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001554 gsn_addr_to_str(&use_addr),
1555 use_addr.len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001556
1557 ie_idx = gtpie_getie(p->ie, ie_type[plane_idx], 0);
1558 if (ie_idx < 0) {
1559 if (ie_mandatory) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001560 LOG(LOGL_ERROR,
1561 "Create PDP Context message invalid:"
1562 " missing IE %d\n",
1563 (int)ie_type[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001564 return -1;
1565 }
1566 tei_from_ie = 0;
1567 }
1568 else
1569 tei_from_ie = ntoh32(p->ie[ie_idx]->tv4.v);
1570
1571 /* Make sure an entry for this peer address with default port
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01001572 * exists.
1573 *
1574 * Exception: if sgsn_use_sender is set, instead use the
1575 * sender's address and port for Ctrl -- the User port is not
1576 * known until the first User packet arrives.
1577 *
1578 * Note: doing this here is just an optimization, because
1579 * gtphub_handle_buf() has code to replace the tunnel
1580 * endpoints' addresses with the sender (needed for User
1581 * plane). We could just ignore sgsn_use_sender here. But if we
1582 * set up a default port here and replace it in
1583 * gtphub_handle_buf(), we'd be creating a peer port just to
1584 * expire it right away. */
1585 if (hub->sgsn_use_sender && (side_idx == GTPH_SIDE_SGSN)) {
Max99f99532017-12-20 17:02:15 +01001586 int rc = gsn_addr_from_sockaddr(&use_addr, &use_port, &from_ctrl->sa);
1587 if (rc < 0)
1588 LOG(LOGL_ERROR, "%s(): failed to obtain GSN address\n", __func__);
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01001589 } else {
1590 use_port = gtphub_plane_idx_default_port[plane_idx];
1591
1592 }
1593
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001594 struct gtphub_peer_port *peer_from_ie;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001595 peer_from_ie = gtphub_port_have(hub,
1596 &hub->to_gsns[side_idx][plane_idx],
1597 &use_addr, use_port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001598
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001599 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][plane_idx],
1600 peer_from_ie);
1601
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001602 if (!tei_from_ie &&
1603 !tun->endpoint[side_idx][plane_idx].tei_orig) {
1604 LOG(LOGL_ERROR,
Neels Hofmeyr328d2f72015-12-06 19:13:21 +01001605 "Create PDP Context message omits %s TEI, but"
1606 " no TEI has been announced for this tunnel: %s\n",
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001607 gtphub_plane_idx_names[plane_idx],
1608 gtphub_tunnel_str(tun));
1609 return -1;
1610 }
1611
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001612 if (tei_from_ie) {
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001613 /* Replace TEI in GTP packet IE */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001614 tun->endpoint[side_idx][plane_idx].tei_orig = tei_from_ie;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001615 p->ie[ie_idx]->tv4.v = hton32(tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001616
Neels Hofmeyrcd865d62015-11-30 12:58:48 +01001617 if (!gtphub_check_reused_teis(hub, tun)) {
1618 /* It's highly unlikely that all TEIs are
1619 * taken. But the code looking for an unused
1620 * TEI is, at the time of writing this comment,
1621 * not able to find gaps in the TEI space. To
1622 * explicitly alert the user of this problem,
1623 * rather abort than carry on. */
1624 LOG(LOGL_FATAL, "TEI range exhausted. Cannot create TEI mapping, aborting.\n");
1625 abort();
1626 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001627 }
1628
1629 /* Replace the GSN address to reflect gtphub. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001630 rc = gsn_addr_put(&hub->to_gsns[other_side_idx(side_idx)][plane_idx].local_addr,
1631 p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001632 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001633 LOG(LOGL_ERROR, "Cannot write %s GSN Address IE\n",
1634 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001635 return -1;
1636 }
1637 }
1638
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001639 if (p->type == GTP_CREATE_PDP_REQ) {
1640 LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
1641 gtphub_tunnel_str(tun));
Neels Hofmeyr005f1752015-11-30 12:19:11 +01001642 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001643 LOG(LOGL_DEBUG, "New tunnel: %s\n",
1644 gtphub_tunnel_str(tun));
1645 }
1646
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001647 return 0;
1648}
1649
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001650static void pending_delete_del_cb(struct expiring_item *expi)
1651{
1652 struct pending_delete *pd;
1653 pd = container_of(expi, struct pending_delete, expiry_entry);
1654
1655 llist_del(&pd->entry);
1656 INIT_LLIST_HEAD(&pd->entry);
1657
1658 pd->expiry_entry.del_cb = 0;
1659 expiring_item_del(&pd->expiry_entry);
1660
1661 talloc_free(pd);
1662}
1663
1664static struct pending_delete *pending_delete_new(void)
1665{
1666 struct pending_delete *pd = talloc_zero(osmo_gtphub_ctx, struct pending_delete);
1667 INIT_LLIST_HEAD(&pd->entry);
1668 expiring_item_init(&pd->expiry_entry);
1669 pd->expiry_entry.del_cb = pending_delete_del_cb;
1670 return pd;
1671}
1672
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001673static int gtphub_handle_delete_pdp_ctx(struct gtphub *hub,
1674 struct gtp_packet_desc *p,
1675 struct gtphub_peer_port *from_ctrl,
1676 struct gtphub_peer_port *to_ctrl)
1677{
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001678 struct gtphub_tunnel *known_tun = p->tun;
1679
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001680 if (p->type == GTP_DELETE_PDP_REQ) {
1681 if (!known_tun) {
1682 LOG(LOGL_ERROR, "Cannot find tunnel for Delete PDP Context Request.\n");
1683 return -1;
1684 }
1685
1686 /* Store the Delete Request until a successful Response is seen. */
1687 uint8_t teardown_ind;
1688 uint8_t nsapi;
1689
1690 if (gtpie_gettv1(p->ie, GTPIE_TEARDOWN, 0, &teardown_ind) != 0) {
1691 LOG(LOGL_ERROR, "Missing Teardown Ind IE in Delete PDP Context Request.\n");
1692 return -1;
1693 }
1694
1695 if (gtpie_gettv1(p->ie, GTPIE_NSAPI, 0, &nsapi) != 0) {
1696 LOG(LOGL_ERROR, "Missing NSAPI IE in Delete PDP Context Request.\n");
1697 return -1;
1698 }
1699
1700 struct pending_delete *pd = NULL;
1701
1702 struct pending_delete *pdi = NULL;
1703 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1704 if ((pdi->tun == known_tun)
1705 && (pdi->teardown_ind == teardown_ind)
1706 && (pdi->nsapi == nsapi)) {
1707 pd = pdi;
1708 break;
1709 }
1710 }
1711
1712 if (!pd) {
1713 pd = pending_delete_new();
1714 pd->tun = known_tun;
1715 pd->teardown_ind = teardown_ind;
1716 pd->nsapi = nsapi;
1717
1718 LOG(LOGL_DEBUG, "Tunnel delete pending: %s\n",
1719 gtphub_tunnel_str(known_tun));
1720 llist_add(&pd->entry, &hub->pending_deletes);
1721 }
1722
1723 /* Add or refresh timeout. */
1724 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1725
1726 /* If a pending_delete should expire before the response to
1727 * indicate success comes in, the responding peer will have the
1728 * tunnel deactivated, while the requesting peer gets no reply
1729 * and keeps the tunnel. The hope is that the requesting peer
1730 * will try again and get a useful response. */
1731 } else if (p->type == GTP_DELETE_PDP_RSP) {
1732 /* Find the Delete Request for this Response. */
1733 struct pending_delete *pd = NULL;
1734
1735 struct pending_delete *pdi;
1736 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1737 if (known_tun == pdi->tun) {
1738 pd = pdi;
1739 break;
1740 }
1741 }
1742
1743 if (!pd) {
1744 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1745 " Cannot find matching request.");
1746 /* If we delete the tunnel now, anyone can send a
1747 * Delete response to kill tunnels at will. */
1748 return -1;
1749 }
1750
1751 /* TODO handle teardown_ind and nsapi */
1752
1753 expiring_item_del(&pd->expiry_entry);
1754
1755 uint8_t cause;
1756 if (gtpie_gettv1(p->ie, GTPIE_CAUSE, 0, &cause) != 0) {
1757 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1758 " Missing Cause IE.");
1759 /* If we delete the tunnel now, at least one of the
1760 * peers may still think it is active. */
1761 return -1;
1762 }
1763
1764 if (cause != GTPCAUSE_ACC_REQ) {
1765 LOG(LOGL_NOTICE,
1766 "Delete PDP Context Response indicates failure;"
1767 "for %s\n",
1768 gtphub_tunnel_str(known_tun));
1769 return -1;
1770 }
1771
1772 LOG(LOGL_DEBUG, "Delete PDP Context: removing tunnel %s\n",
1773 gtphub_tunnel_str(known_tun));
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001774 p->tun = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001775 expiring_item_del(&known_tun->expiry_entry);
1776 }
1777
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001778 return 0;
1779}
1780
1781static int gtphub_handle_update_pdp_ctx(struct gtphub *hub,
1782 struct gtp_packet_desc *p,
1783 struct gtphub_peer_port *from_ctrl,
1784 struct gtphub_peer_port *to_ctrl)
1785{
1786 /* TODO */
1787 return 0;
1788}
1789
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001790/* Read GSN address IEs from p, and make sure these peer addresses exist in
1791 * bind[plane_idx] with default ports, in their respective planes (both Ctrl
1792 * and User). Map TEIs announced in IEs, and write mapped TEIs in-place into
1793 * the packet p. */
1794static int gtphub_handle_pdp_ctx(struct gtphub *hub,
1795 struct gtp_packet_desc *p,
1796 struct gtphub_peer_port *from_ctrl,
1797 struct gtphub_peer_port *to_ctrl)
1798{
1799 OSMO_ASSERT(p->plane_idx == GTPH_PLANE_CTRL);
1800
1801 switch (p->type) {
1802 case GTP_CREATE_PDP_REQ:
1803 case GTP_CREATE_PDP_RSP:
1804 return gtphub_handle_create_pdp_ctx(hub, p,
1805 from_ctrl, to_ctrl);
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001806
1807 case GTP_DELETE_PDP_REQ:
1808 case GTP_DELETE_PDP_RSP:
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001809 return gtphub_handle_delete_pdp_ctx(hub, p,
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001810 from_ctrl, to_ctrl);
1811
1812 case GTP_UPDATE_PDP_REQ:
1813 case GTP_UPDATE_PDP_RSP:
1814 return gtphub_handle_update_pdp_ctx(hub, p,
1815 from_ctrl, to_ctrl);
1816
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001817 default:
1818 /* Nothing to do for this message type. */
1819 return 0;
1820 }
1821
1822}
1823
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001824static int gtphub_send_del_pdp_ctx(struct gtphub *hub,
1825 struct gtphub_tunnel *tun,
1826 int to_side)
1827{
1828 static uint8_t del_ctx_msg[16] = {
1829 0x32, /* GTP v1 flags */
1830 GTP_DELETE_PDP_REQ,
1831 0x00, 0x08, /* Length in network byte order */
1832 0x00, 0x00, 0x00, 0x00, /* TEI to be replaced */
1833 0, 0, /* Seq, to be replaced */
1834 0, 0, /* no extensions */
1835 0x13, 0xff, /* 19: Teardown ind = 1 */
1836 0x14, 0 /* 20: NSAPI = 0 */
1837 };
1838
1839 uint32_t *tei = (uint32_t*)&del_ctx_msg[4];
1840 uint16_t *seq = (uint16_t*)&del_ctx_msg[8];
1841
1842 struct gtphub_tunnel_endpoint *te =
1843 &tun->endpoint[to_side][GTPH_PLANE_CTRL];
1844
1845 if (! te->peer)
1846 return 0;
1847
1848 *tei = hton32(te->tei_orig);
1849 *seq = hton16(nr_pool_next(&te->peer->peer_addr->peer->seq_pool));
1850
1851 struct gtphub_bind *to_bind = &hub->to_gsns[to_side][GTPH_PLANE_CTRL];
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01001852 int rc = gtphub_write(&to_bind->ofd, &te->peer->sa,
1853 del_ctx_msg, sizeof(del_ctx_msg));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001854 if (rc != 0) {
1855 LOG(LOGL_ERROR,
1856 "Failed to send out-of-band Delete PDP Context Request to %s\n",
1857 gtphub_port_str(te->peer));
1858 }
1859 return rc;
1860}
1861
1862/* Tell all peers on the other end of tunnels that PDP contexts are void. */
1863static void gtphub_restarted(struct gtphub *hub,
1864 struct gtp_packet_desc *p,
1865 struct gtphub_peer_port *pp)
1866{
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001867 LOG(LOGL_NOTICE, "Peer has restarted: %s\n",
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001868 gtphub_port_str(pp));
1869
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001870 int deleted_count = 0;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001871 struct gtphub_tunnel *tun;
1872 llist_for_each_entry(tun, &hub->tunnels, entry) {
1873 int side_idx;
1874 for_each_side(side_idx) {
Neels Hofmeyrc6d51f52015-12-02 15:44:34 +01001875 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1876 struct gtphub_tunnel_endpoint *te2 = &tun->endpoint[other_side_idx(side_idx)][GTPH_PLANE_CTRL];
1877 if ((!te->peer)
1878 || (!te2->tei_orig)
1879 || (pp->peer_addr->peer != te->peer->peer_addr->peer))
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001880 continue;
1881
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001882 LOG(LOGL_DEBUG, "Deleting tunnel due to peer restart: %s\n",
1883 gtphub_tunnel_str(tun));
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001884 deleted_count ++;
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001885
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001886 /* Send a Delete PDP Context Request to the
1887 * peer on the other side, remember the pending
1888 * delete and wait for the response to delete
1889 * the tunnel. Clear this side of the tunnel to
1890 * make sure it isn't used.
1891 *
1892 * Should the delete message send fail, or if no
1893 * response is received, this tunnel will expire. If
1894 * its TEIs come up in a new PDP Context Request, it
1895 * will be removed. If messages for this tunnel should
1896 * come in (from the not restarted side), they will be
1897 * dropped because the tunnel is rendered unusable. */
1898 gtphub_send_del_pdp_ctx(hub, tun, other_side_idx(side_idx));
1899
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001900 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_CTRL],
1901 NULL);
1902 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_USER],
1903 NULL);
1904 }
1905 }
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001906
1907 if (deleted_count)
1908 LOG(LOGL_NOTICE, "Deleting %d tunnels due to restart of: %s\n",
1909 deleted_count,
1910 gtphub_port_str(pp));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001911}
1912
1913static int get_restart_count(struct gtp_packet_desc *p)
1914{
1915 int ie_idx;
1916 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1917 if (ie_idx < 0)
1918 return -1;
1919 return ntoh8(p->ie[ie_idx]->tv1.v);
1920}
1921
1922static void gtphub_check_restart_counter(struct gtphub *hub,
1923 struct gtp_packet_desc *p,
1924 struct gtphub_peer_port *from)
1925{
1926 /* If the peer is sending a Recovery IE (7.7.11) with a restart counter
1927 * that doesn't match the peer's previously sent restart counter, clear
1928 * that peer and cancel PDP contexts. */
1929
1930 int restart = get_restart_count(p);
1931
1932 if ((restart < 0) || (restart > 255))
1933 return;
1934
1935 if ((from->last_restart_count >= 0) && (from->last_restart_count <= 255)) {
1936 if (from->last_restart_count != restart) {
1937 gtphub_restarted(hub, p, from);
1938 }
1939 }
1940
1941 from->last_restart_count = restart;
1942}
1943
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001944static int from_sgsns_read_cb(struct osmo_fd *from_sgsns_ofd, unsigned int what)
1945{
1946 unsigned int plane_idx = from_sgsns_ofd->priv_nr;
1947 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001948 LOG(LOGL_DEBUG, "=== reading from SGSN (%s)\n",
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001949 gtphub_plane_idx_names[plane_idx]);
1950
1951 if (!(what & BSC_FD_READ))
1952 return 0;
1953
1954 struct gtphub *hub = from_sgsns_ofd->data;
1955
1956 static uint8_t buf[4096];
1957 struct osmo_sockaddr from_addr;
1958 struct osmo_sockaddr to_addr;
1959 struct osmo_fd *to_ofd;
1960 int len;
1961 uint8_t *reply_buf;
1962
1963 len = gtphub_read(from_sgsns_ofd, &from_addr, buf, sizeof(buf));
1964 if (len < 1)
1965 return 0;
1966
1967 len = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, &from_addr,
1968 buf, len, gtphub_now(),
1969 &reply_buf, &to_ofd, &to_addr);
1970 if (len < 1)
1971 return 0;
1972
1973 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
1974}
1975
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001976static int from_ggsns_read_cb(struct osmo_fd *from_ggsns_ofd, unsigned int what)
1977{
1978 unsigned int plane_idx = from_ggsns_ofd->priv_nr;
1979 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001980 LOG(LOGL_DEBUG, "=== reading from GGSN (%s)\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001981 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001982 if (!(what & BSC_FD_READ))
1983 return 0;
1984
1985 struct gtphub *hub = from_ggsns_ofd->data;
1986
1987 static uint8_t buf[4096];
1988 struct osmo_sockaddr from_addr;
1989 struct osmo_sockaddr to_addr;
1990 struct osmo_fd *to_ofd;
Neels Hofmeyr16c3f572015-11-11 17:27:01 +01001991 int len;
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001992 uint8_t *reply_buf;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001993
1994 len = gtphub_read(from_ggsns_ofd, &from_addr, buf, sizeof(buf));
1995 if (len < 1)
1996 return 0;
1997
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001998 len = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, &from_addr,
1999 buf, len, gtphub_now(),
2000 &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002001 if (len < 1)
2002 return 0;
2003
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002004 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002005}
2006
2007static int gtphub_unmap(struct gtphub *hub,
2008 struct gtp_packet_desc *p,
2009 struct gtphub_peer_port *from,
2010 struct gtphub_peer_port *to_proxy,
2011 struct gtphub_peer_port **final_unmapped,
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002012 struct gtphub_peer_port **unmapped_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002013{
2014 /* Always (try to) unmap sequence and TEI numbers, which need to be
2015 * replaced in the packet. Either way, give precedence to the proxy, if
2016 * configured. */
2017
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002018 if (unmapped_from_seq)
2019 *unmapped_from_seq = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002020 if (final_unmapped)
2021 *final_unmapped = NULL;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002022 p->tun = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002023
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002024 struct gtphub_peer_port *from_seq = NULL;
2025 struct gtphub_peer_port *from_tei = NULL;
2026 struct gtphub_peer_port *unmapped = NULL;
2027
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002028 from_seq = gtphub_unmap_seq(p, from);
2029
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002030 if (gtphub_unmap_header_tei(&from_tei, &p->tun, hub, p, from) < 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002031 return -1;
2032
2033 struct gtphub_peer *from_peer = from->peer_addr->peer;
2034 if (from_seq && from_tei && (from_seq != from_tei)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002035 LOG(LOGL_DEBUG,
2036 "Seq unmap and TEI unmap yield two different peers."
2037 " Using seq unmap."
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01002038 " (from %s %s: seq %d yields %s, tei %u yields %s)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002039 gtphub_plane_idx_names[p->plane_idx],
2040 gtphub_peer_str(from_peer),
2041 (int)p->seq,
2042 gtphub_port_str(from_seq),
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002043 (unsigned int)p->header_tei_rx,
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002044 gtphub_port_str2(from_tei)
2045 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002046 }
2047 unmapped = (from_seq? from_seq : from_tei);
2048
2049 if (unmapped && to_proxy && (unmapped != to_proxy)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002050 LOG(LOGL_NOTICE,
2051 "Unmap yields a different peer than the configured proxy."
2052 " Using proxy."
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002053 " unmapped: %s proxy: %s\n",
2054 gtphub_port_str(unmapped),
2055 gtphub_port_str2(to_proxy)
2056 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002057 }
2058 unmapped = (to_proxy? to_proxy : unmapped);
2059
2060 if (!unmapped) {
2061 /* Return no error, but returned pointers are all NULL. */
2062 return 0;
2063 }
2064
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002065 if (unmapped_from_seq)
2066 *unmapped_from_seq = from_seq;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002067 if (final_unmapped)
2068 *final_unmapped = unmapped;
2069 return 0;
2070}
2071
2072static int gsn_addr_to_sockaddr(struct gsn_addr *src,
2073 uint16_t port,
2074 struct osmo_sockaddr *dst)
2075{
2076 return osmo_sockaddr_init_udp(dst, gsn_addr_to_str(src), port);
2077}
2078
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002079/* If p is an Echo request, replace p's data with the matching response and
2080 * return 1. If p is no Echo request, return 0, or -1 if an invalid packet is
2081 * detected. */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002082static int gtphub_handle_echo_req(struct gtphub *hub, struct gtp_packet_desc *p,
2083 uint8_t **reply_buf)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002084{
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002085 if (p->type != GTP_ECHO_REQ)
2086 return 0;
2087
2088 static uint8_t echo_response_data[14] = {
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002089 0x32, /* GTP v1 flags */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002090 GTP_ECHO_RSP,
2091 0x00, 14 - 8, /* Length in network byte order */
2092 0x00, 0x00, 0x00, 0x00, /* Zero TEI */
2093 0, 0, /* Seq, to be replaced */
2094 0, 0, /* no extensions */
2095 0x0e, /* Recovery IE */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002096 0 /* Restart counter, to be replaced */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002097 };
2098 uint16_t *seq = (uint16_t*)&echo_response_data[8];
2099 uint8_t *recovery = &echo_response_data[13];
2100
2101 *seq = hton16(p->seq);
2102 *recovery = hub->restart_counter;
2103
2104 *reply_buf = echo_response_data;
2105
2106 return sizeof(echo_response_data);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002107}
2108
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002109struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2110 const struct osmo_sockaddr *addr);
2111
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002112/* Parse buffer as GTP packet, replace elements in-place and return the ofd and
2113 * address to forward to. Return a pointer to the osmo_fd, but copy the
2114 * sockaddr to *to_addr. The reason for this is that the sockaddr may expire at
2115 * any moment, while the osmo_fd is guaranteed to persist. Return the number of
2116 * bytes to forward, 0 or less on failure. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002117int gtphub_handle_buf(struct gtphub *hub,
2118 unsigned int side_idx,
2119 unsigned int plane_idx,
2120 const struct osmo_sockaddr *from_addr,
2121 uint8_t *buf,
2122 size_t received,
2123 time_t now,
2124 uint8_t **reply_buf,
2125 struct osmo_fd **to_ofd,
2126 struct osmo_sockaddr *to_addr)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002127{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002128 struct gtphub_bind *from_bind = &hub->to_gsns[side_idx][plane_idx];
2129 struct gtphub_bind *to_bind = &hub->to_gsns[other_side_idx(side_idx)][plane_idx];
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002130
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002131 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_IN],
2132 received);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002133
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01002134 struct gtp_packet_desc p;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002135 gtp_decode(buf, received, side_idx, plane_idx, &p, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002136
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002137 LOG(LOGL_DEBUG, "%s rx %s from %s %s%s\n",
2138 (side_idx == GTPH_SIDE_GGSN)? "<-" : "->",
2139 gtphub_plane_idx_names[plane_idx],
2140 gtphub_side_idx_names[side_idx],
2141 osmo_sockaddr_to_str(from_addr),
2142 gtp_type_str(p.type));
2143
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002144 if (p.rc <= 0) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002145 LOG(LOGL_ERROR, "INVALID: dropping GTP packet%s from %s %s %s\n",
2146 gtp_type_str(p.type),
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002147 gtphub_side_idx_names[side_idx],
2148 gtphub_plane_idx_names[plane_idx],
2149 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002150 return -1;
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002151 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002152
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002153 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2154
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002155 int reply_len;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002156 reply_len = gtphub_handle_echo_req(hub, &p, reply_buf);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002157 if (reply_len > 0) {
2158 /* It was an echo. Nothing left to do. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002159 osmo_sockaddr_copy(to_addr, from_addr);
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002160 *to_ofd = &from_bind->ofd;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002161
2162 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2163 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2164 reply_len);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002165 LOG(LOGL_DEBUG, "%s Echo response to %s: %d bytes to %s\n",
2166 (side_idx == GTPH_SIDE_GGSN)? "-->" : "<--",
2167 gtphub_side_idx_names[side_idx],
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002168 (int)reply_len, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002169 return reply_len;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002170 }
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002171 if (reply_len < 0)
2172 return -1;
2173
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002174 *to_ofd = &to_bind->ofd;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002175
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002176 /* If a proxy is configured, check that it's indeed that proxy talking
2177 * to us. A proxy is a forced 1:1 connection, e.g. to another gtphub,
2178 * so no-one else is allowed to talk to us from that side. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002179 struct gtphub_peer_port *from_peer = hub->proxy[side_idx][plane_idx];
2180 if (from_peer) {
2181 if (osmo_sockaddr_cmp(&from_peer->sa, from_addr) != 0) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002182 LOG(LOGL_ERROR,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002183 "Rejecting: %s proxy configured, but GTP packet"
2184 " received on %s bind is from another sender:"
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002185 " proxy: %s sender: %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002186 gtphub_side_idx_names[side_idx],
2187 gtphub_side_idx_names[side_idx],
2188 gtphub_port_str(from_peer),
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002189 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002190 return -1;
2191 }
2192 }
2193
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002194 if (!from_peer) {
2195 /* Find or create a peer with a matching address. The sender's
2196 * port may in fact differ. */
2197 from_peer = gtphub_known_addr_have_port(from_bind, from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002198 }
2199
2200 /* If any PDP context has been created, we already have an entry for
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002201 * this GSN. If we don't have an entry, a GGSN has nothing to tell us
2202 * about, while an SGSN may initiate a PDP context. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002203 if (!from_peer) {
2204 if (side_idx == GTPH_SIDE_GGSN) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002205 LOG(LOGL_ERROR, "Dropping packet%s: unknown GGSN peer: %s\n",
2206 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002207 osmo_sockaddr_to_str(from_addr));
2208 return -1;
2209 } else {
2210 /* SGSN */
2211 /* A new peer. If this is on the Ctrl plane, an SGSN
2212 * may make first contact without being known yet, so
2213 * create the peer struct for the current sender. */
2214 if (plane_idx != GTPH_PLANE_CTRL) {
2215 LOG(LOGL_ERROR,
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002216 "Dropping packet%s: User plane peer was not"
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002217 "announced by PDP Context: %s\n",
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002218 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002219 osmo_sockaddr_to_str(from_addr));
2220 return -1;
2221 }
2222
2223 struct gsn_addr from_gsna;
2224 uint16_t from_port;
2225 if (gsn_addr_from_sockaddr(&from_gsna, &from_port, from_addr) != 0)
2226 return -1;
2227
2228 from_peer = gtphub_port_have(hub, from_bind, &from_gsna, from_port);
2229 }
2230 }
2231
2232 if (!from_peer) {
2233 /* This could theoretically happen for invalid address data or
2234 * somesuch. */
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002235 LOG(LOGL_ERROR, "Dropping packet%s: invalid %s peer: %s\n",
2236 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002237 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002238 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002239 return -1;
2240 }
2241
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002242 rate_ctr_add(&from_peer->counters_io->ctr[GTPH_CTR_BYTES_IN],
2243 received);
2244 rate_ctr_inc(&from_peer->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2245
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002246 LOG(LOGL_DEBUG, "from %s peer: %s\n", gtphub_side_idx_names[side_idx],
2247 gtphub_port_str(from_peer));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002248
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002249 gtphub_check_restart_counter(hub, &p, from_peer);
2250 gtphub_map_restart_counter(hub, &p);
2251
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002252 struct gtphub_peer_port *to_peer_from_seq;
2253 struct gtphub_peer_port *to_peer;
2254 if (gtphub_unmap(hub, &p, from_peer,
2255 hub->proxy[other_side_idx(side_idx)][plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002256 &to_peer, &to_peer_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002257 != 0) {
2258 return -1;
2259 }
2260
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002261 if (p.tun) {
2262 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[p.side_idx][p.plane_idx];
2263 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_IN],
2264 received);
2265 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2266 }
2267
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002268 if ((!to_peer) && (side_idx == GTPH_SIDE_SGSN)) {
2269 if (gtphub_resolve_ggsn(hub, &p, &to_peer) < 0)
2270 return -1;
2271 }
2272
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002273 if (!to_peer && p.tun && p.type == GTP_DELETE_PDP_RSP) {
2274 /* It's a delete confirmation for a tunnel that is partly
2275 * invalid, probably marked unsuable due to a restarted peer.
2276 * Remove the tunnel and be happy without forwarding. */
2277 expiring_item_del(&p.tun->expiry_entry);
2278 p.tun = NULL;
2279 return 0;
2280 }
2281
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002282 if (!to_peer) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002283 LOG(LOGL_ERROR, "No %s to send to. Dropping packet%s"
2284 " (type=%" PRIu8 ", header-TEI=%" PRIx32 ", seq=%" PRIx16 ").\n",
2285 gtphub_side_idx_names[other_side_idx(side_idx)],
2286 gtp_type_str(p.type),
2287 p.type, p.header_tei_rx, p.seq
2288 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002289 return -1;
2290 }
2291
2292 if (plane_idx == GTPH_PLANE_CTRL) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002293 /* This may be a Create PDP Context response. If it is, there
2294 * are other addresses in the GTP message to set up apart from
2295 * the sender. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002296 if (gtphub_handle_pdp_ctx(hub, &p, from_peer, to_peer)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002297 != 0)
2298 return -1;
2299 }
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002300
2301 /* Either to_peer was resolved from an existing tunnel,
2302 * or a PDP Ctx and thus a tunnel has just been created,
2303 * or the tunnel has been deleted due to this message. */
2304 OSMO_ASSERT(p.tun || (p.type == GTP_DELETE_PDP_RSP));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002305
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002306 /* If the GGSN is replying to an SGSN request, the sequence nr has
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002307 * already been unmapped above (to_peer_from_seq != NULL), and we need not
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002308 * create a new mapping. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002309 if (!to_peer_from_seq)
2310 gtphub_map_seq(&p, from_peer, to_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002311
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002312 osmo_sockaddr_copy(to_addr, &to_peer->sa);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002313
2314 *reply_buf = (uint8_t*)p.data;
Neels Hofmeyre921e322015-11-11 00:45:50 +01002315
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002316 if (received) {
2317 rate_ctr_inc(&to_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2318 rate_ctr_add(&to_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2319 received);
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002320
2321 rate_ctr_inc(&to_peer->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2322 rate_ctr_add(&to_peer->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2323 received);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002324 }
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002325
2326 if (p.tun) {
2327 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[other_side_idx(p.side_idx)][p.plane_idx];
2328 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2329 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2330 received);
2331 }
2332
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002333 LOG(LOGL_DEBUG, "%s Forward to %s:"
2334 " header-TEI %" PRIx32", seq %" PRIx16", %d bytes to %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002335 (side_idx == GTPH_SIDE_SGSN)? "-->" : "<--",
2336 gtphub_side_idx_names[other_side_idx(side_idx)],
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002337 p.header_tei, p.seq,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002338 (int)received, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002339 return received;
2340}
2341
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002342static void resolved_gssn_del_cb(struct expiring_item *expi)
2343{
2344 struct gtphub_resolved_ggsn *ggsn;
2345 ggsn = container_of(expi, struct gtphub_resolved_ggsn, expiry_entry);
2346
2347 gtphub_port_ref_count_dec(ggsn->peer);
2348 llist_del(&ggsn->entry);
2349
2350 ggsn->expiry_entry.del_cb = 0;
2351 expiring_item_del(&ggsn->expiry_entry);
2352
2353 talloc_free(ggsn);
2354}
2355
2356void gtphub_resolved_ggsn(struct gtphub *hub, const char *apn_oi_str,
2357 struct gsn_addr *resolved_addr,
2358 time_t now)
2359{
2360 struct gtphub_peer_port *pp;
2361 struct gtphub_resolved_ggsn *ggsn;
2362
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002363 LOG(LOGL_DEBUG, "Resolved GGSN callback: %s %s\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002364 apn_oi_str, osmo_hexdump((unsigned char*)resolved_addr,
2365 sizeof(*resolved_addr)));
Neels Hofmeyr3317c842015-11-11 17:20:42 +01002366
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002367 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002368 resolved_addr, 2123);
2369 if (!pp) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002370 LOG(LOGL_ERROR, "Internal: Cannot create/find peer '%s'\n",
2371 gsn_addr_to_str(resolved_addr));
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002372 return;
2373 }
2374
2375 ggsn = talloc_zero(osmo_gtphub_ctx, struct gtphub_resolved_ggsn);
2376 OSMO_ASSERT(ggsn);
Neels Hofmeyra4370dd2015-11-24 12:46:11 +01002377 INIT_LLIST_HEAD(&ggsn->entry);
2378 expiring_item_init(&ggsn->expiry_entry);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002379
2380 ggsn->peer = pp;
2381 gtphub_port_ref_count_inc(pp);
2382
Neels Hofmeyr93bafb62017-01-13 03:12:08 +01002383 osmo_strlcpy(ggsn->apn_oi_str, apn_oi_str, sizeof(ggsn->apn_oi_str));
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002384
2385 ggsn->expiry_entry.del_cb = resolved_gssn_del_cb;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002386 expiry_add(&hub->expire_slowly, &ggsn->expiry_entry, now);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002387
2388 llist_add(&ggsn->entry, &hub->resolved_ggsns);
2389}
2390
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002391static int gtphub_gc_peer_port(struct gtphub_peer_port *pp)
2392{
2393 return pp->ref_count == 0;
2394}
2395
2396static int gtphub_gc_peer_addr(struct gtphub_peer_addr *pa)
2397{
2398 struct gtphub_peer_port *pp, *npp;
2399 llist_for_each_entry_safe(pp, npp, &pa->ports, entry) {
2400 if (gtphub_gc_peer_port(pp)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002401 LOG(LOGL_DEBUG, "expired: peer %s\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002402 gtphub_port_str(pp));
2403 gtphub_peer_port_del(pp);
2404 }
2405 }
2406 return llist_empty(&pa->ports);
2407}
2408
2409static int gtphub_gc_peer(struct gtphub_peer *p)
2410{
2411 struct gtphub_peer_addr *pa, *npa;
2412 llist_for_each_entry_safe(pa, npa, &p->addresses, entry) {
2413 if (gtphub_gc_peer_addr(pa)) {
2414 gtphub_peer_addr_del(pa);
2415 }
2416 }
2417
2418 /* Note that there's a ref_count in each gtphub_peer_port instance
2419 * listed within p->addresses, referenced by TEI mappings from
2420 * hub->tei_map. As long as those don't expire, this peer will stay. */
2421
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002422 return llist_empty(&p->addresses)
2423 && nr_map_empty(&p->seq_map);
2424}
2425
2426static void gtphub_gc_bind(struct gtphub_bind *b)
2427{
2428 struct gtphub_peer *p, *n;
2429 llist_for_each_entry_safe(p, n, &b->peers, entry) {
2430 if (gtphub_gc_peer(p)) {
2431 gtphub_peer_del(p);
2432 }
2433 }
2434}
2435
2436void gtphub_gc(struct gtphub *hub, time_t now)
2437{
2438 int expired;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002439 expired = expiry_tick(&hub->expire_quickly, now);
2440 expired += expiry_tick(&hub->expire_slowly, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002441
2442 /* ... */
2443
2444 if (expired) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002445 int s, p;
2446 for_each_side_and_plane(s, p) {
2447 gtphub_gc_bind(&hub->to_gsns[s][p]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002448 }
2449 }
2450}
2451
2452static void gtphub_gc_cb(void *data)
2453{
2454 struct gtphub *hub = data;
2455 gtphub_gc(hub, gtphub_now());
2456 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2457}
2458
2459static void gtphub_gc_start(struct gtphub *hub)
2460{
Pablo Neira Ayuso51215762017-05-08 20:57:52 +02002461 osmo_timer_setup(&hub->gc_timer, gtphub_gc_cb, hub);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002462 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2463}
2464
2465/* called by unit tests */
2466void gtphub_init(struct gtphub *hub)
2467{
2468 gtphub_zero(hub);
2469
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002470 INIT_LLIST_HEAD(&hub->tunnels);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01002471 INIT_LLIST_HEAD(&hub->pending_deletes);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002472
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002473 expiry_init(&hub->expire_quickly, GTPH_EXPIRE_QUICKLY_SECS);
2474 expiry_init(&hub->expire_slowly, GTPH_EXPIRE_SLOWLY_MINUTES * 60);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002475
Neels Hofmeyrd121ea62015-11-27 01:20:53 +01002476 nr_pool_init(&hub->tei_pool, 1, 0xffffffff);
2477
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002478 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002479 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002480 for_each_side_and_plane(side_idx, plane_idx) {
Maxbb6b00a2017-12-20 12:14:50 +01002481 gtphub_bind_init(&hub->to_gsns[side_idx][plane_idx], CTR_IDX_HUB(side_idx, plane_idx));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002482 }
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002483
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002484 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].label = "SGSN Ctrl";
2485 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].label = "GGSN Ctrl";
2486 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].label = "SGSN User";
2487 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].label = "GGSN User";
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002488}
2489
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002490/* For the test suite, this is kept separate from gtphub_stop(), which also
2491 * closes sockets. The test suite avoids using sockets and would cause
2492 * segfaults when trying to close uninitialized ofds. */
2493void gtphub_free(struct gtphub *hub)
2494{
2495 /* By expiring all mappings, a garbage collection should free
2496 * everything else. A gtphub_bind_free() will assert that everything is
2497 * indeed empty. */
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002498 expiry_clear(&hub->expire_quickly);
2499 expiry_clear(&hub->expire_slowly);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002500
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002501 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002502 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002503 for_each_side_and_plane(side_idx, plane_idx) {
2504 gtphub_gc_bind(&hub->to_gsns[side_idx][plane_idx]);
2505 gtphub_bind_free(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002506 }
2507}
2508
2509void gtphub_stop(struct gtphub *hub)
2510{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002511 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002512 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002513 for_each_side_and_plane(side_idx, plane_idx) {
2514 gtphub_bind_stop(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002515 }
2516 gtphub_free(hub);
2517}
2518
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002519static int gtphub_make_proxy(struct gtphub *hub,
2520 struct gtphub_peer_port **pp,
2521 struct gtphub_bind *bind,
2522 const struct gtphub_cfg_addr *addr)
2523{
2524 if (!addr->addr_str)
2525 return 0;
2526
2527 struct gsn_addr gsna;
2528 if (gsn_addr_from_str(&gsna, addr->addr_str) != 0)
2529 return -1;
2530
2531 *pp = gtphub_port_have(hub, bind, &gsna, addr->port);
2532
2533 /* This is *the* proxy. Make sure it is never expired. */
2534 gtphub_port_ref_count_inc(*pp);
2535 return 0;
2536}
2537
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002538int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg,
2539 uint8_t restart_counter)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002540{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002541 gtphub_init(hub);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002542
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002543 hub->restart_counter = restart_counter;
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01002544 hub->sgsn_use_sender = cfg->sgsn_use_sender? 1 : 0;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002545
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002546 /* If a Ctrl plane proxy is configured, ares will never be used. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002547 if (!cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002548 if (gtphub_ares_init(hub) != 0) {
2549 LOG(LOGL_FATAL, "Failed to initialize ares\n");
2550 return -1;
2551 }
2552 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002553
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002554 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002555 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002556 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01002557 int rc;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002558 rc = gtphub_bind_start(&hub->to_gsns[side_idx][plane_idx],
2559 &cfg->to_gsns[side_idx][plane_idx],
2560 (side_idx == GTPH_SIDE_SGSN)
2561 ? from_sgsns_read_cb
2562 : from_ggsns_read_cb,
2563 hub, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002564 if (rc) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002565 LOG(LOGL_FATAL, "Failed to bind for %ss (%s)\n",
2566 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002567 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002568 return rc;
2569 }
2570 }
2571
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002572 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002573 if (gtphub_make_proxy(hub,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002574 &hub->proxy[side_idx][plane_idx],
2575 &hub->to_gsns[side_idx][plane_idx],
2576 &cfg->proxy[side_idx][plane_idx])
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002577 != 0) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002578 LOG(LOGL_FATAL, "Cannot configure %s proxy"
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002579 " %s port %d.\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002580 gtphub_side_idx_names[side_idx],
2581 cfg->proxy[side_idx][plane_idx].addr_str,
2582 (int)cfg->proxy[side_idx][plane_idx].port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002583 return -1;
2584 }
2585 }
2586
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002587 for_each_side_and_plane(side_idx, plane_idx) {
2588 if (hub->proxy[side_idx][plane_idx])
2589 LOG(LOGL_NOTICE, "Using %s %s proxy %s\n",
2590 gtphub_side_idx_names[side_idx],
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002591 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002592 gtphub_port_str(hub->proxy[side_idx][plane_idx]));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002593 }
2594
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002595 if (hub->sgsn_use_sender)
Neels Hofmeyr9d8f5062015-12-03 14:52:33 +01002596 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 +01002597
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002598 gtphub_gc_start(hub);
2599 return 0;
2600}
2601
2602static struct gtphub_peer_addr *gtphub_peer_find_addr(const struct gtphub_peer *peer,
2603 const struct gsn_addr *addr)
2604{
2605 struct gtphub_peer_addr *a;
2606 llist_for_each_entry(a, &peer->addresses, entry) {
2607 if (gsn_addr_same(&a->addr, addr))
2608 return a;
2609 }
2610 return NULL;
2611}
2612
2613static struct gtphub_peer_port *gtphub_addr_find_port(const struct gtphub_peer_addr *a,
2614 uint16_t port)
2615{
2616 OSMO_ASSERT(port);
2617 struct gtphub_peer_port *pp;
2618 llist_for_each_entry(pp, &a->ports, entry) {
2619 if (pp->port == port)
2620 return pp;
2621 }
2622 return NULL;
2623}
2624
2625static struct gtphub_peer_addr *gtphub_addr_find(const struct gtphub_bind *bind,
2626 const struct gsn_addr *addr)
2627{
2628 struct gtphub_peer *peer;
2629 llist_for_each_entry(peer, &bind->peers, entry) {
2630 struct gtphub_peer_addr *a = gtphub_peer_find_addr(peer, addr);
2631 if (a)
2632 return a;
2633 }
2634 return NULL;
2635}
2636
2637static struct gtphub_peer_port *gtphub_port_find(const struct gtphub_bind *bind,
2638 const struct gsn_addr *addr,
2639 uint16_t port)
2640{
2641 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2642 if (!a)
2643 return NULL;
2644 return gtphub_addr_find_port(a, port);
2645}
2646
2647struct gtphub_peer_port *gtphub_port_find_sa(const struct gtphub_bind *bind,
2648 const struct osmo_sockaddr *addr)
2649{
2650 struct gsn_addr gsna;
2651 uint16_t port;
Maxb643f562018-01-30 10:09:00 +01002652 if (gsn_addr_from_sockaddr(&gsna, &port, addr) != 0)
2653 return NULL;
2654
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002655 return gtphub_port_find(bind, &gsna, port);
2656}
2657
2658static struct gtphub_peer *gtphub_peer_new(struct gtphub *hub,
2659 struct gtphub_bind *bind)
2660{
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002661 struct gtphub_peer *peer = talloc_zero(osmo_gtphub_ctx,
2662 struct gtphub_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002663 OSMO_ASSERT(peer);
2664
2665 INIT_LLIST_HEAD(&peer->addresses);
2666
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +01002667 nr_pool_init(&peer->seq_pool, 0, 0xffff);
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002668 nr_map_init(&peer->seq_map, &peer->seq_pool, &hub->expire_quickly);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002669
2670 /* TODO use something random to pick the initial sequence nr.
2671 0x6d31 produces the ASCII character sequence 'm1', currently used in
2672 gtphub_nc_test.sh. */
2673 peer->seq_pool.last_nr = 0x6d31 - 1;
2674
2675 llist_add(&peer->entry, &bind->peers);
2676 return peer;
2677}
2678
2679static struct gtphub_peer_addr *gtphub_peer_add_addr(struct gtphub_peer *peer,
2680 const struct gsn_addr *addr)
2681{
2682 struct gtphub_peer_addr *a;
2683 a = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_addr);
2684 OSMO_ASSERT(a);
2685 a->peer = peer;
2686 gsn_addr_copy(&a->addr, addr);
2687 INIT_LLIST_HEAD(&a->ports);
2688 llist_add(&a->entry, &peer->addresses);
2689
2690 return a;
2691}
2692
2693static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
2694 struct gtphub_bind *bind,
2695 const struct gsn_addr *addr)
2696{
2697 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2698 if (a)
2699 return a;
2700
2701 /* If we haven't found an address, that means we need to create an
2702 * entirely new peer for the new address. More addresses may be added
2703 * to this peer later, but not via this function. */
2704 struct gtphub_peer *peer = gtphub_peer_new(hub, bind);
Neels Hofmeyre921e322015-11-11 00:45:50 +01002705
2706 a = gtphub_peer_add_addr(peer, addr);
2707
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002708 LOG(LOGL_DEBUG, "New peer address: %s %s\n",
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002709 bind->label,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002710 gsn_addr_to_str(&a->addr));
2711
2712 return a;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002713}
2714
2715static struct gtphub_peer_port *gtphub_addr_add_port(struct gtphub_peer_addr *a,
2716 uint16_t port)
2717{
2718 struct gtphub_peer_port *pp;
2719
2720 pp = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_port);
2721 OSMO_ASSERT(pp);
2722 pp->peer_addr = a;
2723 pp->port = port;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01002724 pp->last_restart_count = -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002725
2726 if (gsn_addr_to_sockaddr(&a->addr, port, &pp->sa) != 0) {
2727 talloc_free(pp);
2728 return NULL;
2729 }
2730
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002731 pp->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
Maxbb6b00a2017-12-20 12:14:50 +01002732 &gtphub_ctrg_io_desc, port);
Harald Welted939ac02017-07-17 23:59:39 +02002733 if (!pp->counters_io) {
Maxbb6b00a2017-12-20 12:14:50 +01002734 LOG(LOGL_ERROR, "Failed to allocate rate counters for %s:%u\n", gsn_addr_to_str(&a->addr), port);
Harald Welted939ac02017-07-17 23:59:39 +02002735 talloc_free(pp);
2736 return NULL;
2737 }
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002738
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002739 llist_add(&pp->entry, &a->ports);
2740
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002741 LOG(LOGL_DEBUG, "New peer port: %s port %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002742 gsn_addr_to_str(&a->addr),
2743 (int)port);
2744
2745 return pp;
2746}
2747
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002748struct gtphub_peer_port *gtphub_port_have(struct gtphub *hub,
2749 struct gtphub_bind *bind,
2750 const struct gsn_addr *addr,
2751 uint16_t port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002752{
2753 struct gtphub_peer_addr *a = gtphub_addr_have(hub, bind, addr);
2754
2755 struct gtphub_peer_port *pp = gtphub_addr_find_port(a, port);
2756 if (pp)
2757 return pp;
2758
2759 return gtphub_addr_add_port(a, port);
2760}
2761
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002762/* Find a GGSN peer with a matching address. If the address is known but the
2763 * port not, create a new port for that peer address. */
2764struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2765 const struct osmo_sockaddr *addr)
2766{
2767 struct gtphub_peer_addr *pa;
2768 struct gtphub_peer_port *pp;
2769
2770 struct gsn_addr gsna;
2771 uint16_t port;
Max99f99532017-12-20 17:02:15 +01002772 int rc = gsn_addr_from_sockaddr(&gsna, &port, addr);
2773 if (rc < 0)
2774 LOG(LOGL_ERROR, "%s(): failed to obtain GSN address\n", __func__);
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002775
2776 pa = gtphub_addr_find(bind, &gsna);
2777 if (!pa)
2778 return NULL;
2779
2780 pp = gtphub_addr_find_port(pa, port);
2781
2782 if (!pp)
2783 pp = gtphub_addr_add_port(pa, port);
2784
2785 return pp;
2786}
2787
2788
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002789/* Return 0 if the message in p is not applicable for GGSN resolution, -1 if
2790 * resolution should be possible but failed, and 1 if resolution was
2791 * successful. *pp will be set to NULL if <1 is returned. */
2792static int gtphub_resolve_ggsn(struct gtphub *hub,
2793 struct gtp_packet_desc *p,
2794 struct gtphub_peer_port **pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002795{
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002796 *pp = NULL;
2797
2798 /* TODO determine from message type whether IEs should be present? */
2799
2800 int rc;
2801 const char *imsi_str;
2802 rc = get_ie_imsi_str(p->ie, 0, &imsi_str);
2803 if (rc < 1)
2804 return rc;
2805 OSMO_ASSERT(imsi_str);
2806
2807 const char *apn_str;
2808 rc = get_ie_apn_str(p->ie, &apn_str);
2809 if (rc < 1)
2810 return rc;
2811 OSMO_ASSERT(apn_str);
2812
2813 *pp = gtphub_resolve_ggsn_addr(hub, imsi_str, apn_str);
2814 return (*pp)? 1 : -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002815}
2816
2817
2818/* TODO move to osmocom/core/socket.c ? */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002819/* use this in osmo_sock_init() to remove dup. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002820/* Internal: call getaddrinfo for osmo_sockaddr_init(). The caller is required
2821 to call freeaddrinfo(*result), iff zero is returned. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002822static int _osmo_getaddrinfo(struct addrinfo **result,
2823 uint16_t family, uint16_t type, uint8_t proto,
2824 const char *host, uint16_t port)
2825{
2826 struct addrinfo hints;
2827 char portbuf[16];
2828
2829 sprintf(portbuf, "%u", port);
2830 memset(&hints, '\0', sizeof(struct addrinfo));
2831 hints.ai_family = family;
2832 if (type == SOCK_RAW) {
2833 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
2834 * SOCK_RAW and IPPROTO_GRE is used.
2835 */
2836 hints.ai_socktype = SOCK_DGRAM;
2837 hints.ai_protocol = IPPROTO_UDP;
2838 } else {
2839 hints.ai_socktype = type;
2840 hints.ai_protocol = proto;
2841 }
2842
2843 return getaddrinfo(host, portbuf, &hints, result);
2844}
2845
2846/* TODO move to osmocom/core/socket.c ? */
2847int osmo_sockaddr_init(struct osmo_sockaddr *addr,
2848 uint16_t family, uint16_t type, uint8_t proto,
2849 const char *host, uint16_t port)
2850{
2851 struct addrinfo *res;
2852 int rc;
2853 rc = _osmo_getaddrinfo(&res, family, type, proto, host, port);
2854
2855 if (rc != 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002856 LOG(LOGL_ERROR, "getaddrinfo returned error %d\n", (int)rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002857 return -EINVAL;
2858 }
2859
2860 OSMO_ASSERT(res->ai_addrlen <= sizeof(addr->a));
2861 memcpy(&addr->a, res->ai_addr, res->ai_addrlen);
2862 addr->l = res->ai_addrlen;
2863 freeaddrinfo(res);
2864
2865 return 0;
2866}
2867
2868int osmo_sockaddr_to_strs(char *addr_str, size_t addr_str_len,
2869 char *port_str, size_t port_str_len,
2870 const struct osmo_sockaddr *addr,
2871 int flags)
2872{
2873 int rc;
2874
2875 if ((addr->l < 1) || (addr->l > sizeof(addr->a))) {
2876 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address size: %d\n", addr->l);
2877 return -1;
2878 }
2879
2880 if (addr->l > sizeof(addr->a)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002881 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: too long: %d\n",
2882 addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002883 return -1;
2884 }
2885
2886 rc = getnameinfo((struct sockaddr*)&addr->a, addr->l,
2887 addr_str, addr_str_len,
2888 port_str, port_str_len,
2889 flags);
2890
2891 if (rc)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002892 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: %s: %s\n",
2893 gai_strerror(rc), osmo_hexdump((uint8_t*)&addr->a,
2894 addr->l));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002895
2896 return rc;
2897}
2898
2899const char *osmo_sockaddr_to_strb(const struct osmo_sockaddr *addr,
2900 char *buf, size_t buf_len)
2901{
2902 const int portbuf_len = 6;
2903 OSMO_ASSERT(buf_len > portbuf_len);
2904 char *portbuf = buf + buf_len - portbuf_len;
2905 buf_len -= portbuf_len;
2906 if (osmo_sockaddr_to_strs(buf, buf_len,
2907 portbuf, portbuf_len,
2908 addr,
2909 NI_NUMERICHOST | NI_NUMERICSERV))
2910 return NULL;
2911
2912 char *pos = buf + strnlen(buf, buf_len-1);
2913 size_t len = buf_len - (pos - buf);
2914
2915 snprintf(pos, len, " port %s", portbuf);
2916 buf[buf_len-1] = '\0';
2917
2918 return buf;
2919}
2920
2921const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *addr)
2922{
2923 static char buf[256];
2924 const char *result = osmo_sockaddr_to_strb(addr, buf, sizeof(buf));
2925 if (! result)
2926 return "(invalid)";
2927 return result;
2928}
2929
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002930int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
2931 const struct osmo_sockaddr *b)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002932{
2933 if (a == b)
2934 return 0;
2935 if (!a)
2936 return -1;
2937 if (!b)
2938 return 1;
2939 if (a->l != b->l) {
2940 /* Lengths are not the same, but determine the order. Will
2941 * anyone ever sort a list by osmo_sockaddr though...? */
2942 int cmp = memcmp(&a->a, &b->a, (a->l < b->l)? a->l : b->l);
2943 if (cmp == 0) {
2944 if (a->l < b->l)
2945 return -1;
2946 else
2947 return 1;
2948 }
2949 return cmp;
2950 }
2951 return memcmp(&a->a, &b->a, a->l);
2952}
2953
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002954void osmo_sockaddr_copy(struct osmo_sockaddr *dst,
2955 const struct osmo_sockaddr *src)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002956{
2957 OSMO_ASSERT(src->l <= sizeof(dst->a));
2958 memcpy(&dst->a, &src->a, src->l);
2959 dst->l = src->l;
2960}