blob: 4708f37e28193eefa3460a3c3167f58e467cc175 [file] [log] [blame]
Neels Hofmeyr9f796642015-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 Hofmeyr21d08732015-11-20 00:08:28 +010027#include <unistd.h>
Neels Hofmeyr9f796642015-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 Hofmeyrf16657a2015-11-08 20:34:47 +010037#include <openbsc/gprs_utils.h>
Neels Hofmeyr9f796642015-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 Hofmeyr416e35f2015-11-20 01:28:40 +010042#include <osmocom/core/rate_ctr.h>
43#include <osmocom/core/stats.h>
Neels Hofmeyr9f796642015-09-24 17:32:30 +020044
Neels Hofmeyrf16657a2015-11-08 20:34:47 +010045
Neels Hofmeyr9f796642015-09-24 17:32:30 +020046static const int GTPH_GC_TICK_SECONDS = 1;
47
48void *osmo_gtphub_ctx;
49
Neels Hofmeyr2cabc5a2015-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 Hofmeyr9f796642015-09-24 17:32:30 +020053
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +010054#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
55 sizeof(*(struct_pointer)))
Neels Hofmeyr9f796642015-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 Hofmeyr2a1d61f2015-11-16 14:52:05 +010062#define llist_first(head, type, entry) \
63 llist_entry(__llist_first(head), type, entry)
Neels Hofmeyr9f796642015-09-24 17:32:30 +020064
Neels Hofmeyr8826ab32015-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 Hofmeyr9f796642015-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 Hofmeyre6078bc2015-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 Hofmeyr9f796642015-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 Hofmeyr39da7112015-11-24 13:31:06 +010089 uint32_t header_tei_rx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +020090 uint32_t header_tei;
91 int rc; /* enum gtp_rc */
92 unsigned int plane_idx;
Neels Hofmeyr39da7112015-11-24 13:31:06 +010093 unsigned int side_idx;
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +010094 struct gtphub_tunnel *tun;
Neels Hofmeyr314e7832015-11-24 13:27:13 +010095 time_t timestamp;
Neels Hofmeyr9f796642015-09-24 17:32:30 +020096 union gtpie_member *ie[GTPIE_SIZE];
97};
98
Neels Hofmeyr3c6e0532015-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 Hofmeyr416e35f2015-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 Hofmeyrc5f8fe02015-11-20 03:16:19 +0100121 { "bytes.in", "Bytes ( In)" },
122 { "bytes.out", "Bytes (Out)" },
Neels Hofmeyr416e35f2015-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 Hofmeyrc5f8fe02015-11-20 03:16:19 +0100127 .group_description = "I/O Statistics",
Neels Hofmeyr416e35f2015-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 Hofmeyr9f796642015-09-24 17:32:30 +0200134void gsn_addr_copy(struct gsn_addr *gsna, const struct gsn_addr *src)
135{
Neels Hofmeyr84d76862015-12-03 11:24:39 +0100136 *gsna = *src;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200137}
138
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200139int gsn_addr_from_sockaddr(struct gsn_addr *gsna, uint16_t *port,
140 const struct osmo_sockaddr *sa)
141{
142 char addr_str[256];
143 char port_str[6];
144
145 if (osmo_sockaddr_to_strs(addr_str, sizeof(addr_str),
146 port_str, sizeof(port_str),
147 sa, (NI_NUMERICHOST | NI_NUMERICSERV))
148 != 0) {
149 return -1;
150 }
151
152 if (port)
153 *port = atoi(port_str);
154
155 return gsn_addr_from_str(gsna, addr_str);
156}
157
158int gsn_addr_from_str(struct gsn_addr *gsna, const char *numeric_addr_str)
159{
Neels Hofmeyr9d02fbb2015-11-30 14:13:19 +0100160 if ((!gsna) || (!numeric_addr_str))
161 return -1;
162
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200163 int af = AF_INET;
164 gsna->len = 4;
165 const char *pos = numeric_addr_str;
166 for (; *pos; pos++) {
167 if (*pos == ':') {
168 af = AF_INET6;
169 gsna->len = 16;
170 break;
171 }
172 }
173
174 int rc = inet_pton(af, numeric_addr_str, gsna->buf);
175 if (rc != 1) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100176 LOG(LOGL_ERROR, "Cannot resolve numeric address: '%s'\n",
177 numeric_addr_str);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200178 return -1;
179 }
180 return 0;
181}
182
183const char *gsn_addr_to_str(const struct gsn_addr *gsna)
184{
185 static char buf[INET6_ADDRSTRLEN + 1];
186 return gsn_addr_to_strb(gsna, buf, sizeof(buf));
187}
188
189const char *gsn_addr_to_strb(const struct gsn_addr *gsna,
190 char *strbuf,
191 int strbuf_len)
192{
193 int af;
194 switch (gsna->len) {
195 case 4:
196 af = AF_INET;
197 break;
198 case 16:
199 af = AF_INET6;
200 break;
201 default:
202 return NULL;
203 }
204
205 const char *r = inet_ntop(af, gsna->buf, strbuf, strbuf_len);
206 if (!r) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100207 LOG(LOGL_ERROR, "Cannot convert gsn_addr to string:"
208 " %s: len=%d, buf=%s\n",
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100209 strerror(errno),
210 (int)gsna->len,
211 osmo_hexdump(gsna->buf, sizeof(gsna->buf)));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200212 }
213 return r;
214}
215
216int gsn_addr_same(const struct gsn_addr *a, const struct gsn_addr *b)
217{
218 if (a == b)
219 return 1;
220 if ((!a) || (!b))
221 return 0;
222 if (a->len != b->len)
223 return 0;
224 return (memcmp(a->buf, b->buf, a->len) == 0)? 1 : 0;
225}
226
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100227static int gsn_addr_get(struct gsn_addr *gsna, const struct gtp_packet_desc *p,
228 int idx)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200229{
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100230 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200231 return -1;
232
233 unsigned int len;
234 /* gtpie.h fails to declare gtpie_gettlv()'s first arg as const. */
235 if (gtpie_gettlv((union gtpie_member**)p->ie, GTPIE_GSN_ADDR, idx,
236 &len, gsna->buf, sizeof(gsna->buf))
237 != 0)
238 return -1;
239 gsna->len = len;
240 return 0;
241}
242
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100243static int gsn_addr_put(const struct gsn_addr *gsna, struct gtp_packet_desc *p,
244 int idx)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200245{
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100246 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200247 return -1;
248
249 int ie_idx;
250 ie_idx = gtpie_getie(p->ie, GTPIE_GSN_ADDR, idx);
251
252 if (ie_idx < 0)
253 return -1;
254
255 struct gtpie_tlv *ie = &p->ie[ie_idx]->tlv;
256 int ie_l = ntoh16(ie->l);
257 if (ie_l != gsna->len) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100258 LOG(LOGL_ERROR, "Not implemented:"
259 " replace an IE address of different size:"
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200260 " replace %d with %d\n", (int)ie_l, (int)gsna->len);
261 return -1;
262 }
263
264 memcpy(ie->v, gsna->buf, (int)ie_l);
265 return 0;
266}
267
268/* Validate GTP version 0 data; analogous to validate_gtp1_header(), see there.
269 */
270void validate_gtp0_header(struct gtp_packet_desc *p)
271{
272 const struct gtp0_header *pheader = &(p->data->gtp0.h);
273 p->rc = GTP_RC_UNKNOWN;
274 p->header_len = 0;
275
276 OSMO_ASSERT(p->data_len >= 1);
277 OSMO_ASSERT(p->version == 0);
278
279 if (p->data_len < GTP0_HEADER_SIZE) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100280 LOG(LOGL_ERROR, "GTP0 packet too short: %d\n", p->data_len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200281 p->rc = GTP_RC_TOOSHORT;
282 return;
283 }
284
285 p->type = ntoh8(pheader->type);
286 p->seq = ntoh16(pheader->seq);
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100287 p->header_tei_rx = 0; /* TODO */
288 p->header_tei = p->header_tei_rx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200289
290 if (p->data_len == GTP0_HEADER_SIZE) {
291 p->rc = GTP_RC_TINY;
292 p->header_len = GTP0_HEADER_SIZE;
293 return;
294 }
295
296 /* Check packet length field versus length of packet */
297 if (p->data_len != (ntoh16(pheader->length) + GTP0_HEADER_SIZE)) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100298 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
299 " match actual length (%d)\n",
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100300 GTP0_HEADER_SIZE, (int)ntoh16(pheader->length),
301 p->data_len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200302 p->rc = GTP_RC_TOOSHORT;
303 return;
304 }
305
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100306 LOG(LOGL_DEBUG, "GTP v0 TID = %" PRIu64 "\n", pheader->tid);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200307 p->header_len = GTP0_HEADER_SIZE;
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100308 p->rc = GTP_RC_PDU_C;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200309}
310
311/* Validate GTP version 1 data, and update p->rc with the result, as well as
312 * p->header_len in case of a valid header. */
313void validate_gtp1_header(struct gtp_packet_desc *p)
314{
315 const struct gtp1_header_long *pheader = &(p->data->gtp1l.h);
316 p->rc = GTP_RC_UNKNOWN;
317 p->header_len = 0;
318
319 OSMO_ASSERT(p->data_len >= 1);
320 OSMO_ASSERT(p->version == 1);
321
322 if ((p->data_len < GTP1_HEADER_SIZE_LONG)
323 && (p->data_len != GTP1_HEADER_SIZE_SHORT)){
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100324 LOG(LOGL_ERROR, "GTP packet too short: %d\n", p->data_len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200325 p->rc = GTP_RC_TOOSHORT;
326 return;
327 }
328
329 p->type = ntoh8(pheader->type);
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100330 p->header_tei_rx = ntoh32(pheader->tei);
331 p->header_tei = p->header_tei_rx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200332 p->seq = ntoh16(pheader->seq);
333
Neels Hofmeyr21495a42015-12-06 15:22:54 +0100334 LOG(LOGL_DEBUG, "| GTPv1\n");
335 LOG(LOGL_DEBUG, "| type = %" PRIu8 " 0x%02" PRIx8 "\n", p->type, p->type);
336 LOG(LOGL_DEBUG, "| length = %" PRIu16 " 0x%04" PRIx16 "\n", ntoh16(pheader->length), ntoh16(pheader->length));
337 LOG(LOGL_DEBUG, "| TEI = %" PRIu32 " 0x%08" PRIx32 "\n", p->header_tei_rx, p->header_tei_rx);
338 LOG(LOGL_DEBUG, "| seq = %" PRIu16 " 0x%04" PRIx16 "\n", p->seq, p->seq);
339 LOG(LOGL_DEBUG, "| npdu = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->npdu, pheader->npdu);
340 LOG(LOGL_DEBUG, "| next = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->next, pheader->next);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200341
342 if (p->data_len <= GTP1_HEADER_SIZE_LONG) {
343 p->rc = GTP_RC_TINY;
344 p->header_len = GTP1_HEADER_SIZE_SHORT;
345 return;
346 }
347
348 /* Check packet length field versus length of packet */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100349 int announced_len = ntoh16(pheader->length) + GTP1_HEADER_SIZE_SHORT;
350 if (p->data_len != announced_len) {
351 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
352 " match actual length (%d)\n",
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100353 GTP1_HEADER_SIZE_SHORT, (int)ntoh16(pheader->length),
354 p->data_len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200355 p->rc = GTP_RC_TOOSHORT;
356 return;
357 }
358
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100359 p->rc = GTP_RC_PDU_C;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200360 p->header_len = GTP1_HEADER_SIZE_LONG;
361}
362
363/* Examine whether p->data of size p->data_len has a valid GTP header. Set
364 * p->version, p->rc and p->header_len. On error, p->rc <= 0 (see enum
365 * gtp_rc). p->data must point at a buffer with p->data_len set. */
366void validate_gtp_header(struct gtp_packet_desc *p)
367{
368 p->rc = GTP_RC_UNKNOWN;
369
370 /* Need at least 1 byte in order to check version */
371 if (p->data_len < 1) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100372 LOG(LOGL_ERROR, "Discarding packet - too small: %d\n",
373 p->data_len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200374 p->rc = GTP_RC_TOOSHORT;
375 return;
376 }
377
378 p->version = p->data->flags >> 5;
379
380 switch (p->version) {
381 case 0:
382 validate_gtp0_header(p);
383 break;
384 case 1:
385 validate_gtp1_header(p);
386 break;
387 default:
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100388 LOG(LOGL_ERROR, "Unsupported GTP version: %d\n", p->version);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200389 p->rc = GTP_RC_UNSUPPORTED_VERSION;
390 break;
391 }
392}
393
394
395/* Return the value of the i'th IMSI IEI by copying to *imsi.
396 * The first IEI is reached by passing i = 0.
397 * imsi must point at allocated space of (at least) 8 bytes.
398 * Return 1 on success, or 0 if not found. */
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100399static int get_ie_imsi(union gtpie_member *ie[], int i, uint8_t *imsi)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200400{
401 return gtpie_gettv0(ie, GTPIE_IMSI, i, imsi, 8) == 0;
402}
403
404/* Analogous to get_ie_imsi(). nsapi must point at a single uint8_t. */
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100405static int get_ie_nsapi(union gtpie_member *ie[], int i, uint8_t *nsapi)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200406{
407 return gtpie_gettv1(ie, GTPIE_NSAPI, i, nsapi) == 0;
408}
409
410static char imsi_digit_to_char(uint8_t nibble)
411{
412 nibble &= 0x0f;
413 if (nibble > 9)
414 return (nibble == 0x0f) ? '\0' : '?';
415 return '0' + nibble;
416}
417
418/* Return a human readable IMSI string, in a static buffer.
419 * imsi must point at 8 octets of IMSI IE encoded IMSI data. */
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100420static int imsi_to_str(uint8_t *imsi, const char **imsi_str)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200421{
422 static char str[17];
423 int i;
424
425 for (i = 0; i < 8; i++) {
Neels Hofmeyr078fe562015-11-30 12:19:50 +0100426 char c;
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100427 c = imsi_digit_to_char(imsi[i]);
428 if (c == '?')
429 return -1;
430 str[2*i] = c;
431
432 c = imsi_digit_to_char(imsi[i] >> 4);
433 if (c == '?')
434 return -1;
435 str[2*i + 1] = c;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200436 }
437 str[16] = '\0';
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100438 *imsi_str = str;
439 return 1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200440}
441
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100442/* Return 0 if not present, 1 if present and decoded successfully, -1 if
443 * present but cannot be decoded. */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100444static int get_ie_imsi_str(union gtpie_member *ie[], int i,
445 const char **imsi_str)
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100446{
447 uint8_t imsi_buf[8];
448 if (!get_ie_imsi(ie, i, imsi_buf))
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100449 return 0;
450 return imsi_to_str(imsi_buf, imsi_str);
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100451}
452
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100453/* Return 0 if not present, 1 if present and decoded successfully, -1 if
454 * present but cannot be decoded. */
455static int get_ie_apn_str(union gtpie_member *ie[], const char **apn_str)
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100456{
457 static char apn_buf[GSM_APN_LENGTH];
458 unsigned int len;
459 if (gtpie_gettlv(ie, GTPIE_APN, 0,
460 &len, apn_buf, sizeof(apn_buf)) != 0)
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100461 return 0;
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100462
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100463 if (len < 2) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100464 LOG(LOGL_ERROR, "APN IE: invalid length: %d\n",
465 (int)len);
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100466 return -1;
467 }
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100468
469 if (len > (sizeof(apn_buf) - 1))
470 len = sizeof(apn_buf) - 1;
471 apn_buf[len] = '\0';
472
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100473 *apn_str = gprs_apn_to_str(apn_buf, (uint8_t*)apn_buf, len);
474 if (!(*apn_str)) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100475 LOG(LOGL_ERROR, "APN IE: present but cannot be decoded: %s\n",
476 osmo_hexdump((uint8_t*)apn_buf, len));
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100477 return -1;
478 }
479 return 1;
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100480}
481
482
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200483/* Validate header, and index information elements. Write decoded packet
484 * information to *res. res->data will point at the given data buffer. On
485 * error, p->rc is set <= 0 (see enum gtp_rc). */
486static void gtp_decode(const uint8_t *data, int data_len,
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100487 unsigned int from_side_idx,
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200488 unsigned int from_plane_idx,
Neels Hofmeyr314e7832015-11-24 13:27:13 +0100489 struct gtp_packet_desc *res,
490 time_t now)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200491{
492 ZERO_STRUCT(res);
493 res->data = (union gtp_packet*)data;
494 res->data_len = data_len;
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100495 res->side_idx = from_side_idx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200496 res->plane_idx = from_plane_idx;
Neels Hofmeyr314e7832015-11-24 13:27:13 +0100497 res->timestamp = now;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200498
499 validate_gtp_header(res);
500
Neels Hofmeyr06883a42015-12-03 11:25:27 +0100501 if (res->rc <= 0)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200502 return;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200503
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100504 LOG(LOGL_DEBUG, "Valid GTP header (v%d)\n", res->version);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200505
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100506 if (from_plane_idx == GTPH_PLANE_USER) {
507 res->rc = GTP_RC_PDU_U;
508 return;
509 }
510
511 if (res->rc != GTP_RC_PDU_C) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100512 LOG(LOGL_DEBUG, "no IEs in this GTP packet\n");
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200513 return;
514 }
515
516 if (gtpie_decaps(res->ie, res->version,
517 (void*)(data + res->header_len),
518 res->data_len - res->header_len) != 0) {
519 res->rc = GTP_RC_INVALID_IE;
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100520 LOG(LOGL_ERROR, "INVALID: cannot decode IEs."
521 " Dropping GTP packet.\n");
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200522 return;
523 }
524
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100525#if 1
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100526 /* TODO if (<loglevel is debug>) { ...
527 (waiting for a commit from jerlbeck) */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200528 int i;
529
530 for (i = 0; i < 10; i++) {
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100531 const char *imsi;
532 if (get_ie_imsi_str(res->ie, i, &imsi) < 1)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200533 break;
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100534 LOG(LOGL_DEBUG, "| IMSI %s\n", imsi);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200535 }
536
537 for (i = 0; i < 10; i++) {
538 uint8_t nsapi;
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100539 if (!get_ie_nsapi(res->ie, i, &nsapi))
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200540 break;
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100541 LOG(LOGL_DEBUG, "| NSAPI %d\n", (int)nsapi);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200542 }
543
544 for (i = 0; i < 2; i++) {
545 struct gsn_addr addr;
546 if (gsn_addr_get(&addr, res, i) == 0)
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100547 LOG(LOGL_DEBUG, "| addr %s\n", gsn_addr_to_str(&addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200548 }
549
550 for (i = 0; i < 10; i++) {
551 uint32_t tei;
552 if (gtpie_gettv4(res->ie, GTPIE_TEI_DI, i, &tei) != 0)
553 break;
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100554 LOG(LOGL_DEBUG, "| TEI DI (USER) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200555 tei, tei);
556 }
557
558 for (i = 0; i < 10; i++) {
559 uint32_t tei;
560 if (gtpie_gettv4(res->ie, GTPIE_TEI_C, i, &tei) != 0)
561 break;
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100562 LOG(LOGL_DEBUG, "| TEI (CTRL) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200563 tei, tei);
564 }
565#endif
566}
567
568
569/* expiry */
570
571void expiry_init(struct expiry *exq, int expiry_in_seconds)
572{
573 ZERO_STRUCT(exq);
574 exq->expiry_in_seconds = expiry_in_seconds;
575 INIT_LLIST_HEAD(&exq->items);
576}
577
578void expiry_add(struct expiry *exq, struct expiring_item *item, time_t now)
579{
580 item->expiry = now + exq->expiry_in_seconds;
581
Neels Hofmeyr8826ab32015-11-24 13:32:23 +0100582 OSMO_ASSERT(llist_empty(&exq->items)
583 || (item->expiry
584 >= llist_last(&exq->items, struct expiring_item, entry)->expiry));
585
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200586 /* Add/move to the tail to always sort by expiry, ascending. */
587 llist_del(&item->entry);
588 llist_add_tail(&item->entry, &exq->items);
589}
590
591int expiry_tick(struct expiry *exq, time_t now)
592{
593 int expired = 0;
594 struct expiring_item *m, *n;
595 llist_for_each_entry_safe(m, n, &exq->items, entry) {
596 if (m->expiry <= now) {
597 expiring_item_del(m);
598 expired ++;
599 } else {
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200600 /* The items are added sorted by expiry. So when we hit
601 * an unexpired entry, only more unexpired ones will
602 * follow. */
603 break;
604 }
605 }
606 return expired;
607}
608
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100609void expiry_clear(struct expiry *exq)
610{
611 struct expiring_item *m, *n;
612 llist_for_each_entry_safe(m, n, &exq->items, entry) {
613 expiring_item_del(m);
614 }
615}
616
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200617void expiring_item_init(struct expiring_item *item)
618{
619 ZERO_STRUCT(item);
620 INIT_LLIST_HEAD(&item->entry);
621}
622
623void expiring_item_del(struct expiring_item *item)
624{
625 OSMO_ASSERT(item);
626 llist_del(&item->entry);
627 INIT_LLIST_HEAD(&item->entry);
628 if (item->del_cb) {
629 /* avoid loops */
630 del_cb_t del_cb = item->del_cb;
631 item->del_cb = 0;
632 (del_cb)(item);
633 }
634}
635
636
637/* nr_map, nr_pool */
638
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100639void nr_pool_init(struct nr_pool *pool, nr_t nr_min, nr_t nr_max)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200640{
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100641 *pool = (struct nr_pool){
642 .nr_min = nr_min,
643 .nr_max = nr_max,
644 .last_nr = nr_max
645 };
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200646}
647
648nr_t nr_pool_next(struct nr_pool *pool)
649{
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100650 if (pool->last_nr >= pool->nr_max)
651 pool->last_nr = pool->nr_min;
652 else
653 pool->last_nr ++;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200654
655 return pool->last_nr;
656}
657
658void nr_map_init(struct nr_map *map, struct nr_pool *pool,
659 struct expiry *exq)
660{
661 ZERO_STRUCT(map);
662 map->pool = pool;
663 map->add_items_to_expiry = exq;
664 INIT_LLIST_HEAD(&map->mappings);
665}
666
667void nr_mapping_init(struct nr_mapping *m)
668{
669 ZERO_STRUCT(m);
670 INIT_LLIST_HEAD(&m->entry);
671 expiring_item_init(&m->expiry_entry);
672}
673
674void nr_map_add(struct nr_map *map, struct nr_mapping *mapping, time_t now)
675{
676 /* Generate a mapped number */
677 mapping->repl = nr_pool_next(map->pool);
678
679 /* Add to the tail to always yield a list sorted by expiry, in
680 * ascending order. */
681 llist_add_tail(&mapping->entry, &map->mappings);
Neels Hofmeyrfeb23f72015-11-24 13:30:38 +0100682 nr_map_refresh(map, mapping, now);
683}
684
685void nr_map_refresh(struct nr_map *map, struct nr_mapping *mapping, time_t now)
686{
687 if (!map->add_items_to_expiry)
688 return;
689 expiry_add(map->add_items_to_expiry,
690 &mapping->expiry_entry,
691 now);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200692}
693
694void nr_map_clear(struct nr_map *map)
695{
696 struct nr_mapping *m;
697 struct nr_mapping *n;
698 llist_for_each_entry_safe(m, n, &map->mappings, entry) {
699 nr_mapping_del(m);
700 }
701}
702
703int nr_map_empty(const struct nr_map *map)
704{
705 return llist_empty(&map->mappings);
706}
707
708struct nr_mapping *nr_map_get(const struct nr_map *map,
709 void *origin, nr_t nr_orig)
710{
711 struct nr_mapping *mapping;
712 llist_for_each_entry(mapping, &map->mappings, entry) {
713 if ((mapping->origin == origin)
714 && (mapping->orig == nr_orig))
715 return mapping;
716 }
717 /* Not found. */
718 return NULL;
719}
720
721struct nr_mapping *nr_map_get_inv(const struct nr_map *map, nr_t nr_repl)
722{
723 struct nr_mapping *mapping;
724 llist_for_each_entry(mapping, &map->mappings, entry) {
725 if (mapping->repl == nr_repl) {
726 return mapping;
727 }
728 }
729 /* Not found. */
730 return NULL;
731}
732
733void nr_mapping_del(struct nr_mapping *mapping)
734{
735 OSMO_ASSERT(mapping);
736 llist_del(&mapping->entry);
737 INIT_LLIST_HEAD(&mapping->entry);
738 expiring_item_del(&mapping->expiry_entry);
739}
740
741
742/* gtphub */
743
744const char* const gtphub_plane_idx_names[GTPH_PLANE_N] = {
745 "CTRL",
746 "USER",
747};
748
749const uint16_t gtphub_plane_idx_default_port[GTPH_PLANE_N] = {
750 2123,
751 2152,
752};
753
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100754const char* const gtphub_side_idx_names[GTPH_SIDE_N] = {
755 "SGSN",
756 "GGSN",
757};
758
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200759time_t gtphub_now(void)
760{
761 struct timespec now_tp;
762 OSMO_ASSERT(clock_gettime(CLOCK_MONOTONIC, &now_tp) >= 0);
763 return now_tp.tv_sec;
764}
765
766/* Remove a gtphub_peer from its list and free it. */
767static void gtphub_peer_del(struct gtphub_peer *peer)
768{
Neels Hofmeyr7c8c8ef2015-11-20 00:04:41 +0100769 OSMO_ASSERT(llist_empty(&peer->addresses));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200770 nr_map_clear(&peer->seq_map);
771 llist_del(&peer->entry);
772 talloc_free(peer);
773}
774
775static void gtphub_peer_addr_del(struct gtphub_peer_addr *pa)
776{
777 OSMO_ASSERT(llist_empty(&pa->ports));
778 llist_del(&pa->entry);
779 talloc_free(pa);
780}
781
782static void gtphub_peer_port_del(struct gtphub_peer_port *pp)
783{
784 OSMO_ASSERT(pp->ref_count == 0);
785 llist_del(&pp->entry);
Neels Hofmeyr7756ca52015-12-06 16:44:14 +0100786 rate_ctr_group_free(pp->counters_io);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200787 talloc_free(pp);
788}
789
790/* From the information in the gtp_packet_desc, return the address of a GGSN.
791 * Return -1 on error. */
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +0100792static int gtphub_resolve_ggsn(struct gtphub *hub,
793 struct gtp_packet_desc *p,
794 struct gtphub_peer_port **pp);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200795
796/* See gtphub_ext.c (wrapped by unit test) */
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100797struct gtphub_peer_port *gtphub_resolve_ggsn_addr(struct gtphub *hub,
798 const char *imsi_str,
799 const char *apn_ni_str);
800int gtphub_ares_init(struct gtphub *hub);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200801
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200802static void gtphub_zero(struct gtphub *hub)
803{
804 ZERO_STRUCT(hub);
Neels Hofmeyr97b5f142015-11-11 17:27:01 +0100805 INIT_LLIST_HEAD(&hub->ggsn_lookups);
806 INIT_LLIST_HEAD(&hub->resolved_ggsns);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200807}
808
809static int gtphub_sock_init(struct osmo_fd *ofd,
810 const struct gtphub_cfg_addr *addr,
811 osmo_fd_cb_t cb,
812 void *data,
813 int ofd_id)
814{
815 if (!addr->addr_str) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100816 LOG(LOGL_FATAL, "Cannot bind: empty address.\n");
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200817 return -1;
818 }
819 if (!addr->port) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100820 LOG(LOGL_FATAL, "Cannot bind: zero port not permitted.\n");
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200821 return -1;
822 }
823
824 ofd->when = BSC_FD_READ;
825 ofd->cb = cb;
826 ofd->data = data;
827 ofd->priv_nr = ofd_id;
828
829 int rc;
830 rc = osmo_sock_init_ofd(ofd,
831 AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
832 addr->addr_str, addr->port,
833 OSMO_SOCK_F_BIND);
834 if (rc < 1) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100835 LOG(LOGL_FATAL, "Cannot bind to %s port %d (rc %d)\n",
836 addr->addr_str, (int)addr->port, rc);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200837 return -1;
838 }
839
840 return 0;
841}
842
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100843static void gtphub_sock_close(struct osmo_fd *ofd)
844{
845 close(ofd->fd);
846 osmo_fd_unregister(ofd);
847 ofd->cb = NULL;
848}
849
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200850static void gtphub_bind_init(struct gtphub_bind *b)
851{
852 ZERO_STRUCT(b);
853
854 INIT_LLIST_HEAD(&b->peers);
Neels Hofmeyr416e35f2015-11-20 01:28:40 +0100855
856 b->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
857 &gtphub_ctrg_io_desc, 0);
858 OSMO_ASSERT(b->counters_io);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200859}
860
861static int gtphub_bind_start(struct gtphub_bind *b,
862 const struct gtphub_cfg_bind *cfg,
863 osmo_fd_cb_t cb, void *cb_data,
864 unsigned int ofd_id)
865{
Neels Hofmeyr9d02fbb2015-11-30 14:13:19 +0100866 LOG(LOGL_DEBUG, "Starting bind %s\n", b->label);
867 if (gsn_addr_from_str(&b->local_addr, cfg->bind.addr_str) != 0) {
868 LOG(LOGL_FATAL, "Invalid bind address for %s: %s\n",
869 b->label, cfg->bind.addr_str);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200870 return -1;
Neels Hofmeyr9d02fbb2015-11-30 14:13:19 +0100871 }
872 if (gtphub_sock_init(&b->ofd, &cfg->bind, cb, cb_data, ofd_id) != 0) {
873 LOG(LOGL_FATAL, "Cannot bind for %s: %s\n",
874 b->label, cfg->bind.addr_str);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200875 return -1;
Neels Hofmeyr9d02fbb2015-11-30 14:13:19 +0100876 }
Neels Hofmeyrc5f8fe02015-11-20 03:16:19 +0100877 b->local_port = cfg->bind.port;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200878 return 0;
879}
880
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100881static void gtphub_bind_free(struct gtphub_bind *b)
882{
883 OSMO_ASSERT(llist_empty(&b->peers));
Neels Hofmeyr416e35f2015-11-20 01:28:40 +0100884 rate_ctr_group_free(b->counters_io);
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100885}
886
887static void gtphub_bind_stop(struct gtphub_bind *b) {
888 gtphub_sock_close(&b->ofd);
889 gtphub_bind_free(b);
890}
891
Neels Hofmeyr6c020a92015-11-17 12:22:28 +0100892/* Recv datagram from from->fd, write sender's address to *from_addr.
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200893 * Return the number of bytes read, zero on error. */
894static int gtphub_read(const struct osmo_fd *from,
895 struct osmo_sockaddr *from_addr,
896 uint8_t *buf, size_t buf_len)
897{
Neels Hofmeyr6c020a92015-11-17 12:22:28 +0100898 OSMO_ASSERT(from_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200899
Neels Hofmeyr6c020a92015-11-17 12:22:28 +0100900 /* recvfrom requires the available length set in *from_addr_len. */
901 from_addr->l = sizeof(from_addr->a);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200902 errno = 0;
903 ssize_t received = recvfrom(from->fd, buf, buf_len, 0,
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100904 (struct sockaddr*)&from_addr->a,
905 &from_addr->l);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200906 /* TODO use recvmsg and get a MSG_TRUNC flag to make sure the message
907 * is not truncated. Then maybe reduce buf's size. */
908
909 if (received <= 0) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +0100910 LOG((errno == EAGAIN? LOGL_DEBUG : LOGL_ERROR),
911 "error: %s\n", strerror(errno));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200912 return 0;
913 }
914
Neels Hofmeyr21495a42015-12-06 15:22:54 +0100915 LOG(LOGL_DEBUG, "Received %d bytes from %s: %s\n",
Neels Hofmeyr6c020a92015-11-17 12:22:28 +0100916 (int)received, osmo_sockaddr_to_str(from_addr),
917 osmo_hexdump(buf, received));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200918
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200919 return received;
920}
921
922inline void gtphub_port_ref_count_inc(struct gtphub_peer_port *pp)
923{
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100924 OSMO_ASSERT(pp);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200925 OSMO_ASSERT(pp->ref_count < UINT_MAX);
926 pp->ref_count++;
927}
928
929inline void gtphub_port_ref_count_dec(struct gtphub_peer_port *pp)
930{
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100931 OSMO_ASSERT(pp);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200932 OSMO_ASSERT(pp->ref_count > 0);
933 pp->ref_count--;
934}
935
936inline void set_seq(struct gtp_packet_desc *p, uint16_t seq)
937{
938 OSMO_ASSERT(p->version == 1);
939 p->data->gtp1l.h.seq = hton16(seq);
940 p->seq = seq;
941}
942
943inline void set_tei(struct gtp_packet_desc *p, uint32_t tei)
944{
945 OSMO_ASSERT(p->version == 1);
946 p->data->gtp1l.h.tei = hton32(tei);
947 p->header_tei = tei;
948}
949
950static void gtphub_mapping_del_cb(struct expiring_item *expi);
951
952static struct nr_mapping *gtphub_mapping_new()
953{
954 struct nr_mapping *nrm;
955 nrm = talloc_zero(osmo_gtphub_ctx, struct nr_mapping);
956 OSMO_ASSERT(nrm);
957
958 nr_mapping_init(nrm);
959 nrm->expiry_entry.del_cb = gtphub_mapping_del_cb;
960 return nrm;
961}
962
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100963
964#define APPEND(args...) \
965 l = snprintf(pos, left, args); \
966 pos += l; \
967 left -= l
968
969static const char *gtphub_tunnel_side_str(struct gtphub_tunnel *tun,
970 int side_idx)
971{
972 static char buf[256];
973 char *pos = buf;
974 int left = sizeof(buf);
975 int l;
976
977 struct gtphub_tunnel_endpoint *c, *u;
978 c = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
979 u = &tun->endpoint[side_idx][GTPH_PLANE_USER];
980
981 /* print both only if they differ. */
982 if (!c->peer) {
983 APPEND("(uninitialized)");
984 } else {
985 APPEND("%s", gsn_addr_to_str(&c->peer->peer_addr->addr));
986 }
987
988 if (!u->peer) {
989 if (c->peer) {
Neels Hofmeyred4bdef2015-12-06 16:39:23 +0100990 APPEND("/(uninitialized)");
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100991 }
992 } else if ((!c->peer)
993 || (!gsn_addr_same(&u->peer->peer_addr->addr,
994 &c->peer->peer_addr->addr))) {
Neels Hofmeyred4bdef2015-12-06 16:39:23 +0100995 APPEND("/%s", gsn_addr_to_str(&u->peer->peer_addr->addr));
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100996 }
997
Neels Hofmeyred4bdef2015-12-06 16:39:23 +0100998 APPEND(" (TEI C %x=%x/U %x=%x)",
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100999 c->tei_orig, c->tei_repl,
1000 u->tei_orig, u->tei_repl);
1001 return buf;
1002}
1003
1004const char *gtphub_tunnel_str(struct gtphub_tunnel *tun)
1005{
1006 static char buf[512];
1007 char *pos = buf;
1008 int left = sizeof(buf);
1009 int l;
1010
1011 APPEND("%s", gtphub_tunnel_side_str(tun, GTPH_SIDE_SGSN));
1012 APPEND(" <-> %s", gtphub_tunnel_side_str(tun, GTPH_SIDE_GGSN));
1013
1014 return buf;
1015}
1016
1017#undef APPEND
1018
1019void gtphub_tunnel_endpoint_set_peer(struct gtphub_tunnel_endpoint *te,
1020 struct gtphub_peer_port *pp)
1021{
1022 if (te->peer)
1023 gtphub_port_ref_count_dec(te->peer);
1024 te->peer = pp;
1025 if (te->peer)
1026 gtphub_port_ref_count_inc(te->peer);
1027}
1028
1029int gtphub_tunnel_complete(struct gtphub_tunnel *tun)
1030{
1031 if (!tun)
1032 return 0;
1033 int side_idx;
1034 int plane_idx;
Neels Hofmeyr27544ac2015-11-27 00:05:56 +01001035 for_each_side_and_plane(side_idx, plane_idx) {
1036 struct gtphub_tunnel_endpoint *te =
1037 &tun->endpoint[side_idx][plane_idx];
1038 if (!(te->peer && te->tei_orig && te->tei_repl))
1039 return 0;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001040 }
1041 return 1;
1042}
1043
1044static void gtphub_tunnel_del_cb(struct expiring_item *expi)
1045{
1046 struct gtphub_tunnel *tun = container_of(expi,
1047 struct gtphub_tunnel,
1048 expiry_entry);
1049 LOG(LOGL_DEBUG, "expired: %s\n", gtphub_tunnel_str(tun));
1050
1051 llist_del(&tun->entry);
1052 INIT_LLIST_HEAD(&tun->entry); /* mark unused */
1053
1054 expi->del_cb = 0; /* avoid recursion loops */
1055 expiring_item_del(&tun->expiry_entry); /* usually already done, but make sure. */
1056
1057 int side_idx;
1058 int plane_idx;
Neels Hofmeyr27544ac2015-11-27 00:05:56 +01001059 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01001060 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1061
Neels Hofmeyr27544ac2015-11-27 00:05:56 +01001062 /* clear ref count */
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01001063 gtphub_tunnel_endpoint_set_peer(te, NULL);
1064
1065 rate_ctr_group_free(te->counters_io);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001066 }
1067
1068 talloc_free(tun);
1069}
1070
1071static struct gtphub_tunnel *gtphub_tunnel_new()
1072{
1073 struct gtphub_tunnel *tun;
1074 tun = talloc_zero(osmo_gtphub_ctx, struct gtphub_tunnel);
1075 OSMO_ASSERT(tun);
1076
1077 INIT_LLIST_HEAD(&tun->entry);
1078 expiring_item_init(&tun->expiry_entry);
1079
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01001080 int side_idx, plane_idx;
1081 for_each_side_and_plane(side_idx, plane_idx) {
1082 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1083 te->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
1084 &gtphub_ctrg_io_desc,
1085 0);
1086 OSMO_ASSERT(te->counters_io);
1087 }
1088
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001089 tun->expiry_entry.del_cb = gtphub_tunnel_del_cb;
1090 return tun;
1091}
1092
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001093static const char *gtphub_peer_strb(struct gtphub_peer *peer, char *buf,
1094 int buflen)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001095{
1096 if (llist_empty(&peer->addresses))
1097 return "(addressless)";
1098
1099 struct gtphub_peer_addr *a = llist_first(&peer->addresses,
1100 struct gtphub_peer_addr,
1101 entry);
1102 return gsn_addr_to_strb(&a->addr, buf, buflen);
1103}
1104
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001105static const char *gtphub_port_strb(struct gtphub_peer_port *port, char *buf,
1106 int buflen)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001107{
1108 if (!port)
1109 return "(null port)";
1110
1111 snprintf(buf, buflen, "%s port %d",
1112 gsn_addr_to_str(&port->peer_addr->addr),
1113 (int)port->port);
1114 return buf;
1115}
1116
1117const char *gtphub_peer_str(struct gtphub_peer *peer)
1118{
1119 static char buf[256];
1120 return gtphub_peer_strb(peer, buf, sizeof(buf));
1121}
1122
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01001123const char *gtphub_port_str(struct gtphub_peer_port *port)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001124{
1125 static char buf[256];
1126 return gtphub_port_strb(port, buf, sizeof(buf));
1127}
1128
1129static const char *gtphub_port_str2(struct gtphub_peer_port *port)
1130{
1131 static char buf[256];
1132 return gtphub_port_strb(port, buf, sizeof(buf));
1133}
1134
1135static void gtphub_mapping_del_cb(struct expiring_item *expi)
1136{
1137 expi->del_cb = 0; /* avoid recursion loops */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001138 expiring_item_del(expi); /* usually already done, but make sure. */
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001139
1140 struct nr_mapping *nrm = container_of(expi,
1141 struct nr_mapping,
1142 expiry_entry);
1143 llist_del(&nrm->entry);
1144 INIT_LLIST_HEAD(&nrm->entry); /* mark unused */
1145
1146 /* Just for log */
1147 struct gtphub_peer_port *from = nrm->origin;
1148 OSMO_ASSERT(from);
Neels Hofmeyr767804d2015-11-17 14:24:46 +01001149 LOG(LOGL_DEBUG, "expired: %d: nr mapping from %s: %u->%u\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001150 (int)nrm->expiry_entry.expiry,
1151 gtphub_port_str(from),
Neels Hofmeyr767804d2015-11-17 14:24:46 +01001152 (unsigned int)nrm->orig, (unsigned int)nrm->repl);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001153
1154 gtphub_port_ref_count_dec(from);
1155
1156 talloc_free(nrm);
1157}
1158
1159static struct nr_mapping *gtphub_mapping_have(struct nr_map *map,
1160 struct gtphub_peer_port *from,
1161 nr_t orig_nr,
1162 time_t now)
1163{
1164 struct nr_mapping *nrm;
1165
1166 nrm = nr_map_get(map, from, orig_nr);
1167
1168 if (!nrm) {
1169 nrm = gtphub_mapping_new();
1170 nrm->orig = orig_nr;
1171 nrm->origin = from;
1172 nr_map_add(map, nrm, now);
1173 gtphub_port_ref_count_inc(from);
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001174 LOG(LOGL_DEBUG, "peer %s: sequence map %d --> %d\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001175 gtphub_port_str(from),
1176 (int)(nrm->orig), (int)(nrm->repl));
1177 } else {
Neels Hofmeyrfeb23f72015-11-24 13:30:38 +01001178 nr_map_refresh(map, nrm, now);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001179 }
1180
1181 OSMO_ASSERT(nrm);
1182 return nrm;
1183}
1184
Neels Hofmeyr05c593f2015-11-11 17:20:42 +01001185static void gtphub_map_seq(struct gtp_packet_desc *p,
1186 struct gtphub_peer_port *from_port,
Neels Hofmeyr314e7832015-11-24 13:27:13 +01001187 struct gtphub_peer_port *to_port)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001188{
1189 /* Store a mapping in to_peer's map, so when we later receive a GTP
1190 * packet back from to_peer, the seq nr can be unmapped back to its
1191 * origin (from_peer here). */
1192 struct nr_mapping *nrm;
1193 nrm = gtphub_mapping_have(&to_port->peer_addr->peer->seq_map,
Neels Hofmeyr314e7832015-11-24 13:27:13 +01001194 from_port, p->seq, p->timestamp);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001195
1196 /* Change the GTP packet to yield the new, mapped seq nr */
1197 set_seq(p, nrm->repl);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001198}
1199
1200static struct gtphub_peer_port *gtphub_unmap_seq(struct gtp_packet_desc *p,
1201 struct gtphub_peer_port *responding_port)
1202{
1203 OSMO_ASSERT(p->version == 1);
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001204 struct nr_mapping *nrm =
1205 nr_map_get_inv(&responding_port->peer_addr->peer->seq_map,
1206 p->seq);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001207 if (!nrm)
1208 return NULL;
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001209 LOG(LOGL_DEBUG, "peer %p: sequence unmap %d <-- %d\n",
1210 nrm->origin, (int)(nrm->orig), (int)(nrm->repl));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001211 set_seq(p, nrm->orig);
1212 return nrm->origin;
1213}
1214
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001215static int gtphub_check_mapped_tei(struct gtphub_tunnel_endpoint *new_te,
1216 struct gtphub_tunnel_endpoint *iterated_te,
1217 uint32_t *tei_min,
1218 uint32_t *tei_max)
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001219{
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001220 if (new_te->tei_repl != iterated_te->tei_repl)
1221 return 1;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001222
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001223 /* new_te->tei_repl is already taken. Try to find one out of the known
1224 * range. */
1225
1226 if ((*tei_max) < 0xffffffff) {
1227 (*tei_max)++;
1228 new_te->tei_repl = *tei_max;
1229 return 1;
1230 } else if ((*tei_min) > 1) {
1231 (*tei_min)--;
1232 new_te->tei_repl = *tei_min;
1233 return 1;
1234 }
1235
1236 /* None seems to be available. */
1237 return 0;
1238}
1239
1240static int gtphub_check_reused_teis(struct gtphub *hub,
1241 struct gtphub_tunnel *new_tun)
1242{
1243 uint32_t tei_min = 0xffffffff;
1244 uint32_t tei_max = 0;
1245 int side_idx;
1246 int plane_idx;
1247 int side_idx2;
1248 int plane_idx2;
1249 struct gtphub_tunnel_endpoint *te;
1250 struct gtphub_tunnel_endpoint *te2;
1251
1252 struct gtphub_tunnel *tun, *ntun;
1253
1254 llist_for_each_entry_safe(tun, ntun, &hub->tunnels, entry) {
1255 if (tun == new_tun)
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001256 continue;
1257
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001258 /* Check whether the GSN sent a TEI that it is reusing from a
1259 * previous tunnel. */
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001260 int tun_continue = 0;
1261 for_each_side(side_idx) {
1262 for_each_plane(plane_idx) {
1263 te = &tun->endpoint[side_idx][plane_idx];
1264 te2 = &new_tun->endpoint[side_idx][plane_idx];
1265 if ((te->tei_orig != te2->tei_orig)
1266 || (!te->peer)
1267 || (!te2->peer)
1268 || !gsn_addr_same(&te->peer->peer_addr->addr,
1269 &te2->peer->peer_addr->addr))
1270 continue;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001271
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001272 /* The peer is reusing a TEI that I believe to
1273 * be part of another tunnel. The other tunnel
1274 * must be stale, then. */
1275 LOG(LOGL_NOTICE,
1276 "Expiring tunnel due to reused TEI:"
Neels Hofmeyr16b8ba22015-12-06 17:18:49 +01001277 " %s peer %s sent %s TEI %x,"
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001278 " previously used by tunnel %s...\n",
Neels Hofmeyr16b8ba22015-12-06 17:18:49 +01001279 gtphub_side_idx_names[side_idx],
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001280 gtphub_port_str(te->peer),
1281 gtphub_plane_idx_names[plane_idx],
1282 te->tei_orig,
1283 gtphub_tunnel_str(tun));
1284 LOG(LOGL_NOTICE, "...while establishing tunnel %s\n",
1285 gtphub_tunnel_str(new_tun));
Neels Hofmeyr0b956142015-12-02 14:14:32 +01001286
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001287 expiring_item_del(&tun->expiry_entry);
1288 /* continue to find more matches. There shouldn't be
1289 * any, but let's make sure. However, tun is deleted,
1290 * so we need to skip to the next tunnel. */
1291 tun_continue = 1;
1292 break;
1293 }
1294 if (tun_continue)
1295 break;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001296 }
Neels Hofmeyrd96040d2015-12-02 15:00:50 +01001297 if (tun_continue)
1298 continue;
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001299
1300 /* Check whether the mapped TEIs assigned to the endpoints are
1301 * used anywhere else. */
1302 for_each_side_and_plane(side_idx, plane_idx) {
1303 te = &tun->endpoint[side_idx][plane_idx];
1304 tei_min = (tei_min < te->tei_repl)? tei_min : te->tei_repl;
1305 tei_max = (tei_max > te->tei_repl)? tei_max : te->tei_repl;
1306
1307 for_each_side_and_plane(side_idx2, plane_idx2) {
1308 te2 = &new_tun->endpoint[side_idx2][plane_idx2];
1309 if (!gtphub_check_mapped_tei(te2, te, &tei_min, &tei_max)) {
1310 LOG(LOGL_ERROR,
1311 "No mapped TEI is readily available."
1312 " Searching for holes between occupied"
1313 " TEIs not implemented.");
1314 return 0;
1315 }
1316 }
1317 }
1318
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001319 }
Neels Hofmeyr6bfb8cb2015-11-27 01:22:13 +01001320
1321 return 1;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001322}
1323
1324static void gtphub_tunnel_refresh(struct gtphub *hub,
1325 struct gtphub_tunnel *tun,
1326 time_t now)
1327{
1328 expiry_add(&hub->expire_slowly,
1329 &tun->expiry_entry,
1330 now);
1331}
1332
1333static struct gtphub_tunnel_endpoint *gtphub_unmap_tei(struct gtphub *hub,
1334 struct gtp_packet_desc *p,
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001335 struct gtphub_peer_port *from,
1336 struct gtphub_tunnel **unmapped_from_tun)
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001337{
1338 OSMO_ASSERT(from);
1339 int other_side = other_side_idx(p->side_idx);
1340
1341 struct gtphub_tunnel *tun;
1342 llist_for_each_entry(tun, &hub->tunnels, entry) {
1343 struct gtphub_tunnel_endpoint *te_from =
1344 &tun->endpoint[p->side_idx][p->plane_idx];
1345 struct gtphub_tunnel_endpoint *te_to =
1346 &tun->endpoint[other_side][p->plane_idx];
1347 if ((te_to->tei_repl == p->header_tei_rx)
Neels Hofmeyr26df98c2015-12-02 00:31:31 +01001348 && te_from->peer
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001349 && gsn_addr_same(&te_from->peer->peer_addr->addr,
1350 &from->peer_addr->addr)) {
1351 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001352 if (unmapped_from_tun)
1353 *unmapped_from_tun = tun;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001354 return te_to;
1355 }
1356 }
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001357
1358 if (unmapped_from_tun)
1359 *unmapped_from_tun = NULL;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001360 return NULL;
1361}
1362
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001363static void gtphub_map_restart_counter(struct gtphub *hub,
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001364 struct gtp_packet_desc *p)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001365{
Neels Hofmeyr80ee3912015-11-26 22:19:22 +01001366 if (p->rc != GTP_RC_PDU_C)
1367 return;
1368
1369 int ie_idx;
1370 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1371 if (ie_idx < 0)
1372 return;
1373
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001374 /* Always send gtphub's own restart counter */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +01001375 p->ie[ie_idx]->tv1.v = hton8(hub->restart_counter);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001376}
1377
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001378static int gtphub_unmap_header_tei(struct gtphub_peer_port **to_port_p,
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001379 struct gtphub_tunnel **unmapped_from_tun,
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001380 struct gtphub *hub,
1381 struct gtp_packet_desc *p,
1382 struct gtphub_peer_port *from_port)
1383{
1384 OSMO_ASSERT(p->version == 1);
1385 *to_port_p = NULL;
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001386 if (unmapped_from_tun)
1387 *unmapped_from_tun = NULL;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001388
1389 /* If the header's TEI is zero, no PDP context has been established
1390 * yet. If nonzero, a mapping should actually already exist for this
1391 * TEI, since it must have been announced in a PDP context creation. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001392 if (!p->header_tei_rx)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001393 return 0;
1394
1395 /* to_peer has previously announced a TEI, which was stored and
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001396 * mapped in a tunnel struct. */
1397 struct gtphub_tunnel_endpoint *to;
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001398 to = gtphub_unmap_tei(hub, p, from_port, unmapped_from_tun);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001399 if (!to) {
1400 LOG(LOGL_ERROR, "Received unknown TEI %" PRIx32 " from %s\n",
1401 p->header_tei_rx, gtphub_port_str(from_port));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001402 return -1;
1403 }
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001404 OSMO_ASSERT(*unmapped_from_tun);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001405
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001406 uint32_t unmapped_tei = to->tei_orig;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001407 set_tei(p, unmapped_tei);
1408
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001409 LOG(LOGL_DEBUG, "Unmapped TEI coming from: %s\n",
1410 gtphub_tunnel_str(*unmapped_from_tun));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001411
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001412 /* May be NULL for an invalidated tunnel. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001413 *to_port_p = to->peer;
1414
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001415 return 0;
1416}
1417
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001418static int gtphub_handle_create_pdp_ctx(struct gtphub *hub,
1419 struct gtp_packet_desc *p,
1420 struct gtphub_peer_port *from_ctrl,
1421 struct gtphub_peer_port *to_ctrl)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001422{
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001423 int plane_idx;
1424
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001425 osmo_static_assert((GTPH_PLANE_CTRL == 0) && (GTPH_PLANE_USER == 1),
1426 plane_nrs_match_GSN_addr_IE_indices);
1427
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001428 struct gtphub_tunnel *tun = p->tun;
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001429
1430 if (p->type == GTP_CREATE_PDP_REQ) {
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001431 if (p->side_idx != GTPH_SIDE_SGSN) {
1432 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyr3ebea072015-12-03 13:47:05 +01001433 " Request from the GGSN side: %s",
1434 gtphub_port_str(from_ctrl));
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001435 return -1;
1436 }
1437
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001438 if (tun) {
1439 LOG(LOGL_ERROR, "Not implemented: Received"
1440 " Create PDP Context Request for an already"
1441 " established tunnel:"
1442 " from %s, tunnel %s\n",
1443 gtphub_port_str(from_ctrl),
1444 gtphub_tunnel_str(p->tun));
1445 return -1;
1446 }
1447
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001448 /* A new tunnel. */
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001449 p->tun = tun = gtphub_tunnel_new();
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001450 llist_add(&tun->entry, &hub->tunnels);
1451 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001452 /* The endpoint peers on this side (SGSN) will be set from IEs
1453 * below. Also set the GGSN Ctrl endpoint, for logging. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001454 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001455 to_ctrl);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001456 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001457 if (p->side_idx != GTPH_SIDE_GGSN) {
1458 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyr3ebea072015-12-03 13:47:05 +01001459 " Response from the SGSN side: %s",
1460 gtphub_port_str(from_ctrl));
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001461 return -1;
1462 }
1463
Neels Hofmeyr738f00a2015-12-03 13:45:15 +01001464 /* The tunnel should already have been resolved from the header
1465 * TEI and be available in tun (== p->tun). Just fill in the
1466 * GSN Addresses below.*/
1467 OSMO_ASSERT(tun);
1468 OSMO_ASSERT(tun->endpoint[other_side_idx(p->side_idx)][GTPH_PLANE_CTRL].tei_repl
1469 == p->header_tei_rx);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001470 OSMO_ASSERT(to_ctrl);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001471 }
1472
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001473 uint8_t ie_type[] = { GTPIE_TEI_C, GTPIE_TEI_DI };
1474 int ie_mandatory = (p->type == GTP_CREATE_PDP_REQ);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001475 unsigned int side_idx = p->side_idx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001476
1477 for (plane_idx = 0; plane_idx < 2; plane_idx++) {
Neels Hofmeyr078fe562015-11-30 12:19:50 +01001478 int rc;
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001479 struct gsn_addr use_addr;
1480 uint16_t use_port;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001481 uint32_t tei_from_ie;
1482 int ie_idx;
1483
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001484 /* Fetch GSN Address and TEI from IEs. As ensured by above
1485 * static asserts, plane_idx corresponds to the GSN Address IE
1486 * index (the first one = 0 = ctrl, second one = 1 = user). */
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001487 rc = gsn_addr_get(&use_addr, p, plane_idx);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001488 if (rc) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001489 LOG(LOGL_ERROR, "Cannot read %s GSN Address IE\n",
1490 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001491 return -1;
1492 }
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001493 LOG(LOGL_DEBUG, "Read %s GSN addr %s (%d)\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001494 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001495 gsn_addr_to_str(&use_addr),
1496 use_addr.len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001497
1498 ie_idx = gtpie_getie(p->ie, ie_type[plane_idx], 0);
1499 if (ie_idx < 0) {
1500 if (ie_mandatory) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001501 LOG(LOGL_ERROR,
1502 "Create PDP Context message invalid:"
1503 " missing IE %d\n",
1504 (int)ie_type[plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001505 return -1;
1506 }
1507 tei_from_ie = 0;
1508 }
1509 else
1510 tei_from_ie = ntoh32(p->ie[ie_idx]->tv4.v);
1511
1512 /* Make sure an entry for this peer address with default port
Neels Hofmeyr7a10e442015-12-03 14:12:44 +01001513 * exists.
1514 *
1515 * Exception: if sgsn_use_sender is set, instead use the
1516 * sender's address and port for Ctrl -- the User port is not
1517 * known until the first User packet arrives.
1518 *
1519 * Note: doing this here is just an optimization, because
1520 * gtphub_handle_buf() has code to replace the tunnel
1521 * endpoints' addresses with the sender (needed for User
1522 * plane). We could just ignore sgsn_use_sender here. But if we
1523 * set up a default port here and replace it in
1524 * gtphub_handle_buf(), we'd be creating a peer port just to
1525 * expire it right away. */
1526 if (hub->sgsn_use_sender && (side_idx == GTPH_SIDE_SGSN)) {
1527 gsn_addr_from_sockaddr(&use_addr, &use_port, &from_ctrl->sa);
1528 } else {
1529 use_port = gtphub_plane_idx_default_port[plane_idx];
1530
1531 }
1532
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001533 struct gtphub_peer_port *peer_from_ie;
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001534 peer_from_ie = gtphub_port_have(hub,
1535 &hub->to_gsns[side_idx][plane_idx],
1536 &use_addr, use_port);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001537
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001538 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][plane_idx],
1539 peer_from_ie);
1540
Neels Hofmeyr7d199e32015-12-03 11:30:43 +01001541 if (!tei_from_ie &&
1542 !tun->endpoint[side_idx][plane_idx].tei_orig) {
1543 LOG(LOGL_ERROR,
1544 "Create PDP Context message omits %s TEI, but the"
1545 " no TEI has been announced for this tunnel: %s",
1546 gtphub_plane_idx_names[plane_idx],
1547 gtphub_tunnel_str(tun));
1548 return -1;
1549 }
1550
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001551 if (tei_from_ie) {
1552 /* Create TEI mapping and replace in GTP packet IE */
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001553 uint32_t mapped_tei = nr_pool_next(&hub->tei_pool);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001554
1555 tun->endpoint[side_idx][plane_idx].tei_orig = tei_from_ie;
1556 tun->endpoint[side_idx][plane_idx].tei_repl = mapped_tei;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001557 p->ie[ie_idx]->tv4.v = hton32(mapped_tei);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001558
Neels Hofmeyr5e6dd382015-11-30 12:58:48 +01001559 if (!gtphub_check_reused_teis(hub, tun)) {
1560 /* It's highly unlikely that all TEIs are
1561 * taken. But the code looking for an unused
1562 * TEI is, at the time of writing this comment,
1563 * not able to find gaps in the TEI space. To
1564 * explicitly alert the user of this problem,
1565 * rather abort than carry on. */
1566 LOG(LOGL_FATAL, "TEI range exhausted. Cannot create TEI mapping, aborting.\n");
1567 abort();
1568 }
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001569 }
1570
1571 /* Replace the GSN address to reflect gtphub. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001572 rc = gsn_addr_put(&hub->to_gsns[other_side_idx(side_idx)][plane_idx].local_addr,
1573 p, plane_idx);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001574 if (rc) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001575 LOG(LOGL_ERROR, "Cannot write %s GSN Address IE\n",
1576 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001577 return -1;
1578 }
1579 }
1580
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001581 if (p->type == GTP_CREATE_PDP_REQ) {
1582 LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
1583 gtphub_tunnel_str(tun));
Neels Hofmeyr4702d8c2015-11-30 12:19:11 +01001584 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001585 LOG(LOGL_DEBUG, "New tunnel: %s\n",
1586 gtphub_tunnel_str(tun));
1587 }
1588
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001589 return 0;
1590}
1591
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001592static void pending_delete_del_cb(struct expiring_item *expi)
1593{
1594 struct pending_delete *pd;
1595 pd = container_of(expi, struct pending_delete, expiry_entry);
1596
1597 llist_del(&pd->entry);
1598 INIT_LLIST_HEAD(&pd->entry);
1599
1600 pd->expiry_entry.del_cb = 0;
1601 expiring_item_del(&pd->expiry_entry);
1602
1603 talloc_free(pd);
1604}
1605
1606static struct pending_delete *pending_delete_new(void)
1607{
1608 struct pending_delete *pd = talloc_zero(osmo_gtphub_ctx, struct pending_delete);
1609 INIT_LLIST_HEAD(&pd->entry);
1610 expiring_item_init(&pd->expiry_entry);
1611 pd->expiry_entry.del_cb = pending_delete_del_cb;
1612 return pd;
1613}
1614
Neels Hofmeyrf821d9d2015-11-30 00:07:02 +01001615static int gtphub_handle_delete_pdp_ctx(struct gtphub *hub,
1616 struct gtp_packet_desc *p,
1617 struct gtphub_peer_port *from_ctrl,
1618 struct gtphub_peer_port *to_ctrl)
1619{
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001620 struct gtphub_tunnel *known_tun = p->tun;
1621
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001622 if (p->type == GTP_DELETE_PDP_REQ) {
1623 if (!known_tun) {
1624 LOG(LOGL_ERROR, "Cannot find tunnel for Delete PDP Context Request.\n");
1625 return -1;
1626 }
1627
1628 /* Store the Delete Request until a successful Response is seen. */
1629 uint8_t teardown_ind;
1630 uint8_t nsapi;
1631
1632 if (gtpie_gettv1(p->ie, GTPIE_TEARDOWN, 0, &teardown_ind) != 0) {
1633 LOG(LOGL_ERROR, "Missing Teardown Ind IE in Delete PDP Context Request.\n");
1634 return -1;
1635 }
1636
1637 if (gtpie_gettv1(p->ie, GTPIE_NSAPI, 0, &nsapi) != 0) {
1638 LOG(LOGL_ERROR, "Missing NSAPI IE in Delete PDP Context Request.\n");
1639 return -1;
1640 }
1641
1642 struct pending_delete *pd = NULL;
1643
1644 struct pending_delete *pdi = NULL;
1645 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1646 if ((pdi->tun == known_tun)
1647 && (pdi->teardown_ind == teardown_ind)
1648 && (pdi->nsapi == nsapi)) {
1649 pd = pdi;
1650 break;
1651 }
1652 }
1653
1654 if (!pd) {
1655 pd = pending_delete_new();
1656 pd->tun = known_tun;
1657 pd->teardown_ind = teardown_ind;
1658 pd->nsapi = nsapi;
1659
1660 LOG(LOGL_DEBUG, "Tunnel delete pending: %s\n",
1661 gtphub_tunnel_str(known_tun));
1662 llist_add(&pd->entry, &hub->pending_deletes);
1663 }
1664
1665 /* Add or refresh timeout. */
1666 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1667
1668 /* If a pending_delete should expire before the response to
1669 * indicate success comes in, the responding peer will have the
1670 * tunnel deactivated, while the requesting peer gets no reply
1671 * and keeps the tunnel. The hope is that the requesting peer
1672 * will try again and get a useful response. */
1673 } else if (p->type == GTP_DELETE_PDP_RSP) {
1674 /* Find the Delete Request for this Response. */
1675 struct pending_delete *pd = NULL;
1676
1677 struct pending_delete *pdi;
1678 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1679 if (known_tun == pdi->tun) {
1680 pd = pdi;
1681 break;
1682 }
1683 }
1684
1685 if (!pd) {
1686 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1687 " Cannot find matching request.");
1688 /* If we delete the tunnel now, anyone can send a
1689 * Delete response to kill tunnels at will. */
1690 return -1;
1691 }
1692
1693 /* TODO handle teardown_ind and nsapi */
1694
1695 expiring_item_del(&pd->expiry_entry);
1696
1697 uint8_t cause;
1698 if (gtpie_gettv1(p->ie, GTPIE_CAUSE, 0, &cause) != 0) {
1699 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1700 " Missing Cause IE.");
1701 /* If we delete the tunnel now, at least one of the
1702 * peers may still think it is active. */
1703 return -1;
1704 }
1705
1706 if (cause != GTPCAUSE_ACC_REQ) {
1707 LOG(LOGL_NOTICE,
1708 "Delete PDP Context Response indicates failure;"
1709 "for %s\n",
1710 gtphub_tunnel_str(known_tun));
1711 return -1;
1712 }
1713
1714 LOG(LOGL_DEBUG, "Delete PDP Context: removing tunnel %s\n",
1715 gtphub_tunnel_str(known_tun));
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001716 p->tun = NULL;
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001717 expiring_item_del(&known_tun->expiry_entry);
1718 }
1719
Neels Hofmeyrf821d9d2015-11-30 00:07:02 +01001720 return 0;
1721}
1722
1723static int gtphub_handle_update_pdp_ctx(struct gtphub *hub,
1724 struct gtp_packet_desc *p,
1725 struct gtphub_peer_port *from_ctrl,
1726 struct gtphub_peer_port *to_ctrl)
1727{
1728 /* TODO */
1729 return 0;
1730}
1731
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001732/* Read GSN address IEs from p, and make sure these peer addresses exist in
1733 * bind[plane_idx] with default ports, in their respective planes (both Ctrl
1734 * and User). Map TEIs announced in IEs, and write mapped TEIs in-place into
1735 * the packet p. */
1736static int gtphub_handle_pdp_ctx(struct gtphub *hub,
1737 struct gtp_packet_desc *p,
1738 struct gtphub_peer_port *from_ctrl,
1739 struct gtphub_peer_port *to_ctrl)
1740{
1741 OSMO_ASSERT(p->plane_idx == GTPH_PLANE_CTRL);
1742
1743 switch (p->type) {
1744 case GTP_CREATE_PDP_REQ:
1745 case GTP_CREATE_PDP_RSP:
1746 return gtphub_handle_create_pdp_ctx(hub, p,
1747 from_ctrl, to_ctrl);
Neels Hofmeyrf821d9d2015-11-30 00:07:02 +01001748
1749 case GTP_DELETE_PDP_REQ:
1750 case GTP_DELETE_PDP_RSP:
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001751 return gtphub_handle_delete_pdp_ctx(hub, p,
Neels Hofmeyrf821d9d2015-11-30 00:07:02 +01001752 from_ctrl, to_ctrl);
1753
1754 case GTP_UPDATE_PDP_REQ:
1755 case GTP_UPDATE_PDP_RSP:
1756 return gtphub_handle_update_pdp_ctx(hub, p,
1757 from_ctrl, to_ctrl);
1758
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001759 default:
1760 /* Nothing to do for this message type. */
1761 return 0;
1762 }
1763
1764}
1765
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001766static int gtphub_send_del_pdp_ctx(struct gtphub *hub,
1767 struct gtphub_tunnel *tun,
1768 int to_side)
1769{
1770 static uint8_t del_ctx_msg[16] = {
1771 0x32, /* GTP v1 flags */
1772 GTP_DELETE_PDP_REQ,
1773 0x00, 0x08, /* Length in network byte order */
1774 0x00, 0x00, 0x00, 0x00, /* TEI to be replaced */
1775 0, 0, /* Seq, to be replaced */
1776 0, 0, /* no extensions */
1777 0x13, 0xff, /* 19: Teardown ind = 1 */
1778 0x14, 0 /* 20: NSAPI = 0 */
1779 };
1780
1781 uint32_t *tei = (uint32_t*)&del_ctx_msg[4];
1782 uint16_t *seq = (uint16_t*)&del_ctx_msg[8];
1783
1784 struct gtphub_tunnel_endpoint *te =
1785 &tun->endpoint[to_side][GTPH_PLANE_CTRL];
1786
1787 if (! te->peer)
1788 return 0;
1789
1790 *tei = hton32(te->tei_orig);
1791 *seq = hton16(nr_pool_next(&te->peer->peer_addr->peer->seq_pool));
1792
1793 struct gtphub_bind *to_bind = &hub->to_gsns[to_side][GTPH_PLANE_CTRL];
Neels Hofmeyr84d76862015-12-03 11:24:39 +01001794 int rc = gtphub_write(&to_bind->ofd, &te->peer->sa,
1795 del_ctx_msg, sizeof(del_ctx_msg));
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001796 if (rc != 0) {
1797 LOG(LOGL_ERROR,
1798 "Failed to send out-of-band Delete PDP Context Request to %s\n",
1799 gtphub_port_str(te->peer));
1800 }
1801 return rc;
1802}
1803
1804/* Tell all peers on the other end of tunnels that PDP contexts are void. */
1805static void gtphub_restarted(struct gtphub *hub,
1806 struct gtp_packet_desc *p,
1807 struct gtphub_peer_port *pp)
1808{
Neels Hofmeyr4402fc02015-12-02 14:31:08 +01001809 LOG(LOGL_DEBUG, "Peer has restarted: %s\n",
1810 gtphub_port_str(pp));
1811
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001812 struct gtphub_tunnel *tun;
1813 llist_for_each_entry(tun, &hub->tunnels, entry) {
1814 int side_idx;
1815 for_each_side(side_idx) {
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001816 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1817 struct gtphub_tunnel_endpoint *te2 = &tun->endpoint[other_side_idx(side_idx)][GTPH_PLANE_CTRL];
1818 if ((!te->peer)
1819 || (!te2->tei_orig)
1820 || (pp->peer_addr->peer != te->peer->peer_addr->peer))
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001821 continue;
1822
Neels Hofmeyr4402fc02015-12-02 14:31:08 +01001823 LOG(LOGL_DEBUG, "Deleting tunnel due to peer restart: %s\n",
1824 gtphub_tunnel_str(tun));
1825
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01001826 /* Send a Delete PDP Context Request to the
1827 * peer on the other side, remember the pending
1828 * delete and wait for the response to delete
1829 * the tunnel. Clear this side of the tunnel to
1830 * make sure it isn't used.
1831 *
1832 * Should the delete message send fail, or if no
1833 * response is received, this tunnel will expire. If
1834 * its TEIs come up in a new PDP Context Request, it
1835 * will be removed. If messages for this tunnel should
1836 * come in (from the not restarted side), they will be
1837 * dropped because the tunnel is rendered unusable. */
1838 gtphub_send_del_pdp_ctx(hub, tun, other_side_idx(side_idx));
1839
1840 struct pending_delete *pd;
1841 pd = pending_delete_new();
1842 pd->tun = tun;
1843 pd->teardown_ind = 0xff;
1844 pd->nsapi = 0;
1845 llist_add(&pd->entry, &hub->pending_deletes);
1846 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1847
1848 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_CTRL],
1849 NULL);
1850 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_USER],
1851 NULL);
1852 }
1853 }
1854}
1855
1856static int get_restart_count(struct gtp_packet_desc *p)
1857{
1858 int ie_idx;
1859 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1860 if (ie_idx < 0)
1861 return -1;
1862 return ntoh8(p->ie[ie_idx]->tv1.v);
1863}
1864
1865static void gtphub_check_restart_counter(struct gtphub *hub,
1866 struct gtp_packet_desc *p,
1867 struct gtphub_peer_port *from)
1868{
1869 /* If the peer is sending a Recovery IE (7.7.11) with a restart counter
1870 * that doesn't match the peer's previously sent restart counter, clear
1871 * that peer and cancel PDP contexts. */
1872
1873 int restart = get_restart_count(p);
1874
1875 if ((restart < 0) || (restart > 255))
1876 return;
1877
1878 if ((from->last_restart_count >= 0) && (from->last_restart_count <= 255)) {
1879 if (from->last_restart_count != restart) {
1880 gtphub_restarted(hub, p, from);
1881 }
1882 }
1883
1884 from->last_restart_count = restart;
1885}
1886
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001887static int from_sgsns_read_cb(struct osmo_fd *from_sgsns_ofd, unsigned int what)
1888{
1889 unsigned int plane_idx = from_sgsns_ofd->priv_nr;
1890 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr21495a42015-12-06 15:22:54 +01001891 LOG(LOGL_DEBUG, "=== reading from SGSN (%s)\n",
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001892 gtphub_plane_idx_names[plane_idx]);
1893
1894 if (!(what & BSC_FD_READ))
1895 return 0;
1896
1897 struct gtphub *hub = from_sgsns_ofd->data;
1898
1899 static uint8_t buf[4096];
1900 struct osmo_sockaddr from_addr;
1901 struct osmo_sockaddr to_addr;
1902 struct osmo_fd *to_ofd;
1903 int len;
1904 uint8_t *reply_buf;
1905
1906 len = gtphub_read(from_sgsns_ofd, &from_addr, buf, sizeof(buf));
1907 if (len < 1)
1908 return 0;
1909
1910 len = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, &from_addr,
1911 buf, len, gtphub_now(),
1912 &reply_buf, &to_ofd, &to_addr);
1913 if (len < 1)
1914 return 0;
1915
1916 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
1917}
1918
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001919static int from_ggsns_read_cb(struct osmo_fd *from_ggsns_ofd, unsigned int what)
1920{
1921 unsigned int plane_idx = from_ggsns_ofd->priv_nr;
1922 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr21495a42015-12-06 15:22:54 +01001923 LOG(LOGL_DEBUG, "=== reading from GGSN (%s)\n",
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001924 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001925 if (!(what & BSC_FD_READ))
1926 return 0;
1927
1928 struct gtphub *hub = from_ggsns_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;
Neels Hofmeyr97b5f142015-11-11 17:27:01 +01001934 int len;
Neels Hofmeyra7c10152015-11-09 15:12:25 +01001935 uint8_t *reply_buf;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001936
1937 len = gtphub_read(from_ggsns_ofd, &from_addr, buf, sizeof(buf));
1938 if (len < 1)
1939 return 0;
1940
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001941 len = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, &from_addr,
1942 buf, len, gtphub_now(),
1943 &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001944 if (len < 1)
1945 return 0;
1946
Neels Hofmeyra7c10152015-11-09 15:12:25 +01001947 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001948}
1949
1950static int gtphub_unmap(struct gtphub *hub,
1951 struct gtp_packet_desc *p,
1952 struct gtphub_peer_port *from,
1953 struct gtphub_peer_port *to_proxy,
1954 struct gtphub_peer_port **final_unmapped,
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001955 struct gtphub_peer_port **unmapped_from_seq)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001956{
1957 /* Always (try to) unmap sequence and TEI numbers, which need to be
1958 * replaced in the packet. Either way, give precedence to the proxy, if
1959 * configured. */
1960
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001961 if (unmapped_from_seq)
1962 *unmapped_from_seq = NULL;
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001963 if (final_unmapped)
1964 *final_unmapped = NULL;
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001965 p->tun = NULL;
Neels Hofmeyredb76f82015-11-30 14:17:21 +01001966
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001967 struct gtphub_peer_port *from_seq = NULL;
1968 struct gtphub_peer_port *from_tei = NULL;
1969 struct gtphub_peer_port *unmapped = NULL;
1970
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001971 from_seq = gtphub_unmap_seq(p, from);
1972
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01001973 if (gtphub_unmap_header_tei(&from_tei, &p->tun, hub, p, from) < 0)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001974 return -1;
1975
1976 struct gtphub_peer *from_peer = from->peer_addr->peer;
1977 if (from_seq && from_tei && (from_seq != from_tei)) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001978 LOG(LOGL_DEBUG,
1979 "Seq unmap and TEI unmap yield two different peers."
1980 " Using seq unmap."
Neels Hofmeyr21495a42015-12-06 15:22:54 +01001981 " (from %s %s: seq %d yields %s, tei %u yields %s)\n",
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001982 gtphub_plane_idx_names[p->plane_idx],
1983 gtphub_peer_str(from_peer),
1984 (int)p->seq,
1985 gtphub_port_str(from_seq),
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001986 (unsigned int)p->header_tei_rx,
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001987 gtphub_port_str2(from_tei)
1988 );
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001989 }
1990 unmapped = (from_seq? from_seq : from_tei);
1991
1992 if (unmapped && to_proxy && (unmapped != to_proxy)) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001993 LOG(LOGL_NOTICE,
1994 "Unmap yields a different peer than the configured proxy."
1995 " Using proxy."
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01001996 " unmapped: %s proxy: %s\n",
1997 gtphub_port_str(unmapped),
1998 gtphub_port_str2(to_proxy)
1999 );
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002000 }
2001 unmapped = (to_proxy? to_proxy : unmapped);
2002
2003 if (!unmapped) {
2004 /* Return no error, but returned pointers are all NULL. */
2005 return 0;
2006 }
2007
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002008 if (unmapped_from_seq)
2009 *unmapped_from_seq = from_seq;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002010 if (final_unmapped)
2011 *final_unmapped = unmapped;
2012 return 0;
2013}
2014
2015static int gsn_addr_to_sockaddr(struct gsn_addr *src,
2016 uint16_t port,
2017 struct osmo_sockaddr *dst)
2018{
2019 return osmo_sockaddr_init_udp(dst, gsn_addr_to_str(src), port);
2020}
2021
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002022/* If p is an Echo request, replace p's data with the matching response and
2023 * return 1. If p is no Echo request, return 0, or -1 if an invalid packet is
2024 * detected. */
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002025static int gtphub_handle_echo_req(struct gtphub *hub, struct gtp_packet_desc *p,
2026 uint8_t **reply_buf)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002027{
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002028 if (p->type != GTP_ECHO_REQ)
2029 return 0;
2030
2031 static uint8_t echo_response_data[14] = {
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002032 0x32, /* GTP v1 flags */
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002033 GTP_ECHO_RSP,
2034 0x00, 14 - 8, /* Length in network byte order */
2035 0x00, 0x00, 0x00, 0x00, /* Zero TEI */
2036 0, 0, /* Seq, to be replaced */
2037 0, 0, /* no extensions */
2038 0x0e, /* Recovery IE */
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002039 0 /* Restart counter, to be replaced */
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002040 };
2041 uint16_t *seq = (uint16_t*)&echo_response_data[8];
2042 uint8_t *recovery = &echo_response_data[13];
2043
2044 *seq = hton16(p->seq);
2045 *recovery = hub->restart_counter;
2046
2047 *reply_buf = echo_response_data;
2048
2049 return sizeof(echo_response_data);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002050}
2051
Neels Hofmeyr5e947532015-11-11 14:01:06 +01002052struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2053 const struct osmo_sockaddr *addr);
2054
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002055/* Parse buffer as GTP packet, replace elements in-place and return the ofd and
2056 * address to forward to. Return a pointer to the osmo_fd, but copy the
2057 * sockaddr to *to_addr. The reason for this is that the sockaddr may expire at
2058 * any moment, while the osmo_fd is guaranteed to persist. Return the number of
2059 * bytes to forward, 0 or less on failure. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002060int gtphub_handle_buf(struct gtphub *hub,
2061 unsigned int side_idx,
2062 unsigned int plane_idx,
2063 const struct osmo_sockaddr *from_addr,
2064 uint8_t *buf,
2065 size_t received,
2066 time_t now,
2067 uint8_t **reply_buf,
2068 struct osmo_fd **to_ofd,
2069 struct osmo_sockaddr *to_addr)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002070{
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002071 struct gtphub_bind *from_bind = &hub->to_gsns[side_idx][plane_idx];
2072 struct gtphub_bind *to_bind = &hub->to_gsns[other_side_idx(side_idx)][plane_idx];
Neels Hofmeyr93dd56d2015-11-20 01:27:22 +01002073
Neels Hofmeyr416e35f2015-11-20 01:28:40 +01002074 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_IN],
2075 received);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002076 LOG(LOGL_DEBUG, "%s rx %s from %s %s\n",
2077 (side_idx == GTPH_SIDE_GGSN)? "<-" : "->",
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002078 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002079 gtphub_side_idx_names[side_idx],
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002080 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002081
Neels Hofmeyr84d76862015-12-03 11:24:39 +01002082 struct gtp_packet_desc p;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002083 gtp_decode(buf, received, side_idx, plane_idx, &p, now);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002084
Neels Hofmeyr06883a42015-12-03 11:25:27 +01002085 if (p.rc <= 0) {
2086 LOG(LOGL_ERROR, "INVALID: dropping GTP packet from %s %s %s\n",
2087 gtphub_side_idx_names[side_idx],
2088 gtphub_plane_idx_names[plane_idx],
2089 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002090 return -1;
Neels Hofmeyr06883a42015-12-03 11:25:27 +01002091 }
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002092
Neels Hofmeyr416e35f2015-11-20 01:28:40 +01002093 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2094
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002095 int reply_len;
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002096 reply_len = gtphub_handle_echo_req(hub, &p, reply_buf);
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002097 if (reply_len > 0) {
2098 /* It was an echo. Nothing left to do. */
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002099 osmo_sockaddr_copy(to_addr, from_addr);
Neels Hofmeyr93dd56d2015-11-20 01:27:22 +01002100 *to_ofd = &from_bind->ofd;
Neels Hofmeyrc5f8fe02015-11-20 03:16:19 +01002101
2102 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2103 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2104 reply_len);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002105 LOG(LOGL_DEBUG, "%s Echo response to %s: %d bytes to %s\n",
2106 (side_idx == GTPH_SIDE_GGSN)? "-->" : "<--",
2107 gtphub_side_idx_names[side_idx],
Neels Hofmeyrc5f8fe02015-11-20 03:16:19 +01002108 (int)reply_len, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002109 return reply_len;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002110 }
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002111 if (reply_len < 0)
2112 return -1;
2113
Neels Hofmeyr93dd56d2015-11-20 01:27:22 +01002114 *to_ofd = &to_bind->ofd;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002115
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002116 /* If a proxy is configured, check that it's indeed that proxy talking
2117 * to us. A proxy is a forced 1:1 connection, e.g. to another gtphub,
2118 * so no-one else is allowed to talk to us from that side. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002119 struct gtphub_peer_port *from_peer = hub->proxy[side_idx][plane_idx];
2120 if (from_peer) {
2121 if (osmo_sockaddr_cmp(&from_peer->sa, from_addr) != 0) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002122 LOG(LOGL_ERROR,
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002123 "Rejecting: %s proxy configured, but GTP packet"
2124 " received on %s bind is from another sender:"
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002125 " proxy: %s sender: %s\n",
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002126 gtphub_side_idx_names[side_idx],
2127 gtphub_side_idx_names[side_idx],
2128 gtphub_port_str(from_peer),
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002129 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002130 return -1;
2131 }
2132 }
2133
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002134 if (!from_peer) {
2135 /* Find or create a peer with a matching address. The sender's
2136 * port may in fact differ. */
2137 from_peer = gtphub_known_addr_have_port(from_bind, from_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002138 }
2139
2140 /* If any PDP context has been created, we already have an entry for
Neels Hofmeyredb76f82015-11-30 14:17:21 +01002141 * this GSN. If we don't have an entry, a GGSN has nothing to tell us
2142 * about, while an SGSN may initiate a PDP context. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002143 if (!from_peer) {
2144 if (side_idx == GTPH_SIDE_GGSN) {
2145 LOG(LOGL_ERROR, "Dropping packet: unknown GGSN peer: %s\n",
2146 osmo_sockaddr_to_str(from_addr));
2147 return -1;
2148 } else {
2149 /* SGSN */
2150 /* A new peer. If this is on the Ctrl plane, an SGSN
2151 * may make first contact without being known yet, so
2152 * create the peer struct for the current sender. */
2153 if (plane_idx != GTPH_PLANE_CTRL) {
2154 LOG(LOGL_ERROR,
2155 "Dropping packet: User plane peer was not"
2156 "announced by PDP Context: %s\n",
2157 osmo_sockaddr_to_str(from_addr));
2158 return -1;
2159 }
2160
2161 struct gsn_addr from_gsna;
2162 uint16_t from_port;
2163 if (gsn_addr_from_sockaddr(&from_gsna, &from_port, from_addr) != 0)
2164 return -1;
2165
2166 from_peer = gtphub_port_have(hub, from_bind, &from_gsna, from_port);
2167 }
2168 }
2169
2170 if (!from_peer) {
2171 /* This could theoretically happen for invalid address data or
2172 * somesuch. */
2173 LOG(LOGL_ERROR, "Dropping packet: invalid %s peer: %s\n",
2174 gtphub_side_idx_names[side_idx],
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002175 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002176 return -1;
2177 }
2178
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01002179 rate_ctr_add(&from_peer->counters_io->ctr[GTPH_CTR_BYTES_IN],
2180 received);
2181 rate_ctr_inc(&from_peer->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2182
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002183 LOG(LOGL_DEBUG, "from %s peer: %s\n", gtphub_side_idx_names[side_idx],
2184 gtphub_port_str(from_peer));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002185
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002186 struct gtphub_peer_port *to_peer_from_seq;
2187 struct gtphub_peer_port *to_peer;
2188 if (gtphub_unmap(hub, &p, from_peer,
2189 hub->proxy[other_side_idx(side_idx)][plane_idx],
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01002190 &to_peer, &to_peer_from_seq)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002191 != 0) {
2192 return -1;
2193 }
2194
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01002195 if (p.tun) {
2196 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[p.side_idx][p.plane_idx];
2197 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_IN],
2198 received);
2199 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2200 }
2201
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002202 if ((!to_peer) && (side_idx == GTPH_SIDE_SGSN)) {
2203 if (gtphub_resolve_ggsn(hub, &p, &to_peer) < 0)
2204 return -1;
2205 }
2206
2207 if (!to_peer) {
2208 LOG(LOGL_ERROR, "No %s to send to. Dropping packet.\n",
2209 gtphub_side_idx_names[other_side_idx(side_idx)]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002210 return -1;
2211 }
2212
2213 if (plane_idx == GTPH_PLANE_CTRL) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002214 /* This may be a Create PDP Context response. If it is, there
2215 * are other addresses in the GTP message to set up apart from
2216 * the sender. */
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01002217 if (gtphub_handle_pdp_ctx(hub, &p, from_peer, to_peer)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002218 != 0)
2219 return -1;
2220 }
Neels Hofmeyr59d72ca2015-12-03 13:59:49 +01002221
2222 /* Either to_peer was resolved from an existing tunnel,
2223 * or a PDP Ctx and thus a tunnel has just been created,
2224 * or the tunnel has been deleted due to this message. */
2225 OSMO_ASSERT(p.tun || (p.type == GTP_DELETE_PDP_RSP));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002226
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002227 gtphub_check_restart_counter(hub, &p, from_peer);
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01002228 gtphub_map_restart_counter(hub, &p);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002229
2230 /* If the GGSN is replying to an SGSN request, the sequence nr has
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002231 * already been unmapped above (to_peer_from_seq != NULL), and we need not
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002232 * create a new mapping. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002233 if (!to_peer_from_seq)
2234 gtphub_map_seq(&p, from_peer, to_peer);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002235
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002236 osmo_sockaddr_copy(to_addr, &to_peer->sa);
Neels Hofmeyra7c10152015-11-09 15:12:25 +01002237
2238 *reply_buf = (uint8_t*)p.data;
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002239
Neels Hofmeyr416e35f2015-11-20 01:28:40 +01002240 if (received) {
2241 rate_ctr_inc(&to_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2242 rate_ctr_add(&to_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2243 received);
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01002244
2245 rate_ctr_inc(&to_peer->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2246 rate_ctr_add(&to_peer->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2247 received);
Neels Hofmeyr416e35f2015-11-20 01:28:40 +01002248 }
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01002249
2250 if (p.tun) {
2251 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[other_side_idx(p.side_idx)][p.plane_idx];
2252 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2253 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2254 received);
2255 }
2256
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002257 LOG(LOGL_DEBUG, "%s Forward to %s: %d bytes to %s\n",
2258 (side_idx == GTPH_SIDE_SGSN)? "-->" : "<--",
2259 gtphub_side_idx_names[other_side_idx(side_idx)],
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002260 (int)received, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002261 return received;
2262}
2263
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002264static void resolved_gssn_del_cb(struct expiring_item *expi)
2265{
2266 struct gtphub_resolved_ggsn *ggsn;
2267 ggsn = container_of(expi, struct gtphub_resolved_ggsn, expiry_entry);
2268
2269 gtphub_port_ref_count_dec(ggsn->peer);
2270 llist_del(&ggsn->entry);
2271
2272 ggsn->expiry_entry.del_cb = 0;
2273 expiring_item_del(&ggsn->expiry_entry);
2274
2275 talloc_free(ggsn);
2276}
2277
2278void gtphub_resolved_ggsn(struct gtphub *hub, const char *apn_oi_str,
2279 struct gsn_addr *resolved_addr,
2280 time_t now)
2281{
2282 struct gtphub_peer_port *pp;
2283 struct gtphub_resolved_ggsn *ggsn;
2284
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002285 LOG(LOGL_DEBUG, "Resolved GGSN callback: %s %s\n",
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002286 apn_oi_str, osmo_hexdump((unsigned char*)resolved_addr,
2287 sizeof(*resolved_addr)));
Neels Hofmeyr05c593f2015-11-11 17:20:42 +01002288
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002289 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002290 resolved_addr, 2123);
2291 if (!pp) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002292 LOG(LOGL_ERROR, "Internal: Cannot create/find peer '%s'\n",
2293 gsn_addr_to_str(resolved_addr));
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002294 return;
2295 }
2296
2297 ggsn = talloc_zero(osmo_gtphub_ctx, struct gtphub_resolved_ggsn);
2298 OSMO_ASSERT(ggsn);
Neels Hofmeyrcd235ca2015-11-24 12:46:11 +01002299 INIT_LLIST_HEAD(&ggsn->entry);
2300 expiring_item_init(&ggsn->expiry_entry);
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002301
2302 ggsn->peer = pp;
2303 gtphub_port_ref_count_inc(pp);
2304
2305 strncpy(ggsn->apn_oi_str, apn_oi_str, sizeof(ggsn->apn_oi_str));
Neels Hofmeyr05313422015-11-17 12:28:09 +01002306 ggsn->apn_oi_str[sizeof(ggsn->apn_oi_str) - 1] = '\0';
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002307
2308 ggsn->expiry_entry.del_cb = resolved_gssn_del_cb;
Neels Hofmeyrb3368bc2015-11-25 16:45:59 +01002309 expiry_add(&hub->expire_slowly, &ggsn->expiry_entry, now);
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002310
2311 llist_add(&ggsn->entry, &hub->resolved_ggsns);
2312}
2313
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002314static int gtphub_gc_peer_port(struct gtphub_peer_port *pp)
2315{
2316 return pp->ref_count == 0;
2317}
2318
2319static int gtphub_gc_peer_addr(struct gtphub_peer_addr *pa)
2320{
2321 struct gtphub_peer_port *pp, *npp;
2322 llist_for_each_entry_safe(pp, npp, &pa->ports, entry) {
2323 if (gtphub_gc_peer_port(pp)) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002324 LOG(LOGL_DEBUG, "expired: peer %s\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002325 gtphub_port_str(pp));
2326 gtphub_peer_port_del(pp);
2327 }
2328 }
2329 return llist_empty(&pa->ports);
2330}
2331
2332static int gtphub_gc_peer(struct gtphub_peer *p)
2333{
2334 struct gtphub_peer_addr *pa, *npa;
2335 llist_for_each_entry_safe(pa, npa, &p->addresses, entry) {
2336 if (gtphub_gc_peer_addr(pa)) {
2337 gtphub_peer_addr_del(pa);
2338 }
2339 }
2340
2341 /* Note that there's a ref_count in each gtphub_peer_port instance
2342 * listed within p->addresses, referenced by TEI mappings from
2343 * hub->tei_map. As long as those don't expire, this peer will stay. */
2344
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002345 return llist_empty(&p->addresses)
2346 && nr_map_empty(&p->seq_map);
2347}
2348
2349static void gtphub_gc_bind(struct gtphub_bind *b)
2350{
2351 struct gtphub_peer *p, *n;
2352 llist_for_each_entry_safe(p, n, &b->peers, entry) {
2353 if (gtphub_gc_peer(p)) {
2354 gtphub_peer_del(p);
2355 }
2356 }
2357}
2358
2359void gtphub_gc(struct gtphub *hub, time_t now)
2360{
2361 int expired;
Neels Hofmeyrb3368bc2015-11-25 16:45:59 +01002362 expired = expiry_tick(&hub->expire_quickly, now);
2363 expired += expiry_tick(&hub->expire_slowly, now);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002364
2365 /* ... */
2366
2367 if (expired) {
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002368 int s, p;
2369 for_each_side_and_plane(s, p) {
2370 gtphub_gc_bind(&hub->to_gsns[s][p]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002371 }
2372 }
2373}
2374
2375static void gtphub_gc_cb(void *data)
2376{
2377 struct gtphub *hub = data;
2378 gtphub_gc(hub, gtphub_now());
2379 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2380}
2381
2382static void gtphub_gc_start(struct gtphub *hub)
2383{
2384 hub->gc_timer.cb = gtphub_gc_cb;
2385 hub->gc_timer.data = hub;
2386
2387 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2388}
2389
2390/* called by unit tests */
2391void gtphub_init(struct gtphub *hub)
2392{
2393 gtphub_zero(hub);
2394
Neels Hofmeyr39da7112015-11-24 13:31:06 +01002395 INIT_LLIST_HEAD(&hub->tunnels);
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01002396 INIT_LLIST_HEAD(&hub->pending_deletes);
Neels Hofmeyr39da7112015-11-24 13:31:06 +01002397
Neels Hofmeyrb3368bc2015-11-25 16:45:59 +01002398 expiry_init(&hub->expire_quickly, GTPH_EXPIRE_QUICKLY_SECS);
2399 expiry_init(&hub->expire_slowly, GTPH_EXPIRE_SLOWLY_MINUTES * 60);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002400
Neels Hofmeyr6c164062015-11-27 01:20:53 +01002401 nr_pool_init(&hub->tei_pool, 1, 0xffffffff);
2402
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002403 int side_idx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002404 int plane_idx;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002405 for_each_side_and_plane(side_idx, plane_idx) {
2406 gtphub_bind_init(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002407 }
Neels Hofmeyr763a6362015-11-16 13:45:13 +01002408
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002409 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].label = "SGSN Ctrl";
2410 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].label = "GGSN Ctrl";
2411 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].label = "SGSN User";
2412 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].label = "GGSN User";
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002413}
2414
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002415/* For the test suite, this is kept separate from gtphub_stop(), which also
2416 * closes sockets. The test suite avoids using sockets and would cause
2417 * segfaults when trying to close uninitialized ofds. */
2418void gtphub_free(struct gtphub *hub)
2419{
2420 /* By expiring all mappings, a garbage collection should free
2421 * everything else. A gtphub_bind_free() will assert that everything is
2422 * indeed empty. */
Neels Hofmeyrb3368bc2015-11-25 16:45:59 +01002423 expiry_clear(&hub->expire_quickly);
2424 expiry_clear(&hub->expire_slowly);
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002425
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002426 int side_idx;
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002427 int plane_idx;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002428 for_each_side_and_plane(side_idx, plane_idx) {
2429 gtphub_gc_bind(&hub->to_gsns[side_idx][plane_idx]);
2430 gtphub_bind_free(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002431 }
2432}
2433
2434void gtphub_stop(struct gtphub *hub)
2435{
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002436 int side_idx;
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002437 int plane_idx;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002438 for_each_side_and_plane(side_idx, plane_idx) {
2439 gtphub_bind_stop(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr21d08732015-11-20 00:08:28 +01002440 }
2441 gtphub_free(hub);
2442}
2443
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002444static int gtphub_make_proxy(struct gtphub *hub,
2445 struct gtphub_peer_port **pp,
2446 struct gtphub_bind *bind,
2447 const struct gtphub_cfg_addr *addr)
2448{
2449 if (!addr->addr_str)
2450 return 0;
2451
2452 struct gsn_addr gsna;
2453 if (gsn_addr_from_str(&gsna, addr->addr_str) != 0)
2454 return -1;
2455
2456 *pp = gtphub_port_have(hub, bind, &gsna, addr->port);
2457
2458 /* This is *the* proxy. Make sure it is never expired. */
2459 gtphub_port_ref_count_inc(*pp);
2460 return 0;
2461}
2462
Neels Hofmeyr80ee3912015-11-26 22:19:22 +01002463int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg,
2464 uint8_t restart_counter)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002465{
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002466 gtphub_init(hub);
Neels Hofmeyrbaaf7a42015-11-18 18:11:32 +01002467
Neels Hofmeyr80ee3912015-11-26 22:19:22 +01002468 hub->restart_counter = restart_counter;
Neels Hofmeyr7a10e442015-12-03 14:12:44 +01002469 hub->sgsn_use_sender = cfg->sgsn_use_sender? 1 : 0;
Neels Hofmeyr80ee3912015-11-26 22:19:22 +01002470
Neels Hofmeyrbaaf7a42015-11-18 18:11:32 +01002471 /* If a Ctrl plane proxy is configured, ares will never be used. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002472 if (!cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrbaaf7a42015-11-18 18:11:32 +01002473 if (gtphub_ares_init(hub) != 0) {
2474 LOG(LOGL_FATAL, "Failed to initialize ares\n");
2475 return -1;
2476 }
2477 }
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002478
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002479 int side_idx;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002480 int plane_idx;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002481 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr078fe562015-11-30 12:19:50 +01002482 int rc;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002483 rc = gtphub_bind_start(&hub->to_gsns[side_idx][plane_idx],
2484 &cfg->to_gsns[side_idx][plane_idx],
2485 (side_idx == GTPH_SIDE_SGSN)
2486 ? from_sgsns_read_cb
2487 : from_ggsns_read_cb,
2488 hub, plane_idx);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002489 if (rc) {
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002490 LOG(LOGL_FATAL, "Failed to bind for %ss (%s)\n",
2491 gtphub_side_idx_names[side_idx],
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002492 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002493 return rc;
2494 }
2495 }
2496
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002497 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002498 if (gtphub_make_proxy(hub,
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002499 &hub->proxy[side_idx][plane_idx],
2500 &hub->to_gsns[side_idx][plane_idx],
2501 &cfg->proxy[side_idx][plane_idx])
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002502 != 0) {
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002503 LOG(LOGL_FATAL, "Cannot configure %s proxy"
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002504 " %s port %d.\n",
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002505 gtphub_side_idx_names[side_idx],
2506 cfg->proxy[side_idx][plane_idx].addr_str,
2507 (int)cfg->proxy[side_idx][plane_idx].port);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002508 return -1;
2509 }
2510 }
2511
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002512 for_each_side_and_plane(side_idx, plane_idx) {
2513 if (hub->proxy[side_idx][plane_idx])
2514 LOG(LOGL_NOTICE, "Using %s %s proxy %s\n",
2515 gtphub_side_idx_names[side_idx],
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002516 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01002517 gtphub_port_str(hub->proxy[side_idx][plane_idx]));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002518 }
2519
Neels Hofmeyre0936702015-12-03 14:48:22 +01002520 if (hub->sgsn_use_sender)
Neels Hofmeyre92a2ef2015-12-03 14:52:33 +01002521 LOG(LOGL_NOTICE, "Using sender address and port for SGSN instead of GSN Addr IE and default ports.\n");
Neels Hofmeyre0936702015-12-03 14:48:22 +01002522
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002523 gtphub_gc_start(hub);
2524 return 0;
2525}
2526
2527static struct gtphub_peer_addr *gtphub_peer_find_addr(const struct gtphub_peer *peer,
2528 const struct gsn_addr *addr)
2529{
2530 struct gtphub_peer_addr *a;
2531 llist_for_each_entry(a, &peer->addresses, entry) {
2532 if (gsn_addr_same(&a->addr, addr))
2533 return a;
2534 }
2535 return NULL;
2536}
2537
2538static struct gtphub_peer_port *gtphub_addr_find_port(const struct gtphub_peer_addr *a,
2539 uint16_t port)
2540{
2541 OSMO_ASSERT(port);
2542 struct gtphub_peer_port *pp;
2543 llist_for_each_entry(pp, &a->ports, entry) {
2544 if (pp->port == port)
2545 return pp;
2546 }
2547 return NULL;
2548}
2549
2550static struct gtphub_peer_addr *gtphub_addr_find(const struct gtphub_bind *bind,
2551 const struct gsn_addr *addr)
2552{
2553 struct gtphub_peer *peer;
2554 llist_for_each_entry(peer, &bind->peers, entry) {
2555 struct gtphub_peer_addr *a = gtphub_peer_find_addr(peer, addr);
2556 if (a)
2557 return a;
2558 }
2559 return NULL;
2560}
2561
2562static struct gtphub_peer_port *gtphub_port_find(const struct gtphub_bind *bind,
2563 const struct gsn_addr *addr,
2564 uint16_t port)
2565{
2566 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2567 if (!a)
2568 return NULL;
2569 return gtphub_addr_find_port(a, port);
2570}
2571
2572struct gtphub_peer_port *gtphub_port_find_sa(const struct gtphub_bind *bind,
2573 const struct osmo_sockaddr *addr)
2574{
2575 struct gsn_addr gsna;
2576 uint16_t port;
2577 gsn_addr_from_sockaddr(&gsna, &port, addr);
2578 return gtphub_port_find(bind, &gsna, port);
2579}
2580
2581static struct gtphub_peer *gtphub_peer_new(struct gtphub *hub,
2582 struct gtphub_bind *bind)
2583{
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002584 struct gtphub_peer *peer = talloc_zero(osmo_gtphub_ctx,
2585 struct gtphub_peer);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002586 OSMO_ASSERT(peer);
2587
2588 INIT_LLIST_HEAD(&peer->addresses);
2589
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +01002590 nr_pool_init(&peer->seq_pool, 0, 0xffff);
Neels Hofmeyrb3368bc2015-11-25 16:45:59 +01002591 nr_map_init(&peer->seq_map, &peer->seq_pool, &hub->expire_quickly);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002592
2593 /* TODO use something random to pick the initial sequence nr.
2594 0x6d31 produces the ASCII character sequence 'm1', currently used in
2595 gtphub_nc_test.sh. */
2596 peer->seq_pool.last_nr = 0x6d31 - 1;
2597
2598 llist_add(&peer->entry, &bind->peers);
2599 return peer;
2600}
2601
2602static struct gtphub_peer_addr *gtphub_peer_add_addr(struct gtphub_peer *peer,
2603 const struct gsn_addr *addr)
2604{
2605 struct gtphub_peer_addr *a;
2606 a = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_addr);
2607 OSMO_ASSERT(a);
2608 a->peer = peer;
2609 gsn_addr_copy(&a->addr, addr);
2610 INIT_LLIST_HEAD(&a->ports);
2611 llist_add(&a->entry, &peer->addresses);
2612
2613 return a;
2614}
2615
2616static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
2617 struct gtphub_bind *bind,
2618 const struct gsn_addr *addr)
2619{
2620 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2621 if (a)
2622 return a;
2623
2624 /* If we haven't found an address, that means we need to create an
2625 * entirely new peer for the new address. More addresses may be added
2626 * to this peer later, but not via this function. */
2627 struct gtphub_peer *peer = gtphub_peer_new(hub, bind);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002628
2629 a = gtphub_peer_add_addr(peer, addr);
2630
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002631 LOG(LOGL_DEBUG, "New peer address: %s %s\n",
Neels Hofmeyr763a6362015-11-16 13:45:13 +01002632 bind->label,
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01002633 gsn_addr_to_str(&a->addr));
2634
2635 return a;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002636}
2637
2638static struct gtphub_peer_port *gtphub_addr_add_port(struct gtphub_peer_addr *a,
2639 uint16_t port)
2640{
2641 struct gtphub_peer_port *pp;
2642
2643 pp = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_port);
2644 OSMO_ASSERT(pp);
2645 pp->peer_addr = a;
2646 pp->port = port;
Neels Hofmeyr8adb8442015-12-01 15:20:18 +01002647 pp->last_restart_count = -1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002648
2649 if (gsn_addr_to_sockaddr(&a->addr, port, &pp->sa) != 0) {
2650 talloc_free(pp);
2651 return NULL;
2652 }
2653
Neels Hofmeyr7756ca52015-12-06 16:44:14 +01002654 pp->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
2655 &gtphub_ctrg_io_desc, 0);
2656
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002657 llist_add(&pp->entry, &a->ports);
2658
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002659 LOG(LOGL_DEBUG, "New peer port: %s port %d\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002660 gsn_addr_to_str(&a->addr),
2661 (int)port);
2662
2663 return pp;
2664}
2665
Neels Hofmeyrf16657a2015-11-08 20:34:47 +01002666struct gtphub_peer_port *gtphub_port_have(struct gtphub *hub,
2667 struct gtphub_bind *bind,
2668 const struct gsn_addr *addr,
2669 uint16_t port)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002670{
2671 struct gtphub_peer_addr *a = gtphub_addr_have(hub, bind, addr);
2672
2673 struct gtphub_peer_port *pp = gtphub_addr_find_port(a, port);
2674 if (pp)
2675 return pp;
2676
2677 return gtphub_addr_add_port(a, port);
2678}
2679
Neels Hofmeyr5e947532015-11-11 14:01:06 +01002680/* Find a GGSN peer with a matching address. If the address is known but the
2681 * port not, create a new port for that peer address. */
2682struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2683 const struct osmo_sockaddr *addr)
2684{
2685 struct gtphub_peer_addr *pa;
2686 struct gtphub_peer_port *pp;
2687
2688 struct gsn_addr gsna;
2689 uint16_t port;
2690 gsn_addr_from_sockaddr(&gsna, &port, addr);
2691
2692 pa = gtphub_addr_find(bind, &gsna);
2693 if (!pa)
2694 return NULL;
2695
2696 pp = gtphub_addr_find_port(pa, port);
2697
2698 if (!pp)
2699 pp = gtphub_addr_add_port(pa, port);
2700
2701 return pp;
2702}
2703
2704
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +01002705/* Return 0 if the message in p is not applicable for GGSN resolution, -1 if
2706 * resolution should be possible but failed, and 1 if resolution was
2707 * successful. *pp will be set to NULL if <1 is returned. */
2708static int gtphub_resolve_ggsn(struct gtphub *hub,
2709 struct gtp_packet_desc *p,
2710 struct gtphub_peer_port **pp)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002711{
Neels Hofmeyrba35d0c2015-11-10 20:32:13 +01002712 *pp = NULL;
2713
2714 /* TODO determine from message type whether IEs should be present? */
2715
2716 int rc;
2717 const char *imsi_str;
2718 rc = get_ie_imsi_str(p->ie, 0, &imsi_str);
2719 if (rc < 1)
2720 return rc;
2721 OSMO_ASSERT(imsi_str);
2722
2723 const char *apn_str;
2724 rc = get_ie_apn_str(p->ie, &apn_str);
2725 if (rc < 1)
2726 return rc;
2727 OSMO_ASSERT(apn_str);
2728
2729 *pp = gtphub_resolve_ggsn_addr(hub, imsi_str, apn_str);
2730 return (*pp)? 1 : -1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002731}
2732
2733
2734/* TODO move to osmocom/core/socket.c ? */
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002735/* use this in osmo_sock_init() to remove dup. */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002736/* Internal: call getaddrinfo for osmo_sockaddr_init(). The caller is required
2737 to call freeaddrinfo(*result), iff zero is returned. */
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002738static int _osmo_getaddrinfo(struct addrinfo **result,
2739 uint16_t family, uint16_t type, uint8_t proto,
2740 const char *host, uint16_t port)
2741{
2742 struct addrinfo hints;
2743 char portbuf[16];
2744
2745 sprintf(portbuf, "%u", port);
2746 memset(&hints, '\0', sizeof(struct addrinfo));
2747 hints.ai_family = family;
2748 if (type == SOCK_RAW) {
2749 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
2750 * SOCK_RAW and IPPROTO_GRE is used.
2751 */
2752 hints.ai_socktype = SOCK_DGRAM;
2753 hints.ai_protocol = IPPROTO_UDP;
2754 } else {
2755 hints.ai_socktype = type;
2756 hints.ai_protocol = proto;
2757 }
2758
2759 return getaddrinfo(host, portbuf, &hints, result);
2760}
2761
2762/* TODO move to osmocom/core/socket.c ? */
2763int osmo_sockaddr_init(struct osmo_sockaddr *addr,
2764 uint16_t family, uint16_t type, uint8_t proto,
2765 const char *host, uint16_t port)
2766{
2767 struct addrinfo *res;
2768 int rc;
2769 rc = _osmo_getaddrinfo(&res, family, type, proto, host, port);
2770
2771 if (rc != 0) {
Neels Hofmeyr2cabc5a2015-11-16 14:35:13 +01002772 LOG(LOGL_ERROR, "getaddrinfo returned error %d\n", (int)rc);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002773 return -EINVAL;
2774 }
2775
2776 OSMO_ASSERT(res->ai_addrlen <= sizeof(addr->a));
2777 memcpy(&addr->a, res->ai_addr, res->ai_addrlen);
2778 addr->l = res->ai_addrlen;
2779 freeaddrinfo(res);
2780
2781 return 0;
2782}
2783
2784int osmo_sockaddr_to_strs(char *addr_str, size_t addr_str_len,
2785 char *port_str, size_t port_str_len,
2786 const struct osmo_sockaddr *addr,
2787 int flags)
2788{
2789 int rc;
2790
2791 if ((addr->l < 1) || (addr->l > sizeof(addr->a))) {
2792 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address size: %d\n", addr->l);
2793 return -1;
2794 }
2795
2796 if (addr->l > sizeof(addr->a)) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002797 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: too long: %d\n",
2798 addr->l);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002799 return -1;
2800 }
2801
2802 rc = getnameinfo((struct sockaddr*)&addr->a, addr->l,
2803 addr_str, addr_str_len,
2804 port_str, port_str_len,
2805 flags);
2806
2807 if (rc)
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002808 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: %s: %s\n",
2809 gai_strerror(rc), osmo_hexdump((uint8_t*)&addr->a,
2810 addr->l));
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002811
2812 return rc;
2813}
2814
2815const char *osmo_sockaddr_to_strb(const struct osmo_sockaddr *addr,
2816 char *buf, size_t buf_len)
2817{
2818 const int portbuf_len = 6;
2819 OSMO_ASSERT(buf_len > portbuf_len);
2820 char *portbuf = buf + buf_len - portbuf_len;
2821 buf_len -= portbuf_len;
2822 if (osmo_sockaddr_to_strs(buf, buf_len,
2823 portbuf, portbuf_len,
2824 addr,
2825 NI_NUMERICHOST | NI_NUMERICSERV))
2826 return NULL;
2827
2828 char *pos = buf + strnlen(buf, buf_len-1);
2829 size_t len = buf_len - (pos - buf);
2830
2831 snprintf(pos, len, " port %s", portbuf);
2832 buf[buf_len-1] = '\0';
2833
2834 return buf;
2835}
2836
2837const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *addr)
2838{
2839 static char buf[256];
2840 const char *result = osmo_sockaddr_to_strb(addr, buf, sizeof(buf));
2841 if (! result)
2842 return "(invalid)";
2843 return result;
2844}
2845
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002846int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
2847 const struct osmo_sockaddr *b)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002848{
2849 if (a == b)
2850 return 0;
2851 if (!a)
2852 return -1;
2853 if (!b)
2854 return 1;
2855 if (a->l != b->l) {
2856 /* Lengths are not the same, but determine the order. Will
2857 * anyone ever sort a list by osmo_sockaddr though...? */
2858 int cmp = memcmp(&a->a, &b->a, (a->l < b->l)? a->l : b->l);
2859 if (cmp == 0) {
2860 if (a->l < b->l)
2861 return -1;
2862 else
2863 return 1;
2864 }
2865 return cmp;
2866 }
2867 return memcmp(&a->a, &b->a, a->l);
2868}
2869
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01002870void osmo_sockaddr_copy(struct osmo_sockaddr *dst,
2871 const struct osmo_sockaddr *src)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02002872{
2873 OSMO_ASSERT(src->l <= sizeof(dst->a));
2874 memcpy(&dst->a, &src->a, src->l);
2875 dst->l = src->l;
2876}