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