blob: a0af42beebe0fdb4b97c8197e3d920201c617194 [file] [log] [blame]
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001/* GTP Hub Implementation */
2
3/* (C) 2015 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <string.h>
23#include <errno.h>
24#include <inttypes.h>
25#include <time.h>
26#include <limits.h>
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +010027#include <unistd.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020028#include <sys/socket.h>
29#include <netinet/in.h>
30#include <arpa/inet.h>
31
32#include <gtp.h>
33#include <gtpie.h>
34
35#include <openbsc/gtphub.h>
36#include <openbsc/debug.h>
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010037#include <openbsc/gprs_utils.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020038
39#include <osmocom/core/utils.h>
40#include <osmocom/core/logging.h>
41#include <osmocom/core/socket.h>
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +010042#include <osmocom/core/rate_ctr.h>
43#include <osmocom/core/stats.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020044
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +010045
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020046static const int GTPH_GC_TICK_SECONDS = 1;
47
48void *osmo_gtphub_ctx;
49
Neels Hofmeyr063a8022015-11-16 14:35:13 +010050/* Convenience makro, note: only within this C file. */
51#define LOG(level, fmt, args...) \
52 LOGP(DGTPHUB, level, fmt, ##args)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020053
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010054#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
55 sizeof(*(struct_pointer)))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020056
57/* TODO move this to osmocom/core/select.h ? */
58typedef int (*osmo_fd_cb_t)(struct osmo_fd *fd, unsigned int what);
59
60/* TODO move this to osmocom/core/linuxlist.h ? */
61#define __llist_first(head) (((head)->next == (head)) ? NULL : (head)->next)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +010062#define llist_first(head, type, entry) \
63 llist_entry(__llist_first(head), type, entry)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020064
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +010065#define __llist_last(head) (((head)->next == (head)) ? NULL : (head)->prev)
66#define llist_last(head, type, entry) \
67 llist_entry(__llist_last(head), type, entry)
68
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020069/* TODO move GTP header stuff to openggsn/gtp/ ? See gtp_decaps*() */
70
71enum gtp_rc {
72 GTP_RC_UNKNOWN = 0,
73 GTP_RC_TINY = 1, /* no IEs (like ping/pong) */
Neels Hofmeyre921e322015-11-11 00:45:50 +010074 GTP_RC_PDU_C = 2, /* a real packet with IEs */
75 GTP_RC_PDU_U = 3, /* a real packet with User data */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020076
77 GTP_RC_TOOSHORT = -1,
78 GTP_RC_UNSUPPORTED_VERSION = -2,
79 GTP_RC_INVALID_IE = -3,
80};
81
82struct gtp_packet_desc {
83 union gtp_packet *data;
84 int data_len;
85 int header_len;
86 int version;
87 uint8_t type;
88 uint16_t seq;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010089 uint32_t header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020090 uint32_t header_tei;
91 int rc; /* enum gtp_rc */
92 unsigned int plane_idx;
Neels Hofmeyre54cd152015-11-24 13:31:06 +010093 unsigned int side_idx;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +010094 struct gtphub_tunnel *tun;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +010095 time_t timestamp;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020096 union gtpie_member *ie[GTPIE_SIZE];
97};
98
Neels Hofmeyr10fc0242015-12-01 00:23:45 +010099struct pending_delete {
100 struct llist_head entry;
101 struct expiring_item expiry_entry;
102
103 struct gtphub_tunnel *tun;
104 uint8_t teardown_ind;
105 uint8_t nsapi;
106};
107
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100108
109/* counters */
110
111enum gtphub_counters_io {
112 GTPH_CTR_PKTS_IN = 0,
113 GTPH_CTR_PKTS_OUT,
114 GTPH_CTR_BYTES_IN,
115 GTPH_CTR_BYTES_OUT
116};
117
118static const struct rate_ctr_desc gtphub_counters_io_desc[] = {
119 { "packets.in", "Packets ( In)" },
120 { "packets.out", "Packets (Out)" },
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100121 { "bytes.in", "Bytes ( In)" },
122 { "bytes.out", "Bytes (Out)" },
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100123};
124
125static const struct rate_ctr_group_desc gtphub_ctrg_io_desc = {
126 .group_name_prefix = "gtphub.bind",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100127 .group_description = "I/O Statistics",
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100128 .num_ctr = ARRAY_SIZE(gtphub_counters_io_desc),
129 .ctr_desc = gtphub_counters_io_desc,
130 .class_id = OSMO_STATS_CLASS_GLOBAL,
131};
132
133
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100134/* support */
135
136static const char *gtp_type_str(uint8_t type)
137{
138 switch (type) {
139 case 1:
140 return " (Echo Request)";
141 case 2:
142 return " (Echo Response)";
143 case 16:
144 return " (Create PDP Ctx Request)";
145 case 17:
146 return " (Create PDP Ctx Response)";
147 case 18:
148 return " (Update PDP Ctx Request)";
149 case 19:
150 return " (Update PDP Ctx Response)";
151 case 20:
152 return " (Delete PDP Ctx Request)";
153 case 21:
154 return " (Delete PDP Ctx Response)";
155 case 255:
156 return " (User Data)";
157 default:
158 return "";
159 }
160}
161
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200162void gsn_addr_copy(struct gsn_addr *gsna, const struct gsn_addr *src)
163{
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +0100164 *gsna = *src;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200165}
166
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200167int gsn_addr_from_sockaddr(struct gsn_addr *gsna, uint16_t *port,
168 const struct osmo_sockaddr *sa)
169{
170 char addr_str[256];
171 char port_str[6];
172
173 if (osmo_sockaddr_to_strs(addr_str, sizeof(addr_str),
174 port_str, sizeof(port_str),
175 sa, (NI_NUMERICHOST | NI_NUMERICSERV))
176 != 0) {
177 return -1;
178 }
179
180 if (port)
181 *port = atoi(port_str);
182
183 return gsn_addr_from_str(gsna, addr_str);
184}
185
186int gsn_addr_from_str(struct gsn_addr *gsna, const char *numeric_addr_str)
187{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100188 if ((!gsna) || (!numeric_addr_str))
189 return -1;
190
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200191 int af = AF_INET;
192 gsna->len = 4;
193 const char *pos = numeric_addr_str;
194 for (; *pos; pos++) {
195 if (*pos == ':') {
196 af = AF_INET6;
197 gsna->len = 16;
198 break;
199 }
200 }
201
202 int rc = inet_pton(af, numeric_addr_str, gsna->buf);
203 if (rc != 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100204 LOG(LOGL_ERROR, "Cannot resolve numeric address: '%s'\n",
205 numeric_addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200206 return -1;
207 }
208 return 0;
209}
210
211const char *gsn_addr_to_str(const struct gsn_addr *gsna)
212{
213 static char buf[INET6_ADDRSTRLEN + 1];
214 return gsn_addr_to_strb(gsna, buf, sizeof(buf));
215}
216
217const char *gsn_addr_to_strb(const struct gsn_addr *gsna,
218 char *strbuf,
219 int strbuf_len)
220{
221 int af;
222 switch (gsna->len) {
223 case 4:
224 af = AF_INET;
225 break;
226 case 16:
227 af = AF_INET6;
228 break;
229 default:
230 return NULL;
231 }
232
233 const char *r = inet_ntop(af, gsna->buf, strbuf, strbuf_len);
234 if (!r) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100235 LOG(LOGL_ERROR, "Cannot convert gsn_addr to string:"
236 " %s: len=%d, buf=%s\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100237 strerror(errno),
238 (int)gsna->len,
239 osmo_hexdump(gsna->buf, sizeof(gsna->buf)));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200240 }
241 return r;
242}
243
244int gsn_addr_same(const struct gsn_addr *a, const struct gsn_addr *b)
245{
246 if (a == b)
247 return 1;
248 if ((!a) || (!b))
249 return 0;
250 if (a->len != b->len)
251 return 0;
252 return (memcmp(a->buf, b->buf, a->len) == 0)? 1 : 0;
253}
254
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100255static int gsn_addr_get(struct gsn_addr *gsna, const struct gtp_packet_desc *p,
256 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200257{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100258 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200259 return -1;
260
261 unsigned int len;
262 /* gtpie.h fails to declare gtpie_gettlv()'s first arg as const. */
263 if (gtpie_gettlv((union gtpie_member**)p->ie, GTPIE_GSN_ADDR, idx,
264 &len, gsna->buf, sizeof(gsna->buf))
265 != 0)
266 return -1;
267 gsna->len = len;
268 return 0;
269}
270
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100271static int gsn_addr_put(const struct gsn_addr *gsna, struct gtp_packet_desc *p,
272 int idx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200273{
Neels Hofmeyre921e322015-11-11 00:45:50 +0100274 if (p->rc != GTP_RC_PDU_C)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200275 return -1;
276
277 int ie_idx;
278 ie_idx = gtpie_getie(p->ie, GTPIE_GSN_ADDR, idx);
279
280 if (ie_idx < 0)
281 return -1;
282
283 struct gtpie_tlv *ie = &p->ie[ie_idx]->tlv;
284 int ie_l = ntoh16(ie->l);
285 if (ie_l != gsna->len) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100286 LOG(LOGL_ERROR, "Not implemented:"
287 " replace an IE address of different size:"
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200288 " replace %d with %d\n", (int)ie_l, (int)gsna->len);
289 return -1;
290 }
291
292 memcpy(ie->v, gsna->buf, (int)ie_l);
293 return 0;
294}
295
296/* Validate GTP version 0 data; analogous to validate_gtp1_header(), see there.
297 */
298void validate_gtp0_header(struct gtp_packet_desc *p)
299{
300 const struct gtp0_header *pheader = &(p->data->gtp0.h);
301 p->rc = GTP_RC_UNKNOWN;
302 p->header_len = 0;
303
304 OSMO_ASSERT(p->data_len >= 1);
305 OSMO_ASSERT(p->version == 0);
306
307 if (p->data_len < GTP0_HEADER_SIZE) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100308 LOG(LOGL_ERROR, "GTP0 packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200309 p->rc = GTP_RC_TOOSHORT;
310 return;
311 }
312
313 p->type = ntoh8(pheader->type);
314 p->seq = ntoh16(pheader->seq);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100315 p->header_tei_rx = 0; /* TODO */
316 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200317
318 if (p->data_len == GTP0_HEADER_SIZE) {
319 p->rc = GTP_RC_TINY;
320 p->header_len = GTP0_HEADER_SIZE;
321 return;
322 }
323
324 /* Check packet length field versus length of packet */
325 if (p->data_len != (ntoh16(pheader->length) + GTP0_HEADER_SIZE)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100326 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
327 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100328 GTP0_HEADER_SIZE, (int)ntoh16(pheader->length),
329 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200330 p->rc = GTP_RC_TOOSHORT;
331 return;
332 }
333
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100334 LOG(LOGL_DEBUG, "GTP v0 TID = %" PRIu64 "\n", pheader->tid);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200335 p->header_len = GTP0_HEADER_SIZE;
Neels Hofmeyre921e322015-11-11 00:45:50 +0100336 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200337}
338
339/* Validate GTP version 1 data, and update p->rc with the result, as well as
340 * p->header_len in case of a valid header. */
341void validate_gtp1_header(struct gtp_packet_desc *p)
342{
343 const struct gtp1_header_long *pheader = &(p->data->gtp1l.h);
344 p->rc = GTP_RC_UNKNOWN;
345 p->header_len = 0;
346
347 OSMO_ASSERT(p->data_len >= 1);
348 OSMO_ASSERT(p->version == 1);
349
350 if ((p->data_len < GTP1_HEADER_SIZE_LONG)
351 && (p->data_len != GTP1_HEADER_SIZE_SHORT)){
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100352 LOG(LOGL_ERROR, "GTP packet too short: %d\n", p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200353 p->rc = GTP_RC_TOOSHORT;
354 return;
355 }
356
357 p->type = ntoh8(pheader->type);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100358 p->header_tei_rx = ntoh32(pheader->tei);
359 p->header_tei = p->header_tei_rx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200360 p->seq = ntoh16(pheader->seq);
361
Neels Hofmeyr28a70f22015-12-06 15:22:54 +0100362 LOG(LOGL_DEBUG, "| GTPv1\n");
363 LOG(LOGL_DEBUG, "| type = %" PRIu8 " 0x%02" PRIx8 "\n", p->type, p->type);
364 LOG(LOGL_DEBUG, "| length = %" PRIu16 " 0x%04" PRIx16 "\n", ntoh16(pheader->length), ntoh16(pheader->length));
365 LOG(LOGL_DEBUG, "| TEI = %" PRIu32 " 0x%08" PRIx32 "\n", p->header_tei_rx, p->header_tei_rx);
366 LOG(LOGL_DEBUG, "| seq = %" PRIu16 " 0x%04" PRIx16 "\n", p->seq, p->seq);
367 LOG(LOGL_DEBUG, "| npdu = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->npdu, pheader->npdu);
368 LOG(LOGL_DEBUG, "| next = %" PRIu8 " 0x%02" PRIx8 "\n", pheader->next, pheader->next);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200369
370 if (p->data_len <= GTP1_HEADER_SIZE_LONG) {
371 p->rc = GTP_RC_TINY;
372 p->header_len = GTP1_HEADER_SIZE_SHORT;
373 return;
374 }
375
376 /* Check packet length field versus length of packet */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100377 int announced_len = ntoh16(pheader->length) + GTP1_HEADER_SIZE_SHORT;
378 if (p->data_len != announced_len) {
379 LOG(LOGL_ERROR, "GTP packet length field (%d + %d) does not"
380 " match actual length (%d)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100381 GTP1_HEADER_SIZE_SHORT, (int)ntoh16(pheader->length),
382 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200383 p->rc = GTP_RC_TOOSHORT;
384 return;
385 }
386
Neels Hofmeyre921e322015-11-11 00:45:50 +0100387 p->rc = GTP_RC_PDU_C;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200388 p->header_len = GTP1_HEADER_SIZE_LONG;
389}
390
391/* Examine whether p->data of size p->data_len has a valid GTP header. Set
392 * p->version, p->rc and p->header_len. On error, p->rc <= 0 (see enum
393 * gtp_rc). p->data must point at a buffer with p->data_len set. */
394void validate_gtp_header(struct gtp_packet_desc *p)
395{
396 p->rc = GTP_RC_UNKNOWN;
397
398 /* Need at least 1 byte in order to check version */
399 if (p->data_len < 1) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100400 LOG(LOGL_ERROR, "Discarding packet - too small: %d\n",
401 p->data_len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200402 p->rc = GTP_RC_TOOSHORT;
403 return;
404 }
405
406 p->version = p->data->flags >> 5;
407
408 switch (p->version) {
409 case 0:
410 validate_gtp0_header(p);
411 break;
412 case 1:
413 validate_gtp1_header(p);
414 break;
415 default:
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100416 LOG(LOGL_ERROR, "Unsupported GTP version: %d\n", p->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200417 p->rc = GTP_RC_UNSUPPORTED_VERSION;
418 break;
419 }
420}
421
422
423/* Return the value of the i'th IMSI IEI by copying to *imsi.
424 * The first IEI is reached by passing i = 0.
425 * imsi must point at allocated space of (at least) 8 bytes.
426 * Return 1 on success, or 0 if not found. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100427static int get_ie_imsi(union gtpie_member *ie[], int i, uint8_t *imsi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200428{
429 return gtpie_gettv0(ie, GTPIE_IMSI, i, imsi, 8) == 0;
430}
431
432/* Analogous to get_ie_imsi(). nsapi must point at a single uint8_t. */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100433static int get_ie_nsapi(union gtpie_member *ie[], int i, uint8_t *nsapi)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200434{
435 return gtpie_gettv1(ie, GTPIE_NSAPI, i, nsapi) == 0;
436}
437
438static char imsi_digit_to_char(uint8_t nibble)
439{
440 nibble &= 0x0f;
441 if (nibble > 9)
442 return (nibble == 0x0f) ? '\0' : '?';
443 return '0' + nibble;
444}
445
446/* Return a human readable IMSI string, in a static buffer.
447 * imsi must point at 8 octets of IMSI IE encoded IMSI data. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100448static int imsi_to_str(uint8_t *imsi, const char **imsi_str)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200449{
450 static char str[17];
451 int i;
452
453 for (i = 0; i < 8; i++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +0100454 char c;
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100455 c = imsi_digit_to_char(imsi[i]);
456 if (c == '?')
457 return -1;
458 str[2*i] = c;
459
460 c = imsi_digit_to_char(imsi[i] >> 4);
461 if (c == '?')
462 return -1;
463 str[2*i + 1] = c;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200464 }
465 str[16] = '\0';
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100466 *imsi_str = str;
467 return 1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200468}
469
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100470/* Return 0 if not present, 1 if present and decoded successfully, -1 if
471 * present but cannot be decoded. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100472static int get_ie_imsi_str(union gtpie_member *ie[], int i,
473 const char **imsi_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100474{
475 uint8_t imsi_buf[8];
476 if (!get_ie_imsi(ie, i, imsi_buf))
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100477 return 0;
478 return imsi_to_str(imsi_buf, imsi_str);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100479}
480
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100481/* Return 0 if not present, 1 if present and decoded successfully, -1 if
482 * present but cannot be decoded. */
483static int get_ie_apn_str(union gtpie_member *ie[], const char **apn_str)
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100484{
485 static char apn_buf[GSM_APN_LENGTH];
486 unsigned int len;
487 if (gtpie_gettlv(ie, GTPIE_APN, 0,
488 &len, apn_buf, sizeof(apn_buf)) != 0)
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100489 return 0;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100490
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100491 if (len < 2) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100492 LOG(LOGL_ERROR, "APN IE: invalid length: %d\n",
493 (int)len);
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100494 return -1;
495 }
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100496
497 if (len > (sizeof(apn_buf) - 1))
498 len = sizeof(apn_buf) - 1;
499 apn_buf[len] = '\0';
500
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100501 *apn_str = gprs_apn_to_str(apn_buf, (uint8_t*)apn_buf, len);
502 if (!(*apn_str)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100503 LOG(LOGL_ERROR, "APN IE: present but cannot be decoded: %s\n",
504 osmo_hexdump((uint8_t*)apn_buf, len));
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100505 return -1;
506 }
507 return 1;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100508}
509
510
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200511/* Validate header, and index information elements. Write decoded packet
512 * information to *res. res->data will point at the given data buffer. On
513 * error, p->rc is set <= 0 (see enum gtp_rc). */
514static void gtp_decode(const uint8_t *data, int data_len,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100515 unsigned int from_side_idx,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200516 unsigned int from_plane_idx,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100517 struct gtp_packet_desc *res,
518 time_t now)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200519{
520 ZERO_STRUCT(res);
521 res->data = (union gtp_packet*)data;
522 res->data_len = data_len;
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100523 res->side_idx = from_side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200524 res->plane_idx = from_plane_idx;
Neels Hofmeyr29d926b2015-11-24 13:27:13 +0100525 res->timestamp = now;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200526
527 validate_gtp_header(res);
528
Neels Hofmeyr87c83d02015-12-03 11:25:27 +0100529 if (res->rc <= 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200530 return;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200531
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100532 LOG(LOGL_DEBUG, "Valid GTP header (v%d)\n", res->version);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200533
Neels Hofmeyre921e322015-11-11 00:45:50 +0100534 if (from_plane_idx == GTPH_PLANE_USER) {
535 res->rc = GTP_RC_PDU_U;
536 return;
537 }
538
539 if (res->rc != GTP_RC_PDU_C) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100540 LOG(LOGL_DEBUG, "no IEs in this GTP packet\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200541 return;
542 }
543
544 if (gtpie_decaps(res->ie, res->version,
545 (void*)(data + res->header_len),
546 res->data_len - res->header_len) != 0) {
547 res->rc = GTP_RC_INVALID_IE;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100548 LOG(LOGL_ERROR, "INVALID: cannot decode IEs."
Neels Hofmeyrbee75962015-12-06 23:07:02 +0100549 " Dropping GTP packet%s.\n",
550 gtp_type_str(res->type)
551 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200552 return;
553 }
554
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100555#if 1
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100556 /* TODO if (<loglevel is debug>) { ...
557 (waiting for a commit from jerlbeck) */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200558 int i;
559
560 for (i = 0; i < 10; i++) {
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100561 const char *imsi;
562 if (get_ie_imsi_str(res->ie, i, &imsi) < 1)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200563 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100564 LOG(LOGL_DEBUG, "| IMSI %s\n", imsi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200565 }
566
567 for (i = 0; i < 10; i++) {
568 uint8_t nsapi;
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100569 if (!get_ie_nsapi(res->ie, i, &nsapi))
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200570 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100571 LOG(LOGL_DEBUG, "| NSAPI %d\n", (int)nsapi);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200572 }
573
574 for (i = 0; i < 2; i++) {
575 struct gsn_addr addr;
576 if (gsn_addr_get(&addr, res, i) == 0)
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100577 LOG(LOGL_DEBUG, "| addr %s\n", gsn_addr_to_str(&addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200578 }
579
580 for (i = 0; i < 10; i++) {
581 uint32_t tei;
582 if (gtpie_gettv4(res->ie, GTPIE_TEI_DI, i, &tei) != 0)
583 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100584 LOG(LOGL_DEBUG, "| TEI DI (USER) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200585 tei, tei);
586 }
587
588 for (i = 0; i < 10; i++) {
589 uint32_t tei;
590 if (gtpie_gettv4(res->ie, GTPIE_TEI_C, i, &tei) != 0)
591 break;
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100592 LOG(LOGL_DEBUG, "| TEI (CTRL) %" PRIu32 " 0x%08" PRIx32 "\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200593 tei, tei);
594 }
595#endif
596}
597
598
599/* expiry */
600
601void expiry_init(struct expiry *exq, int expiry_in_seconds)
602{
603 ZERO_STRUCT(exq);
604 exq->expiry_in_seconds = expiry_in_seconds;
605 INIT_LLIST_HEAD(&exq->items);
606}
607
608void expiry_add(struct expiry *exq, struct expiring_item *item, time_t now)
609{
610 item->expiry = now + exq->expiry_in_seconds;
611
Neels Hofmeyr1aa0e472015-11-24 13:32:23 +0100612 OSMO_ASSERT(llist_empty(&exq->items)
613 || (item->expiry
614 >= llist_last(&exq->items, struct expiring_item, entry)->expiry));
615
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200616 /* Add/move to the tail to always sort by expiry, ascending. */
617 llist_del(&item->entry);
618 llist_add_tail(&item->entry, &exq->items);
619}
620
621int expiry_tick(struct expiry *exq, time_t now)
622{
623 int expired = 0;
624 struct expiring_item *m, *n;
625 llist_for_each_entry_safe(m, n, &exq->items, entry) {
626 if (m->expiry <= now) {
627 expiring_item_del(m);
628 expired ++;
629 } else {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200630 /* The items are added sorted by expiry. So when we hit
631 * an unexpired entry, only more unexpired ones will
632 * follow. */
633 break;
634 }
635 }
636 return expired;
637}
638
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100639void expiry_clear(struct expiry *exq)
640{
641 struct expiring_item *m, *n;
642 llist_for_each_entry_safe(m, n, &exq->items, entry) {
643 expiring_item_del(m);
644 }
645}
646
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200647void expiring_item_init(struct expiring_item *item)
648{
649 ZERO_STRUCT(item);
650 INIT_LLIST_HEAD(&item->entry);
651}
652
653void expiring_item_del(struct expiring_item *item)
654{
655 OSMO_ASSERT(item);
656 llist_del(&item->entry);
657 INIT_LLIST_HEAD(&item->entry);
658 if (item->del_cb) {
659 /* avoid loops */
660 del_cb_t del_cb = item->del_cb;
661 item->del_cb = 0;
662 (del_cb)(item);
663 }
664}
665
666
667/* nr_map, nr_pool */
668
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100669void nr_pool_init(struct nr_pool *pool, nr_t nr_min, nr_t nr_max)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200670{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100671 *pool = (struct nr_pool){
672 .nr_min = nr_min,
673 .nr_max = nr_max,
674 .last_nr = nr_max
675 };
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200676}
677
678nr_t nr_pool_next(struct nr_pool *pool)
679{
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +0100680 if (pool->last_nr >= pool->nr_max)
681 pool->last_nr = pool->nr_min;
682 else
683 pool->last_nr ++;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200684
685 return pool->last_nr;
686}
687
688void nr_map_init(struct nr_map *map, struct nr_pool *pool,
689 struct expiry *exq)
690{
691 ZERO_STRUCT(map);
692 map->pool = pool;
693 map->add_items_to_expiry = exq;
694 INIT_LLIST_HEAD(&map->mappings);
695}
696
697void nr_mapping_init(struct nr_mapping *m)
698{
699 ZERO_STRUCT(m);
700 INIT_LLIST_HEAD(&m->entry);
701 expiring_item_init(&m->expiry_entry);
702}
703
704void nr_map_add(struct nr_map *map, struct nr_mapping *mapping, time_t now)
705{
706 /* Generate a mapped number */
707 mapping->repl = nr_pool_next(map->pool);
708
709 /* Add to the tail to always yield a list sorted by expiry, in
710 * ascending order. */
711 llist_add_tail(&mapping->entry, &map->mappings);
Neels Hofmeyr508514c2015-11-24 13:30:38 +0100712 nr_map_refresh(map, mapping, now);
713}
714
715void nr_map_refresh(struct nr_map *map, struct nr_mapping *mapping, time_t now)
716{
717 if (!map->add_items_to_expiry)
718 return;
719 expiry_add(map->add_items_to_expiry,
720 &mapping->expiry_entry,
721 now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200722}
723
724void nr_map_clear(struct nr_map *map)
725{
726 struct nr_mapping *m;
727 struct nr_mapping *n;
728 llist_for_each_entry_safe(m, n, &map->mappings, entry) {
729 nr_mapping_del(m);
730 }
731}
732
733int nr_map_empty(const struct nr_map *map)
734{
735 return llist_empty(&map->mappings);
736}
737
738struct nr_mapping *nr_map_get(const struct nr_map *map,
739 void *origin, nr_t nr_orig)
740{
741 struct nr_mapping *mapping;
742 llist_for_each_entry(mapping, &map->mappings, entry) {
743 if ((mapping->origin == origin)
744 && (mapping->orig == nr_orig))
745 return mapping;
746 }
747 /* Not found. */
748 return NULL;
749}
750
751struct nr_mapping *nr_map_get_inv(const struct nr_map *map, nr_t nr_repl)
752{
753 struct nr_mapping *mapping;
754 llist_for_each_entry(mapping, &map->mappings, entry) {
755 if (mapping->repl == nr_repl) {
756 return mapping;
757 }
758 }
759 /* Not found. */
760 return NULL;
761}
762
763void nr_mapping_del(struct nr_mapping *mapping)
764{
765 OSMO_ASSERT(mapping);
766 llist_del(&mapping->entry);
767 INIT_LLIST_HEAD(&mapping->entry);
768 expiring_item_del(&mapping->expiry_entry);
769}
770
771
772/* gtphub */
773
774const char* const gtphub_plane_idx_names[GTPH_PLANE_N] = {
775 "CTRL",
776 "USER",
777};
778
779const uint16_t gtphub_plane_idx_default_port[GTPH_PLANE_N] = {
780 2123,
781 2152,
782};
783
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100784const char* const gtphub_side_idx_names[GTPH_SIDE_N] = {
785 "SGSN",
786 "GGSN",
787};
788
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200789time_t gtphub_now(void)
790{
791 struct timespec now_tp;
792 OSMO_ASSERT(clock_gettime(CLOCK_MONOTONIC, &now_tp) >= 0);
793 return now_tp.tv_sec;
794}
795
796/* Remove a gtphub_peer from its list and free it. */
797static void gtphub_peer_del(struct gtphub_peer *peer)
798{
Neels Hofmeyr1ed9a862015-11-20 00:04:41 +0100799 OSMO_ASSERT(llist_empty(&peer->addresses));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200800 nr_map_clear(&peer->seq_map);
801 llist_del(&peer->entry);
802 talloc_free(peer);
803}
804
805static void gtphub_peer_addr_del(struct gtphub_peer_addr *pa)
806{
807 OSMO_ASSERT(llist_empty(&pa->ports));
808 llist_del(&pa->entry);
809 talloc_free(pa);
810}
811
812static void gtphub_peer_port_del(struct gtphub_peer_port *pp)
813{
814 OSMO_ASSERT(pp->ref_count == 0);
815 llist_del(&pp->entry);
Neels Hofmeyre38fb662015-12-06 16:44:14 +0100816 rate_ctr_group_free(pp->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200817 talloc_free(pp);
818}
819
820/* From the information in the gtp_packet_desc, return the address of a GGSN.
821 * Return -1 on error. */
Neels Hofmeyr5b664f42015-11-10 20:32:13 +0100822static int gtphub_resolve_ggsn(struct gtphub *hub,
823 struct gtp_packet_desc *p,
824 struct gtphub_peer_port **pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200825
826/* See gtphub_ext.c (wrapped by unit test) */
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +0100827struct gtphub_peer_port *gtphub_resolve_ggsn_addr(struct gtphub *hub,
828 const char *imsi_str,
829 const char *apn_ni_str);
830int gtphub_ares_init(struct gtphub *hub);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200831
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200832static void gtphub_zero(struct gtphub *hub)
833{
834 ZERO_STRUCT(hub);
Neels Hofmeyr16c3f572015-11-11 17:27:01 +0100835 INIT_LLIST_HEAD(&hub->ggsn_lookups);
836 INIT_LLIST_HEAD(&hub->resolved_ggsns);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200837}
838
839static int gtphub_sock_init(struct osmo_fd *ofd,
840 const struct gtphub_cfg_addr *addr,
841 osmo_fd_cb_t cb,
842 void *data,
843 int ofd_id)
844{
845 if (!addr->addr_str) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100846 LOG(LOGL_FATAL, "Cannot bind: empty address.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200847 return -1;
848 }
849 if (!addr->port) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100850 LOG(LOGL_FATAL, "Cannot bind: zero port not permitted.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200851 return -1;
852 }
853
854 ofd->when = BSC_FD_READ;
855 ofd->cb = cb;
856 ofd->data = data;
857 ofd->priv_nr = ofd_id;
858
859 int rc;
860 rc = osmo_sock_init_ofd(ofd,
861 AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP,
862 addr->addr_str, addr->port,
863 OSMO_SOCK_F_BIND);
864 if (rc < 1) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100865 LOG(LOGL_FATAL, "Cannot bind to %s port %d (rc %d)\n",
866 addr->addr_str, (int)addr->port, rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200867 return -1;
868 }
869
870 return 0;
871}
872
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100873static void gtphub_sock_close(struct osmo_fd *ofd)
874{
875 close(ofd->fd);
876 osmo_fd_unregister(ofd);
877 ofd->cb = NULL;
878}
879
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200880static void gtphub_bind_init(struct gtphub_bind *b)
881{
882 ZERO_STRUCT(b);
883
884 INIT_LLIST_HEAD(&b->peers);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100885
886 b->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
887 &gtphub_ctrg_io_desc, 0);
888 OSMO_ASSERT(b->counters_io);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200889}
890
891static int gtphub_bind_start(struct gtphub_bind *b,
892 const struct gtphub_cfg_bind *cfg,
893 osmo_fd_cb_t cb, void *cb_data,
894 unsigned int ofd_id)
895{
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100896 LOG(LOGL_DEBUG, "Starting bind %s\n", b->label);
897 if (gsn_addr_from_str(&b->local_addr, cfg->bind.addr_str) != 0) {
898 LOG(LOGL_FATAL, "Invalid bind address for %s: %s\n",
899 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200900 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100901 }
902 if (gtphub_sock_init(&b->ofd, &cfg->bind, cb, cb_data, ofd_id) != 0) {
903 LOG(LOGL_FATAL, "Cannot bind for %s: %s\n",
904 b->label, cfg->bind.addr_str);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200905 return -1;
Neels Hofmeyr800126b2015-11-30 14:13:19 +0100906 }
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100907 b->local_port = cfg->bind.port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200908 return 0;
909}
910
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100911static void gtphub_bind_free(struct gtphub_bind *b)
912{
913 OSMO_ASSERT(llist_empty(&b->peers));
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +0100914 rate_ctr_group_free(b->counters_io);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +0100915}
916
917static void gtphub_bind_stop(struct gtphub_bind *b) {
918 gtphub_sock_close(&b->ofd);
919 gtphub_bind_free(b);
920}
921
Neels Hofmeyr40348972015-11-17 12:22:28 +0100922/* Recv datagram from from->fd, write sender's address to *from_addr.
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200923 * Return the number of bytes read, zero on error. */
924static int gtphub_read(const struct osmo_fd *from,
925 struct osmo_sockaddr *from_addr,
926 uint8_t *buf, size_t buf_len)
927{
Neels Hofmeyr40348972015-11-17 12:22:28 +0100928 OSMO_ASSERT(from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200929
Neels Hofmeyr40348972015-11-17 12:22:28 +0100930 /* recvfrom requires the available length set in *from_addr_len. */
931 from_addr->l = sizeof(from_addr->a);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200932 errno = 0;
933 ssize_t received = recvfrom(from->fd, buf, buf_len, 0,
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +0100934 (struct sockaddr*)&from_addr->a,
935 &from_addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200936 /* TODO use recvmsg and get a MSG_TRUNC flag to make sure the message
937 * is not truncated. Then maybe reduce buf's size. */
938
939 if (received <= 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +0100940 LOG((errno == EAGAIN? LOGL_DEBUG : LOGL_ERROR),
941 "error: %s\n", strerror(errno));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200942 return 0;
943 }
944
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100945 LOG(LOGL_DEBUG, "Received %d bytes from %s: %s%s\n",
Neels Hofmeyr40348972015-11-17 12:22:28 +0100946 (int)received, osmo_sockaddr_to_str(from_addr),
Neels Hofmeyr36948bf2015-12-07 13:36:47 +0100947 osmo_hexdump(buf, received > 1000? 1000 : received),
948 received > 1000 ? "..." : "");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200949
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200950 return received;
951}
952
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100953static inline void gtphub_port_ref_count_inc(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200954{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100955 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200956 OSMO_ASSERT(pp->ref_count < UINT_MAX);
957 pp->ref_count++;
958}
959
Holger Hans Peter Freyther91e0e1b2016-01-22 23:32:36 +0100960static inline void gtphub_port_ref_count_dec(struct gtphub_peer_port *pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200961{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100962 OSMO_ASSERT(pp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200963 OSMO_ASSERT(pp->ref_count > 0);
964 pp->ref_count--;
965}
966
Holger Hans Peter Freytherfec29ab2016-01-22 23:36:22 +0100967static inline void set_seq(struct gtp_packet_desc *p, uint16_t seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200968{
969 OSMO_ASSERT(p->version == 1);
970 p->data->gtp1l.h.seq = hton16(seq);
971 p->seq = seq;
972}
973
Holger Hans Peter Freytherfec29ab2016-01-22 23:36:22 +0100974static inline void set_tei(struct gtp_packet_desc *p, uint32_t tei)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200975{
976 OSMO_ASSERT(p->version == 1);
977 p->data->gtp1l.h.tei = hton32(tei);
978 p->header_tei = tei;
979}
980
981static void gtphub_mapping_del_cb(struct expiring_item *expi);
982
983static struct nr_mapping *gtphub_mapping_new()
984{
985 struct nr_mapping *nrm;
986 nrm = talloc_zero(osmo_gtphub_ctx, struct nr_mapping);
987 OSMO_ASSERT(nrm);
988
989 nr_mapping_init(nrm);
990 nrm->expiry_entry.del_cb = gtphub_mapping_del_cb;
991 return nrm;
992}
993
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100994
995#define APPEND(args...) \
996 l = snprintf(pos, left, args); \
997 pos += l; \
998 left -= l
999
1000static const char *gtphub_tunnel_side_str(struct gtphub_tunnel *tun,
1001 int side_idx)
1002{
1003 static char buf[256];
1004 char *pos = buf;
1005 int left = sizeof(buf);
1006 int l;
1007
1008 struct gtphub_tunnel_endpoint *c, *u;
1009 c = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1010 u = &tun->endpoint[side_idx][GTPH_PLANE_USER];
1011
1012 /* print both only if they differ. */
1013 if (!c->peer) {
1014 APPEND("(uninitialized)");
1015 } else {
1016 APPEND("%s", gsn_addr_to_str(&c->peer->peer_addr->addr));
1017 }
1018
1019 if (!u->peer) {
1020 if (c->peer) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001021 APPEND("/(uninitialized)");
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001022 }
1023 } else if ((!c->peer)
1024 || (!gsn_addr_same(&u->peer->peer_addr->addr,
1025 &c->peer->peer_addr->addr))) {
Neels Hofmeyrba0525e2015-12-06 16:39:23 +01001026 APPEND("/%s", gsn_addr_to_str(&u->peer->peer_addr->addr));
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001027 }
1028
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001029 APPEND(" (TEI C=%x U=%x)",
1030 c->tei_orig,
1031 u->tei_orig);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001032 return buf;
1033}
1034
1035const char *gtphub_tunnel_str(struct gtphub_tunnel *tun)
1036{
1037 static char buf[512];
1038 char *pos = buf;
1039 int left = sizeof(buf);
1040 int l;
1041
Neels Hofmeyrea619f12016-12-16 13:09:00 +01001042 if (!tun)
1043 return "null-tunnel";
1044
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001045 APPEND("TEI=%x: ", tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001046 APPEND("%s", gtphub_tunnel_side_str(tun, GTPH_SIDE_SGSN));
1047 APPEND(" <-> %s", gtphub_tunnel_side_str(tun, GTPH_SIDE_GGSN));
1048
1049 return buf;
1050}
1051
1052#undef APPEND
1053
1054void gtphub_tunnel_endpoint_set_peer(struct gtphub_tunnel_endpoint *te,
1055 struct gtphub_peer_port *pp)
1056{
1057 if (te->peer)
1058 gtphub_port_ref_count_dec(te->peer);
1059 te->peer = pp;
1060 if (te->peer)
1061 gtphub_port_ref_count_inc(te->peer);
1062}
1063
1064int gtphub_tunnel_complete(struct gtphub_tunnel *tun)
1065{
1066 if (!tun)
1067 return 0;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001068 if (!tun->tei_repl)
1069 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001070 int side_idx;
1071 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001072 for_each_side_and_plane(side_idx, plane_idx) {
1073 struct gtphub_tunnel_endpoint *te =
1074 &tun->endpoint[side_idx][plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001075 if (!(te->peer && te->tei_orig))
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001076 return 0;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001077 }
1078 return 1;
1079}
1080
1081static void gtphub_tunnel_del_cb(struct expiring_item *expi)
1082{
1083 struct gtphub_tunnel *tun = container_of(expi,
1084 struct gtphub_tunnel,
1085 expiry_entry);
1086 LOG(LOGL_DEBUG, "expired: %s\n", gtphub_tunnel_str(tun));
1087
1088 llist_del(&tun->entry);
1089 INIT_LLIST_HEAD(&tun->entry); /* mark unused */
1090
1091 expi->del_cb = 0; /* avoid recursion loops */
1092 expiring_item_del(&tun->expiry_entry); /* usually already done, but make sure. */
1093
1094 int side_idx;
1095 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001096 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001097 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1098
Neels Hofmeyrf9773202015-11-27 00:05:56 +01001099 /* clear ref count */
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001100 gtphub_tunnel_endpoint_set_peer(te, NULL);
1101
1102 rate_ctr_group_free(te->counters_io);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001103 }
1104
1105 talloc_free(tun);
1106}
1107
1108static struct gtphub_tunnel *gtphub_tunnel_new()
1109{
1110 struct gtphub_tunnel *tun;
1111 tun = talloc_zero(osmo_gtphub_ctx, struct gtphub_tunnel);
1112 OSMO_ASSERT(tun);
1113
1114 INIT_LLIST_HEAD(&tun->entry);
1115 expiring_item_init(&tun->expiry_entry);
1116
Neels Hofmeyre38fb662015-12-06 16:44:14 +01001117 int side_idx, plane_idx;
1118 for_each_side_and_plane(side_idx, plane_idx) {
1119 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][plane_idx];
1120 te->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
1121 &gtphub_ctrg_io_desc,
1122 0);
1123 OSMO_ASSERT(te->counters_io);
1124 }
1125
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001126 tun->expiry_entry.del_cb = gtphub_tunnel_del_cb;
1127 return tun;
1128}
1129
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001130static const char *gtphub_peer_strb(struct gtphub_peer *peer, char *buf,
1131 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001132{
1133 if (llist_empty(&peer->addresses))
1134 return "(addressless)";
1135
1136 struct gtphub_peer_addr *a = llist_first(&peer->addresses,
1137 struct gtphub_peer_addr,
1138 entry);
1139 return gsn_addr_to_strb(&a->addr, buf, buflen);
1140}
1141
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001142static const char *gtphub_port_strb(struct gtphub_peer_port *port, char *buf,
1143 int buflen)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001144{
1145 if (!port)
1146 return "(null port)";
1147
1148 snprintf(buf, buflen, "%s port %d",
1149 gsn_addr_to_str(&port->peer_addr->addr),
1150 (int)port->port);
1151 return buf;
1152}
1153
1154const char *gtphub_peer_str(struct gtphub_peer *peer)
1155{
1156 static char buf[256];
1157 return gtphub_peer_strb(peer, buf, sizeof(buf));
1158}
1159
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01001160const char *gtphub_port_str(struct gtphub_peer_port *port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001161{
1162 static char buf[256];
1163 return gtphub_port_strb(port, buf, sizeof(buf));
1164}
1165
1166static const char *gtphub_port_str2(struct gtphub_peer_port *port)
1167{
1168 static char buf[256];
1169 return gtphub_port_strb(port, buf, sizeof(buf));
1170}
1171
1172static void gtphub_mapping_del_cb(struct expiring_item *expi)
1173{
1174 expi->del_cb = 0; /* avoid recursion loops */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001175 expiring_item_del(expi); /* usually already done, but make sure. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001176
1177 struct nr_mapping *nrm = container_of(expi,
1178 struct nr_mapping,
1179 expiry_entry);
1180 llist_del(&nrm->entry);
1181 INIT_LLIST_HEAD(&nrm->entry); /* mark unused */
1182
1183 /* Just for log */
1184 struct gtphub_peer_port *from = nrm->origin;
1185 OSMO_ASSERT(from);
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001186 LOG(LOGL_DEBUG, "expired: %d: nr mapping from %s: %u->%u\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001187 (int)nrm->expiry_entry.expiry,
1188 gtphub_port_str(from),
Neels Hofmeyr334af5d2015-11-17 14:24:46 +01001189 (unsigned int)nrm->orig, (unsigned int)nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001190
1191 gtphub_port_ref_count_dec(from);
1192
1193 talloc_free(nrm);
1194}
1195
1196static struct nr_mapping *gtphub_mapping_have(struct nr_map *map,
1197 struct gtphub_peer_port *from,
1198 nr_t orig_nr,
1199 time_t now)
1200{
1201 struct nr_mapping *nrm;
1202
1203 nrm = nr_map_get(map, from, orig_nr);
1204
1205 if (!nrm) {
1206 nrm = gtphub_mapping_new();
1207 nrm->orig = orig_nr;
1208 nrm->origin = from;
1209 nr_map_add(map, nrm, now);
1210 gtphub_port_ref_count_inc(from);
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001211 LOG(LOGL_DEBUG, "peer %s: sequence map %d --> %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001212 gtphub_port_str(from),
1213 (int)(nrm->orig), (int)(nrm->repl));
1214 } else {
Neels Hofmeyr508514c2015-11-24 13:30:38 +01001215 nr_map_refresh(map, nrm, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001216 }
1217
1218 OSMO_ASSERT(nrm);
1219 return nrm;
1220}
1221
Neels Hofmeyr3317c842015-11-11 17:20:42 +01001222static void gtphub_map_seq(struct gtp_packet_desc *p,
1223 struct gtphub_peer_port *from_port,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001224 struct gtphub_peer_port *to_port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001225{
1226 /* Store a mapping in to_peer's map, so when we later receive a GTP
1227 * packet back from to_peer, the seq nr can be unmapped back to its
1228 * origin (from_peer here). */
1229 struct nr_mapping *nrm;
1230 nrm = gtphub_mapping_have(&to_port->peer_addr->peer->seq_map,
Neels Hofmeyr29d926b2015-11-24 13:27:13 +01001231 from_port, p->seq, p->timestamp);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001232
1233 /* Change the GTP packet to yield the new, mapped seq nr */
1234 set_seq(p, nrm->repl);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001235}
1236
1237static struct gtphub_peer_port *gtphub_unmap_seq(struct gtp_packet_desc *p,
1238 struct gtphub_peer_port *responding_port)
1239{
1240 OSMO_ASSERT(p->version == 1);
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001241 struct nr_mapping *nrm =
1242 nr_map_get_inv(&responding_port->peer_addr->peer->seq_map,
1243 p->seq);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001244 if (!nrm)
1245 return NULL;
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001246 LOG(LOGL_DEBUG, "peer %p: sequence unmap %d <-- %d\n",
1247 nrm->origin, (int)(nrm->orig), (int)(nrm->repl));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001248 set_seq(p, nrm->orig);
1249 return nrm->origin;
1250}
1251
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001252static int gtphub_check_mapped_tei(struct gtphub_tunnel *new_tun,
1253 struct gtphub_tunnel *iterated_tun,
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001254 uint32_t *tei_min,
1255 uint32_t *tei_max)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001256{
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001257 if (!new_tun->tei_repl || !iterated_tun->tei_repl)
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001258 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001259
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001260 *tei_min = (*tei_min < iterated_tun->tei_repl)? *tei_min : iterated_tun->tei_repl;
1261 *tei_max = (*tei_max > iterated_tun->tei_repl)? *tei_max : iterated_tun->tei_repl;
1262
1263 if (new_tun->tei_repl != iterated_tun->tei_repl)
1264 return 1;
1265
1266 /* new_tun->tei_repl is already taken. Try to find one out of the known
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001267 * range. */
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001268 LOG(LOGL_DEBUG, "TEI replacement %d already taken.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001269
1270 if ((*tei_max) < 0xffffffff) {
1271 (*tei_max)++;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001272 new_tun->tei_repl = *tei_max;
1273 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001274 return 1;
1275 } else if ((*tei_min) > 1) {
1276 (*tei_min)--;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001277 new_tun->tei_repl = *tei_min;
1278 LOG(LOGL_DEBUG, "Using TEI %d instead.\n", new_tun->tei_repl);
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001279 return 1;
1280 }
1281
1282 /* None seems to be available. */
1283 return 0;
1284}
1285
1286static int gtphub_check_reused_teis(struct gtphub *hub,
1287 struct gtphub_tunnel *new_tun)
1288{
1289 uint32_t tei_min = 0xffffffff;
1290 uint32_t tei_max = 0;
1291 int side_idx;
1292 int plane_idx;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001293 struct gtphub_tunnel_endpoint *te;
1294 struct gtphub_tunnel_endpoint *te2;
1295
1296 struct gtphub_tunnel *tun, *ntun;
1297
1298 llist_for_each_entry_safe(tun, ntun, &hub->tunnels, entry) {
1299 if (tun == new_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001300 continue;
1301
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001302 /* Check whether the GSN sent a TEI that it is reusing from a
1303 * previous tunnel. */
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001304 int tun_continue = 0;
1305 for_each_side(side_idx) {
1306 for_each_plane(plane_idx) {
1307 te = &tun->endpoint[side_idx][plane_idx];
1308 te2 = &new_tun->endpoint[side_idx][plane_idx];
Neels Hofmeyrf6e4d082015-12-06 19:03:35 +01001309 if ((te->tei_orig == 0)
1310 || (te->tei_orig != te2->tei_orig)
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001311 || (!te->peer)
1312 || (!te2->peer)
1313 || !gsn_addr_same(&te->peer->peer_addr->addr,
1314 &te2->peer->peer_addr->addr))
1315 continue;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001316
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001317 /* The peer is reusing a TEI that I believe to
1318 * be part of another tunnel. The other tunnel
1319 * must be stale, then. */
1320 LOG(LOGL_NOTICE,
1321 "Expiring tunnel due to reused TEI:"
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001322 " %s peer %s sent %s TEI %x,"
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001323 " previously used by tunnel %s...\n",
Neels Hofmeyree1e5d72015-12-06 17:18:49 +01001324 gtphub_side_idx_names[side_idx],
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001325 gtphub_port_str(te->peer),
1326 gtphub_plane_idx_names[plane_idx],
1327 te->tei_orig,
1328 gtphub_tunnel_str(tun));
1329 LOG(LOGL_NOTICE, "...while establishing tunnel %s\n",
1330 gtphub_tunnel_str(new_tun));
Neels Hofmeyr52c0bd32015-12-02 14:14:32 +01001331
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001332 expiring_item_del(&tun->expiry_entry);
1333 /* continue to find more matches. There shouldn't be
1334 * any, but let's make sure. However, tun is deleted,
1335 * so we need to skip to the next tunnel. */
1336 tun_continue = 1;
1337 break;
1338 }
1339 if (tun_continue)
1340 break;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001341 }
Neels Hofmeyr18d30492015-12-02 15:00:50 +01001342 if (tun_continue)
1343 continue;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001344
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001345 /* Check whether the mapped TEI is already used by another
1346 * tunnel. */
1347 if (!gtphub_check_mapped_tei(new_tun, tun, &tei_min, &tei_max)) {
1348 LOG(LOGL_ERROR,
1349 "No mapped TEI is readily available."
1350 " Searching for holes between occupied"
1351 " TEIs not implemented.");
1352 return 0;
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001353 }
1354
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001355 }
Neels Hofmeyr7174b162015-11-27 01:22:13 +01001356
1357 return 1;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001358}
1359
1360static void gtphub_tunnel_refresh(struct gtphub *hub,
1361 struct gtphub_tunnel *tun,
1362 time_t now)
1363{
1364 expiry_add(&hub->expire_slowly,
1365 &tun->expiry_entry,
1366 now);
1367}
1368
1369static struct gtphub_tunnel_endpoint *gtphub_unmap_tei(struct gtphub *hub,
1370 struct gtp_packet_desc *p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001371 struct gtphub_peer_port *from,
1372 struct gtphub_tunnel **unmapped_from_tun)
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001373{
1374 OSMO_ASSERT(from);
1375 int other_side = other_side_idx(p->side_idx);
1376
1377 struct gtphub_tunnel *tun;
1378 llist_for_each_entry(tun, &hub->tunnels, entry) {
1379 struct gtphub_tunnel_endpoint *te_from =
1380 &tun->endpoint[p->side_idx][p->plane_idx];
1381 struct gtphub_tunnel_endpoint *te_to =
1382 &tun->endpoint[other_side][p->plane_idx];
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001383 if ((tun->tei_repl == p->header_tei_rx)
Neels Hofmeyrfc1be3a2015-12-02 00:31:31 +01001384 && te_from->peer
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001385 && gsn_addr_same(&te_from->peer->peer_addr->addr,
1386 &from->peer_addr->addr)) {
1387 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001388 if (unmapped_from_tun)
1389 *unmapped_from_tun = tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001390 return te_to;
1391 }
1392 }
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001393
1394 if (unmapped_from_tun)
1395 *unmapped_from_tun = NULL;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001396 return NULL;
1397}
1398
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001399static void gtphub_map_restart_counter(struct gtphub *hub,
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001400 struct gtp_packet_desc *p)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001401{
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001402 if (p->rc != GTP_RC_PDU_C)
1403 return;
1404
1405 int ie_idx;
1406 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1407 if (ie_idx < 0)
1408 return;
1409
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001410 /* Always send gtphub's own restart counter */
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01001411 p->ie[ie_idx]->tv1.v = hton8(hub->restart_counter);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001412}
1413
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001414static int gtphub_unmap_header_tei(struct gtphub_peer_port **to_port_p,
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001415 struct gtphub_tunnel **unmapped_from_tun,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001416 struct gtphub *hub,
1417 struct gtp_packet_desc *p,
1418 struct gtphub_peer_port *from_port)
1419{
1420 OSMO_ASSERT(p->version == 1);
1421 *to_port_p = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001422 if (unmapped_from_tun)
1423 *unmapped_from_tun = NULL;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001424
1425 /* If the header's TEI is zero, no PDP context has been established
1426 * yet. If nonzero, a mapping should actually already exist for this
1427 * TEI, since it must have been announced in a PDP context creation. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001428 if (!p->header_tei_rx)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001429 return 0;
1430
1431 /* to_peer has previously announced a TEI, which was stored and
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001432 * mapped in a tunnel struct. */
1433 struct gtphub_tunnel_endpoint *to;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001434 to = gtphub_unmap_tei(hub, p, from_port, unmapped_from_tun);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001435 if (!to) {
1436 LOG(LOGL_ERROR, "Received unknown TEI %" PRIx32 " from %s\n",
1437 p->header_tei_rx, gtphub_port_str(from_port));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001438 return -1;
1439 }
Neels Hofmeyr312bf6c2016-04-14 15:21:31 +02001440
1441 if (unmapped_from_tun) {
1442 OSMO_ASSERT(*unmapped_from_tun);
1443 LOG(LOGL_DEBUG, "Unmapped TEI coming from: %s\n",
1444 gtphub_tunnel_str(*unmapped_from_tun));
1445 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001446
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001447 uint32_t unmapped_tei = to->tei_orig;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001448 set_tei(p, unmapped_tei);
1449
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001450 /* May be NULL for an invalidated tunnel. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001451 *to_port_p = to->peer;
1452
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001453 return 0;
1454}
1455
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001456static int gtphub_handle_create_pdp_ctx(struct gtphub *hub,
1457 struct gtp_packet_desc *p,
1458 struct gtphub_peer_port *from_ctrl,
1459 struct gtphub_peer_port *to_ctrl)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001460{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001461 int plane_idx;
1462
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001463 osmo_static_assert((GTPH_PLANE_CTRL == 0) && (GTPH_PLANE_USER == 1),
1464 plane_nrs_match_GSN_addr_IE_indices);
1465
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001466 struct gtphub_tunnel *tun = p->tun;
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001467
1468 if (p->type == GTP_CREATE_PDP_REQ) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001469 if (p->side_idx != GTPH_SIDE_SGSN) {
1470 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001471 " Request from the GGSN side: %s",
1472 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001473 return -1;
1474 }
1475
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001476 if (tun) {
1477 LOG(LOGL_ERROR, "Not implemented: Received"
1478 " Create PDP Context Request for an already"
1479 " established tunnel:"
1480 " from %s, tunnel %s\n",
1481 gtphub_port_str(from_ctrl),
1482 gtphub_tunnel_str(p->tun));
1483 return -1;
1484 }
1485
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001486 /* A new tunnel. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001487 p->tun = tun = gtphub_tunnel_new();
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001488
1489 /* Create TEI mapping */
1490 tun->tei_repl = nr_pool_next(&hub->tei_pool);
1491
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001492 llist_add(&tun->entry, &hub->tunnels);
1493 gtphub_tunnel_refresh(hub, tun, p->timestamp);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001494 /* The endpoint peers on this side (SGSN) will be set from IEs
1495 * below. Also set the GGSN Ctrl endpoint, for logging. */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001496 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001497 to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001498 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001499 if (p->side_idx != GTPH_SIDE_GGSN) {
1500 LOG(LOGL_ERROR, "Wrong side: Create PDP Context"
Neels Hofmeyre5a07982015-12-03 13:47:05 +01001501 " Response from the SGSN side: %s",
1502 gtphub_port_str(from_ctrl));
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001503 return -1;
1504 }
1505
Neels Hofmeyr8c5b0732015-12-03 13:45:15 +01001506 /* The tunnel should already have been resolved from the header
1507 * TEI and be available in tun (== p->tun). Just fill in the
1508 * GSN Addresses below.*/
1509 OSMO_ASSERT(tun);
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001510 OSMO_ASSERT(tun->tei_repl == p->header_tei_rx);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001511 OSMO_ASSERT(to_ctrl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001512 }
1513
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001514 uint8_t ie_type[] = { GTPIE_TEI_C, GTPIE_TEI_DI };
1515 int ie_mandatory = (p->type == GTP_CREATE_PDP_REQ);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001516 unsigned int side_idx = p->side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001517
1518 for (plane_idx = 0; plane_idx < 2; plane_idx++) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01001519 int rc;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001520 struct gsn_addr use_addr;
1521 uint16_t use_port;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001522 uint32_t tei_from_ie;
1523 int ie_idx;
1524
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001525 /* Fetch GSN Address and TEI from IEs. As ensured by above
1526 * static asserts, plane_idx corresponds to the GSN Address IE
1527 * index (the first one = 0 = ctrl, second one = 1 = user). */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001528 rc = gsn_addr_get(&use_addr, p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001529 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001530 LOG(LOGL_ERROR, "Cannot read %s GSN Address IE\n",
1531 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001532 return -1;
1533 }
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001534 LOG(LOGL_DEBUG, "Read %s GSN addr %s (%d)\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001535 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001536 gsn_addr_to_str(&use_addr),
1537 use_addr.len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001538
1539 ie_idx = gtpie_getie(p->ie, ie_type[plane_idx], 0);
1540 if (ie_idx < 0) {
1541 if (ie_mandatory) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001542 LOG(LOGL_ERROR,
1543 "Create PDP Context message invalid:"
1544 " missing IE %d\n",
1545 (int)ie_type[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001546 return -1;
1547 }
1548 tei_from_ie = 0;
1549 }
1550 else
1551 tei_from_ie = ntoh32(p->ie[ie_idx]->tv4.v);
1552
1553 /* Make sure an entry for this peer address with default port
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01001554 * exists.
1555 *
1556 * Exception: if sgsn_use_sender is set, instead use the
1557 * sender's address and port for Ctrl -- the User port is not
1558 * known until the first User packet arrives.
1559 *
1560 * Note: doing this here is just an optimization, because
1561 * gtphub_handle_buf() has code to replace the tunnel
1562 * endpoints' addresses with the sender (needed for User
1563 * plane). We could just ignore sgsn_use_sender here. But if we
1564 * set up a default port here and replace it in
1565 * gtphub_handle_buf(), we'd be creating a peer port just to
1566 * expire it right away. */
1567 if (hub->sgsn_use_sender && (side_idx == GTPH_SIDE_SGSN)) {
1568 gsn_addr_from_sockaddr(&use_addr, &use_port, &from_ctrl->sa);
1569 } else {
1570 use_port = gtphub_plane_idx_default_port[plane_idx];
1571
1572 }
1573
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001574 struct gtphub_peer_port *peer_from_ie;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001575 peer_from_ie = gtphub_port_have(hub,
1576 &hub->to_gsns[side_idx][plane_idx],
1577 &use_addr, use_port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001578
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001579 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][plane_idx],
1580 peer_from_ie);
1581
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001582 if (!tei_from_ie &&
1583 !tun->endpoint[side_idx][plane_idx].tei_orig) {
1584 LOG(LOGL_ERROR,
Neels Hofmeyr328d2f72015-12-06 19:13:21 +01001585 "Create PDP Context message omits %s TEI, but"
1586 " no TEI has been announced for this tunnel: %s\n",
Neels Hofmeyr59c1b642015-12-03 11:30:43 +01001587 gtphub_plane_idx_names[plane_idx],
1588 gtphub_tunnel_str(tun));
1589 return -1;
1590 }
1591
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001592 if (tei_from_ie) {
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001593 /* Replace TEI in GTP packet IE */
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001594 tun->endpoint[side_idx][plane_idx].tei_orig = tei_from_ie;
Neels Hofmeyree07e4f2015-12-06 19:11:45 +01001595 p->ie[ie_idx]->tv4.v = hton32(tun->tei_repl);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001596
Neels Hofmeyrcd865d62015-11-30 12:58:48 +01001597 if (!gtphub_check_reused_teis(hub, tun)) {
1598 /* It's highly unlikely that all TEIs are
1599 * taken. But the code looking for an unused
1600 * TEI is, at the time of writing this comment,
1601 * not able to find gaps in the TEI space. To
1602 * explicitly alert the user of this problem,
1603 * rather abort than carry on. */
1604 LOG(LOGL_FATAL, "TEI range exhausted. Cannot create TEI mapping, aborting.\n");
1605 abort();
1606 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001607 }
1608
1609 /* Replace the GSN address to reflect gtphub. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001610 rc = gsn_addr_put(&hub->to_gsns[other_side_idx(side_idx)][plane_idx].local_addr,
1611 p, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001612 if (rc) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01001613 LOG(LOGL_ERROR, "Cannot write %s GSN Address IE\n",
1614 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001615 return -1;
1616 }
1617 }
1618
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001619 if (p->type == GTP_CREATE_PDP_REQ) {
1620 LOG(LOGL_DEBUG, "New tunnel, first half: %s\n",
1621 gtphub_tunnel_str(tun));
Neels Hofmeyr005f1752015-11-30 12:19:11 +01001622 } else if (p->type == GTP_CREATE_PDP_RSP) {
Neels Hofmeyre54cd152015-11-24 13:31:06 +01001623 LOG(LOGL_DEBUG, "New tunnel: %s\n",
1624 gtphub_tunnel_str(tun));
1625 }
1626
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001627 return 0;
1628}
1629
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001630static void pending_delete_del_cb(struct expiring_item *expi)
1631{
1632 struct pending_delete *pd;
1633 pd = container_of(expi, struct pending_delete, expiry_entry);
1634
1635 llist_del(&pd->entry);
1636 INIT_LLIST_HEAD(&pd->entry);
1637
1638 pd->expiry_entry.del_cb = 0;
1639 expiring_item_del(&pd->expiry_entry);
1640
1641 talloc_free(pd);
1642}
1643
1644static struct pending_delete *pending_delete_new(void)
1645{
1646 struct pending_delete *pd = talloc_zero(osmo_gtphub_ctx, struct pending_delete);
1647 INIT_LLIST_HEAD(&pd->entry);
1648 expiring_item_init(&pd->expiry_entry);
1649 pd->expiry_entry.del_cb = pending_delete_del_cb;
1650 return pd;
1651}
1652
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001653static int gtphub_handle_delete_pdp_ctx(struct gtphub *hub,
1654 struct gtp_packet_desc *p,
1655 struct gtphub_peer_port *from_ctrl,
1656 struct gtphub_peer_port *to_ctrl)
1657{
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001658 struct gtphub_tunnel *known_tun = p->tun;
1659
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001660 if (p->type == GTP_DELETE_PDP_REQ) {
1661 if (!known_tun) {
1662 LOG(LOGL_ERROR, "Cannot find tunnel for Delete PDP Context Request.\n");
1663 return -1;
1664 }
1665
1666 /* Store the Delete Request until a successful Response is seen. */
1667 uint8_t teardown_ind;
1668 uint8_t nsapi;
1669
1670 if (gtpie_gettv1(p->ie, GTPIE_TEARDOWN, 0, &teardown_ind) != 0) {
1671 LOG(LOGL_ERROR, "Missing Teardown Ind IE in Delete PDP Context Request.\n");
1672 return -1;
1673 }
1674
1675 if (gtpie_gettv1(p->ie, GTPIE_NSAPI, 0, &nsapi) != 0) {
1676 LOG(LOGL_ERROR, "Missing NSAPI IE in Delete PDP Context Request.\n");
1677 return -1;
1678 }
1679
1680 struct pending_delete *pd = NULL;
1681
1682 struct pending_delete *pdi = NULL;
1683 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1684 if ((pdi->tun == known_tun)
1685 && (pdi->teardown_ind == teardown_ind)
1686 && (pdi->nsapi == nsapi)) {
1687 pd = pdi;
1688 break;
1689 }
1690 }
1691
1692 if (!pd) {
1693 pd = pending_delete_new();
1694 pd->tun = known_tun;
1695 pd->teardown_ind = teardown_ind;
1696 pd->nsapi = nsapi;
1697
1698 LOG(LOGL_DEBUG, "Tunnel delete pending: %s\n",
1699 gtphub_tunnel_str(known_tun));
1700 llist_add(&pd->entry, &hub->pending_deletes);
1701 }
1702
1703 /* Add or refresh timeout. */
1704 expiry_add(&hub->expire_quickly, &pd->expiry_entry, p->timestamp);
1705
1706 /* If a pending_delete should expire before the response to
1707 * indicate success comes in, the responding peer will have the
1708 * tunnel deactivated, while the requesting peer gets no reply
1709 * and keeps the tunnel. The hope is that the requesting peer
1710 * will try again and get a useful response. */
1711 } else if (p->type == GTP_DELETE_PDP_RSP) {
1712 /* Find the Delete Request for this Response. */
1713 struct pending_delete *pd = NULL;
1714
1715 struct pending_delete *pdi;
1716 llist_for_each_entry(pdi, &hub->pending_deletes, entry) {
1717 if (known_tun == pdi->tun) {
1718 pd = pdi;
1719 break;
1720 }
1721 }
1722
1723 if (!pd) {
1724 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1725 " Cannot find matching request.");
1726 /* If we delete the tunnel now, anyone can send a
1727 * Delete response to kill tunnels at will. */
1728 return -1;
1729 }
1730
1731 /* TODO handle teardown_ind and nsapi */
1732
1733 expiring_item_del(&pd->expiry_entry);
1734
1735 uint8_t cause;
1736 if (gtpie_gettv1(p->ie, GTPIE_CAUSE, 0, &cause) != 0) {
1737 LOG(LOGL_ERROR, "Delete PDP Context Response:"
1738 " Missing Cause IE.");
1739 /* If we delete the tunnel now, at least one of the
1740 * peers may still think it is active. */
1741 return -1;
1742 }
1743
1744 if (cause != GTPCAUSE_ACC_REQ) {
1745 LOG(LOGL_NOTICE,
1746 "Delete PDP Context Response indicates failure;"
1747 "for %s\n",
1748 gtphub_tunnel_str(known_tun));
1749 return -1;
1750 }
1751
1752 LOG(LOGL_DEBUG, "Delete PDP Context: removing tunnel %s\n",
1753 gtphub_tunnel_str(known_tun));
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001754 p->tun = NULL;
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01001755 expiring_item_del(&known_tun->expiry_entry);
1756 }
1757
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001758 return 0;
1759}
1760
1761static int gtphub_handle_update_pdp_ctx(struct gtphub *hub,
1762 struct gtp_packet_desc *p,
1763 struct gtphub_peer_port *from_ctrl,
1764 struct gtphub_peer_port *to_ctrl)
1765{
1766 /* TODO */
1767 return 0;
1768}
1769
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001770/* Read GSN address IEs from p, and make sure these peer addresses exist in
1771 * bind[plane_idx] with default ports, in their respective planes (both Ctrl
1772 * and User). Map TEIs announced in IEs, and write mapped TEIs in-place into
1773 * the packet p. */
1774static int gtphub_handle_pdp_ctx(struct gtphub *hub,
1775 struct gtp_packet_desc *p,
1776 struct gtphub_peer_port *from_ctrl,
1777 struct gtphub_peer_port *to_ctrl)
1778{
1779 OSMO_ASSERT(p->plane_idx == GTPH_PLANE_CTRL);
1780
1781 switch (p->type) {
1782 case GTP_CREATE_PDP_REQ:
1783 case GTP_CREATE_PDP_RSP:
1784 return gtphub_handle_create_pdp_ctx(hub, p,
1785 from_ctrl, to_ctrl);
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001786
1787 case GTP_DELETE_PDP_REQ:
1788 case GTP_DELETE_PDP_RSP:
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001789 return gtphub_handle_delete_pdp_ctx(hub, p,
Neels Hofmeyrff4b6302015-11-30 00:07:02 +01001790 from_ctrl, to_ctrl);
1791
1792 case GTP_UPDATE_PDP_REQ:
1793 case GTP_UPDATE_PDP_RSP:
1794 return gtphub_handle_update_pdp_ctx(hub, p,
1795 from_ctrl, to_ctrl);
1796
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001797 default:
1798 /* Nothing to do for this message type. */
1799 return 0;
1800 }
1801
1802}
1803
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001804static int gtphub_send_del_pdp_ctx(struct gtphub *hub,
1805 struct gtphub_tunnel *tun,
1806 int to_side)
1807{
1808 static uint8_t del_ctx_msg[16] = {
1809 0x32, /* GTP v1 flags */
1810 GTP_DELETE_PDP_REQ,
1811 0x00, 0x08, /* Length in network byte order */
1812 0x00, 0x00, 0x00, 0x00, /* TEI to be replaced */
1813 0, 0, /* Seq, to be replaced */
1814 0, 0, /* no extensions */
1815 0x13, 0xff, /* 19: Teardown ind = 1 */
1816 0x14, 0 /* 20: NSAPI = 0 */
1817 };
1818
1819 uint32_t *tei = (uint32_t*)&del_ctx_msg[4];
1820 uint16_t *seq = (uint16_t*)&del_ctx_msg[8];
1821
1822 struct gtphub_tunnel_endpoint *te =
1823 &tun->endpoint[to_side][GTPH_PLANE_CTRL];
1824
1825 if (! te->peer)
1826 return 0;
1827
1828 *tei = hton32(te->tei_orig);
1829 *seq = hton16(nr_pool_next(&te->peer->peer_addr->peer->seq_pool));
1830
1831 struct gtphub_bind *to_bind = &hub->to_gsns[to_side][GTPH_PLANE_CTRL];
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01001832 int rc = gtphub_write(&to_bind->ofd, &te->peer->sa,
1833 del_ctx_msg, sizeof(del_ctx_msg));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001834 if (rc != 0) {
1835 LOG(LOGL_ERROR,
1836 "Failed to send out-of-band Delete PDP Context Request to %s\n",
1837 gtphub_port_str(te->peer));
1838 }
1839 return rc;
1840}
1841
1842/* Tell all peers on the other end of tunnels that PDP contexts are void. */
1843static void gtphub_restarted(struct gtphub *hub,
1844 struct gtp_packet_desc *p,
1845 struct gtphub_peer_port *pp)
1846{
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001847 LOG(LOGL_NOTICE, "Peer has restarted: %s\n",
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001848 gtphub_port_str(pp));
1849
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001850 int deleted_count = 0;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001851 struct gtphub_tunnel *tun;
1852 llist_for_each_entry(tun, &hub->tunnels, entry) {
1853 int side_idx;
1854 for_each_side(side_idx) {
Neels Hofmeyrc6d51f52015-12-02 15:44:34 +01001855 struct gtphub_tunnel_endpoint *te = &tun->endpoint[side_idx][GTPH_PLANE_CTRL];
1856 struct gtphub_tunnel_endpoint *te2 = &tun->endpoint[other_side_idx(side_idx)][GTPH_PLANE_CTRL];
1857 if ((!te->peer)
1858 || (!te2->tei_orig)
1859 || (pp->peer_addr->peer != te->peer->peer_addr->peer))
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001860 continue;
1861
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001862 LOG(LOGL_DEBUG, "Deleting tunnel due to peer restart: %s\n",
1863 gtphub_tunnel_str(tun));
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001864 deleted_count ++;
Neels Hofmeyr936b8902015-12-02 14:31:08 +01001865
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001866 /* Send a Delete PDP Context Request to the
1867 * peer on the other side, remember the pending
1868 * delete and wait for the response to delete
1869 * the tunnel. Clear this side of the tunnel to
1870 * make sure it isn't used.
1871 *
1872 * Should the delete message send fail, or if no
1873 * response is received, this tunnel will expire. If
1874 * its TEIs come up in a new PDP Context Request, it
1875 * will be removed. If messages for this tunnel should
1876 * come in (from the not restarted side), they will be
1877 * dropped because the tunnel is rendered unusable. */
1878 gtphub_send_del_pdp_ctx(hub, tun, other_side_idx(side_idx));
1879
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001880 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_CTRL],
1881 NULL);
1882 gtphub_tunnel_endpoint_set_peer(&tun->endpoint[side_idx][GTPH_PLANE_USER],
1883 NULL);
1884 }
1885 }
Neels Hofmeyrbee75962015-12-06 23:07:02 +01001886
1887 if (deleted_count)
1888 LOG(LOGL_NOTICE, "Deleting %d tunnels due to restart of: %s\n",
1889 deleted_count,
1890 gtphub_port_str(pp));
Neels Hofmeyrbc443302015-12-01 15:20:18 +01001891}
1892
1893static int get_restart_count(struct gtp_packet_desc *p)
1894{
1895 int ie_idx;
1896 ie_idx = gtpie_getie(p->ie, GTPIE_RECOVERY, 0);
1897 if (ie_idx < 0)
1898 return -1;
1899 return ntoh8(p->ie[ie_idx]->tv1.v);
1900}
1901
1902static void gtphub_check_restart_counter(struct gtphub *hub,
1903 struct gtp_packet_desc *p,
1904 struct gtphub_peer_port *from)
1905{
1906 /* If the peer is sending a Recovery IE (7.7.11) with a restart counter
1907 * that doesn't match the peer's previously sent restart counter, clear
1908 * that peer and cancel PDP contexts. */
1909
1910 int restart = get_restart_count(p);
1911
1912 if ((restart < 0) || (restart > 255))
1913 return;
1914
1915 if ((from->last_restart_count >= 0) && (from->last_restart_count <= 255)) {
1916 if (from->last_restart_count != restart) {
1917 gtphub_restarted(hub, p, from);
1918 }
1919 }
1920
1921 from->last_restart_count = restart;
1922}
1923
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001924static int from_sgsns_read_cb(struct osmo_fd *from_sgsns_ofd, unsigned int what)
1925{
1926 unsigned int plane_idx = from_sgsns_ofd->priv_nr;
1927 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001928 LOG(LOGL_DEBUG, "=== reading from SGSN (%s)\n",
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001929 gtphub_plane_idx_names[plane_idx]);
1930
1931 if (!(what & BSC_FD_READ))
1932 return 0;
1933
1934 struct gtphub *hub = from_sgsns_ofd->data;
1935
1936 static uint8_t buf[4096];
1937 struct osmo_sockaddr from_addr;
1938 struct osmo_sockaddr to_addr;
1939 struct osmo_fd *to_ofd;
1940 int len;
1941 uint8_t *reply_buf;
1942
1943 len = gtphub_read(from_sgsns_ofd, &from_addr, buf, sizeof(buf));
1944 if (len < 1)
1945 return 0;
1946
1947 len = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, &from_addr,
1948 buf, len, gtphub_now(),
1949 &reply_buf, &to_ofd, &to_addr);
1950 if (len < 1)
1951 return 0;
1952
1953 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
1954}
1955
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001956static int from_ggsns_read_cb(struct osmo_fd *from_ggsns_ofd, unsigned int what)
1957{
1958 unsigned int plane_idx = from_ggsns_ofd->priv_nr;
1959 OSMO_ASSERT(plane_idx < GTPH_PLANE_N);
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01001960 LOG(LOGL_DEBUG, "=== reading from GGSN (%s)\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01001961 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001962 if (!(what & BSC_FD_READ))
1963 return 0;
1964
1965 struct gtphub *hub = from_ggsns_ofd->data;
1966
1967 static uint8_t buf[4096];
1968 struct osmo_sockaddr from_addr;
1969 struct osmo_sockaddr to_addr;
1970 struct osmo_fd *to_ofd;
Neels Hofmeyr16c3f572015-11-11 17:27:01 +01001971 int len;
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001972 uint8_t *reply_buf;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001973
1974 len = gtphub_read(from_ggsns_ofd, &from_addr, buf, sizeof(buf));
1975 if (len < 1)
1976 return 0;
1977
Neels Hofmeyra9905a52015-11-29 23:49:48 +01001978 len = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, &from_addr,
1979 buf, len, gtphub_now(),
1980 &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001981 if (len < 1)
1982 return 0;
1983
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01001984 return gtphub_write(to_ofd, &to_addr, reply_buf, len);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001985}
1986
1987static int gtphub_unmap(struct gtphub *hub,
1988 struct gtp_packet_desc *p,
1989 struct gtphub_peer_port *from,
1990 struct gtphub_peer_port *to_proxy,
1991 struct gtphub_peer_port **final_unmapped,
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01001992 struct gtphub_peer_port **unmapped_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001993{
1994 /* Always (try to) unmap sequence and TEI numbers, which need to be
1995 * replaced in the packet. Either way, give precedence to the proxy, if
1996 * configured. */
1997
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01001998 if (unmapped_from_seq)
1999 *unmapped_from_seq = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002000 if (final_unmapped)
2001 *final_unmapped = NULL;
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002002 p->tun = NULL;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002003
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002004 struct gtphub_peer_port *from_seq = NULL;
2005 struct gtphub_peer_port *from_tei = NULL;
2006 struct gtphub_peer_port *unmapped = NULL;
2007
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002008 from_seq = gtphub_unmap_seq(p, from);
2009
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002010 if (gtphub_unmap_header_tei(&from_tei, &p->tun, hub, p, from) < 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002011 return -1;
2012
2013 struct gtphub_peer *from_peer = from->peer_addr->peer;
2014 if (from_seq && from_tei && (from_seq != from_tei)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002015 LOG(LOGL_DEBUG,
2016 "Seq unmap and TEI unmap yield two different peers."
2017 " Using seq unmap."
Neels Hofmeyr28a70f22015-12-06 15:22:54 +01002018 " (from %s %s: seq %d yields %s, tei %u yields %s)\n",
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002019 gtphub_plane_idx_names[p->plane_idx],
2020 gtphub_peer_str(from_peer),
2021 (int)p->seq,
2022 gtphub_port_str(from_seq),
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002023 (unsigned int)p->header_tei_rx,
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002024 gtphub_port_str2(from_tei)
2025 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002026 }
2027 unmapped = (from_seq? from_seq : from_tei);
2028
2029 if (unmapped && to_proxy && (unmapped != to_proxy)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002030 LOG(LOGL_NOTICE,
2031 "Unmap yields a different peer than the configured proxy."
2032 " Using proxy."
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002033 " unmapped: %s proxy: %s\n",
2034 gtphub_port_str(unmapped),
2035 gtphub_port_str2(to_proxy)
2036 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002037 }
2038 unmapped = (to_proxy? to_proxy : unmapped);
2039
2040 if (!unmapped) {
2041 /* Return no error, but returned pointers are all NULL. */
2042 return 0;
2043 }
2044
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002045 if (unmapped_from_seq)
2046 *unmapped_from_seq = from_seq;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002047 if (final_unmapped)
2048 *final_unmapped = unmapped;
2049 return 0;
2050}
2051
2052static int gsn_addr_to_sockaddr(struct gsn_addr *src,
2053 uint16_t port,
2054 struct osmo_sockaddr *dst)
2055{
2056 return osmo_sockaddr_init_udp(dst, gsn_addr_to_str(src), port);
2057}
2058
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002059/* If p is an Echo request, replace p's data with the matching response and
2060 * return 1. If p is no Echo request, return 0, or -1 if an invalid packet is
2061 * detected. */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002062static int gtphub_handle_echo_req(struct gtphub *hub, struct gtp_packet_desc *p,
2063 uint8_t **reply_buf)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002064{
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002065 if (p->type != GTP_ECHO_REQ)
2066 return 0;
2067
2068 static uint8_t echo_response_data[14] = {
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002069 0x32, /* GTP v1 flags */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002070 GTP_ECHO_RSP,
2071 0x00, 14 - 8, /* Length in network byte order */
2072 0x00, 0x00, 0x00, 0x00, /* Zero TEI */
2073 0, 0, /* Seq, to be replaced */
2074 0, 0, /* no extensions */
2075 0x0e, /* Recovery IE */
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002076 0 /* Restart counter, to be replaced */
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002077 };
2078 uint16_t *seq = (uint16_t*)&echo_response_data[8];
2079 uint8_t *recovery = &echo_response_data[13];
2080
2081 *seq = hton16(p->seq);
2082 *recovery = hub->restart_counter;
2083
2084 *reply_buf = echo_response_data;
2085
2086 return sizeof(echo_response_data);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002087}
2088
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002089struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2090 const struct osmo_sockaddr *addr);
2091
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002092/* Parse buffer as GTP packet, replace elements in-place and return the ofd and
2093 * address to forward to. Return a pointer to the osmo_fd, but copy the
2094 * sockaddr to *to_addr. The reason for this is that the sockaddr may expire at
2095 * any moment, while the osmo_fd is guaranteed to persist. Return the number of
2096 * bytes to forward, 0 or less on failure. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002097int gtphub_handle_buf(struct gtphub *hub,
2098 unsigned int side_idx,
2099 unsigned int plane_idx,
2100 const struct osmo_sockaddr *from_addr,
2101 uint8_t *buf,
2102 size_t received,
2103 time_t now,
2104 uint8_t **reply_buf,
2105 struct osmo_fd **to_ofd,
2106 struct osmo_sockaddr *to_addr)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002107{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002108 struct gtphub_bind *from_bind = &hub->to_gsns[side_idx][plane_idx];
2109 struct gtphub_bind *to_bind = &hub->to_gsns[other_side_idx(side_idx)][plane_idx];
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002110
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002111 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_IN],
2112 received);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002113
Neels Hofmeyrd8660ef2015-12-03 11:24:39 +01002114 struct gtp_packet_desc p;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002115 gtp_decode(buf, received, side_idx, plane_idx, &p, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002116
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002117 LOG(LOGL_DEBUG, "%s rx %s from %s %s%s\n",
2118 (side_idx == GTPH_SIDE_GGSN)? "<-" : "->",
2119 gtphub_plane_idx_names[plane_idx],
2120 gtphub_side_idx_names[side_idx],
2121 osmo_sockaddr_to_str(from_addr),
2122 gtp_type_str(p.type));
2123
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002124 if (p.rc <= 0) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002125 LOG(LOGL_ERROR, "INVALID: dropping GTP packet%s from %s %s %s\n",
2126 gtp_type_str(p.type),
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002127 gtphub_side_idx_names[side_idx],
2128 gtphub_plane_idx_names[plane_idx],
2129 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002130 return -1;
Neels Hofmeyr87c83d02015-12-03 11:25:27 +01002131 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002132
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002133 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2134
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002135 int reply_len;
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002136 reply_len = gtphub_handle_echo_req(hub, &p, reply_buf);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002137 if (reply_len > 0) {
2138 /* It was an echo. Nothing left to do. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002139 osmo_sockaddr_copy(to_addr, from_addr);
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002140 *to_ofd = &from_bind->ofd;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002141
2142 rate_ctr_inc(&from_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2143 rate_ctr_add(&from_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2144 reply_len);
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002145 LOG(LOGL_DEBUG, "%s Echo response to %s: %d bytes to %s\n",
2146 (side_idx == GTPH_SIDE_GGSN)? "-->" : "<--",
2147 gtphub_side_idx_names[side_idx],
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +01002148 (int)reply_len, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002149 return reply_len;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002150 }
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002151 if (reply_len < 0)
2152 return -1;
2153
Neels Hofmeyrdba6d1a2015-11-20 01:27:22 +01002154 *to_ofd = &to_bind->ofd;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002155
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002156 /* If a proxy is configured, check that it's indeed that proxy talking
2157 * to us. A proxy is a forced 1:1 connection, e.g. to another gtphub,
2158 * so no-one else is allowed to talk to us from that side. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002159 struct gtphub_peer_port *from_peer = hub->proxy[side_idx][plane_idx];
2160 if (from_peer) {
2161 if (osmo_sockaddr_cmp(&from_peer->sa, from_addr) != 0) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002162 LOG(LOGL_ERROR,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002163 "Rejecting: %s proxy configured, but GTP packet"
2164 " received on %s bind is from another sender:"
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002165 " proxy: %s sender: %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002166 gtphub_side_idx_names[side_idx],
2167 gtphub_side_idx_names[side_idx],
2168 gtphub_port_str(from_peer),
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002169 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002170 return -1;
2171 }
2172 }
2173
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002174 if (!from_peer) {
2175 /* Find or create a peer with a matching address. The sender's
2176 * port may in fact differ. */
2177 from_peer = gtphub_known_addr_have_port(from_bind, from_addr);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002178 }
2179
2180 /* If any PDP context has been created, we already have an entry for
Neels Hofmeyr3fdba2e2015-11-30 14:17:21 +01002181 * this GSN. If we don't have an entry, a GGSN has nothing to tell us
2182 * about, while an SGSN may initiate a PDP context. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002183 if (!from_peer) {
2184 if (side_idx == GTPH_SIDE_GGSN) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002185 LOG(LOGL_ERROR, "Dropping packet%s: unknown GGSN peer: %s\n",
2186 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002187 osmo_sockaddr_to_str(from_addr));
2188 return -1;
2189 } else {
2190 /* SGSN */
2191 /* A new peer. If this is on the Ctrl plane, an SGSN
2192 * may make first contact without being known yet, so
2193 * create the peer struct for the current sender. */
2194 if (plane_idx != GTPH_PLANE_CTRL) {
2195 LOG(LOGL_ERROR,
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002196 "Dropping packet%s: User plane peer was not"
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002197 "announced by PDP Context: %s\n",
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002198 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002199 osmo_sockaddr_to_str(from_addr));
2200 return -1;
2201 }
2202
2203 struct gsn_addr from_gsna;
2204 uint16_t from_port;
2205 if (gsn_addr_from_sockaddr(&from_gsna, &from_port, from_addr) != 0)
2206 return -1;
2207
2208 from_peer = gtphub_port_have(hub, from_bind, &from_gsna, from_port);
2209 }
2210 }
2211
2212 if (!from_peer) {
2213 /* This could theoretically happen for invalid address data or
2214 * somesuch. */
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002215 LOG(LOGL_ERROR, "Dropping packet%s: invalid %s peer: %s\n",
2216 gtp_type_str(p.type),
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002217 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002218 osmo_sockaddr_to_str(from_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002219 return -1;
2220 }
2221
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002222 rate_ctr_add(&from_peer->counters_io->ctr[GTPH_CTR_BYTES_IN],
2223 received);
2224 rate_ctr_inc(&from_peer->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2225
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002226 LOG(LOGL_DEBUG, "from %s peer: %s\n", gtphub_side_idx_names[side_idx],
2227 gtphub_port_str(from_peer));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002228
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002229 gtphub_check_restart_counter(hub, &p, from_peer);
2230 gtphub_map_restart_counter(hub, &p);
2231
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002232 struct gtphub_peer_port *to_peer_from_seq;
2233 struct gtphub_peer_port *to_peer;
2234 if (gtphub_unmap(hub, &p, from_peer,
2235 hub->proxy[other_side_idx(side_idx)][plane_idx],
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002236 &to_peer, &to_peer_from_seq)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002237 != 0) {
2238 return -1;
2239 }
2240
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002241 if (p.tun) {
2242 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[p.side_idx][p.plane_idx];
2243 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_IN],
2244 received);
2245 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_IN]);
2246 }
2247
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002248 if ((!to_peer) && (side_idx == GTPH_SIDE_SGSN)) {
2249 if (gtphub_resolve_ggsn(hub, &p, &to_peer) < 0)
2250 return -1;
2251 }
2252
Neels Hofmeyrd010c492015-12-06 23:12:02 +01002253 if (!to_peer && p.tun && p.type == GTP_DELETE_PDP_RSP) {
2254 /* It's a delete confirmation for a tunnel that is partly
2255 * invalid, probably marked unsuable due to a restarted peer.
2256 * Remove the tunnel and be happy without forwarding. */
2257 expiring_item_del(&p.tun->expiry_entry);
2258 p.tun = NULL;
2259 return 0;
2260 }
2261
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002262 if (!to_peer) {
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002263 LOG(LOGL_ERROR, "No %s to send to. Dropping packet%s"
2264 " (type=%" PRIu8 ", header-TEI=%" PRIx32 ", seq=%" PRIx16 ").\n",
2265 gtphub_side_idx_names[other_side_idx(side_idx)],
2266 gtp_type_str(p.type),
2267 p.type, p.header_tei_rx, p.seq
2268 );
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002269 return -1;
2270 }
2271
2272 if (plane_idx == GTPH_PLANE_CTRL) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002273 /* This may be a Create PDP Context response. If it is, there
2274 * are other addresses in the GTP message to set up apart from
2275 * the sender. */
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002276 if (gtphub_handle_pdp_ctx(hub, &p, from_peer, to_peer)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002277 != 0)
2278 return -1;
2279 }
Neels Hofmeyrd53c6042015-12-03 13:59:49 +01002280
2281 /* Either to_peer was resolved from an existing tunnel,
2282 * or a PDP Ctx and thus a tunnel has just been created,
2283 * or the tunnel has been deleted due to this message. */
2284 OSMO_ASSERT(p.tun || (p.type == GTP_DELETE_PDP_RSP));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002285
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002286 /* If the GGSN is replying to an SGSN request, the sequence nr has
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002287 * already been unmapped above (to_peer_from_seq != NULL), and we need not
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002288 * create a new mapping. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002289 if (!to_peer_from_seq)
2290 gtphub_map_seq(&p, from_peer, to_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002291
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002292 osmo_sockaddr_copy(to_addr, &to_peer->sa);
Neels Hofmeyrbb3d6782015-11-09 15:12:25 +01002293
2294 *reply_buf = (uint8_t*)p.data;
Neels Hofmeyre921e322015-11-11 00:45:50 +01002295
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002296 if (received) {
2297 rate_ctr_inc(&to_bind->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2298 rate_ctr_add(&to_bind->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2299 received);
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002300
2301 rate_ctr_inc(&to_peer->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2302 rate_ctr_add(&to_peer->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2303 received);
Neels Hofmeyr1ba50c62015-11-20 01:28:40 +01002304 }
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002305
2306 if (p.tun) {
2307 struct gtphub_tunnel_endpoint *te = &p.tun->endpoint[other_side_idx(p.side_idx)][p.plane_idx];
2308 rate_ctr_inc(&te->counters_io->ctr[GTPH_CTR_PKTS_OUT]);
2309 rate_ctr_add(&te->counters_io->ctr[GTPH_CTR_BYTES_OUT],
2310 received);
2311 }
2312
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002313 LOG(LOGL_DEBUG, "%s Forward to %s:"
2314 " header-TEI %" PRIx32", seq %" PRIx16", %d bytes to %s\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002315 (side_idx == GTPH_SIDE_SGSN)? "-->" : "<--",
2316 gtphub_side_idx_names[other_side_idx(side_idx)],
Neels Hofmeyrbee75962015-12-06 23:07:02 +01002317 p.header_tei, p.seq,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002318 (int)received, osmo_sockaddr_to_str(to_addr));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002319 return received;
2320}
2321
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002322static void resolved_gssn_del_cb(struct expiring_item *expi)
2323{
2324 struct gtphub_resolved_ggsn *ggsn;
2325 ggsn = container_of(expi, struct gtphub_resolved_ggsn, expiry_entry);
2326
2327 gtphub_port_ref_count_dec(ggsn->peer);
2328 llist_del(&ggsn->entry);
2329
2330 ggsn->expiry_entry.del_cb = 0;
2331 expiring_item_del(&ggsn->expiry_entry);
2332
2333 talloc_free(ggsn);
2334}
2335
2336void gtphub_resolved_ggsn(struct gtphub *hub, const char *apn_oi_str,
2337 struct gsn_addr *resolved_addr,
2338 time_t now)
2339{
2340 struct gtphub_peer_port *pp;
2341 struct gtphub_resolved_ggsn *ggsn;
2342
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002343 LOG(LOGL_DEBUG, "Resolved GGSN callback: %s %s\n",
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002344 apn_oi_str, osmo_hexdump((unsigned char*)resolved_addr,
2345 sizeof(*resolved_addr)));
Neels Hofmeyr3317c842015-11-11 17:20:42 +01002346
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002347 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002348 resolved_addr, 2123);
2349 if (!pp) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002350 LOG(LOGL_ERROR, "Internal: Cannot create/find peer '%s'\n",
2351 gsn_addr_to_str(resolved_addr));
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002352 return;
2353 }
2354
2355 ggsn = talloc_zero(osmo_gtphub_ctx, struct gtphub_resolved_ggsn);
2356 OSMO_ASSERT(ggsn);
Neels Hofmeyra4370dd2015-11-24 12:46:11 +01002357 INIT_LLIST_HEAD(&ggsn->entry);
2358 expiring_item_init(&ggsn->expiry_entry);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002359
2360 ggsn->peer = pp;
2361 gtphub_port_ref_count_inc(pp);
2362
2363 strncpy(ggsn->apn_oi_str, apn_oi_str, sizeof(ggsn->apn_oi_str));
Neels Hofmeyr3c820ee2015-11-17 12:28:09 +01002364 ggsn->apn_oi_str[sizeof(ggsn->apn_oi_str) - 1] = '\0';
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002365
2366 ggsn->expiry_entry.del_cb = resolved_gssn_del_cb;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002367 expiry_add(&hub->expire_slowly, &ggsn->expiry_entry, now);
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002368
2369 llist_add(&ggsn->entry, &hub->resolved_ggsns);
2370}
2371
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002372static int gtphub_gc_peer_port(struct gtphub_peer_port *pp)
2373{
2374 return pp->ref_count == 0;
2375}
2376
2377static int gtphub_gc_peer_addr(struct gtphub_peer_addr *pa)
2378{
2379 struct gtphub_peer_port *pp, *npp;
2380 llist_for_each_entry_safe(pp, npp, &pa->ports, entry) {
2381 if (gtphub_gc_peer_port(pp)) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002382 LOG(LOGL_DEBUG, "expired: peer %s\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002383 gtphub_port_str(pp));
2384 gtphub_peer_port_del(pp);
2385 }
2386 }
2387 return llist_empty(&pa->ports);
2388}
2389
2390static int gtphub_gc_peer(struct gtphub_peer *p)
2391{
2392 struct gtphub_peer_addr *pa, *npa;
2393 llist_for_each_entry_safe(pa, npa, &p->addresses, entry) {
2394 if (gtphub_gc_peer_addr(pa)) {
2395 gtphub_peer_addr_del(pa);
2396 }
2397 }
2398
2399 /* Note that there's a ref_count in each gtphub_peer_port instance
2400 * listed within p->addresses, referenced by TEI mappings from
2401 * hub->tei_map. As long as those don't expire, this peer will stay. */
2402
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002403 return llist_empty(&p->addresses)
2404 && nr_map_empty(&p->seq_map);
2405}
2406
2407static void gtphub_gc_bind(struct gtphub_bind *b)
2408{
2409 struct gtphub_peer *p, *n;
2410 llist_for_each_entry_safe(p, n, &b->peers, entry) {
2411 if (gtphub_gc_peer(p)) {
2412 gtphub_peer_del(p);
2413 }
2414 }
2415}
2416
2417void gtphub_gc(struct gtphub *hub, time_t now)
2418{
2419 int expired;
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002420 expired = expiry_tick(&hub->expire_quickly, now);
2421 expired += expiry_tick(&hub->expire_slowly, now);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002422
2423 /* ... */
2424
2425 if (expired) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002426 int s, p;
2427 for_each_side_and_plane(s, p) {
2428 gtphub_gc_bind(&hub->to_gsns[s][p]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002429 }
2430 }
2431}
2432
2433static void gtphub_gc_cb(void *data)
2434{
2435 struct gtphub *hub = data;
2436 gtphub_gc(hub, gtphub_now());
2437 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2438}
2439
2440static void gtphub_gc_start(struct gtphub *hub)
2441{
2442 hub->gc_timer.cb = gtphub_gc_cb;
2443 hub->gc_timer.data = hub;
2444
2445 osmo_timer_schedule(&hub->gc_timer, GTPH_GC_TICK_SECONDS, 0);
2446}
2447
2448/* called by unit tests */
2449void gtphub_init(struct gtphub *hub)
2450{
2451 gtphub_zero(hub);
2452
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002453 INIT_LLIST_HEAD(&hub->tunnels);
Neels Hofmeyr10fc0242015-12-01 00:23:45 +01002454 INIT_LLIST_HEAD(&hub->pending_deletes);
Neels Hofmeyre54cd152015-11-24 13:31:06 +01002455
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002456 expiry_init(&hub->expire_quickly, GTPH_EXPIRE_QUICKLY_SECS);
2457 expiry_init(&hub->expire_slowly, GTPH_EXPIRE_SLOWLY_MINUTES * 60);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002458
Neels Hofmeyrd121ea62015-11-27 01:20:53 +01002459 nr_pool_init(&hub->tei_pool, 1, 0xffffffff);
2460
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002461 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002462 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002463 for_each_side_and_plane(side_idx, plane_idx) {
2464 gtphub_bind_init(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002465 }
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002466
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002467 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].label = "SGSN Ctrl";
2468 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].label = "GGSN Ctrl";
2469 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].label = "SGSN User";
2470 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].label = "GGSN User";
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002471}
2472
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002473/* For the test suite, this is kept separate from gtphub_stop(), which also
2474 * closes sockets. The test suite avoids using sockets and would cause
2475 * segfaults when trying to close uninitialized ofds. */
2476void gtphub_free(struct gtphub *hub)
2477{
2478 /* By expiring all mappings, a garbage collection should free
2479 * everything else. A gtphub_bind_free() will assert that everything is
2480 * indeed empty. */
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002481 expiry_clear(&hub->expire_quickly);
2482 expiry_clear(&hub->expire_slowly);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002483
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002484 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002485 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002486 for_each_side_and_plane(side_idx, plane_idx) {
2487 gtphub_gc_bind(&hub->to_gsns[side_idx][plane_idx]);
2488 gtphub_bind_free(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002489 }
2490}
2491
2492void gtphub_stop(struct gtphub *hub)
2493{
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002494 int side_idx;
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002495 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002496 for_each_side_and_plane(side_idx, plane_idx) {
2497 gtphub_bind_stop(&hub->to_gsns[side_idx][plane_idx]);
Neels Hofmeyr20bd6bf2015-11-20 00:08:28 +01002498 }
2499 gtphub_free(hub);
2500}
2501
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002502static int gtphub_make_proxy(struct gtphub *hub,
2503 struct gtphub_peer_port **pp,
2504 struct gtphub_bind *bind,
2505 const struct gtphub_cfg_addr *addr)
2506{
2507 if (!addr->addr_str)
2508 return 0;
2509
2510 struct gsn_addr gsna;
2511 if (gsn_addr_from_str(&gsna, addr->addr_str) != 0)
2512 return -1;
2513
2514 *pp = gtphub_port_have(hub, bind, &gsna, addr->port);
2515
2516 /* This is *the* proxy. Make sure it is never expired. */
2517 gtphub_port_ref_count_inc(*pp);
2518 return 0;
2519}
2520
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002521int gtphub_start(struct gtphub *hub, struct gtphub_cfg *cfg,
2522 uint8_t restart_counter)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002523{
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002524 gtphub_init(hub);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002525
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002526 hub->restart_counter = restart_counter;
Neels Hofmeyrca2361c2015-12-03 14:12:44 +01002527 hub->sgsn_use_sender = cfg->sgsn_use_sender? 1 : 0;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +01002528
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002529 /* If a Ctrl plane proxy is configured, ares will never be used. */
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002530 if (!cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +01002531 if (gtphub_ares_init(hub) != 0) {
2532 LOG(LOGL_FATAL, "Failed to initialize ares\n");
2533 return -1;
2534 }
2535 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002536
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002537 int side_idx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002538 int plane_idx;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002539 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +01002540 int rc;
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002541 rc = gtphub_bind_start(&hub->to_gsns[side_idx][plane_idx],
2542 &cfg->to_gsns[side_idx][plane_idx],
2543 (side_idx == GTPH_SIDE_SGSN)
2544 ? from_sgsns_read_cb
2545 : from_ggsns_read_cb,
2546 hub, plane_idx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002547 if (rc) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002548 LOG(LOGL_FATAL, "Failed to bind for %ss (%s)\n",
2549 gtphub_side_idx_names[side_idx],
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002550 gtphub_plane_idx_names[plane_idx]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002551 return rc;
2552 }
2553 }
2554
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002555 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002556 if (gtphub_make_proxy(hub,
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002557 &hub->proxy[side_idx][plane_idx],
2558 &hub->to_gsns[side_idx][plane_idx],
2559 &cfg->proxy[side_idx][plane_idx])
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002560 != 0) {
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002561 LOG(LOGL_FATAL, "Cannot configure %s proxy"
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002562 " %s port %d.\n",
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002563 gtphub_side_idx_names[side_idx],
2564 cfg->proxy[side_idx][plane_idx].addr_str,
2565 (int)cfg->proxy[side_idx][plane_idx].port);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002566 return -1;
2567 }
2568 }
2569
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002570 for_each_side_and_plane(side_idx, plane_idx) {
2571 if (hub->proxy[side_idx][plane_idx])
2572 LOG(LOGL_NOTICE, "Using %s %s proxy %s\n",
2573 gtphub_side_idx_names[side_idx],
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002574 gtphub_plane_idx_names[plane_idx],
Neels Hofmeyra9905a52015-11-29 23:49:48 +01002575 gtphub_port_str(hub->proxy[side_idx][plane_idx]));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002576 }
2577
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002578 if (hub->sgsn_use_sender)
Neels Hofmeyr9d8f5062015-12-03 14:52:33 +01002579 LOG(LOGL_NOTICE, "Using sender address and port for SGSN instead of GSN Addr IE and default ports.\n");
Neels Hofmeyre1ba7812015-12-03 14:48:22 +01002580
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002581 gtphub_gc_start(hub);
2582 return 0;
2583}
2584
2585static struct gtphub_peer_addr *gtphub_peer_find_addr(const struct gtphub_peer *peer,
2586 const struct gsn_addr *addr)
2587{
2588 struct gtphub_peer_addr *a;
2589 llist_for_each_entry(a, &peer->addresses, entry) {
2590 if (gsn_addr_same(&a->addr, addr))
2591 return a;
2592 }
2593 return NULL;
2594}
2595
2596static struct gtphub_peer_port *gtphub_addr_find_port(const struct gtphub_peer_addr *a,
2597 uint16_t port)
2598{
2599 OSMO_ASSERT(port);
2600 struct gtphub_peer_port *pp;
2601 llist_for_each_entry(pp, &a->ports, entry) {
2602 if (pp->port == port)
2603 return pp;
2604 }
2605 return NULL;
2606}
2607
2608static struct gtphub_peer_addr *gtphub_addr_find(const struct gtphub_bind *bind,
2609 const struct gsn_addr *addr)
2610{
2611 struct gtphub_peer *peer;
2612 llist_for_each_entry(peer, &bind->peers, entry) {
2613 struct gtphub_peer_addr *a = gtphub_peer_find_addr(peer, addr);
2614 if (a)
2615 return a;
2616 }
2617 return NULL;
2618}
2619
2620static struct gtphub_peer_port *gtphub_port_find(const struct gtphub_bind *bind,
2621 const struct gsn_addr *addr,
2622 uint16_t port)
2623{
2624 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2625 if (!a)
2626 return NULL;
2627 return gtphub_addr_find_port(a, port);
2628}
2629
2630struct gtphub_peer_port *gtphub_port_find_sa(const struct gtphub_bind *bind,
2631 const struct osmo_sockaddr *addr)
2632{
2633 struct gsn_addr gsna;
2634 uint16_t port;
2635 gsn_addr_from_sockaddr(&gsna, &port, addr);
2636 return gtphub_port_find(bind, &gsna, port);
2637}
2638
2639static struct gtphub_peer *gtphub_peer_new(struct gtphub *hub,
2640 struct gtphub_bind *bind)
2641{
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002642 struct gtphub_peer *peer = talloc_zero(osmo_gtphub_ctx,
2643 struct gtphub_peer);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002644 OSMO_ASSERT(peer);
2645
2646 INIT_LLIST_HEAD(&peer->addresses);
2647
Neels Hofmeyre2ed8e62015-11-17 14:30:37 +01002648 nr_pool_init(&peer->seq_pool, 0, 0xffff);
Neels Hofmeyr2c8b5812015-11-25 16:45:59 +01002649 nr_map_init(&peer->seq_map, &peer->seq_pool, &hub->expire_quickly);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002650
2651 /* TODO use something random to pick the initial sequence nr.
2652 0x6d31 produces the ASCII character sequence 'm1', currently used in
2653 gtphub_nc_test.sh. */
2654 peer->seq_pool.last_nr = 0x6d31 - 1;
2655
2656 llist_add(&peer->entry, &bind->peers);
2657 return peer;
2658}
2659
2660static struct gtphub_peer_addr *gtphub_peer_add_addr(struct gtphub_peer *peer,
2661 const struct gsn_addr *addr)
2662{
2663 struct gtphub_peer_addr *a;
2664 a = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_addr);
2665 OSMO_ASSERT(a);
2666 a->peer = peer;
2667 gsn_addr_copy(&a->addr, addr);
2668 INIT_LLIST_HEAD(&a->ports);
2669 llist_add(&a->entry, &peer->addresses);
2670
2671 return a;
2672}
2673
2674static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
2675 struct gtphub_bind *bind,
2676 const struct gsn_addr *addr)
2677{
2678 struct gtphub_peer_addr *a = gtphub_addr_find(bind, addr);
2679 if (a)
2680 return a;
2681
2682 /* If we haven't found an address, that means we need to create an
2683 * entirely new peer for the new address. More addresses may be added
2684 * to this peer later, but not via this function. */
2685 struct gtphub_peer *peer = gtphub_peer_new(hub, bind);
Neels Hofmeyre921e322015-11-11 00:45:50 +01002686
2687 a = gtphub_peer_add_addr(peer, addr);
2688
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002689 LOG(LOGL_DEBUG, "New peer address: %s %s\n",
Neels Hofmeyr390e9102015-11-16 13:45:13 +01002690 bind->label,
Neels Hofmeyre921e322015-11-11 00:45:50 +01002691 gsn_addr_to_str(&a->addr));
2692
2693 return a;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002694}
2695
2696static struct gtphub_peer_port *gtphub_addr_add_port(struct gtphub_peer_addr *a,
2697 uint16_t port)
2698{
2699 struct gtphub_peer_port *pp;
2700
2701 pp = talloc_zero(osmo_gtphub_ctx, struct gtphub_peer_port);
2702 OSMO_ASSERT(pp);
2703 pp->peer_addr = a;
2704 pp->port = port;
Neels Hofmeyrbc443302015-12-01 15:20:18 +01002705 pp->last_restart_count = -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002706
2707 if (gsn_addr_to_sockaddr(&a->addr, port, &pp->sa) != 0) {
2708 talloc_free(pp);
2709 return NULL;
2710 }
2711
Neels Hofmeyre38fb662015-12-06 16:44:14 +01002712 pp->counters_io = rate_ctr_group_alloc(osmo_gtphub_ctx,
2713 &gtphub_ctrg_io_desc, 0);
2714
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002715 llist_add(&pp->entry, &a->ports);
2716
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002717 LOG(LOGL_DEBUG, "New peer port: %s port %d\n",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002718 gsn_addr_to_str(&a->addr),
2719 (int)port);
2720
2721 return pp;
2722}
2723
Neels Hofmeyr30f7bcb2015-11-08 20:34:47 +01002724struct gtphub_peer_port *gtphub_port_have(struct gtphub *hub,
2725 struct gtphub_bind *bind,
2726 const struct gsn_addr *addr,
2727 uint16_t port)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002728{
2729 struct gtphub_peer_addr *a = gtphub_addr_have(hub, bind, addr);
2730
2731 struct gtphub_peer_port *pp = gtphub_addr_find_port(a, port);
2732 if (pp)
2733 return pp;
2734
2735 return gtphub_addr_add_port(a, port);
2736}
2737
Neels Hofmeyrc83cd892015-11-11 14:01:06 +01002738/* Find a GGSN peer with a matching address. If the address is known but the
2739 * port not, create a new port for that peer address. */
2740struct gtphub_peer_port *gtphub_known_addr_have_port(const struct gtphub_bind *bind,
2741 const struct osmo_sockaddr *addr)
2742{
2743 struct gtphub_peer_addr *pa;
2744 struct gtphub_peer_port *pp;
2745
2746 struct gsn_addr gsna;
2747 uint16_t port;
2748 gsn_addr_from_sockaddr(&gsna, &port, addr);
2749
2750 pa = gtphub_addr_find(bind, &gsna);
2751 if (!pa)
2752 return NULL;
2753
2754 pp = gtphub_addr_find_port(pa, port);
2755
2756 if (!pp)
2757 pp = gtphub_addr_add_port(pa, port);
2758
2759 return pp;
2760}
2761
2762
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002763/* Return 0 if the message in p is not applicable for GGSN resolution, -1 if
2764 * resolution should be possible but failed, and 1 if resolution was
2765 * successful. *pp will be set to NULL if <1 is returned. */
2766static int gtphub_resolve_ggsn(struct gtphub *hub,
2767 struct gtp_packet_desc *p,
2768 struct gtphub_peer_port **pp)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002769{
Neels Hofmeyr5b664f42015-11-10 20:32:13 +01002770 *pp = NULL;
2771
2772 /* TODO determine from message type whether IEs should be present? */
2773
2774 int rc;
2775 const char *imsi_str;
2776 rc = get_ie_imsi_str(p->ie, 0, &imsi_str);
2777 if (rc < 1)
2778 return rc;
2779 OSMO_ASSERT(imsi_str);
2780
2781 const char *apn_str;
2782 rc = get_ie_apn_str(p->ie, &apn_str);
2783 if (rc < 1)
2784 return rc;
2785 OSMO_ASSERT(apn_str);
2786
2787 *pp = gtphub_resolve_ggsn_addr(hub, imsi_str, apn_str);
2788 return (*pp)? 1 : -1;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002789}
2790
2791
2792/* TODO move to osmocom/core/socket.c ? */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002793/* use this in osmo_sock_init() to remove dup. */
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002794/* Internal: call getaddrinfo for osmo_sockaddr_init(). The caller is required
2795 to call freeaddrinfo(*result), iff zero is returned. */
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002796static int _osmo_getaddrinfo(struct addrinfo **result,
2797 uint16_t family, uint16_t type, uint8_t proto,
2798 const char *host, uint16_t port)
2799{
2800 struct addrinfo hints;
2801 char portbuf[16];
2802
2803 sprintf(portbuf, "%u", port);
2804 memset(&hints, '\0', sizeof(struct addrinfo));
2805 hints.ai_family = family;
2806 if (type == SOCK_RAW) {
2807 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
2808 * SOCK_RAW and IPPROTO_GRE is used.
2809 */
2810 hints.ai_socktype = SOCK_DGRAM;
2811 hints.ai_protocol = IPPROTO_UDP;
2812 } else {
2813 hints.ai_socktype = type;
2814 hints.ai_protocol = proto;
2815 }
2816
2817 return getaddrinfo(host, portbuf, &hints, result);
2818}
2819
2820/* TODO move to osmocom/core/socket.c ? */
2821int osmo_sockaddr_init(struct osmo_sockaddr *addr,
2822 uint16_t family, uint16_t type, uint8_t proto,
2823 const char *host, uint16_t port)
2824{
2825 struct addrinfo *res;
2826 int rc;
2827 rc = _osmo_getaddrinfo(&res, family, type, proto, host, port);
2828
2829 if (rc != 0) {
Neels Hofmeyr063a8022015-11-16 14:35:13 +01002830 LOG(LOGL_ERROR, "getaddrinfo returned error %d\n", (int)rc);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002831 return -EINVAL;
2832 }
2833
2834 OSMO_ASSERT(res->ai_addrlen <= sizeof(addr->a));
2835 memcpy(&addr->a, res->ai_addr, res->ai_addrlen);
2836 addr->l = res->ai_addrlen;
2837 freeaddrinfo(res);
2838
2839 return 0;
2840}
2841
2842int osmo_sockaddr_to_strs(char *addr_str, size_t addr_str_len,
2843 char *port_str, size_t port_str_len,
2844 const struct osmo_sockaddr *addr,
2845 int flags)
2846{
2847 int rc;
2848
2849 if ((addr->l < 1) || (addr->l > sizeof(addr->a))) {
2850 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address size: %d\n", addr->l);
2851 return -1;
2852 }
2853
2854 if (addr->l > sizeof(addr->a)) {
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002855 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: too long: %d\n",
2856 addr->l);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002857 return -1;
2858 }
2859
2860 rc = getnameinfo((struct sockaddr*)&addr->a, addr->l,
2861 addr_str, addr_str_len,
2862 port_str, port_str_len,
2863 flags);
2864
2865 if (rc)
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002866 LOGP(DGTPHUB, LOGL_ERROR, "Invalid address: %s: %s\n",
2867 gai_strerror(rc), osmo_hexdump((uint8_t*)&addr->a,
2868 addr->l));
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002869
2870 return rc;
2871}
2872
2873const char *osmo_sockaddr_to_strb(const struct osmo_sockaddr *addr,
2874 char *buf, size_t buf_len)
2875{
2876 const int portbuf_len = 6;
2877 OSMO_ASSERT(buf_len > portbuf_len);
2878 char *portbuf = buf + buf_len - portbuf_len;
2879 buf_len -= portbuf_len;
2880 if (osmo_sockaddr_to_strs(buf, buf_len,
2881 portbuf, portbuf_len,
2882 addr,
2883 NI_NUMERICHOST | NI_NUMERICSERV))
2884 return NULL;
2885
2886 char *pos = buf + strnlen(buf, buf_len-1);
2887 size_t len = buf_len - (pos - buf);
2888
2889 snprintf(pos, len, " port %s", portbuf);
2890 buf[buf_len-1] = '\0';
2891
2892 return buf;
2893}
2894
2895const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *addr)
2896{
2897 static char buf[256];
2898 const char *result = osmo_sockaddr_to_strb(addr, buf, sizeof(buf));
2899 if (! result)
2900 return "(invalid)";
2901 return result;
2902}
2903
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002904int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
2905 const struct osmo_sockaddr *b)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002906{
2907 if (a == b)
2908 return 0;
2909 if (!a)
2910 return -1;
2911 if (!b)
2912 return 1;
2913 if (a->l != b->l) {
2914 /* Lengths are not the same, but determine the order. Will
2915 * anyone ever sort a list by osmo_sockaddr though...? */
2916 int cmp = memcmp(&a->a, &b->a, (a->l < b->l)? a->l : b->l);
2917 if (cmp == 0) {
2918 if (a->l < b->l)
2919 return -1;
2920 else
2921 return 1;
2922 }
2923 return cmp;
2924 }
2925 return memcmp(&a->a, &b->a, a->l);
2926}
2927
Neels Hofmeyr9cfe0372015-11-16 14:52:05 +01002928void osmo_sockaddr_copy(struct osmo_sockaddr *dst,
2929 const struct osmo_sockaddr *src)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02002930{
2931 OSMO_ASSERT(src->l <= sizeof(dst->a));
2932 memcpy(&dst->a, &src->a, src->l);
2933 dst->l = src->l;
2934}