blob: fcb071529c658891be06b90c458079d4a5853013 [file] [log] [blame]
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001/* GTP Hub Implementation */
2
3/* (C) 2015 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <string.h>
23#include <errno.h>
24#include <inttypes.h>
25#include <time.h>
26#include <limits.h>
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +010027#include <unistd.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020028#include <sys/socket.h>
29#include <netinet/in.h>
30#include <arpa/inet.h>
31
32#include <gtp.h>
33#include <gtpie.h>
34
35#include <openbsc/gtphub.h>
36#include <openbsc/debug.h>
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010037#include <openbsc/gprs_utils.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020038
39#include <osmocom/core/utils.h>
40#include <osmocom/core/logging.h>
41#include <osmocom/core/socket.h>
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +010042#include <osmocom/core/rate_ctr.h>
43#include <osmocom/core/stats.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020044
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010045
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020046static const int GTPH_GC_TICK_SECONDS = 1;
47
48void *osmo_gtphub_ctx;
49
Neels Hofmeyr063a8022015-11-16 14:35:13 +010050/* Convenience makro, note: only within this C file. */
51#define LOG(level, fmt, args...) \
52 LOGP(DGTPHUB, level, fmt, ##args)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020053
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010054#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
55 sizeof(*(struct_pointer)))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020056
57/* TODO move this to osmocom/core/select.h ? */
58typedef int (*osmo_fd_cb_t)(struct osmo_fd *fd, unsigned int what);
59
60/* TODO move this to osmocom/core/linuxlist.h ? */
61#define __llist_first(head) (((head)->next == (head)) ? NULL : (head)->next)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010062#define llist_first(head, type, entry) \
63 llist_entry(__llist_first(head), type, entry)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020064
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +010065#define __llist_last(head) (((head)->next == (head)) ? NULL : (head)->prev)
66#define llist_last(head, type, entry) \
67 llist_entry(__llist_last(head), type, entry)
68
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020069/* TODO move GTP header stuff to openggsn/gtp/ ? See gtp_decaps*() */
70
71enum gtp_rc {
72 GTP_RC_UNKNOWN = 0,
73 GTP_RC_TINY = 1, /* no IEs (like ping/pong) */
Neels Hofmeyre921e322015-11-11 00:45:50 +010074 GTP_RC_PDU_C = 2, /* a real packet with IEs */
75 GTP_RC_PDU_U = 3, /* a real packet with User data */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020076
77 GTP_RC_TOOSHORT = -1,
78 GTP_RC_UNSUPPORTED_VERSION = -2,
79 GTP_RC_INVALID_IE = -3,
80};
81
82struct gtp_packet_desc {
83 union gtp_packet *data;
84 int data_len;
85 int header_len;
86 int version;
87 uint8_t type;
88 uint16_t seq;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010089 uint32_t header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020090 uint32_t header_tei;
91 int rc; /* enum gtp_rc */
92 unsigned int plane_idx;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010093 unsigned int side_idx;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +010094 struct gtphub_tunnel *tun;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +010095 time_t timestamp;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020096 union gtpie_member *ie[GTPIE_SIZE];
97};
98
Neels Hofmeyr10fc0242015-12-01 00:23:45 +010099struct pending_delete {
100 struct llist_head entry;
101 struct expiring_item expiry_entry;
102
103 struct gtphub_tunnel *tun;
104 uint8_t teardown_ind;
105 uint8_t nsapi;
106};
107
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100108
109/* counters */
110
111enum gtphub_counters_io {
112 GTPH_CTR_PKTS_IN = 0,
113 GTPH_CTR_PKTS_OUT,
114 GTPH_CTR_BYTES_IN,
115 GTPH_CTR_BYTES_OUT
116};
117
118static const struct rate_ctr_desc gtphub_counters_io_desc[] = {
119 { "packets.in", "Packets ( In)" },
120 { "packets.out", "Packets (Out)" },
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100121 { "bytes.in", "Bytes ( In)" },
122 { "bytes.out", "Bytes (Out)" },
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100123};
124
125static const struct rate_ctr_group_desc gtphub_ctrg_io_desc = {
126 .group_name_prefix = "gtphub.bind",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100127 .group_description = "I/O Statistics",
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100128 .num_ctr = ARRAY_SIZE(gtphub_counters_io_desc),
129 .ctr_desc = gtphub_counters_io_desc,
130 .class_id = OSMO_STATS_CLASS_GLOBAL,
131};
132
133
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100134/* support */
135
136static const char *gtp_type_str(uint8_t type)
137{
138 switch (type) {
139 case 1:
140 return " (Echo Request)";
141 case 2:
142 return " (Echo Response)";
143 case 16:
144 return " (Create PDP Ctx Request)";
145 case 17:
146 return " (Create PDP Ctx Response)";
147 case 18:
148 return " (Update PDP Ctx Request)";
149 case 19:
150 return " (Update PDP Ctx Response)";
151 case 20:
152 return " (Delete PDP Ctx Request)";
153 case 21:
154 return " (Delete PDP Ctx Response)";
155 case 255:
156 return " (User Data)";
157 default:
158 return "";
159 }
160}
161
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200162void gsn_addr_copy(struct gsn_addr *gsna, const struct gsn_addr *src)
163{
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +0100164 *gsna = *src;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200165}
166
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200167int gsn_addr_from_sockaddr(struct gsn_addr *gsna, uint16_t *port,
168 const struct osmo_sockaddr *sa)
169{
170 char addr_str[256];
171 char port_str[6];
172
173 if (osmo_sockaddr_to_strs(addr_str, sizeof(addr_str),
174 port_str, sizeof(port_str),
175 sa, (NI_NUMERICHOST | NI_NUMERICSERV))
176 != 0) {
177 return -1;
178 }
179
180 if (port)
181 *port = atoi(port_str);
182
183 return gsn_addr_from_str(gsna, addr_str);
184}
185
186int gsn_addr_from_str(struct gsn_addr *gsna, const char *numeric_addr_str)
187{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100188 if ((!gsna) || (!numeric_addr_str))
189 return -1;
190
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200191 int af = AF_INET;
192 gsna->len = 4;
193 const char *pos = numeric_addr_str;
194 for (; *pos; pos++) {
195 if (*pos == ':') {
196 af = AF_INET6;
197 gsna->len = 16;
198 break;
199 }
200 }
201
202 int rc = inet_pton(af, numeric_addr_str, gsna->buf);
203 if (rc != 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100204 LOG(LOGL_ERROR, "Cannot resolve numeric address: '%s'\n",
205 numeric_addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200206 return -1;
207 }
208 return 0;
209}
210
211const char *gsn_addr_to_str(const struct gsn_addr *gsna)
212{
213 static char buf[INET6_ADDRSTRLEN + 1];
214 return gsn_addr_to_strb(gsna, buf, sizeof(buf));
215}
216
217const char *gsn_addr_to_strb(const struct gsn_addr *gsna,
218 char *strbuf,
219 int strbuf_len)
220{
221 int af;
222 switch (gsna->len) {
223 case 4:
224 af = AF_INET;
225 break;
226 case 16:
227 af = AF_INET6;
228 break;
229 default:
230 return NULL;
231 }
232
233 const char *r = inet_ntop(af, gsna->buf, strbuf, strbuf_len);
234 if (!r) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100235 LOG(LOGL_ERROR, "Cannot convert gsn_addr to string:"
236 " %s: len=%d, buf=%s\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100237 strerror(errno),
238 (int)gsna->len,
239 osmo_hexdump(gsna->buf, sizeof(gsna->buf)));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200240 }
241 return r;
242}
243
244int gsn_addr_same(const struct gsn_addr *a, const struct gsn_addr *b)
245{
246 if (a == b)
247 return 1;
248 if ((!a) || (!b))
249 return 0;
250 if (a->len != b->len)
251 return 0;
252 return (memcmp(a->buf, b->buf, a->len) == 0)? 1 : 0;
253}
254
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100255static int gsn_addr_get(struct gsn_addr *gsna, const struct gtp_packet_desc *p,
256 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200257{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100258 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200259 return -1;
260
261 unsigned int len;
262 /* gtpie.h fails to declare gtpie_gettlv()'s first arg as const. */
263 if (gtpie_gettlv((union gtpie_member**)p->ie, GTPIE_GSN_ADDR, idx,
264 &len, gsna->buf, sizeof(gsna->buf))
265 != 0)
266 return -1;
267 gsna->len = len;
268 return 0;
269}
270
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100271static int gsn_addr_put(const struct gsn_addr *gsna, struct gtp_packet_desc *p,
272 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200273{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100274 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200275 return -1;
276
277 int ie_idx;
278 ie_idx = gtpie_getie(p->ie, GTPIE_GSN_ADDR, idx);
279
280 if (ie_idx < 0)
281 return -1;
282
283 struct gtpie_tlv *ie = &p->ie[ie_idx]->tlv;
284 int ie_l = ntoh16(ie->l);
285 if (ie_l != gsna->len) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100286 LOG(LOGL_ERROR, "Not implemented:"
287 " replace an IE address of different size:"
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200288 " replace %d with %d\n", (int)ie_l, (int)gsna->len);
289 return -1;
290 }
291
292 memcpy(ie->v, gsna->buf, (int)ie_l);
293 return 0;
294}
295
296/* Validate GTP version 0 data; analogous to validate_gtp1_header(), see there.
297 */
298void validate_gtp0_header(struct gtp_packet_desc *p)
299{
300 const struct gtp0_header *pheader = &(p->data->gtp0.h);
301 p->rc = GTP_RC_UNKNOWN;
302 p->header_len = 0;
303
304 OSMO_ASSERT(p->data_len >= 1);
305 OSMO_ASSERT(p->version == 0);
306
307 if (p->data_len < GTP0_HEADER_SIZE) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100308 LOG(LOGL_ERROR, "GTP0 packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200309 p->rc = GTP_RC_TOOSHORT;
310 return;
311 }
312
313 p->type = ntoh8(pheader->type);
314 p->seq = ntoh16(pheader->seq);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100315 p->header_tei_rx = 0; /* TODO */
316 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200317
318 if (p->data_len == GTP0_HEADER_SIZE) {
319 p->rc = GTP_RC_TINY;
320 p->header_len = GTP0_HEADER_SIZE;
321 return;
322 }
323
324 /* Check packet length field versus length of packet */
325 if (p->data_len != (ntoh16(pheader->length) + GTP0_HEADER_SIZE)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100326 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
327 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100328 GTP0_HEADER_SIZE, (int)ntoh16(pheader->length),
329 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200330 p->rc = GTP_RC_TOOSHORT;
331 return;
332 }
333
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100334 LOG(LOGL_DEBUG, "GTP v0 TID = %" PRIu64 "\n", pheader->tid);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200335 p->header_len = GTP0_HEADER_SIZE;
Neels Hofmeyre921e322015-11-11 00:45:50 +0100336 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200337}
338
339/* Validate GTP version 1 data, and update p->rc with the result, as well as
340 * p->header_len in case of a valid header. */
341void validate_gtp1_header(struct gtp_packet_desc *p)
342{
343 const struct gtp1_header_long *pheader = &(p->data->gtp1l.h);
344 p->rc = GTP_RC_UNKNOWN;
345 p->header_len = 0;
346
347 OSMO_ASSERT(p->data_len >= 1);
348 OSMO_ASSERT(p->version == 1);
349
350 if ((p->data_len < GTP1_HEADER_SIZE_LONG)
351 && (p->data_len != GTP1_HEADER_SIZE_SHORT)){
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100352 LOG(LOGL_ERROR, "GTP packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200353 p->rc = GTP_RC_TOOSHORT;
354 return;
355 }
356
357 p->type = ntoh8(pheader->type);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100358 p->header_tei_rx = ntoh32(pheader->tei);
359 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200360 p->seq = ntoh16(pheader->seq);
361
Neels Hofmeyr28a70f22015-12-06 15:22:54 +0100362 LOG(LOGL_DEBUG, "| GTPv1\n");
363 LOG(LOGL_DEBUG, "| type = %" PRIu8 " 0x%02" PRIx8 "\n", p->type, p->type);
364 LOG(LOGL_DEBUG, "| length = %" PRIu16 " 0x%04" PRIx16 "\n", ntoh16(pheader->length), ntoh16(pheader->length));
365 LOG(LOGL_DEBUG, "| TEI = %" PRIu32 " 0x%08" PRIx32 "\n", p->header_tei_rx, p->header_tei_rx);
366 LOG(LOGL_DEBUG, "| seq = %" PRIu16 " 0x%04" PRIx16 "\n", p->seq, p->seq);
367 LOG(LOGL_DEBUG, "| npdu = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->npdu, pheader->npdu);
368 LOG(LOGL_DEBUG, "| next = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->next, pheader->next);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200369
370 if (p->data_len <= GTP1_HEADER_SIZE_LONG) {
371 p->rc = GTP_RC_TINY;
372 p->header_len = GTP1_HEADER_SIZE_SHORT;
373 return;
374 }
375
376 /* Check packet length field versus length of packet */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100377 int announced_len = ntoh16(pheader->length) + GTP1_HEADER_SIZE_SHORT;
378 if (p->data_len != announced_len) {
379 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
380 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100381 GTP1_HEADER_SIZE_SHORT, (int)ntoh16(pheader->length),
382 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200383 p->rc = GTP_RC_TOOSHORT;
384 return;
385 }
386
Neels Hofmeyre921e322015-11-11 00:45:50 +0100387 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200388 p->header_len = GTP1_HEADER_SIZE_LONG;
389}
390
391/* Examine whether p->data of size p->data_len has a valid GTP header. Set
392 * p->version, p->rc and p->header_len. On error, p->rc <= 0 (see enum
393 * gtp_rc). p->data must point at a buffer with p->data_len set. */
394void validate_gtp_header(struct gtp_packet_desc *p)
395{
396 p->rc = GTP_RC_UNKNOWN;
397
398 /* Need at least 1 byte in order to check version */
399 if (p->data_len < 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100400 LOG(LOGL_ERROR, "Discarding packet - too small: %d\n",
401 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200402 p->rc = GTP_RC_TOOSHORT;
403 return;
404 }
405
406 p->version = p->data->flags >> 5;
407
408 switch (p->version) {
409 case 0:
410 validate_gtp0_header(p);
411 break;
412 case 1:
413 validate_gtp1_header(p);
414 break;
415 default:
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100416 LOG(LOGL_ERROR, "Unsupported GTP version: %d\n", p->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200417 p->rc = GTP_RC_UNSUPPORTED_VERSION;
418 break;
419 }
420}
421
422
423/* Return the value of the i'th IMSI IEI by copying to *imsi.
424 * The first IEI is reached by passing i = 0.
425 * imsi must point at allocated space of (at least) 8 bytes.
426 * Return 1 on success, or 0 if not found. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100427static int get_ie_imsi(union gtpie_member *ie[], int i, uint8_t *imsi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200428{
429 return gtpie_gettv0(ie, GTPIE_IMSI, i, imsi, 8) == 0;
430}
431
432/* Analogous to get_ie_imsi(). nsapi must point at a single uint8_t. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100433static int get_ie_nsapi(union gtpie_member *ie[], int i, uint8_t *nsapi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200434{
435 return gtpie_gettv1(ie, GTPIE_NSAPI, i, nsapi) == 0;
436}
437
438static char imsi_digit_to_char(uint8_t nibble)
439{
440 nibble &= 0x0f;
441 if (nibble > 9)
442 return (nibble == 0x0f) ? '\0' : '?';
443 return '0' + nibble;
444}
445
446/* Return a human readable IMSI string, in a static buffer.
447 * imsi must point at 8 octets of IMSI IE encoded IMSI data. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100448static int imsi_to_str(uint8_t *imsi, const char **imsi_str)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200449{
450 static char str[17];
451 int i;
452
453 for (i = 0; i < 8; i++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +0100454 char c;
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100455 c = imsi_digit_to_char(imsi[i]);
456 if (c == '?')
457 return -1;
458 str[2*i] = c;
459
460 c = imsi_digit_to_char(imsi[i] >> 4);
461 if (c == '?')
462 return -1;
463 str[2*i + 1] = c;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200464 }
465 str[16] = '\0';
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100466 *imsi_str = str;
467 return 1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200468}
469
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100470/* Return 0 if not present, 1 if present and decoded successfully, -1 if
471 * present but cannot be decoded. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100472static int get_ie_imsi_str(union gtpie_member *ie[], int i,
473 const char **imsi_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100474{
475 uint8_t imsi_buf[8];
476 if (!get_ie_imsi(ie, i, imsi_buf))
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100477 return 0;
478 return imsi_to_str(imsi_buf, imsi_str);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100479}
480
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100481/* Return 0 if not present, 1 if present and decoded successfully, -1 if
482 * present but cannot be decoded. */
483static int get_ie_apn_str(union gtpie_member *ie[], const char **apn_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100484{
485 static char apn_buf[GSM_APN_LENGTH];
486 unsigned int len;
487 if (gtpie_gettlv(ie, GTPIE_APN, 0,
488 &len, apn_buf, sizeof(apn_buf)) != 0)
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100489 return 0;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100490
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100491 if (len < 2) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100492 LOG(LOGL_ERROR, "APN IE: invalid length: %d\n",
493 (int)len);
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100494 return -1;
495 }
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100496
497 if (len > (sizeof(apn_buf) - 1))
498 len = sizeof(apn_buf) - 1;
499 apn_buf[len] = '\0';
500
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100501 *apn_str = gprs_apn_to_str(apn_buf, (uint8_t*)apn_buf, len);
502 if (!(*apn_str)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100503 LOG(LOGL_ERROR, "APN IE: present but cannot be decoded: %s\n",
504 osmo_hexdump((uint8_t*)apn_buf, len));
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100505 return -1;
506 }
507 return 1;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100508}
509
510
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200511/* Validate header, and index information elements. Write decoded packet
512 * information to *res. res->data will point at the given data buffer. On
513 * error, p->rc is set <= 0 (see enum gtp_rc). */
514static void gtp_decode(const uint8_t *data, int data_len,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100515 unsigned int from_side_idx,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200516 unsigned int from_plane_idx,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100517 struct gtp_packet_desc *res,
518 time_t now)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200519{
520 ZERO_STRUCT(res);
521 res->data = (union gtp_packet*)data;
522 res->data_len = data_len;
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100523 res->side_idx = from_side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200524 res->plane_idx = from_plane_idx;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100525 res->timestamp = now;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200526
527 validate_gtp_header(res);
528
Neels Hofmeyr87c83d02015-12-03 11:25:27 +0100529 if (res->rc <= 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200530 return;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200531
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100532 LOG(LOGL_DEBUG, "Valid GTP header (v%d)\n", res->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200533
Neels Hofmeyre921e322015-11-11 00:45:50 +0100534 if (from_plane_idx == GTPH_PLANE_USER) {
535 res->rc = GTP_RC_PDU_U;
536 return;
537 }
538
539 if (res->rc != GTP_RC_PDU_C) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100540 LOG(LOGL_DEBUG, "no IEs in this GTP packet\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200541 return;
542 }
543
544 if (gtpie_decaps(res->ie, res->version,
545 (void*)(data + res->header_len),
546 res->data_len - res->header_len) != 0) {
547 res->rc = GTP_RC_INVALID_IE;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100548 LOG(LOGL_ERROR, "INVALID: cannot decode IEs."
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100549 " Dropping GTP packet%s.\n",
550 gtp_type_str(res->type)
551 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200552 return;
553 }
554
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100555#if 1
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100556 /* TODO if (<loglevel is debug>) { ...
557 (waiting for a commit from jerlbeck) */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200558 int i;
559
560 for (i = 0; i < 10; i++) {
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100561 const char *imsi;
562 if (get_ie_imsi_str(res->ie, i, &imsi) < 1)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200563 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100564 LOG(LOGL_DEBUG, "| IMSI %s\n", imsi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200565 }
566
567 for (i = 0; i < 10; i++) {
568 uint8_t nsapi;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100569 if (!get_ie_nsapi(res->ie, i, &nsapi))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200570 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100571 LOG(LOGL_DEBUG, "| NSAPI %d\n", (int)nsapi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200572 }
573
574 for (i = 0; i < 2; i++) {
575 struct gsn_addr addr;
576 if (gsn_addr_get(&addr, res, i) == 0)
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100577 LOG(LOGL_DEBUG, "| addr %s\n", gsn_addr_to_str(&addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200578 }
579
580 for (i = 0; i < 10; i++) {
581 uint32_t tei;
582 if (gtpie_gettv4(res->ie, GTPIE_TEI_DI, i, &tei) != 0)
583 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100584 LOG(LOGL_DEBUG, "| TEI DI (USER) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200585 tei, tei);
586 }
587
588 for (i = 0; i < 10; i++) {
589 uint32_t tei;
590 if (gtpie_gettv4(res->ie, GTPIE_TEI_C, i, &tei) != 0)
591 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100592 LOG(LOGL_DEBUG, "| TEI (CTRL) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200593 tei, tei);
594 }
595#endif
596}
597
598
599/* expiry */
600
601void expiry_init(struct expiry *exq, int expiry_in_seconds)
602{
603 ZERO_STRUCT(exq);
604 exq->expiry_in_seconds = expiry_in_seconds;
605 INIT_LLIST_HEAD(&exq->items);
606}
607
608void expiry_add(struct expiry *exq, struct expiring_item *item, time_t now)
609{
610 item->expiry = now + exq->expiry_in_seconds;
611
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +0100612 OSMO_ASSERT(llist_empty(&exq->items)
613 || (item->expiry
614 >= llist_last(&exq->items, struct expiring_item, entry)->expiry));
615
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200616 /* Add/move to the tail to always sort by expiry, ascending. */
617 llist_del(&item->entry);
618 llist_add_tail(&item->entry, &exq->items);
619}
620
621int expiry_tick(struct expiry *exq, time_t now)
622{
623 int expired = 0;
624 struct expiring_item *m, *n;
625 llist_for_each_entry_safe(m, n, &exq->items, entry) {
626 if (m->expiry <= now) {
627 expiring_item_del(m);
628 expired ++;
629 } else {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200630 /* The items are added sorted by expiry. So when we hit
631 * an unexpired entry, only more unexpired ones will
632 * follow. */
633 break;
634 }
635 }
636 return expired;
637}
638
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100639void expiry_clear(struct expiry *exq)
640{
641 struct expiring_item *m, *n;
642 llist_for_each_entry_safe(m, n, &exq->items, entry) {
643 expiring_item_del(m);
644 }
645}
646
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200647void expiring_item_init(struct expiring_item *item)
648{
649 ZERO_STRUCT(item);
650 INIT_LLIST_HEAD(&item->entry);
651}
652
653void expiring_item_del(struct expiring_item *item)
654{
655 OSMO_ASSERT(item);
656 llist_del(&item->entry);
657 INIT_LLIST_HEAD(&item->entry);
658 if (item->del_cb) {
659 /* avoid loops */
660 del_cb_t del_cb = item->del_cb;
661 item->del_cb = 0;
662 (del_cb)(item);
663 }
664}
665
666
667/* nr_map, nr_pool */
668
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100669void nr_pool_init(struct nr_pool *pool, nr_t nr_min, nr_t nr_max)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200670{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100671 *pool = (struct nr_pool){
672 .nr_min = nr_min,
673 .nr_max = nr_max,
674 .last_nr = nr_max
675 };
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200676}
677
678nr_t nr_pool_next(struct nr_pool *pool)
679{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100680 if (pool->last_nr >= pool->nr_max)
681 pool->last_nr = pool->nr_min;
682 else
683 pool->last_nr ++;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200684
685 return pool->last_nr;
686}
687
688void nr_map_init(struct nr_map *map, struct nr_pool *pool,
689 struct expiry *exq)
690{
691 ZERO_STRUCT(map);
692 map->pool = pool;
693 map->add_items_to_expiry = exq;
694 INIT_LLIST_HEAD(&map->mappings);
695}
696
697void nr_mapping_init(struct nr_mapping *m)
698{
699 ZERO_STRUCT(m);
700 INIT_LLIST_HEAD(&m->entry);
701 expiring_item_init(&m->expiry_entry);
702}
703
704void nr_map_add(struct nr_map *map, struct nr_mapping *mapping, time_t now)
705{
706 /* Generate a mapped number */
707 mapping->repl = nr_pool_next(map->pool);
708
709 /* Add to the tail to always yield a list sorted by expiry, in
710 * ascending order. */
711 llist_add_tail(&mapping->entry, &map->mappings);
Neels Hofmeyr508514c2015-11-24 13:30:38 +0100712 nr_map_refresh(map, mapping, now);
713}
714
715void nr_map_refresh(struct nr_map *map, struct nr_mapping *mapping, time_t now)
716{
717 if (!map->add_items_to_expiry)
718 return;
719 expiry_add(map->add_items_to_expiry,
720 &mapping->expiry_entry,
721 now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200722}
723
724void nr_map_clear(struct nr_map *map)
725{
726 struct nr_mapping *m;
727 struct nr_mapping *n;
728 llist_for_each_entry_safe(m, n, &map->mappings, entry) {
729 nr_mapping_del(m);
730 }
731}
732
733int nr_map_empty(const struct nr_map *map)
734{
735 return llist_empty(&map->mappings);
736}
737
738struct nr_mapping *nr_map_get(const struct nr_map *map,
739 void *origin, nr_t nr_orig)
740{
741 struct nr_mapping *mapping;
742 llist_for_each_entry(mapping, &map->mappings, entry) {
743 if ((mapping->origin == origin)
744 && (mapping->orig == nr_orig))
745 return mapping;
746 }
747 /* Not found. */
748 return NULL;
749}
750
751struct nr_mapping *nr_map_get_inv(const struct nr_map *map, nr_t nr_repl)
752{
753 struct nr_mapping *mapping;
754 llist_for_each_entry(mapping, &map->mappings, entry) {
755 if (mapping->repl == nr_repl) {
756 return mapping;
757 }
758 }
759 /* Not found. */
760 return NULL;
761}
762
763void nr_mapping_del(struct nr_mapping *mapping)
764{
765 OSMO_ASSERT(mapping);
766 llist_del(&mapping->entry);
767 INIT_LLIST_HEAD(&mapping->entry);
768 expiring_item_del(&mapping->expiry_entry);
769}
770
771
772/* gtphub */
773
774const char* const gtphub_plane_idx_names[GTPH_PLANE_N] = {
775 "CTRL",
776 "USER",
777};
778
779const uint16_t gtphub_plane_idx_default_port[GTPH_PLANE_N] = {
780 2123,
781 2152,
782};
783
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100784const char* const gtphub_side_idx_names[GTPH_SIDE_N] = {
785 "SGSN",
786 "GGSN",
787};
788
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200789time_t gtphub_now(void)
790{
791 struct timespec now_tp;
792 OSMO_ASSERT(clock_gettime(CLOCK_MONOTONIC, &now_tp) >= 0);
793 return now_tp.tv_sec;
794}
795
796/* Remove a gtphub_peer from its list and free it. */
797static void gtphub_peer_del(struct gtphub_peer *peer)
798{
Neels Hofmeyr1ed9a862015-11-20 00:04:41 +0100799 OSMO_ASSERT(llist_empty(&peer->addresses));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200800 nr_map_clear(&peer->seq_map);
801 llist_del(&peer->entry);
802 talloc_free(peer);
803}
804
805static void gtphub_peer_addr_del(struct gtphub_peer_addr *pa)
806{
807 OSMO_ASSERT(llist_empty(&pa->ports));
808 llist_del(&pa->entry);
809 talloc_free(pa);
810}
811
812static void gtphub_peer_port_del(struct gtphub_peer_port *pp)
813{
814 OSMO_ASSERT(pp->ref_count == 0);
815 llist_del(&pp->entry);
Neels Hofmeyre38fb662015-12-06 16:44:14 +0100816 rate_ctr_group_free(pp->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200817 talloc_free(pp);
818}
819
820/* From the information in the gtp_packet_desc, return the address of a GGSN.
821 * Return -1 on error. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100822static int gtphub_resolve_ggsn(struct gtphub *hub,
823 struct gtp_packet_desc *p,
824 struct gtphub_peer_port **pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200825
826/* See gtphub_ext.c (wrapped by unit test) */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100827struct gtphub_peer_port *gtphub_resolve_ggsn_addr(struct gtphub *hub,
828 const char *imsi_str,
829 const char *apn_ni_str);
830int gtphub_ares_init(struct gtphub *hub);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200831
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200832static void gtphub_zero(struct gtphub *hub)
833{
834 ZERO_STRUCT(hub);
Neels Hofmeyr16c3f572015-11-11 17:27:01 +0100835 INIT_LLIST_HEAD(&hub->ggsn_lookups);
836 INIT_LLIST_HEAD(&hub->resolved_ggsns);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200837}
838
839static int gtphub_sock_init(struct osmo_fd *ofd,
840 const struct gtphub_cfg_addr *addr,
841 osmo_fd_cb_t cb,
842 void *data,
843 int ofd_id)
844{
845 if (!addr->addr_str) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100846 LOG(LOGL_FATAL, "Cannot bind: empty address.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200847 return -1;
848 }
849 if (!addr->port) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100850 LOG(LOGL_FATAL, "Cannot bind: zero port not permitted.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200851 return -1;
852 }
853
854 ofd->when = BSC_FD_READ;
855 ofd->cb = cb;
856 ofd->data = data;
857 ofd->priv_nr = ofd_id;
858
859 int rc;
860 rc = osmo_sock_init_ofd(ofd,
861 AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
862 addr->addr_str, addr->port,
863 OSMO_SOCK_F_BIND);
864 if (rc < 1) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100865 LOG(LOGL_FATAL, "Cannot bind to %s port %d (rc %d)\n",
866 addr->addr_str, (int)addr->port, rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200867 return -1;
868 }
869
870 return 0;
871}
872
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100873static void gtphub_sock_close(struct osmo_fd *ofd)
874{
875 close(ofd->fd);
876 osmo_fd_unregister(ofd);
877 ofd->cb = NULL;
878}
879
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200880static void gtphub_bind_init(struct gtphub_bind *b)
881{
882 ZERO_STRUCT(b);
883
884 INIT_LLIST_HEAD(&b->peers);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100885
886 b->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
887 &gtphub_ctrg_io_desc, 0);
888 OSMO_ASSERT(b->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200889}
890
891static int gtphub_bind_start(struct gtphub_bind *b,
892 const struct gtphub_cfg_bind *cfg,
893 osmo_fd_cb_t cb, void *cb_data,
894 unsigned int ofd_id)
895{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100896 LOG(LOGL_DEBUG, "Starting bind %s\n", b->label);
897 if (gsn_addr_from_str(&b->local_addr, cfg->bind.addr_str) != 0) {
898 LOG(LOGL_FATAL, "Invalid bind address for %s: %s\n",
899 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200900 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100901 }
902 if (gtphub_sock_init(&b->ofd, &cfg->bind, cb, cb_data, ofd_id) != 0) {
903 LOG(LOGL_FATAL, "Cannot bind for %s: %s\n",
904 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200905 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100906 }
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100907 b->local_port = cfg->bind.port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200908 return 0;
909}
910
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100911static void gtphub_bind_free(struct gtphub_bind *b)
912{
913 OSMO_ASSERT(llist_empty(&b->peers));
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100914 rate_ctr_group_free(b->counters_io);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100915}
916
917static void gtphub_bind_stop(struct gtphub_bind *b) {
918 gtphub_sock_close(&b->ofd);
919 gtphub_bind_free(b);
920}
921
Neels Hofmeyr40348972015-11-17 12:22:28 +0100922/* Recv datagram from from->fd, write sender's address to *from_addr.
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200923 * Return the number of bytes read, zero on error. */
924static int gtphub_read(const struct osmo_fd *from,
925 struct osmo_sockaddr *from_addr,
926 uint8_t *buf, size_t buf_len)
927{
Neels Hofmeyr40348972015-11-17 12:22:28 +0100928 OSMO_ASSERT(from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200929
Neels Hofmeyr40348972015-11-17 12:22:28 +0100930 /* recvfrom requires the available length set in *from_addr_len. */
931 from_addr->l = sizeof(from_addr->a);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200932 errno = 0;
933 ssize_t received = recvfrom(from->fd, buf, buf_len, 0,
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100934 (struct sockaddr*)&from_addr->a,
935 &from_addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200936 /* TODO use recvmsg and get a MSG_TRUNC flag to make sure the message
937 * is not truncated. Then maybe reduce buf's size. */
938
939 if (received <= 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100940 LOG((errno == EAGAIN? LOGL_DEBUG : LOGL_ERROR),
941 "error: %s\n", strerror(errno));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200942 return 0;
943 }
944
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100945 LOG(LOGL_DEBUG, "Received %d bytes from %s: %s%s\n",
Neels Hofmeyr40348972015-11-17 12:22:28 +0100946 (int)received, osmo_sockaddr_to_str(from_addr),
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100947 osmo_hexdump(buf, received > 1000? 1000 : received),
948 received > 1000 ? "..." : "");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200949
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200950 return received;
951}
952
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100953static inline void gtphub_port_ref_count_inc(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200954{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100955 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200956 OSMO_ASSERT(pp->ref_count < UINT_MAX);
957 pp->ref_count++;
958}
959
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100960static inline void gtphub_port_ref_count_dec(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200961{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100962 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200963 OSMO_ASSERT(pp->ref_count > 0);
964 pp->ref_count--;
965}
966
967inline void set_seq(struct gtp_packet_desc *p, uint16_t seq)
968{
969 OSMO_ASSERT(p->version == 1);
970 p->data->gtp1l.h.seq = hton16(seq);
971 p->seq = seq;
972}
973
974inline void set_tei(struct gtp_packet_desc *p, uint32_t tei)
975{
976 OSMO_ASSERT(p->version == 1);
977 p->data->gtp1l.h.tei = hton32(tei);
978 p->header_tei = tei;
979}
980
981static void gtphub_mapping_del_cb(struct expiring_item *expi);
982
983static struct nr_mapping *gtphub_mapping_new()
984{
985 struct nr_mapping *nrm;
986 nrm = talloc_zero(osmo_gtphub_ctx, struct nr_mapping);
987 OSMO_ASSERT(nrm);
988
989 nr_mapping_init(nrm);
990 nrm->expiry_entry.del_cb = gtphub_mapping_del_cb;
991 return nrm;
992}
993
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100994
995#define APPEND(args...) \
996 l = snprintf(pos, left, args); \
997 pos += l; \
998 left -= l
999
1000static const char *gtphub_tunnel_side_str(struct gtphub_tunnel *tun,
1001 int side_idx)
1002{
1003 static char buf[256];
1004 char *pos = buf;
1005 int left = sizeof(buf);
1006 int l;
1007
1008 struct gtphub_tunnel_endpoint *c, *u;
1009 c = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1010 u = &tun->endpoint[side_idx][GTPH_PLANE_USER];
1011
1012 /* print both only if they differ. */
1013 if (!c->peer) {
1014 APPEND("(uninitialized)");
1015 } else {
1016 APPEND("%s", gsn_addr_to_str(&c->peer->peer_addr->addr));
1017 }
1018
1019 if (!u->peer) {
1020 if (c->peer) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001021 APPEND("/(uninitialized)");
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001022 }
1023 } else if ((!c->peer)
1024 || (!gsn_addr_same(&u->peer->peer_addr->addr,
1025 &c->peer->peer_addr->addr))) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001026 APPEND("/%s", gsn_addr_to_str(&u->peer->peer_addr->addr));
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001027 }
1028
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001029 APPEND(" (TEI C=%x U=%x)",
1030 c->tei_orig,
1031 u->tei_orig);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001032 return buf;
1033}
1034
1035const char *gtphub_tunnel_str(struct gtphub_tunnel *tun)
1036{
1037 static char buf[512];
1038 char *pos = buf;
1039 int left = sizeof(buf);
1040 int l;
1041
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001042 APPEND("TEI=%x: ", tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001043 APPEND("%s", gtphub_tunnel_side_str(tun, GTPH_SIDE_SGSN));
1044 APPEND(" <-> %s", gtphub_tunnel_side_str(tun, GTPH_SIDE_GGSN));
1045
1046 return buf;
1047}
1048
1049#undef APPEND
1050
1051void gtphub_tunnel_endpoint_set_peer(struct gtphub_tunnel_endpoint *te,
1052 struct gtphub_peer_port *pp)
1053{
1054 if (te->peer)
1055 gtphub_port_ref_count_dec(te->peer);
1056 te->peer = pp;
1057 if (te->peer)
1058 gtphub_port_ref_count_inc(te->peer);
1059}
1060
1061int gtphub_tunnel_complete(struct gtphub_tunnel *tun)
1062{
1063 if (!tun)
1064 return 0;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001065 if (!tun->tei_repl)
1066 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001067 int side_idx;
1068 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001069 for_each_side_and_plane(side_idx, plane_idx) {
1070 struct gtphub_tunnel_endpoint *te =
1071 &tun->endpoint[side_idx][plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001072 if (!(te->peer && te->tei_orig))
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001073 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001074 }
1075 return 1;
1076}
1077
1078static void gtphub_tunnel_del_cb(struct expiring_item *expi)
1079{
1080 struct gtphub_tunnel *tun = container_of(expi,
1081 struct gtphub_tunnel,
1082 expiry_entry);
1083 LOG(LOGL_DEBUG, "expired: %s\n", gtphub_tunnel_str(tun));
1084
1085 llist_del(&tun->entry);
1086 INIT_LLIST_HEAD(&tun->entry); /* mark unused */
1087
1088 expi->del_cb = 0; /* avoid recursion loops */
1089 expiring_item_del(&tun->expiry_entry); /* usually already done, but make sure. */
1090
1091 int side_idx;
1092 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001093 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001094 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1095
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001096 /* clear ref count */
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001097 gtphub_tunnel_endpoint_set_peer(te, NULL);
1098
1099 rate_ctr_group_free(te->counters_io);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001100 }
1101
1102 talloc_free(tun);
1103}
1104
1105static struct gtphub_tunnel *gtphub_tunnel_new()
1106{
1107 struct gtphub_tunnel *tun;
1108 tun = talloc_zero(osmo_gtphub_ctx, struct gtphub_tunnel);
1109 OSMO_ASSERT(tun);
1110
1111 INIT_LLIST_HEAD(&tun->entry);
1112 expiring_item_init(&tun->expiry_entry);
1113
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001114 int side_idx, plane_idx;
1115 for_each_side_and_plane(side_idx, plane_idx) {
1116 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1117 te->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
1118 &gtphub_ctrg_io_desc,
1119 0);
1120 OSMO_ASSERT(te->counters_io);
1121 }
1122
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001123 tun->expiry_entry.del_cb = gtphub_tunnel_del_cb;
1124 return tun;
1125}
1126
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001127static const char *gtphub_peer_strb(struct gtphub_peer *peer, char *buf,
1128 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001129{
1130 if (llist_empty(&peer->addresses))
1131 return "(addressless)";
1132
1133 struct gtphub_peer_addr *a = llist_first(&peer->addresses,
1134 struct gtphub_peer_addr,
1135 entry);
1136 return gsn_addr_to_strb(&a->addr, buf, buflen);
1137}
1138
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001139static const char *gtphub_port_strb(struct gtphub_peer_port *port, char *buf,
1140 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001141{
1142 if (!port)
1143 return "(null port)";
1144
1145 snprintf(buf, buflen, "%s port %d",
1146 gsn_addr_to_str(&port->peer_addr->addr),
1147 (int)port->port);
1148 return buf;
1149}
1150
1151const char *gtphub_peer_str(struct gtphub_peer *peer)
1152{
1153 static char buf[256];
1154 return gtphub_peer_strb(peer, buf, sizeof(buf));
1155}
1156
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01001157const char *gtphub_port_str(struct gtphub_peer_port *port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001158{
1159 static char buf[256];
1160 return gtphub_port_strb(port, buf, sizeof(buf));
1161}
1162
1163static const char *gtphub_port_str2(struct gtphub_peer_port *port)
1164{
1165 static char buf[256];
1166 return gtphub_port_strb(port, buf, sizeof(buf));
1167}
1168
1169static void gtphub_mapping_del_cb(struct expiring_item *expi)
1170{
1171 expi->del_cb = 0; /* avoid recursion loops */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001172 expiring_item_del(expi); /* usually already done, but make sure. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001173
1174 struct nr_mapping *nrm = container_of(expi,
1175 struct nr_mapping,
1176 expiry_entry);
1177 llist_del(&nrm->entry);
1178 INIT_LLIST_HEAD(&nrm->entry); /* mark unused */
1179
1180 /* Just for log */
1181 struct gtphub_peer_port *from = nrm->origin;
1182 OSMO_ASSERT(from);
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001183 LOG(LOGL_DEBUG, "expired: %d: nr mapping from %s: %u->%u\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001184 (int)nrm->expiry_entry.expiry,
1185 gtphub_port_str(from),
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001186 (unsigned int)nrm->orig, (unsigned int)nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001187
1188 gtphub_port_ref_count_dec(from);
1189
1190 talloc_free(nrm);
1191}
1192
1193static struct nr_mapping *gtphub_mapping_have(struct nr_map *map,
1194 struct gtphub_peer_port *from,
1195 nr_t orig_nr,
1196 time_t now)
1197{
1198 struct nr_mapping *nrm;
1199
1200 nrm = nr_map_get(map, from, orig_nr);
1201
1202 if (!nrm) {
1203 nrm = gtphub_mapping_new();
1204 nrm->orig = orig_nr;
1205 nrm->origin = from;
1206 nr_map_add(map, nrm, now);
1207 gtphub_port_ref_count_inc(from);
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001208 LOG(LOGL_DEBUG, "peer %s: sequence map %d --> %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001209 gtphub_port_str(from),
1210 (int)(nrm->orig), (int)(nrm->repl));
1211 } else {
Neels Hofmeyr508514c2015-11-24 13:30:38 +01001212 nr_map_refresh(map, nrm, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001213 }
1214
1215 OSMO_ASSERT(nrm);
1216 return nrm;
1217}
1218
Neels Hofmeyr3317c842015-11-11 17:20:42 +01001219static void gtphub_map_seq(struct gtp_packet_desc *p,
1220 struct gtphub_peer_port *from_port,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001221 struct gtphub_peer_port *to_port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001222{
1223 /* Store a mapping in to_peer's map, so when we later receive a GTP
1224 * packet back from to_peer, the seq nr can be unmapped back to its
1225 * origin (from_peer here). */
1226 struct nr_mapping *nrm;
1227 nrm = gtphub_mapping_have(&to_port->peer_addr->peer->seq_map,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001228 from_port, p->seq, p->timestamp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001229
1230 /* Change the GTP packet to yield the new, mapped seq nr */
1231 set_seq(p, nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001232}
1233
1234static struct gtphub_peer_port *gtphub_unmap_seq(struct gtp_packet_desc *p,
1235 struct gtphub_peer_port *responding_port)
1236{
1237 OSMO_ASSERT(p->version == 1);
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001238 struct nr_mapping *nrm =
1239 nr_map_get_inv(&responding_port->peer_addr->peer->seq_map,
1240 p->seq);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001241 if (!nrm)
1242 return NULL;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001243 LOG(LOGL_DEBUG, "peer %p: sequence unmap %d <-- %d\n",
1244 nrm->origin, (int)(nrm->orig), (int)(nrm->repl));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001245 set_seq(p, nrm->orig);
1246 return nrm->origin;
1247}
1248
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001249static int gtphub_check_mapped_tei(struct gtphub_tunnel *new_tun,
1250 struct gtphub_tunnel *iterated_tun,
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001251 uint32_t *tei_min,
1252 uint32_t *tei_max)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001253{
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001254 if (!new_tun->tei_repl || !iterated_tun->tei_repl)
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001255 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001256
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001257 *tei_min = (*tei_min < iterated_tun->tei_repl)? *tei_min : iterated_tun->tei_repl;
1258 *tei_max = (*tei_max > iterated_tun->tei_repl)? *tei_max : iterated_tun->tei_repl;
1259
1260 if (new_tun->tei_repl != iterated_tun->tei_repl)
1261 return 1;
1262
1263 /* new_tun->tei_repl is already taken. Try to find one out of the known
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001264 * range. */
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001265 LOG(LOGL_DEBUG, "TEI replacement %d already taken.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001266
1267 if ((*tei_max) < 0xffffffff) {
1268 (*tei_max)++;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001269 new_tun->tei_repl = *tei_max;
1270 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001271 return 1;
1272 } else if ((*tei_min) > 1) {
1273 (*tei_min)--;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001274 new_tun->tei_repl = *tei_min;
1275 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001276 return 1;
1277 }
1278
1279 /* None seems to be available. */
1280 return 0;
1281}
1282
1283static int gtphub_check_reused_teis(struct gtphub *hub,
1284 struct gtphub_tunnel *new_tun)
1285{
1286 uint32_t tei_min = 0xffffffff;
1287 uint32_t tei_max = 0;
1288 int side_idx;
1289 int plane_idx;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001290 struct gtphub_tunnel_endpoint *te;
1291 struct gtphub_tunnel_endpoint *te2;
1292
1293 struct gtphub_tunnel *tun, *ntun;
1294
1295 llist_for_each_entry_safe(tun, ntun, &hub->tunnels, entry) {
1296 if (tun == new_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001297 continue;
1298
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001299 /* Check whether the GSN sent a TEI that it is reusing from a
1300 * previous tunnel. */
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001301 int tun_continue = 0;
1302 for_each_side(side_idx) {
1303 for_each_plane(plane_idx) {
1304 te = &tun->endpoint[side_idx][plane_idx];
1305 te2 = &new_tun->endpoint[side_idx][plane_idx];
Neels Hofmeyrf6e4d082015-12-06 19:03:35 +01001306 if ((te->tei_orig == 0)
1307 || (te->tei_orig != te2->tei_orig)
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001308 || (!te->peer)
1309 || (!te2->peer)
1310 || !gsn_addr_same(&te->peer->peer_addr->addr,
1311 &te2->peer->peer_addr->addr))
1312 continue;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001313
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001314 /* The peer is reusing a TEI that I believe to
1315 * be part of another tunnel. The other tunnel
1316 * must be stale, then. */
1317 LOG(LOGL_NOTICE,
1318 "Expiring tunnel due to reused TEI:"
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001319 " %s peer %s sent %s TEI %x,"
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001320 " previously used by tunnel %s...\n",
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001321 gtphub_side_idx_names[side_idx],
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001322 gtphub_port_str(te->peer),
1323 gtphub_plane_idx_names[plane_idx],
1324 te->tei_orig,
1325 gtphub_tunnel_str(tun));
1326 LOG(LOGL_NOTICE, "...while establishing tunnel %s\n",
1327 gtphub_tunnel_str(new_tun));
Neels Hofmeyr52c0bd32015-12-02 14:14:32 +01001328
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001329 expiring_item_del(&tun->expiry_entry);
1330 /* continue to find more matches. There shouldn't be
1331 * any, but let's make sure. However, tun is deleted,
1332 * so we need to skip to the next tunnel. */
1333 tun_continue = 1;
1334 break;
1335 }
1336 if (tun_continue)
1337 break;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001338 }
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001339 if (tun_continue)
1340 continue;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001341
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001342 /* Check whether the mapped TEI is already used by another
1343 * tunnel. */
1344 if (!gtphub_check_mapped_tei(new_tun, tun, &tei_min, &tei_max)) {
1345 LOG(LOGL_ERROR,
1346 "No mapped TEI is readily available."
1347 " Searching for holes between occupied"
1348 " TEIs not implemented.");
1349 return 0;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001350 }
1351
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001352 }
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001353
1354 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001355}
1356
1357static void gtphub_tunnel_refresh(struct gtphub *hub,
1358 struct gtphub_tunnel *tun,
1359 time_t now)
1360{
1361 expiry_add(&hub->expire_slowly,
1362 &tun->expiry_entry,
1363 now);
1364}
1365
1366static struct gtphub_tunnel_endpoint *gtphub_unmap_tei(struct gtphub *hub,
1367 struct gtp_packet_desc *p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001368 struct gtphub_peer_port *from,
1369 struct gtphub_tunnel **unmapped_from_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001370{
1371 OSMO_ASSERT(from);
1372 int other_side = other_side_idx(p->side_idx);
1373
1374 struct gtphub_tunnel *tun;
1375 llist_for_each_entry(tun, &hub->tunnels, entry) {
1376 struct gtphub_tunnel_endpoint *te_from =
1377 &tun->endpoint[p->side_idx][p->plane_idx];
1378 struct gtphub_tunnel_endpoint *te_to =
1379 &tun->endpoint[other_side][p->plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001380 if ((tun->tei_repl == p->header_tei_rx)
Neels Hofmeyrfc1be3a2015-12-02 00:31:31 +01001381 && te_from->peer
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001382 && gsn_addr_same(&te_from->peer->peer_addr->addr,
1383 &from->peer_addr->addr)) {
1384 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001385 if (unmapped_from_tun)
1386 *unmapped_from_tun = tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001387 return te_to;
1388 }
1389 }
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001390
1391 if (unmapped_from_tun)
1392 *unmapped_from_tun = NULL;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001393 return NULL;
1394}
1395
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001396static void gtphub_map_restart_counter(struct gtphub *hub,
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001397 struct gtp_packet_desc *p)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001398{
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001399 if (p->rc != GTP_RC_PDU_C)
1400 return;
1401
1402 int ie_idx;
1403 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1404 if (ie_idx < 0)
1405 return;
1406
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001407 /* Always send gtphub's own restart counter */
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001408 p->ie[ie_idx]->tv1.v = hton8(hub->restart_counter);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001409}
1410
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001411static int gtphub_unmap_header_tei(struct gtphub_peer_port **to_port_p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001412 struct gtphub_tunnel **unmapped_from_tun,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001413 struct gtphub *hub,
1414 struct gtp_packet_desc *p,
1415 struct gtphub_peer_port *from_port)
1416{
1417 OSMO_ASSERT(p->version == 1);
1418 *to_port_p = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001419 if (unmapped_from_tun)
1420 *unmapped_from_tun = NULL;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001421
1422 /* If the header's TEI is zero, no PDP context has been established
1423 * yet. If nonzero, a mapping should actually already exist for this
1424 * TEI, since it must have been announced in a PDP context creation. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001425 if (!p->header_tei_rx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001426 return 0;
1427
1428 /* to_peer has previously announced a TEI, which was stored and
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001429 * mapped in a tunnel struct. */
1430 struct gtphub_tunnel_endpoint *to;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001431 to = gtphub_unmap_tei(hub, p, from_port, unmapped_from_tun);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001432 if (!to) {
1433 LOG(LOGL_ERROR, "Received unknown TEI %" PRIx32 " from %s\n",
1434 p->header_tei_rx, gtphub_port_str(from_port));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001435 return -1;
1436 }
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001437 OSMO_ASSERT(*unmapped_from_tun);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001438
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001439 uint32_t unmapped_tei = to->tei_orig;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001440 set_tei(p, unmapped_tei);
1441
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001442 LOG(LOGL_DEBUG, "Unmapped TEI coming from: %s\n",
1443 gtphub_tunnel_str(*unmapped_from_tun));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001444
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001445 /* May be NULL for an invalidated tunnel. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001446 *to_port_p = to->peer;
1447
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001448 return 0;
1449}
1450
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001451static int gtphub_handle_create_pdp_ctx(struct gtphub *hub,
1452 struct gtp_packet_desc *p,
1453 struct gtphub_peer_port *from_ctrl,
1454 struct gtphub_peer_port *to_ctrl)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001455{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001456 int plane_idx;
1457
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001458 osmo_static_assert((GTPH_PLANE_CTRL == 0) && (GTPH_PLANE_USER == 1),
1459 plane_nrs_match_GSN_addr_IE_indices);
1460
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001461 struct gtphub_tunnel *tun = p->tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001462
1463 if (p->type == GTP_CREATE_PDP_REQ) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001464 if (p->side_idx != GTPH_SIDE_SGSN) {
1465 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001466 " Request from the GGSN side: %s",
1467 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001468 return -1;
1469 }
1470
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001471 if (tun) {
1472 LOG(LOGL_ERROR, "Not implemented: Received"
1473 " Create PDP Context Request for an already"
1474 " established tunnel:"
1475 " from %s, tunnel %s\n",
1476 gtphub_port_str(from_ctrl),
1477 gtphub_tunnel_str(p->tun));
1478 return -1;
1479 }
1480
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001481 /* A new tunnel. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001482 p->tun = tun = gtphub_tunnel_new();
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001483
1484 /* Create TEI mapping */
1485 tun->tei_repl = nr_pool_next(&hub->tei_pool);
1486
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001487 llist_add(&tun->entry, &hub->tunnels);
1488 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001489 /* The endpoint peers on this side (SGSN) will be set from IEs
1490 * below. Also set the GGSN Ctrl endpoint, for logging. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001491 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001492 to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001493 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001494 if (p->side_idx != GTPH_SIDE_GGSN) {
1495 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001496 " Response from the SGSN side: %s",
1497 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001498 return -1;
1499 }
1500
Neels Hofmeyr8c5b0732015-12-03 13:45:15 +01001501 /* The tunnel should already have been resolved from the header
1502 * TEI and be available in tun (== p->tun). Just fill in the
1503 * GSN Addresses below.*/
1504 OSMO_ASSERT(tun);
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001505 OSMO_ASSERT(tun->tei_repl == p->header_tei_rx);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001506 OSMO_ASSERT(to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001507 }
1508
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001509 uint8_t ie_type[] = { GTPIE_TEI_C, GTPIE_TEI_DI };
1510 int ie_mandatory = (p->type == GTP_CREATE_PDP_REQ);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001511 unsigned int side_idx = p->side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001512
1513 for (plane_idx = 0; plane_idx < 2; plane_idx++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01001514 int rc;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001515 struct gsn_addr use_addr;
1516 uint16_t use_port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001517 uint32_t tei_from_ie;
1518 int ie_idx;
1519
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001520 /* Fetch GSN Address and TEI from IEs. As ensured by above
1521 * static asserts, plane_idx corresponds to the GSN Address IE
1522 * index (the first one = 0 = ctrl, second one = 1 = user). */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001523 rc = gsn_addr_get(&use_addr, p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001524 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001525 LOG(LOGL_ERROR, "Cannot read %s GSN Address IE\n",
1526 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001527 return -1;
1528 }
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001529 LOG(LOGL_DEBUG, "Read %s GSN addr %s (%d)\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001530 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001531 gsn_addr_to_str(&use_addr),
1532 use_addr.len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001533
1534 ie_idx = gtpie_getie(p->ie, ie_type[plane_idx], 0);
1535 if (ie_idx < 0) {
1536 if (ie_mandatory) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001537 LOG(LOGL_ERROR,
1538 "Create PDP Context message invalid:"
1539 " missing IE %d\n",
1540 (int)ie_type[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001541 return -1;
1542 }
1543 tei_from_ie = 0;
1544 }
1545 else
1546 tei_from_ie = ntoh32(p->ie[ie_idx]->tv4.v);
1547
1548 /* Make sure an entry for this peer address with default port
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01001549 * exists.
1550 *
1551 * Exception: if sgsn_use_sender is set, instead use the
1552 * sender's address and port for Ctrl -- the User port is not
1553 * known until the first User packet arrives.
1554 *
1555 * Note: doing this here is just an optimization, because
1556 * gtphub_handle_buf() has code to replace the tunnel
1557 * endpoints' addresses with the sender (needed for User
1558 * plane). We could just ignore sgsn_use_sender here. But if we
1559 * set up a default port here and replace it in
1560 * gtphub_handle_buf(), we'd be creating a peer port just to
1561 * expire it right away. */
1562 if (hub->sgsn_use_sender && (side_idx == GTPH_SIDE_SGSN)) {
1563 gsn_addr_from_sockaddr(&use_addr, &use_port, &from_ctrl->sa);
1564 } else {
1565 use_port = gtphub_plane_idx_default_port[plane_idx];
1566
1567 }
1568
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001569 struct gtphub_peer_port *peer_from_ie;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001570 peer_from_ie = gtphub_port_have(hub,
1571 &hub->to_gsns[side_idx][plane_idx],
1572 &use_addr, use_port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001573
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001574 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][plane_idx],
1575 peer_from_ie);
1576
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001577 if (!tei_from_ie &&
1578 !tun->endpoint[side_idx][plane_idx].tei_orig) {
1579 LOG(LOGL_ERROR,
Neels Hofmeyr328d2f72015-12-06 19:13:21 +01001580 "Create PDP Context message omits %s TEI, but"
1581 " no TEI has been announced for this tunnel: %s\n",
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001582 gtphub_plane_idx_names[plane_idx],
1583 gtphub_tunnel_str(tun));
1584 return -1;
1585 }
1586
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001587 if (tei_from_ie) {
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001588 /* Replace TEI in GTP packet IE */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001589 tun->endpoint[side_idx][plane_idx].tei_orig = tei_from_ie;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001590 p->ie[ie_idx]->tv4.v = hton32(tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001591
Neels Hofmeyrcd865d62015-11-30 12:58:48 +01001592 if (!gtphub_check_reused_teis(hub, tun)) {
1593 /* It's highly unlikely that all TEIs are
1594 * taken. But the code looking for an unused
1595 * TEI is, at the time of writing this comment,
1596 * not able to find gaps in the TEI space. To
1597 * explicitly alert the user of this problem,
1598 * rather abort than carry on. */
1599 LOG(LOGL_FATAL, "TEI range exhausted. Cannot create TEI mapping, aborting.\n");
1600 abort();
1601 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001602 }
1603
1604 /* Replace the GSN address to reflect gtphub. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001605 rc = gsn_addr_put(&hub->to_gsns[other_side_idx(side_idx)][plane_idx].local_addr,
1606 p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001607 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001608 LOG(LOGL_ERROR, "Cannot write %s GSN Address IE\n",
1609 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001610 return -1;
1611 }
1612 }
1613
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001614 if (p->type == GTP_CREATE_PDP_REQ) {
1615 LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
1616 gtphub_tunnel_str(tun));
Neels Hofmeyr005f1752015-11-30 12:19:11 +01001617 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001618 LOG(LOGL_DEBUG, "New tunnel: %s\n",
1619 gtphub_tunnel_str(tun));
1620 }
1621
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001622 return 0;
1623}
1624
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001625static void pending_delete_del_cb(struct expiring_item *expi)
1626{
1627 struct pending_delete *pd;
1628 pd = container_of(expi, struct pending_delete, expiry_entry);
1629
1630 llist_del(&pd->entry);
1631 INIT_LLIST_HEAD(&pd->entry);
1632
1633 pd->expiry_entry.del_cb = 0;
1634 expiring_item_del(&pd->expiry_entry);
1635
1636 talloc_free(pd);
1637}
1638
1639static struct pending_delete *pending_delete_new(void)
1640{
1641 struct pending_delete *pd = talloc_zero(osmo_gtphub_ctx, struct pending_delete);
1642 INIT_LLIST_HEAD(&pd->entry);
1643 expiring_item_init(&pd->expiry_entry);
1644 pd->expiry_entry.del_cb = pending_delete_del_cb;
1645 return pd;
1646}
1647
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001648static int gtphub_handle_delete_pdp_ctx(struct gtphub *hub,
1649 struct gtp_packet_desc *p,
1650 struct gtphub_peer_port *from_ctrl,
1651 struct gtphub_peer_port *to_ctrl)
1652{
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001653 struct gtphub_tunnel *known_tun = p->tun;
1654
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001655 if (p->type == GTP_DELETE_PDP_REQ) {
1656 if (!known_tun) {
1657 LOG(LOGL_ERROR, "Cannot find tunnel for Delete PDP Context Request.\n");
1658 return -1;
1659 }
1660
1661 /* Store the Delete Request until a successful Response is seen. */
1662 uint8_t teardown_ind;
1663 uint8_t nsapi;
1664
1665 if (gtpie_gettv1(p->ie, GTPIE_TEARDOWN, 0, &teardown_ind) != 0) {
1666 LOG(LOGL_ERROR, "Missing Teardown Ind IE in Delete PDP Context Request.\n");
1667 return -1;
1668 }
1669
1670 if (gtpie_gettv1(p->ie, GTPIE_NSAPI, 0, &nsapi) != 0) {
1671 LOG(LOGL_ERROR, "Missing NSAPI IE in Delete PDP Context Request.\n");
1672 return -1;
1673 }
1674
1675 struct pending_delete *pd = NULL;
1676
1677 struct pending_delete *pdi = NULL;
1678 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1679 if ((pdi->tun == known_tun)
1680 && (pdi->teardown_ind == teardown_ind)
1681 && (pdi->nsapi == nsapi)) {
1682 pd = pdi;
1683 break;
1684 }
1685 }
1686
1687 if (!pd) {
1688 pd = pending_delete_new();
1689 pd->tun = known_tun;
1690 pd->teardown_ind = teardown_ind;
1691 pd->nsapi = nsapi;
1692
1693 LOG(LOGL_DEBUG, "Tunnel delete pending: %s\n",
1694 gtphub_tunnel_str(known_tun));
1695 llist_add(&pd->entry, &hub->pending_deletes);
1696 }
1697
1698 /* Add or refresh timeout. */
1699 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1700
1701 /* If a pending_delete should expire before the response to
1702 * indicate success comes in, the responding peer will have the
1703 * tunnel deactivated, while the requesting peer gets no reply
1704 * and keeps the tunnel. The hope is that the requesting peer
1705 * will try again and get a useful response. */
1706 } else if (p->type == GTP_DELETE_PDP_RSP) {
1707 /* Find the Delete Request for this Response. */
1708 struct pending_delete *pd = NULL;
1709
1710 struct pending_delete *pdi;
1711 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1712 if (known_tun == pdi->tun) {
1713 pd = pdi;
1714 break;
1715 }
1716 }
1717
1718 if (!pd) {
1719 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1720 " Cannot find matching request.");
1721 /* If we delete the tunnel now, anyone can send a
1722 * Delete response to kill tunnels at will. */
1723 return -1;
1724 }
1725
1726 /* TODO handle teardown_ind and nsapi */
1727
1728 expiring_item_del(&pd->expiry_entry);
1729
1730 uint8_t cause;
1731 if (gtpie_gettv1(p->ie, GTPIE_CAUSE, 0, &cause) != 0) {
1732 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1733 " Missing Cause IE.");
1734 /* If we delete the tunnel now, at least one of the
1735 * peers may still think it is active. */
1736 return -1;
1737 }
1738
1739 if (cause != GTPCAUSE_ACC_REQ) {
1740 LOG(LOGL_NOTICE,
1741 "Delete PDP Context Response indicates failure;"
1742 "for %s\n",
1743 gtphub_tunnel_str(known_tun));
1744 return -1;
1745 }
1746
1747 LOG(LOGL_DEBUG, "Delete PDP Context: removing tunnel %s\n",
1748 gtphub_tunnel_str(known_tun));
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001749 p->tun = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001750 expiring_item_del(&known_tun->expiry_entry);
1751 }
1752
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001753 return 0;
1754}
1755
1756static int gtphub_handle_update_pdp_ctx(struct gtphub *hub,
1757 struct gtp_packet_desc *p,
1758 struct gtphub_peer_port *from_ctrl,
1759 struct gtphub_peer_port *to_ctrl)
1760{
1761 /* TODO */
1762 return 0;
1763}
1764
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001765/* Read GSN address IEs from p, and make sure these peer addresses exist in
1766 * bind[plane_idx] with default ports, in their respective planes (both Ctrl
1767 * and User). Map TEIs announced in IEs, and write mapped TEIs in-place into
1768 * the packet p. */
1769static int gtphub_handle_pdp_ctx(struct gtphub *hub,
1770 struct gtp_packet_desc *p,
1771 struct gtphub_peer_port *from_ctrl,
1772 struct gtphub_peer_port *to_ctrl)
1773{
1774 OSMO_ASSERT(p->plane_idx == GTPH_PLANE_CTRL);
1775
1776 switch (p->type) {
1777 case GTP_CREATE_PDP_REQ:
1778 case GTP_CREATE_PDP_RSP:
1779 return gtphub_handle_create_pdp_ctx(hub, p,
1780 from_ctrl, to_ctrl);
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001781
1782 case GTP_DELETE_PDP_REQ:
1783 case GTP_DELETE_PDP_RSP:
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001784 return gtphub_handle_delete_pdp_ctx(hub, p,
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001785 from_ctrl, to_ctrl);
1786
1787 case GTP_UPDATE_PDP_REQ:
1788 case GTP_UPDATE_PDP_RSP:
1789 return gtphub_handle_update_pdp_ctx(hub, p,
1790 from_ctrl, to_ctrl);
1791
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001792 default:
1793 /* Nothing to do for this message type. */
1794 return 0;
1795 }
1796
1797}
1798
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001799static int gtphub_send_del_pdp_ctx(struct gtphub *hub,
1800 struct gtphub_tunnel *tun,
1801 int to_side)
1802{
1803 static uint8_t del_ctx_msg[16] = {
1804 0x32, /* GTP v1 flags */
1805 GTP_DELETE_PDP_REQ,
1806 0x00, 0x08, /* Length in network byte order */
1807 0x00, 0x00, 0x00, 0x00, /* TEI to be replaced */
1808 0, 0, /* Seq, to be replaced */
1809 0, 0, /* no extensions */
1810 0x13, 0xff, /* 19: Teardown ind = 1 */
1811 0x14, 0 /* 20: NSAPI = 0 */
1812 };
1813
1814 uint32_t *tei = (uint32_t*)&del_ctx_msg[4];
1815 uint16_t *seq = (uint16_t*)&del_ctx_msg[8];
1816
1817 struct gtphub_tunnel_endpoint *te =
1818 &tun->endpoint[to_side][GTPH_PLANE_CTRL];
1819
1820 if (! te->peer)
1821 return 0;
1822
1823 *tei = hton32(te->tei_orig);
1824 *seq = hton16(nr_pool_next(&te->peer->peer_addr->peer->seq_pool));
1825
1826 struct gtphub_bind *to_bind = &hub->to_gsns[to_side][GTPH_PLANE_CTRL];
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01001827 int rc = gtphub_write(&to_bind->ofd, &te->peer->sa,
1828 del_ctx_msg, sizeof(del_ctx_msg));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001829 if (rc != 0) {
1830 LOG(LOGL_ERROR,
1831 "Failed to send out-of-band Delete PDP Context Request to %s\n",
1832 gtphub_port_str(te->peer));
1833 }
1834 return rc;
1835}
1836
1837/* Tell all peers on the other end of tunnels that PDP contexts are void. */
1838static void gtphub_restarted(struct gtphub *hub,
1839 struct gtp_packet_desc *p,
1840 struct gtphub_peer_port *pp)
1841{
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001842 LOG(LOGL_NOTICE, "Peer has restarted: %s\n",
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001843 gtphub_port_str(pp));
1844
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001845 int deleted_count = 0;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001846 struct gtphub_tunnel *tun;
1847 llist_for_each_entry(tun, &hub->tunnels, entry) {
1848 int side_idx;
1849 for_each_side(side_idx) {
Neels Hofmeyrc6d51f52015-12-02 15:44:34 +01001850 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1851 struct gtphub_tunnel_endpoint *te2 = &tun->endpoint[other_side_idx(side_idx)][GTPH_PLANE_CTRL];
1852 if ((!te->peer)
1853 || (!te2->tei_orig)
1854 || (pp->peer_addr->peer != te->peer->peer_addr->peer))
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001855 continue;
1856
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001857 LOG(LOGL_DEBUG, "Deleting tunnel due to peer restart: %s\n",
1858 gtphub_tunnel_str(tun));
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001859 deleted_count ++;
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001860
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001861 /* Send a Delete PDP Context Request to the
1862 * peer on the other side, remember the pending
1863 * delete and wait for the response to delete
1864 * the tunnel. Clear this side of the tunnel to
1865 * make sure it isn't used.
1866 *
1867 * Should the delete message send fail, or if no
1868 * response is received, this tunnel will expire. If
1869 * its TEIs come up in a new PDP Context Request, it
1870 * will be removed. If messages for this tunnel should
1871 * come in (from the not restarted side), they will be
1872 * dropped because the tunnel is rendered unusable. */
1873 gtphub_send_del_pdp_ctx(hub, tun, other_side_idx(side_idx));
1874
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001875 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_CTRL],
1876 NULL);
1877 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_USER],
1878 NULL);
1879 }
1880 }
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001881
1882 if (deleted_count)
1883 LOG(LOGL_NOTICE, "Deleting %d tunnels due to restart of: %s\n",
1884 deleted_count,
1885 gtphub_port_str(pp));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001886}
1887
1888static int get_restart_count(struct gtp_packet_desc *p)
1889{
1890 int ie_idx;
1891 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1892 if (ie_idx < 0)
1893 return -1;
1894 return ntoh8(p->ie[ie_idx]->tv1.v);
1895}
1896
1897static void gtphub_check_restart_counter(struct gtphub *hub,
1898 struct gtp_packet_desc *p,
1899 struct gtphub_peer_port *from)
1900{
1901 /* If the peer is sending a Recovery IE (7.7.11) with a restart counter
1902 * that doesn't match the peer's previously sent restart counter, clear
1903 * that peer and cancel PDP contexts. */
1904
1905 int restart = get_restart_count(p);
1906
1907 if ((restart < 0) || (restart > 255))
1908 return;
1909
1910 if ((from->last_restart_count >= 0) && (from->last_restart_count <= 255)) {
1911 if (from->last_restart_count != restart) {
1912 gtphub_restarted(hub, p, from);
1913 }
1914 }
1915
1916 from->last_restart_count = restart;
1917}
1918
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001919static int from_sgsns_read_cb(struct osmo_fd *from_sgsns_ofd, unsigned int what)
1920{
1921 unsigned int plane_idx = from_sgsns_ofd->priv_nr;
1922 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001923 LOG(LOGL_DEBUG, "=== reading from SGSN (%s)\n",
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001924 gtphub_plane_idx_names[plane_idx]);
1925
1926 if (!(what & BSC_FD_READ))
1927 return 0;
1928
1929 struct gtphub *hub = from_sgsns_ofd->data;
1930
1931 static uint8_t buf[4096];
1932 struct osmo_sockaddr from_addr;
1933 struct osmo_sockaddr to_addr;
1934 struct osmo_fd *to_ofd;
1935 int len;
1936 uint8_t *reply_buf;
1937
1938 len = gtphub_read(from_sgsns_ofd, &from_addr, buf, sizeof(buf));
1939 if (len < 1)
1940 return 0;
1941
1942 len = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, &from_addr,
1943 buf, len, gtphub_now(),
1944 &reply_buf, &to_ofd, &to_addr);
1945 if (len < 1)
1946 return 0;
1947
1948 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
1949}
1950
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001951static int from_ggsns_read_cb(struct osmo_fd *from_ggsns_ofd, unsigned int what)
1952{
1953 unsigned int plane_idx = from_ggsns_ofd->priv_nr;
1954 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001955 LOG(LOGL_DEBUG, "=== reading from GGSN (%s)\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001956 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001957 if (!(what & BSC_FD_READ))
1958 return 0;
1959
1960 struct gtphub *hub = from_ggsns_ofd->data;
1961
1962 static uint8_t buf[4096];
1963 struct osmo_sockaddr from_addr;
1964 struct osmo_sockaddr to_addr;
1965 struct osmo_fd *to_ofd;
Neels Hofmeyr16c3f572015-11-11 17:27:01 +01001966 int len;
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001967 uint8_t *reply_buf;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001968
1969 len = gtphub_read(from_ggsns_ofd, &from_addr, buf, sizeof(buf));
1970 if (len < 1)
1971 return 0;
1972
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001973 len = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, &from_addr,
1974 buf, len, gtphub_now(),
1975 &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001976 if (len < 1)
1977 return 0;
1978
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001979 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001980}
1981
1982static int gtphub_unmap(struct gtphub *hub,
1983 struct gtp_packet_desc *p,
1984 struct gtphub_peer_port *from,
1985 struct gtphub_peer_port *to_proxy,
1986 struct gtphub_peer_port **final_unmapped,
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001987 struct gtphub_peer_port **unmapped_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001988{
1989 /* Always (try to) unmap sequence and TEI numbers, which need to be
1990 * replaced in the packet. Either way, give precedence to the proxy, if
1991 * configured. */
1992
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001993 if (unmapped_from_seq)
1994 *unmapped_from_seq = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001995 if (final_unmapped)
1996 *final_unmapped = NULL;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001997 p->tun = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001998
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001999 struct gtphub_peer_port *from_seq = NULL;
2000 struct gtphub_peer_port *from_tei = NULL;
2001 struct gtphub_peer_port *unmapped = NULL;
2002
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002003 from_seq = gtphub_unmap_seq(p, from);
2004
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002005 if (gtphub_unmap_header_tei(&from_tei, &p->tun, hub, p, from) < 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002006 return -1;
2007
2008 struct gtphub_peer *from_peer = from->peer_addr->peer;
2009 if (from_seq && from_tei && (from_seq != from_tei)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002010 LOG(LOGL_DEBUG,
2011 "Seq unmap and TEI unmap yield two different peers."
2012 " Using seq unmap."
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01002013 " (from %s %s: seq %d yields %s, tei %u yields %s)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002014 gtphub_plane_idx_names[p->plane_idx],
2015 gtphub_peer_str(from_peer),
2016 (int)p->seq,
2017 gtphub_port_str(from_seq),
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002018 (unsigned int)p->header_tei_rx,
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002019 gtphub_port_str2(from_tei)
2020 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002021 }
2022 unmapped = (from_seq? from_seq : from_tei);
2023
2024 if (unmapped && to_proxy && (unmapped != to_proxy)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002025 LOG(LOGL_NOTICE,
2026 "Unmap yields a different peer than the configured proxy."
2027 " Using proxy."
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002028 " unmapped: %s proxy: %s\n",
2029 gtphub_port_str(unmapped),
2030 gtphub_port_str2(to_proxy)
2031 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002032 }
2033 unmapped = (to_proxy? to_proxy : unmapped);
2034
2035 if (!unmapped) {
2036 /* Return no error, but returned pointers are all NULL. */
2037 return 0;
2038 }
2039
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002040 if (unmapped_from_seq)
2041 *unmapped_from_seq = from_seq;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002042 if (final_unmapped)
2043 *final_unmapped = unmapped;
2044 return 0;
2045}
2046
2047static int gsn_addr_to_sockaddr(struct gsn_addr *src,
2048 uint16_t port,
2049 struct osmo_sockaddr *dst)
2050{
2051 return osmo_sockaddr_init_udp(dst, gsn_addr_to_str(src), port);
2052}
2053
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002054/* If p is an Echo request, replace p's data with the matching response and
2055 * return 1. If p is no Echo request, return 0, or -1 if an invalid packet is
2056 * detected. */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002057static int gtphub_handle_echo_req(struct gtphub *hub, struct gtp_packet_desc *p,
2058 uint8_t **reply_buf)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002059{
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002060 if (p->type != GTP_ECHO_REQ)
2061 return 0;
2062
2063 static uint8_t echo_response_data[14] = {
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002064 0x32, /* GTP v1 flags */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002065 GTP_ECHO_RSP,
2066 0x00, 14 - 8, /* Length in network byte order */
2067 0x00, 0x00, 0x00, 0x00, /* Zero TEI */
2068 0, 0, /* Seq, to be replaced */
2069 0, 0, /* no extensions */
2070 0x0e, /* Recovery IE */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002071 0 /* Restart counter, to be replaced */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002072 };
2073 uint16_t *seq = (uint16_t*)&echo_response_data[8];
2074 uint8_t *recovery = &echo_response_data[13];
2075
2076 *seq = hton16(p->seq);
2077 *recovery = hub->restart_counter;
2078
2079 *reply_buf = echo_response_data;
2080
2081 return sizeof(echo_response_data);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002082}
2083
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002084struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2085 const struct osmo_sockaddr *addr);
2086
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002087/* Parse buffer as GTP packet, replace elements in-place and return the ofd and
2088 * address to forward to. Return a pointer to the osmo_fd, but copy the
2089 * sockaddr to *to_addr. The reason for this is that the sockaddr may expire at
2090 * any moment, while the osmo_fd is guaranteed to persist. Return the number of
2091 * bytes to forward, 0 or less on failure. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002092int gtphub_handle_buf(struct gtphub *hub,
2093 unsigned int side_idx,
2094 unsigned int plane_idx,
2095 const struct osmo_sockaddr *from_addr,
2096 uint8_t *buf,
2097 size_t received,
2098 time_t now,
2099 uint8_t **reply_buf,
2100 struct osmo_fd **to_ofd,
2101 struct osmo_sockaddr *to_addr)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002102{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002103 struct gtphub_bind *from_bind = &hub->to_gsns[side_idx][plane_idx];
2104 struct gtphub_bind *to_bind = &hub->to_gsns[other_side_idx(side_idx)][plane_idx];
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002105
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002106 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_IN],
2107 received);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002108
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01002109 struct gtp_packet_desc p;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002110 gtp_decode(buf, received, side_idx, plane_idx, &p, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002111
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002112 LOG(LOGL_DEBUG, "%s rx %s from %s %s%s\n",
2113 (side_idx == GTPH_SIDE_GGSN)? "<-" : "->",
2114 gtphub_plane_idx_names[plane_idx],
2115 gtphub_side_idx_names[side_idx],
2116 osmo_sockaddr_to_str(from_addr),
2117 gtp_type_str(p.type));
2118
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002119 if (p.rc <= 0) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002120 LOG(LOGL_ERROR, "INVALID: dropping GTP packet%s from %s %s %s\n",
2121 gtp_type_str(p.type),
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002122 gtphub_side_idx_names[side_idx],
2123 gtphub_plane_idx_names[plane_idx],
2124 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002125 return -1;
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002126 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002127
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002128 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2129
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002130 int reply_len;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002131 reply_len = gtphub_handle_echo_req(hub, &p, reply_buf);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002132 if (reply_len > 0) {
2133 /* It was an echo. Nothing left to do. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002134 osmo_sockaddr_copy(to_addr, from_addr);
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002135 *to_ofd = &from_bind->ofd;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002136
2137 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2138 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2139 reply_len);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002140 LOG(LOGL_DEBUG, "%s Echo response to %s: %d bytes to %s\n",
2141 (side_idx == GTPH_SIDE_GGSN)? "-->" : "<--",
2142 gtphub_side_idx_names[side_idx],
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002143 (int)reply_len, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002144 return reply_len;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002145 }
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002146 if (reply_len < 0)
2147 return -1;
2148
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002149 *to_ofd = &to_bind->ofd;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002150
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002151 /* If a proxy is configured, check that it's indeed that proxy talking
2152 * to us. A proxy is a forced 1:1 connection, e.g. to another gtphub,
2153 * so no-one else is allowed to talk to us from that side. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002154 struct gtphub_peer_port *from_peer = hub->proxy[side_idx][plane_idx];
2155 if (from_peer) {
2156 if (osmo_sockaddr_cmp(&from_peer->sa, from_addr) != 0) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002157 LOG(LOGL_ERROR,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002158 "Rejecting: %s proxy configured, but GTP packet"
2159 " received on %s bind is from another sender:"
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002160 " proxy: %s sender: %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002161 gtphub_side_idx_names[side_idx],
2162 gtphub_side_idx_names[side_idx],
2163 gtphub_port_str(from_peer),
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002164 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002165 return -1;
2166 }
2167 }
2168
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002169 if (!from_peer) {
2170 /* Find or create a peer with a matching address. The sender's
2171 * port may in fact differ. */
2172 from_peer = gtphub_known_addr_have_port(from_bind, from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002173 }
2174
2175 /* If any PDP context has been created, we already have an entry for
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002176 * this GSN. If we don't have an entry, a GGSN has nothing to tell us
2177 * about, while an SGSN may initiate a PDP context. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002178 if (!from_peer) {
2179 if (side_idx == GTPH_SIDE_GGSN) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002180 LOG(LOGL_ERROR, "Dropping packet%s: unknown GGSN peer: %s\n",
2181 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002182 osmo_sockaddr_to_str(from_addr));
2183 return -1;
2184 } else {
2185 /* SGSN */
2186 /* A new peer. If this is on the Ctrl plane, an SGSN
2187 * may make first contact without being known yet, so
2188 * create the peer struct for the current sender. */
2189 if (plane_idx != GTPH_PLANE_CTRL) {
2190 LOG(LOGL_ERROR,
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002191 "Dropping packet%s: User plane peer was not"
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002192 "announced by PDP Context: %s\n",
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002193 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002194 osmo_sockaddr_to_str(from_addr));
2195 return -1;
2196 }
2197
2198 struct gsn_addr from_gsna;
2199 uint16_t from_port;
2200 if (gsn_addr_from_sockaddr(&from_gsna, &from_port, from_addr) != 0)
2201 return -1;
2202
2203 from_peer = gtphub_port_have(hub, from_bind, &from_gsna, from_port);
2204 }
2205 }
2206
2207 if (!from_peer) {
2208 /* This could theoretically happen for invalid address data or
2209 * somesuch. */
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002210 LOG(LOGL_ERROR, "Dropping packet%s: invalid %s peer: %s\n",
2211 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002212 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002213 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002214 return -1;
2215 }
2216
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002217 rate_ctr_add(&from_peer->counters_io->ctr[GTPH_CTR_BYTES_IN],
2218 received);
2219 rate_ctr_inc(&from_peer->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2220
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002221 LOG(LOGL_DEBUG, "from %s peer: %s\n", gtphub_side_idx_names[side_idx],
2222 gtphub_port_str(from_peer));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002223
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002224 gtphub_check_restart_counter(hub, &p, from_peer);
2225 gtphub_map_restart_counter(hub, &p);
2226
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002227 struct gtphub_peer_port *to_peer_from_seq;
2228 struct gtphub_peer_port *to_peer;
2229 if (gtphub_unmap(hub, &p, from_peer,
2230 hub->proxy[other_side_idx(side_idx)][plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002231 &to_peer, &to_peer_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002232 != 0) {
2233 return -1;
2234 }
2235
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002236 if (p.tun) {
2237 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[p.side_idx][p.plane_idx];
2238 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_IN],
2239 received);
2240 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2241 }
2242
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002243 if ((!to_peer) && (side_idx == GTPH_SIDE_SGSN)) {
2244 if (gtphub_resolve_ggsn(hub, &p, &to_peer) < 0)
2245 return -1;
2246 }
2247
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002248 if (!to_peer && p.tun && p.type == GTP_DELETE_PDP_RSP) {
2249 /* It's a delete confirmation for a tunnel that is partly
2250 * invalid, probably marked unsuable due to a restarted peer.
2251 * Remove the tunnel and be happy without forwarding. */
2252 expiring_item_del(&p.tun->expiry_entry);
2253 p.tun = NULL;
2254 return 0;
2255 }
2256
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002257 if (!to_peer) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002258 LOG(LOGL_ERROR, "No %s to send to. Dropping packet%s"
2259 " (type=%" PRIu8 ", header-TEI=%" PRIx32 ", seq=%" PRIx16 ").\n",
2260 gtphub_side_idx_names[other_side_idx(side_idx)],
2261 gtp_type_str(p.type),
2262 p.type, p.header_tei_rx, p.seq
2263 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002264 return -1;
2265 }
2266
2267 if (plane_idx == GTPH_PLANE_CTRL) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002268 /* This may be a Create PDP Context response. If it is, there
2269 * are other addresses in the GTP message to set up apart from
2270 * the sender. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002271 if (gtphub_handle_pdp_ctx(hub, &p, from_peer, to_peer)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002272 != 0)
2273 return -1;
2274 }
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002275
2276 /* Either to_peer was resolved from an existing tunnel,
2277 * or a PDP Ctx and thus a tunnel has just been created,
2278 * or the tunnel has been deleted due to this message. */
2279 OSMO_ASSERT(p.tun || (p.type == GTP_DELETE_PDP_RSP));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002280
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002281 /* If the GGSN is replying to an SGSN request, the sequence nr has
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002282 * already been unmapped above (to_peer_from_seq != NULL), and we need not
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002283 * create a new mapping. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002284 if (!to_peer_from_seq)
2285 gtphub_map_seq(&p, from_peer, to_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002286
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002287 osmo_sockaddr_copy(to_addr, &to_peer->sa);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002288
2289 *reply_buf = (uint8_t*)p.data;
Neels Hofmeyre921e322015-11-11 00:45:50 +01002290
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002291 if (received) {
2292 rate_ctr_inc(&to_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2293 rate_ctr_add(&to_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2294 received);
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002295
2296 rate_ctr_inc(&to_peer->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2297 rate_ctr_add(&to_peer->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2298 received);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002299 }
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002300
2301 if (p.tun) {
2302 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[other_side_idx(p.side_idx)][p.plane_idx];
2303 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2304 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2305 received);
2306 }
2307
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002308 LOG(LOGL_DEBUG, "%s Forward to %s:"
2309 " header-TEI %" PRIx32", seq %" PRIx16", %d bytes to %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002310 (side_idx == GTPH_SIDE_SGSN)? "-->" : "<--",
2311 gtphub_side_idx_names[other_side_idx(side_idx)],
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002312 p.header_tei, p.seq,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002313 (int)received, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002314 return received;
2315}
2316
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002317static void resolved_gssn_del_cb(struct expiring_item *expi)
2318{
2319 struct gtphub_resolved_ggsn *ggsn;
2320 ggsn = container_of(expi, struct gtphub_resolved_ggsn, expiry_entry);
2321
2322 gtphub_port_ref_count_dec(ggsn->peer);
2323 llist_del(&ggsn->entry);
2324
2325 ggsn->expiry_entry.del_cb = 0;
2326 expiring_item_del(&ggsn->expiry_entry);
2327
2328 talloc_free(ggsn);
2329}
2330
2331void gtphub_resolved_ggsn(struct gtphub *hub, const char *apn_oi_str,
2332 struct gsn_addr *resolved_addr,
2333 time_t now)
2334{
2335 struct gtphub_peer_port *pp;
2336 struct gtphub_resolved_ggsn *ggsn;
2337
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002338 LOG(LOGL_DEBUG, "Resolved GGSN callback: %s %s\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002339 apn_oi_str, osmo_hexdump((unsigned char*)resolved_addr,
2340 sizeof(*resolved_addr)));
Neels Hofmeyr3317c842015-11-11 17:20:42 +01002341
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002342 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002343 resolved_addr, 2123);
2344 if (!pp) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002345 LOG(LOGL_ERROR, "Internal: Cannot create/find peer '%s'\n",
2346 gsn_addr_to_str(resolved_addr));
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002347 return;
2348 }
2349
2350 ggsn = talloc_zero(osmo_gtphub_ctx, struct gtphub_resolved_ggsn);
2351 OSMO_ASSERT(ggsn);
Neels Hofmeyra4370dd2015-11-24 12:46:11 +01002352 INIT_LLIST_HEAD(&ggsn->entry);
2353 expiring_item_init(&ggsn->expiry_entry);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002354
2355 ggsn->peer = pp;
2356 gtphub_port_ref_count_inc(pp);
2357
2358 strncpy(ggsn->apn_oi_str, apn_oi_str, sizeof(ggsn->apn_oi_str));
Neels Hofmeyr3c820ee2015-11-17 12:28:09 +01002359 ggsn->apn_oi_str[sizeof(ggsn->apn_oi_str) - 1] = '\0';
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002360
2361 ggsn->expiry_entry.del_cb = resolved_gssn_del_cb;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002362 expiry_add(&hub->expire_slowly, &ggsn->expiry_entry, now);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002363
2364 llist_add(&ggsn->entry, &hub->resolved_ggsns);
2365}
2366
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002367static int gtphub_gc_peer_port(struct gtphub_peer_port *pp)
2368{
2369 return pp->ref_count == 0;
2370}
2371
2372static int gtphub_gc_peer_addr(struct gtphub_peer_addr *pa)
2373{
2374 struct gtphub_peer_port *pp, *npp;
2375 llist_for_each_entry_safe(pp, npp, &pa->ports, entry) {
2376 if (gtphub_gc_peer_port(pp)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002377 LOG(LOGL_DEBUG, "expired: peer %s\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002378 gtphub_port_str(pp));
2379 gtphub_peer_port_del(pp);
2380 }
2381 }
2382 return llist_empty(&pa->ports);
2383}
2384
2385static int gtphub_gc_peer(struct gtphub_peer *p)
2386{
2387 struct gtphub_peer_addr *pa, *npa;
2388 llist_for_each_entry_safe(pa, npa, &p->addresses, entry) {
2389 if (gtphub_gc_peer_addr(pa)) {
2390 gtphub_peer_addr_del(pa);
2391 }
2392 }
2393
2394 /* Note that there's a ref_count in each gtphub_peer_port instance
2395 * listed within p->addresses, referenced by TEI mappings from
2396 * hub->tei_map. As long as those don't expire, this peer will stay. */
2397
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002398 return llist_empty(&p->addresses)
2399 && nr_map_empty(&p->seq_map);
2400}
2401
2402static void gtphub_gc_bind(struct gtphub_bind *b)
2403{
2404 struct gtphub_peer *p, *n;
2405 llist_for_each_entry_safe(p, n, &b->peers, entry) {
2406 if (gtphub_gc_peer(p)) {
2407 gtphub_peer_del(p);
2408 }
2409 }
2410}
2411
2412void gtphub_gc(struct gtphub *hub, time_t now)
2413{
2414 int expired;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002415 expired = expiry_tick(&hub->expire_quickly, now);
2416 expired += expiry_tick(&hub->expire_slowly, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002417
2418 /* ... */
2419
2420 if (expired) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002421 int s, p;
2422 for_each_side_and_plane(s, p) {
2423 gtphub_gc_bind(&hub->to_gsns[s][p]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002424 }
2425 }
2426}
2427
2428static void gtphub_gc_cb(void *data)
2429{
2430 struct gtphub *hub = data;
2431 gtphub_gc(hub, gtphub_now());
2432 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2433}
2434
2435static void gtphub_gc_start(struct gtphub *hub)
2436{
2437 hub->gc_timer.cb = gtphub_gc_cb;
2438 hub->gc_timer.data = hub;
2439
2440 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2441}
2442
2443/* called by unit tests */
2444void gtphub_init(struct gtphub *hub)
2445{
2446 gtphub_zero(hub);
2447
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002448 INIT_LLIST_HEAD(&hub->tunnels);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01002449 INIT_LLIST_HEAD(&hub->pending_deletes);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002450
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002451 expiry_init(&hub->expire_quickly, GTPH_EXPIRE_QUICKLY_SECS);
2452 expiry_init(&hub->expire_slowly, GTPH_EXPIRE_SLOWLY_MINUTES * 60);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002453
Neels Hofmeyrd121ea62015-11-27 01:20:53 +01002454 nr_pool_init(&hub->tei_pool, 1, 0xffffffff);
2455
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002456 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002457 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002458 for_each_side_and_plane(side_idx, plane_idx) {
2459 gtphub_bind_init(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002460 }
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002461
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002462 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].label = "SGSN Ctrl";
2463 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].label = "GGSN Ctrl";
2464 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].label = "SGSN User";
2465 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].label = "GGSN User";
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002466}
2467
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002468/* For the test suite, this is kept separate from gtphub_stop(), which also
2469 * closes sockets. The test suite avoids using sockets and would cause
2470 * segfaults when trying to close uninitialized ofds. */
2471void gtphub_free(struct gtphub *hub)
2472{
2473 /* By expiring all mappings, a garbage collection should free
2474 * everything else. A gtphub_bind_free() will assert that everything is
2475 * indeed empty. */
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002476 expiry_clear(&hub->expire_quickly);
2477 expiry_clear(&hub->expire_slowly);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002478
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002479 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002480 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002481 for_each_side_and_plane(side_idx, plane_idx) {
2482 gtphub_gc_bind(&hub->to_gsns[side_idx][plane_idx]);
2483 gtphub_bind_free(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002484 }
2485}
2486
2487void gtphub_stop(struct gtphub *hub)
2488{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002489 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002490 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002491 for_each_side_and_plane(side_idx, plane_idx) {
2492 gtphub_bind_stop(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002493 }
2494 gtphub_free(hub);
2495}
2496
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002497static int gtphub_make_proxy(struct gtphub *hub,
2498 struct gtphub_peer_port **pp,
2499 struct gtphub_bind *bind,
2500 const struct gtphub_cfg_addr *addr)
2501{
2502 if (!addr->addr_str)
2503 return 0;
2504
2505 struct gsn_addr gsna;
2506 if (gsn_addr_from_str(&gsna, addr->addr_str) != 0)
2507 return -1;
2508
2509 *pp = gtphub_port_have(hub, bind, &gsna, addr->port);
2510
2511 /* This is *the* proxy. Make sure it is never expired. */
2512 gtphub_port_ref_count_inc(*pp);
2513 return 0;
2514}
2515
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002516int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg,
2517 uint8_t restart_counter)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002518{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002519 gtphub_init(hub);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002520
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002521 hub->restart_counter = restart_counter;
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01002522 hub->sgsn_use_sender = cfg->sgsn_use_sender? 1 : 0;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002523
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002524 /* If a Ctrl plane proxy is configured, ares will never be used. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002525 if (!cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002526 if (gtphub_ares_init(hub) != 0) {
2527 LOG(LOGL_FATAL, "Failed to initialize ares\n");
2528 return -1;
2529 }
2530 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002531
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002532 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002533 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002534 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01002535 int rc;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002536 rc = gtphub_bind_start(&hub->to_gsns[side_idx][plane_idx],
2537 &cfg->to_gsns[side_idx][plane_idx],
2538 (side_idx == GTPH_SIDE_SGSN)
2539 ? from_sgsns_read_cb
2540 : from_ggsns_read_cb,
2541 hub, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002542 if (rc) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002543 LOG(LOGL_FATAL, "Failed to bind for %ss (%s)\n",
2544 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002545 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002546 return rc;
2547 }
2548 }
2549
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002550 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002551 if (gtphub_make_proxy(hub,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002552 &hub->proxy[side_idx][plane_idx],
2553 &hub->to_gsns[side_idx][plane_idx],
2554 &cfg->proxy[side_idx][plane_idx])
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002555 != 0) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002556 LOG(LOGL_FATAL, "Cannot configure %s proxy"
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002557 " %s port %d.\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002558 gtphub_side_idx_names[side_idx],
2559 cfg->proxy[side_idx][plane_idx].addr_str,
2560 (int)cfg->proxy[side_idx][plane_idx].port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002561 return -1;
2562 }
2563 }
2564
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002565 for_each_side_and_plane(side_idx, plane_idx) {
2566 if (hub->proxy[side_idx][plane_idx])
2567 LOG(LOGL_NOTICE, "Using %s %s proxy %s\n",
2568 gtphub_side_idx_names[side_idx],
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002569 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002570 gtphub_port_str(hub->proxy[side_idx][plane_idx]));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002571 }
2572
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002573 if (hub->sgsn_use_sender)
Neels Hofmeyr9d8f5062015-12-03 14:52:33 +01002574 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 +01002575
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002576 gtphub_gc_start(hub);
2577 return 0;
2578}
2579
2580static struct gtphub_peer_addr *gtphub_peer_find_addr(const struct gtphub_peer *peer,
2581 const struct gsn_addr *addr)
2582{
2583 struct gtphub_peer_addr *a;
2584 llist_for_each_entry(a, &peer->addresses, entry) {
2585 if (gsn_addr_same(&a->addr, addr))
2586 return a;
2587 }
2588 return NULL;
2589}
2590
2591static struct gtphub_peer_port *gtphub_addr_find_port(const struct gtphub_peer_addr *a,
2592 uint16_t port)
2593{
2594 OSMO_ASSERT(port);
2595 struct gtphub_peer_port *pp;
2596 llist_for_each_entry(pp, &a->ports, entry) {
2597 if (pp->port == port)
2598 return pp;
2599 }
2600 return NULL;
2601}
2602
2603static struct gtphub_peer_addr *gtphub_addr_find(const struct gtphub_bind *bind,
2604 const struct gsn_addr *addr)
2605{
2606 struct gtphub_peer *peer;
2607 llist_for_each_entry(peer, &bind->peers, entry) {
2608 struct gtphub_peer_addr *a = gtphub_peer_find_addr(peer, addr);
2609 if (a)
2610 return a;
2611 }
2612 return NULL;
2613}
2614
2615static struct gtphub_peer_port *gtphub_port_find(const struct gtphub_bind *bind,
2616 const struct gsn_addr *addr,
2617 uint16_t port)
2618{
2619 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2620 if (!a)
2621 return NULL;
2622 return gtphub_addr_find_port(a, port);
2623}
2624
2625struct gtphub_peer_port *gtphub_port_find_sa(const struct gtphub_bind *bind,
2626 const struct osmo_sockaddr *addr)
2627{
2628 struct gsn_addr gsna;
2629 uint16_t port;
2630 gsn_addr_from_sockaddr(&gsna, &port, addr);
2631 return gtphub_port_find(bind, &gsna, port);
2632}
2633
2634static struct gtphub_peer *gtphub_peer_new(struct gtphub *hub,
2635 struct gtphub_bind *bind)
2636{
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002637 struct gtphub_peer *peer = talloc_zero(osmo_gtphub_ctx,
2638 struct gtphub_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002639 OSMO_ASSERT(peer);
2640
2641 INIT_LLIST_HEAD(&peer->addresses);
2642
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +01002643 nr_pool_init(&peer->seq_pool, 0, 0xffff);
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002644 nr_map_init(&peer->seq_map, &peer->seq_pool, &hub->expire_quickly);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002645
2646 /* TODO use something random to pick the initial sequence nr.
2647 0x6d31 produces the ASCII character sequence 'm1', currently used in
2648 gtphub_nc_test.sh. */
2649 peer->seq_pool.last_nr = 0x6d31 - 1;
2650
2651 llist_add(&peer->entry, &bind->peers);
2652 return peer;
2653}
2654
2655static struct gtphub_peer_addr *gtphub_peer_add_addr(struct gtphub_peer *peer,
2656 const struct gsn_addr *addr)
2657{
2658 struct gtphub_peer_addr *a;
2659 a = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_addr);
2660 OSMO_ASSERT(a);
2661 a->peer = peer;
2662 gsn_addr_copy(&a->addr, addr);
2663 INIT_LLIST_HEAD(&a->ports);
2664 llist_add(&a->entry, &peer->addresses);
2665
2666 return a;
2667}
2668
2669static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
2670 struct gtphub_bind *bind,
2671 const struct gsn_addr *addr)
2672{
2673 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2674 if (a)
2675 return a;
2676
2677 /* If we haven't found an address, that means we need to create an
2678 * entirely new peer for the new address. More addresses may be added
2679 * to this peer later, but not via this function. */
2680 struct gtphub_peer *peer = gtphub_peer_new(hub, bind);
Neels Hofmeyre921e322015-11-11 00:45:50 +01002681
2682 a = gtphub_peer_add_addr(peer, addr);
2683
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002684 LOG(LOGL_DEBUG, "New peer address: %s %s\n",
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002685 bind->label,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002686 gsn_addr_to_str(&a->addr));
2687
2688 return a;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002689}
2690
2691static struct gtphub_peer_port *gtphub_addr_add_port(struct gtphub_peer_addr *a,
2692 uint16_t port)
2693{
2694 struct gtphub_peer_port *pp;
2695
2696 pp = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_port);
2697 OSMO_ASSERT(pp);
2698 pp->peer_addr = a;
2699 pp->port = port;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01002700 pp->last_restart_count = -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002701
2702 if (gsn_addr_to_sockaddr(&a->addr, port, &pp->sa) != 0) {
2703 talloc_free(pp);
2704 return NULL;
2705 }
2706
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002707 pp->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
2708 &gtphub_ctrg_io_desc, 0);
2709
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002710 llist_add(&pp->entry, &a->ports);
2711
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002712 LOG(LOGL_DEBUG, "New peer port: %s port %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002713 gsn_addr_to_str(&a->addr),
2714 (int)port);
2715
2716 return pp;
2717}
2718
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002719struct gtphub_peer_port *gtphub_port_have(struct gtphub *hub,
2720 struct gtphub_bind *bind,
2721 const struct gsn_addr *addr,
2722 uint16_t port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002723{
2724 struct gtphub_peer_addr *a = gtphub_addr_have(hub, bind, addr);
2725
2726 struct gtphub_peer_port *pp = gtphub_addr_find_port(a, port);
2727 if (pp)
2728 return pp;
2729
2730 return gtphub_addr_add_port(a, port);
2731}
2732
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002733/* Find a GGSN peer with a matching address. If the address is known but the
2734 * port not, create a new port for that peer address. */
2735struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2736 const struct osmo_sockaddr *addr)
2737{
2738 struct gtphub_peer_addr *pa;
2739 struct gtphub_peer_port *pp;
2740
2741 struct gsn_addr gsna;
2742 uint16_t port;
2743 gsn_addr_from_sockaddr(&gsna, &port, addr);
2744
2745 pa = gtphub_addr_find(bind, &gsna);
2746 if (!pa)
2747 return NULL;
2748
2749 pp = gtphub_addr_find_port(pa, port);
2750
2751 if (!pp)
2752 pp = gtphub_addr_add_port(pa, port);
2753
2754 return pp;
2755}
2756
2757
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002758/* Return 0 if the message in p is not applicable for GGSN resolution, -1 if
2759 * resolution should be possible but failed, and 1 if resolution was
2760 * successful. *pp will be set to NULL if <1 is returned. */
2761static int gtphub_resolve_ggsn(struct gtphub *hub,
2762 struct gtp_packet_desc *p,
2763 struct gtphub_peer_port **pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002764{
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002765 *pp = NULL;
2766
2767 /* TODO determine from message type whether IEs should be present? */
2768
2769 int rc;
2770 const char *imsi_str;
2771 rc = get_ie_imsi_str(p->ie, 0, &imsi_str);
2772 if (rc < 1)
2773 return rc;
2774 OSMO_ASSERT(imsi_str);
2775
2776 const char *apn_str;
2777 rc = get_ie_apn_str(p->ie, &apn_str);
2778 if (rc < 1)
2779 return rc;
2780 OSMO_ASSERT(apn_str);
2781
2782 *pp = gtphub_resolve_ggsn_addr(hub, imsi_str, apn_str);
2783 return (*pp)? 1 : -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002784}
2785
2786
2787/* TODO move to osmocom/core/socket.c ? */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002788/* use this in osmo_sock_init() to remove dup. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002789/* Internal: call getaddrinfo for osmo_sockaddr_init(). The caller is required
2790 to call freeaddrinfo(*result), iff zero is returned. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002791static int _osmo_getaddrinfo(struct addrinfo **result,
2792 uint16_t family, uint16_t type, uint8_t proto,
2793 const char *host, uint16_t port)
2794{
2795 struct addrinfo hints;
2796 char portbuf[16];
2797
2798 sprintf(portbuf, "%u", port);
2799 memset(&hints, '\0', sizeof(struct addrinfo));
2800 hints.ai_family = family;
2801 if (type == SOCK_RAW) {
2802 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
2803 * SOCK_RAW and IPPROTO_GRE is used.
2804 */
2805 hints.ai_socktype = SOCK_DGRAM;
2806 hints.ai_protocol = IPPROTO_UDP;
2807 } else {
2808 hints.ai_socktype = type;
2809 hints.ai_protocol = proto;
2810 }
2811
2812 return getaddrinfo(host, portbuf, &hints, result);
2813}
2814
2815/* TODO move to osmocom/core/socket.c ? */
2816int osmo_sockaddr_init(struct osmo_sockaddr *addr,
2817 uint16_t family, uint16_t type, uint8_t proto,
2818 const char *host, uint16_t port)
2819{
2820 struct addrinfo *res;
2821 int rc;
2822 rc = _osmo_getaddrinfo(&res, family, type, proto, host, port);
2823
2824 if (rc != 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002825 LOG(LOGL_ERROR, "getaddrinfo returned error %d\n", (int)rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002826 return -EINVAL;
2827 }
2828
2829 OSMO_ASSERT(res->ai_addrlen <= sizeof(addr->a));
2830 memcpy(&addr->a, res->ai_addr, res->ai_addrlen);
2831 addr->l = res->ai_addrlen;
2832 freeaddrinfo(res);
2833
2834 return 0;
2835}
2836
2837int osmo_sockaddr_to_strs(char *addr_str, size_t addr_str_len,
2838 char *port_str, size_t port_str_len,
2839 const struct osmo_sockaddr *addr,
2840 int flags)
2841{
2842 int rc;
2843
2844 if ((addr->l < 1) || (addr->l > sizeof(addr->a))) {
2845 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address size: %d\n", addr->l);
2846 return -1;
2847 }
2848
2849 if (addr->l > sizeof(addr->a)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002850 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: too long: %d\n",
2851 addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002852 return -1;
2853 }
2854
2855 rc = getnameinfo((struct sockaddr*)&addr->a, addr->l,
2856 addr_str, addr_str_len,
2857 port_str, port_str_len,
2858 flags);
2859
2860 if (rc)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002861 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: %s: %s\n",
2862 gai_strerror(rc), osmo_hexdump((uint8_t*)&addr->a,
2863 addr->l));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002864
2865 return rc;
2866}
2867
2868const char *osmo_sockaddr_to_strb(const struct osmo_sockaddr *addr,
2869 char *buf, size_t buf_len)
2870{
2871 const int portbuf_len = 6;
2872 OSMO_ASSERT(buf_len > portbuf_len);
2873 char *portbuf = buf + buf_len - portbuf_len;
2874 buf_len -= portbuf_len;
2875 if (osmo_sockaddr_to_strs(buf, buf_len,
2876 portbuf, portbuf_len,
2877 addr,
2878 NI_NUMERICHOST | NI_NUMERICSERV))
2879 return NULL;
2880
2881 char *pos = buf + strnlen(buf, buf_len-1);
2882 size_t len = buf_len - (pos - buf);
2883
2884 snprintf(pos, len, " port %s", portbuf);
2885 buf[buf_len-1] = '\0';
2886
2887 return buf;
2888}
2889
2890const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *addr)
2891{
2892 static char buf[256];
2893 const char *result = osmo_sockaddr_to_strb(addr, buf, sizeof(buf));
2894 if (! result)
2895 return "(invalid)";
2896 return result;
2897}
2898
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002899int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
2900 const struct osmo_sockaddr *b)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002901{
2902 if (a == b)
2903 return 0;
2904 if (!a)
2905 return -1;
2906 if (!b)
2907 return 1;
2908 if (a->l != b->l) {
2909 /* Lengths are not the same, but determine the order. Will
2910 * anyone ever sort a list by osmo_sockaddr though...? */
2911 int cmp = memcmp(&a->a, &b->a, (a->l < b->l)? a->l : b->l);
2912 if (cmp == 0) {
2913 if (a->l < b->l)
2914 return -1;
2915 else
2916 return 1;
2917 }
2918 return cmp;
2919 }
2920 return memcmp(&a->a, &b->a, a->l);
2921}
2922
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002923void osmo_sockaddr_copy(struct osmo_sockaddr *dst,
2924 const struct osmo_sockaddr *src)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002925{
2926 OSMO_ASSERT(src->l <= sizeof(dst->a));
2927 memcpy(&dst->a, &src->a, src->l);
2928 dst->l = src->l;
2929}