blob: fa9ad8bb7c3fe58aa4f395387fd0a3705f774b44 [file] [log] [blame]
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001/* Test the GTP hub */
2
3/* (C) 2015 by sysmocom s.f.m.c. GmbH
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr <nhofmeyr@sysmcom.de>
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
23#include <stdio.h>
24#include <string.h>
25#include <limits.h>
26#include <unistd.h>
27
28#include <osmocom/core/utils.h>
29#include <osmocom/core/msgb.h>
30#include <osmocom/core/application.h>
31
32#include <openbsc/debug.h>
33
34#include <openbsc/gtphub.h>
35#include <gtp.h>
36#include <gtpie.h>
37
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +010038#define ZERO_STRUCT(struct_pointer) memset(struct_pointer, '\0', \
39 sizeof(*(struct_pointer)))
Neels Hofmeyr43283a32015-11-10 22:07:04 +010040
41#define LVL2_ASSERT(exp) LVL2_ASSERT_R(exp, return 0)
42#define LVL2_ASSERT_R(exp, ret) \
43 if (!(exp)) { \
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +010044 fprintf(stderr, "LVL2 Assert failed %s %s:%d\n", #exp, \
45 __FILE__, __LINE__); \
Neels Hofmeyr43283a32015-11-10 22:07:04 +010046 osmo_generate_backtrace(); \
47 ret; \
48 }
49
Neels Hofmeyre6078bc2015-11-11 00:45:50 +010050/* Convenience makro, note: only within this C file. */
51#define LOG(label) \
Neels Hofmeyr39da7112015-11-24 13:31:06 +010052 { fprintf(stderr, "\n" label "\n"); \
Neels Hofmeyre6078bc2015-11-11 00:45:50 +010053 printf(label "\n"); }
54
Neels Hofmeyr9f796642015-09-24 17:32:30 +020055void gtphub_init(struct gtphub *hub);
Neels Hofmeyr21d08732015-11-20 00:08:28 +010056void gtphub_free(struct gtphub *hub);
Neels Hofmeyr9f796642015-09-24 17:32:30 +020057
58void *osmo_gtphub_ctx;
59
60/* TODO copied from libosmo-abis/src/subchan_demux.c, remove dup */
61static int llist_len(struct llist_head *head)
62{
63 struct llist_head *entry;
64 int i = 0;
65
66 llist_for_each(entry, head)
67 i++;
68
69 return i;
70}
71
72static void nr_mapping_free(struct expiring_item *e)
73{
74 struct nr_mapping *m = container_of(e, struct nr_mapping,
75 expiry_entry);
76 nr_mapping_del(m);
77 talloc_free(m);
78}
79
80static struct nr_mapping *nr_mapping_alloc(void)
81{
82 struct nr_mapping *m;
83 m = talloc(osmo_gtphub_ctx, struct nr_mapping);
84 nr_mapping_init(m);
85 m->expiry_entry.del_cb = nr_mapping_free;
86 return m;
87}
88
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +010089static struct nr_mapping *nr_map_have(struct nr_map *map, void *origin,
90 nr_t orig, time_t now)
Neels Hofmeyr9f796642015-09-24 17:32:30 +020091{
92 struct nr_mapping *mapping;
93
94 mapping = nr_map_get(map, origin, orig);
95 if (!mapping) {
96 mapping = nr_mapping_alloc();
97 mapping->origin = origin;
98 mapping->orig = orig;
99 nr_map_add(map, mapping, now);
100 }
101
102 return mapping;
103}
104
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100105static nr_t nr_map_verify(const struct nr_map *map, void *origin, nr_t orig,
106 nr_t expect_repl)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200107{
108 struct nr_mapping *m;
109 m = nr_map_get(map, origin, orig);
110
111 if (!m) {
112 printf("mapping not found for %p %d\n", origin, orig);
113 return 0;
114 }
115
116 if (m->repl != expect_repl) {
117 printf("mapping found, but nr mismatches: expect %d, got %d\n",
118 (int)expect_repl, (int)m->repl);
119 return 0;
120 }
121
122 return 1;
123}
124
125static int nr_map_verify_inv(const struct nr_map *map, nr_t repl,
126 void *expect_origin, nr_t expect_orig)
127{
128 struct nr_mapping *m;
129 m = nr_map_get_inv(map, repl);
130 if (!m) {
131 printf("mapping not found for %d\n", (int)repl);
132 return 0;
133 }
134
135 if (m->origin != expect_origin) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100136 printf("mapping found, but origin mismatches:"
137 " expect %p, got %p\n",
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200138 expect_origin, m->origin);
139 return 0;
140 }
141
142 if (m->orig != expect_orig) {
143 printf("mapping found, but nr mismatches: expect %d, got %d\n",
144 (int)expect_orig, (int)m->orig);
145 return 0;
146 }
147
148 return 1;
149}
150
151
152static void test_nr_map_basic(void)
153{
154 struct nr_pool _pool;
155 struct nr_pool *pool = &_pool;
156 struct nr_map _map;
157 struct nr_map *map = &_map;
158
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100159 nr_pool_init(pool, 1, 1000);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200160 nr_map_init(map, pool, NULL);
161
162 OSMO_ASSERT(llist_empty(&map->mappings));
163
164#define TEST_N_HALF 100
165#define TEST_N (2*TEST_N_HALF)
166#define TEST_I 123
167 uint32_t i, check_i;
168 uint32_t m[TEST_N];
169 struct nr_mapping *mapping;
170
171 /* create half of TEST_N mappings from one origin */
172 void *origin1 = (void*)0x1234;
173 for (i = 0; i < TEST_N_HALF; i++) {
174 nr_t orig = TEST_I + i;
175 mapping = nr_map_have(map, origin1, orig, 0);
176 m[i] = mapping->repl;
177 OSMO_ASSERT(m[i] != 0);
178 OSMO_ASSERT(llist_len(&map->mappings) == (i+1));
179 for (check_i = 0; check_i < i; check_i++)
180 OSMO_ASSERT(m[check_i] != m[i]);
181 }
182 OSMO_ASSERT(llist_len(&map->mappings) == TEST_N_HALF);
183
184 /* create another TEST_N mappings with the same original numbers, but
185 * from a different origin */
186 void *origin2 = (void*)0x5678;
187 for (i = 0; i < TEST_N_HALF; i++) {
188 int i2 = TEST_N_HALF + i;
189 nr_t orig = TEST_I + i;
190 mapping = nr_map_have(map, origin2, orig, 0);
191 m[i2] = mapping->repl;
192 OSMO_ASSERT(m[i2] != 0);
193 OSMO_ASSERT(llist_len(&map->mappings) == (i2+1));
194 for (check_i = 0; check_i < i2; check_i++)
195 OSMO_ASSERT(m[check_i] != m[i2]);
196 }
197 OSMO_ASSERT(llist_len(&map->mappings) == TEST_N);
198
199 /* verify mappings */
200 for (i = 0; i < TEST_N_HALF; i++) {
201 nr_t orig = TEST_I + i;
202 {
203 OSMO_ASSERT(nr_map_verify(map, origin1, orig, m[i]));
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100204 OSMO_ASSERT(nr_map_verify_inv(map, m[i], origin1,
205 orig));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200206 }
207 {
208 int i2 = TEST_N_HALF + i;
209 OSMO_ASSERT(nr_map_verify(map, origin2, orig, m[i2]));
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100210 OSMO_ASSERT(nr_map_verify_inv(map, m[i2], origin2,
211 orig));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200212 }
213 }
214
215 /* remove all mappings */
216 for (i = 0; i < TEST_N_HALF; i++) {
217 OSMO_ASSERT(llist_len(&map->mappings) == (TEST_N - 2*i));
218
219 nr_t orig = TEST_I + i;
220 nr_mapping_del(nr_map_get(map, origin1, orig));
221 nr_mapping_del(nr_map_get(map, origin2, orig));
222 }
223 OSMO_ASSERT(llist_empty(&map->mappings));
224#undef TEST_N
225#undef TEST_I
226}
227
228static int nr_map_is(struct nr_map *map, const char *str)
229{
230 static char buf[4096];
231 char *pos = buf;
232 size_t len = sizeof(buf);
233 struct nr_mapping *m;
234 llist_for_each_entry(m, &map->mappings, entry) {
Neels Hofmeyr767804d2015-11-17 14:24:46 +0100235 size_t wrote = snprintf(pos, len, "(%u->%u@%d), ",
236 m->orig,
237 m->repl,
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200238 (int)m->expiry_entry.expiry);
239 OSMO_ASSERT(wrote < len);
240 pos += wrote;
241 len -= wrote;
242 }
243 *pos = '\0';
244
245 if (strncmp(buf, str, sizeof(buf)) != 0) {
246 printf("FAILURE: nr_map_is() mismatches expected value:\n"
247 "expected: \"%s\"\n"
248 "is: \"%s\"\n",
249 str, buf);
250 return 0;
251 }
252 return 1;
253}
254
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100255static int test_nr_map_wrap_with(nr_t nr_min, nr_t nr_max, nr_t repl_last,
256 nr_t orig_start, int orig_n,
257 const char *expect)
258{
259 struct nr_pool _pool;
260 struct nr_pool *pool = &_pool;
261 struct nr_map _map;
262 struct nr_map *map = &_map;
263
264 nr_pool_init(pool, nr_min, nr_max);
265 nr_map_init(map, pool, NULL);
266
267 pool->last_nr = repl_last;
268
269 void *origin = (void*)0x1234;
270
271 int i;
272 for (i = 0; i < orig_n; i++)
273 LVL2_ASSERT(nr_map_have(map, origin, orig_start + i, 0));
274
275 LVL2_ASSERT(nr_map_is(map, expect));
276
277 nr_map_clear(map);
278 return 1;
279}
280
281static void test_nr_map_wrap(void)
282{
283 OSMO_ASSERT(test_nr_map_wrap_with(
284 0, UINT_MAX, UINT_MAX - 2,
285 1, 5,
286 "(1->4294967294@0), "
287 "(2->4294967295@0), "
288 "(3->0@0), "
289 "(4->1@0), "
290 "(5->2@0), "
291 ));
292 OSMO_ASSERT(test_nr_map_wrap_with(
293 5, 10, 8,
294 1, 5,
295 "(1->9@0), (2->10@0), (3->5@0), (4->6@0), (5->7@0), "
296 ));
297}
298
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200299static void test_expiry(void)
300{
301 struct expiry expiry;
302 struct nr_pool pool;
303 struct nr_map map;
304 int i;
305
306 expiry_init(&expiry, 30);
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +0100307 nr_pool_init(&pool, 1, 1000);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200308 nr_map_init(&map, &pool, &expiry);
309 OSMO_ASSERT(nr_map_is(&map, ""));
310
311 /* tick on empty map */
312 OSMO_ASSERT(expiry_tick(&expiry, 10000) == 0);
313 OSMO_ASSERT(nr_map_is(&map, ""));
314
315#define MAP1 \
316 "(10->1@10040), " \
317 ""
318
319#define MAP2 \
320 "(20->2@10050), " \
321 "(21->3@10051), " \
322 "(22->4@10052), " \
323 "(23->5@10053), " \
324 "(24->6@10054), " \
325 "(25->7@10055), " \
326 "(26->8@10056), " \
327 "(27->9@10057), " \
328 ""
329
330#define MAP3 \
331 "(420->10@10072), " \
332 "(421->11@10072), " \
333 "(422->12@10072), " \
334 "(423->13@10072), " \
335 "(424->14@10072), " \
336 "(425->15@10072), " \
337 "(426->16@10072), " \
338 "(427->17@10072), " \
339 ""
340
341 /* add mapping at time 10010. */
342 nr_map_have(&map, 0, 10, 10010);
343 OSMO_ASSERT(nr_map_is(&map, MAP1));
344
345 /* tick on unexpired item. */
346 OSMO_ASSERT(expiry_tick(&expiry, 10010) == 0);
347 OSMO_ASSERT(expiry_tick(&expiry, 10011) == 0);
348 OSMO_ASSERT(nr_map_is(&map, MAP1));
349
350 /* Spread mappings at 10020, 10021, ... 10027. */
351 for (i = 0; i < 8; i++)
352 nr_map_have(&map, 0, 20 + i, 10020 + i);
353 OSMO_ASSERT(nr_map_is(&map, MAP1 MAP2));
354
355 /* tick on unexpired items. */
356 OSMO_ASSERT(expiry_tick(&expiry, 10030) == 0);
357 OSMO_ASSERT(expiry_tick(&expiry, 10039) == 0);
358 OSMO_ASSERT(nr_map_is(&map, MAP1 MAP2));
359
360 /* expire the first item (from 10010). */
361 OSMO_ASSERT(expiry_tick(&expiry, 10010 + 30) == 1);
362 OSMO_ASSERT(nr_map_is(&map, MAP2));
363
364 /* again nothing to expire */
365 OSMO_ASSERT(expiry_tick(&expiry, 10041) == 0);
366 OSMO_ASSERT(nr_map_is(&map, MAP2));
367
368 /* Mappings all at the same time. */
369 for (i = 0; i < 8; i++)
370 nr_map_have(&map, 0, 420 + i, 10042);
371 OSMO_ASSERT(nr_map_is(&map, MAP2 MAP3));
372
373 /* Eight to expire, were added further above to be chronologically
374 * correct, at 10020..10027. */
375 OSMO_ASSERT(expiry_tick(&expiry, 10027 + 30) == 8);
376 OSMO_ASSERT(nr_map_is(&map, MAP3));
377
378 /* again nothing to expire */
379 OSMO_ASSERT(expiry_tick(&expiry, 10027 + 30) == 0);
380 OSMO_ASSERT(nr_map_is(&map, MAP3));
381
382 /* Eight to expire, from 10042. Now at 10042 + 30: */
383 OSMO_ASSERT(expiry_tick(&expiry, 10042 + 30) == 8);
384 OSMO_ASSERT(nr_map_is(&map, ""));
385
386#undef MAP1
387#undef MAP2
388#undef MAP3
389}
390
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100391char resolve_ggsn_got_imsi[GSM_IMSI_LENGTH];
392char resolve_ggsn_got_ni[GSM_APN_LENGTH];
393
394struct osmo_sockaddr resolved_ggsn_addr;
395static int resolve_to_ggsn(const char *addr, uint16_t port)
396{
397 LVL2_ASSERT(osmo_sockaddr_init_udp(&resolved_ggsn_addr,
398 addr, port)
399 == 0);
400 return 1;
401}
402
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100403struct osmo_sockaddr resolved_sgsn_addr;
404static int resolve_to_sgsn(const char *addr, uint16_t port)
405{
406 LVL2_ASSERT(osmo_sockaddr_init_udp(&resolved_sgsn_addr,
407 addr, port)
408 == 0);
409 return 1;
410}
411
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100412struct osmo_sockaddr sgsn_sender;
413static int send_from_sgsn(const char *addr, uint16_t port)
414{
415 LVL2_ASSERT(osmo_sockaddr_init_udp(&sgsn_sender,
416 addr, port)
417 == 0);
418 return 1;
419}
420
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100421struct osmo_sockaddr ggsn_sender;
422static int send_from_ggsn(const char *addr, uint16_t port)
423{
424 LVL2_ASSERT(osmo_sockaddr_init_udp(&ggsn_sender,
425 addr, port)
426 == 0);
427 return 1;
428}
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200429
430
431/* override, requires '-Wl,--wrap=gtphub_resolve_ggsn_addr' */
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100432struct gtphub_peer_port *__real_gtphub_resolve_ggsn_addr(struct gtphub *hub,
433 const char *imsi_str,
434 const char *apn_ni_str);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200435
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100436struct gtphub_peer_port *__wrap_gtphub_resolve_ggsn_addr(struct gtphub *hub,
437 const char *imsi_str,
438 const char *apn_ni_str)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200439{
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100440 struct gsn_addr resolved_gsna;
441 uint16_t resolved_port;
442
443 OSMO_ASSERT(gsn_addr_from_sockaddr(&resolved_gsna, &resolved_port,
444 &resolved_ggsn_addr) == 0);
445
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100446 struct gtphub_peer_port *pp;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100447 pp = gtphub_port_have(hub, &hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100448 &resolved_gsna, resolved_port);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100449 printf("- __wrap_gtphub_resolve_ggsn_addr():\n"
450 " returning GGSN addr from imsi %s ni %s: %s\n",
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100451 imsi_str, apn_ni_str, gtphub_port_str(pp));
452
453 if (imsi_str) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100454 strncpy(resolve_ggsn_got_imsi, imsi_str,
455 sizeof(resolve_ggsn_got_imsi));
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100456 resolve_ggsn_got_imsi[sizeof(resolve_ggsn_got_imsi) - 1] = '\0';
457 }
458 else
459 strcpy(resolve_ggsn_got_imsi, "(null)");
460
461 if (apn_ni_str) {
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100462 strncpy(resolve_ggsn_got_ni, apn_ni_str,
463 sizeof(resolve_ggsn_got_ni));
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100464 resolve_ggsn_got_ni[sizeof(resolve_ggsn_got_ni) - 1] = '\0';
465 }
466 else
467 strcpy(resolve_ggsn_got_ni, "(null)");
468
469 return pp;
470}
471
472#define was_resolved_for(IMSI,NI) _was_resolved_for(IMSI, NI, __FILE__, __LINE__)
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100473static int _was_resolved_for(const char *imsi, const char *ni, const char
474 *file, int line)
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100475{
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100476 int cmp0 = strncmp(imsi, resolve_ggsn_got_imsi,
477 sizeof(resolve_ggsn_got_imsi));
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100478
479 if (cmp0 != 0) {
480 printf("\n%s:%d: was_resolved_for(): MISMATCH for IMSI\n"
481 " expecting: '%s'\n"
482 " got: '%s'\n\n",
483 file,
484 line,
485 imsi, resolve_ggsn_got_imsi);
486 }
487
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100488 int cmp1 = strncmp(ni, resolve_ggsn_got_ni,
489 sizeof(resolve_ggsn_got_ni));
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100490 if (cmp1 != 0) {
491 printf("\n%s:%d: was_resolved_for(): MISMATCH for NI\n"
492 " expecting: '%s'\n"
493 " got: '%s'\n\n",
494 file,
495 line,
496 ni, resolve_ggsn_got_ni);
497 }
498
499 return (cmp0 == 0) && (cmp1 == 0);
500}
501
502/* override, requires '-Wl,--wrap=gtphub_ares_init' */
503int __real_gtphub_ares_init(struct gtphub *hub);
504
505int __wrap_gtphub_ares_init(struct gtphub *hub)
506{
507 /* Do nothing. */
508 return 0;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200509}
510
Neels Hofmeyrf6fe2122015-12-02 15:43:10 +0100511/* override, requires '-Wl,--wrap=gtphub_write' */
512int __real_gtphub_write(const struct osmo_fd *to,
513 const struct osmo_sockaddr *to_addr,
514 const uint8_t *buf, size_t buf_len);
515
516int __wrap_gtphub_write(const struct osmo_fd *to,
517 const struct osmo_sockaddr *to_addr,
518 const uint8_t *buf, size_t buf_len)
519{
520 printf("Out-of-band gtphub_write(%d):\n"
521 "to %s\n"
522 "%s\n",
523 (int)buf_len,
524 osmo_sockaddr_to_str(to_addr),
525 osmo_hexdump(buf, buf_len));
526 return 0;
527}
528
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200529#define buf_len 1024
530static uint8_t buf[buf_len];
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100531static uint8_t *reply_buf;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200532
533static unsigned int msg(const char *hex)
534{
535 unsigned int l = osmo_hexparse(hex, buf, buf_len);
536 OSMO_ASSERT(l > 0);
537 return l;
538}
539
540/* Compare static buf to given string constant. The amount of bytes is obtained
541 * from parsing the GTP header in buf. hex must match an osmo_hexdump() of the
542 * desired message. Return 1 if size and content match. */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100543#define reply_is(MSG) _reply_is(MSG, __FILE__, __LINE__)
544static int _reply_is(const char *hex, const char *file, int line)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200545{
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100546 struct gtp1_header_long *h = (void*)reply_buf;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200547 int len = ntoh16(h->length) + 8;
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100548 const char *dump = osmo_hexdump_nospc(reply_buf, len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200549 int cmp = strcmp(dump, hex);
550
551 if (cmp != 0) {
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100552 printf("\n%s:%d: reply_is(): MISMATCH\n"
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200553 " expecting:\n'%s'\n"
554 " got:\n'%s'\n\n",
555 file,
556 line,
557 hex, dump);
558 int i;
559 int l = strlen(hex);
560 int m = strlen(dump);
561 if (m < l)
562 l = m;
563 for (i = 0; i < l; i++) {
564 if (hex[i] != dump[i]) {
565 printf("First mismatch at position %d:\n"
566 " %s\n %s\n", i, hex + i, dump + i);
567 break;
568 }
569 }
570 }
571 return cmp == 0;
572}
573
574#define same_addr(GOT, EXPECTED) _same_addr((GOT),(EXPECTED), __FILE__, __LINE__)
575static int _same_addr(const struct osmo_sockaddr *got,
576 const struct osmo_sockaddr *expected,
577 const char *file, int line)
578{
579 int cmp = osmo_sockaddr_cmp(got, expected);
580 if (!cmp)
581 return 1;
582 char buf[256];
583 printf("\n%s:%d: addr_is(): MISMATCH\n"
584 " expecting: '%s'\n"
585 " got: '%s'\n\n",
586 file, line,
587 osmo_sockaddr_to_str(expected),
588 osmo_sockaddr_to_strb(got, buf, sizeof(buf)));
589 return 0;
590}
591
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100592
593time_t now;
594static struct gtphub _hub;
595static struct gtphub *hub = &_hub;
596
597static int setup_test_hub()
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200598{
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100599 /* Not really needed, but to make 100% sure... */
600 ZERO_STRUCT(hub);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200601
602 gtphub_init(hub);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100603
604 /* Tell this mock gtphub its local address for this test. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100605 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100606 "127.0.1.1") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100607 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100608 "127.0.1.2") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100609 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100610 "127.0.2.1") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100611 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100612 "127.0.2.2") == 0);
613
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100614 hub->restart_counter = 0x23;
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100615 now = 345;
616 LVL2_ASSERT(send_from_sgsn("192.168.42.23", 423));
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100617 LVL2_ASSERT(resolve_to_ggsn("192.168.43.34", 2123));
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100618 LVL2_ASSERT(send_from_ggsn("192.168.43.34", 434));
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100619 LVL2_ASSERT(resolve_to_sgsn("192.168.42.23", 2123));
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100620
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100621#define GGSNS_CTRL_FD 1
622#define GGSNS_USER_FD 2
623#define SGSNS_CTRL_FD 3
624#define SGSNS_USER_FD 4
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100625 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].ofd.priv_nr = GGSNS_CTRL_FD;
626 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].ofd.priv_nr = GGSNS_USER_FD;
627 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].ofd.priv_nr = SGSNS_CTRL_FD;
628 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].ofd.priv_nr = SGSNS_USER_FD;
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100629
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100630 return 1;
631}
632
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100633static int clear_test_hub()
634{
635 /* expire all */
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100636 gtphub_gc(hub, now + (60 * GTPH_EXPIRE_SLOWLY_MINUTES) + 1);
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100637
638 int plane_idx;
639 plane_idx = GTPH_PLANE_CTRL;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100640 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_GGSN][plane_idx].peers));
641 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_SGSN][plane_idx].peers));
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100642 plane_idx = GTPH_PLANE_USER;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100643 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_GGSN][plane_idx].peers));
644 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_SGSN][plane_idx].peers));
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100645
Neels Hofmeyr0fa507a2015-12-02 01:15:30 +0100646 LVL2_ASSERT(llist_empty(&hub->tunnels));
647 LVL2_ASSERT(llist_empty(&hub->pending_deletes));
648 LVL2_ASSERT(llist_empty(&hub->ggsn_lookups));
649 LVL2_ASSERT(llist_empty(&hub->resolved_ggsns));
650
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100651 gtphub_free(hub);
652 return 1;
653}
654
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100655static int tunnels_are(const char *expect)
656{
657 static char buf[4096];
658 char *pos = buf;
659 size_t len = sizeof(buf);
660 struct gtphub_tunnel *t;
661 llist_for_each_entry(t, &hub->tunnels, entry) {
662 size_t wrote = snprintf(pos, len, "%s @%d\n",
663 gtphub_tunnel_str(t),
664 (int)t->expiry_entry.expiry);
665 LVL2_ASSERT(wrote < len);
666 pos += wrote;
667 len -= wrote;
668 }
669 *pos = '\0';
670
671 if (strncmp(buf, expect, sizeof(buf)) != 0) {
672 fprintf(stderr, "FAILURE: tunnels_are() mismatches expected value:\n"
673 "EXPECTED:\n%s\n"
674 "IS:\n%s\n",
675 expect, buf);
676 LVL2_ASSERT("tunnels do not match expected listing.");
677 return 0;
678 }
679 return 1;
680}
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100681
682static void test_echo(void)
683{
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100684 LOG("test_echo");
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100685 OSMO_ASSERT(setup_test_hub());
686
687 now = 123;
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100688
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100689 struct osmo_fd *to_ofd;
690 struct osmo_sockaddr to_addr;
691 struct gtphub_peer_port *pp;
692 int send;
693
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200694 const char *gtp_ping_from_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100695 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200696 "01" /* type 01: Echo request */
697 "0004" /* length of 4 after header TEI */
698 "00000000" /* header TEI == 0 in Echo */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100699 "abcd" /* some 2 octet sequence nr */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200700 "0000" /* N-PDU 0, no extension header (why is this here?) */
701 ;
702
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100703 const char *gtp_pong_to_sgsn =
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200704 "32"
705 "02" /* type 02: Echo response */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100706 "0006" /* length of 6 after header TEI */
707 "00000000" /* header TEI == 0 in Echo */
708 "abcd" /* same sequence nr */
709 "0000"
710 "0e23" /* Recovery with restart counter */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200711 ;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200712
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100713 to_ofd = NULL;
714 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100715 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, GTPH_PLANE_CTRL,
716 &sgsn_sender, buf, msg(gtp_ping_from_sgsn),
717 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200718 OSMO_ASSERT(send > 0);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100719 OSMO_ASSERT(to_addr.l);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100720 OSMO_ASSERT(same_addr(&to_addr, &sgsn_sender));
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100721 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == SGSNS_CTRL_FD));
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100722 OSMO_ASSERT(reply_is(gtp_pong_to_sgsn));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200723
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100724 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100725 &sgsn_sender);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100726 /* We don't record Echo peers. */
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100727 OSMO_ASSERT(!pp);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100728
729 const char *gtp_ping_from_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100730 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100731 "01" /* type 01: Echo request */
732 "0004" /* length of 4 after header TEI */
733 "00000000" /* header TEI == 0 in Echo */
734 "cdef" /* some 2 octet sequence nr */
735 "0000" /* N-PDU 0, no extension header (why is this here?) */
736 ;
737
738 const char *gtp_pong_to_ggsn =
739 "32"
740 "02" /* type 02: Echo response */
741 "0006" /* length of 6 after header TEI */
742 "00000000" /* header TEI == 0 in Echo */
743 "cdef" /* same sequence nr */
744 "0000"
745 "0e23" /* Recovery with restart counter */
746 ;
747
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100748 to_ofd = NULL;
749 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100750 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, GTPH_PLANE_CTRL,
751 &ggsn_sender, buf, msg(gtp_ping_from_ggsn),
752 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200753 OSMO_ASSERT(send > 0);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100754 OSMO_ASSERT(same_addr(&to_addr, &ggsn_sender));
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100755 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == GGSNS_CTRL_FD));
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100756 OSMO_ASSERT(reply_is(gtp_pong_to_ggsn));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200757
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100758 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100759 &sgsn_sender);
760 OSMO_ASSERT(!pp);
761
762
763 /* And all the same on the user plane. */
764
765 to_ofd = NULL;
766 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100767 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, GTPH_PLANE_USER,
768 &sgsn_sender, buf, msg(gtp_ping_from_sgsn),
769 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100770 OSMO_ASSERT(send > 0);
771 OSMO_ASSERT(to_addr.l);
772 OSMO_ASSERT(same_addr(&to_addr, &sgsn_sender));
773 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == SGSNS_USER_FD));
774 OSMO_ASSERT(reply_is(gtp_pong_to_sgsn));
775
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100776 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100777 &sgsn_sender);
778 OSMO_ASSERT(!pp);
779
780 to_ofd = NULL;
781 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100782 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, GTPH_PLANE_USER,
783 &ggsn_sender, buf, msg(gtp_ping_from_ggsn),
784 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100785 OSMO_ASSERT(send > 0);
786 OSMO_ASSERT(same_addr(&to_addr, &ggsn_sender));
787 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == GGSNS_USER_FD));
788 OSMO_ASSERT(reply_is(gtp_pong_to_ggsn));
789
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100790 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100791 &sgsn_sender);
792 OSMO_ASSERT(!pp);
793
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200794
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100795 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100796}
797
798
799#define MSG_PDP_CTX_REQ(len, seq, restart, imsi, tei_u, tei_c, apn, gsn_c, gsn_u) \
800 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
801 "10" /* type 16: Create PDP Context Request */ \
802 len /* msg length = 8 + len (2 octets) */ \
803 "00000000" /* No TEI yet */ \
804 seq /* Sequence nr (2 octets) */ \
805 "00" /* N-PDU 0 */ \
806 "00" /* No extensions */ \
807 /* IEs */ \
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100808 "0e" restart /* 14: Recovery (restart counter: 1 octet) */ \
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100809 "02" /* 2 = IMSI */ \
810 imsi /* (8 octets) */ \
811 "0f01" /* 15: Selection mode = MS provided APN, subscription not verified*/ \
812 "10" /* 16: TEI Data I */ \
813 tei_u /* (4 octets) */ \
814 "11" /* 17: TEI Control Plane */ \
815 tei_c /* (4 octets) */ \
816 "1400" /* 20: NSAPI = 0*/ \
817 "1a" /* 26: Charging Characteristics */ \
818 "0800" \
819 "80" /* 128: End User Address */ \
820 "0002" /* length = 2: empty PDP Address */ \
821 "f121" /* spare 0xf0, PDP organization 1, PDP type number 0x21 = 33 */ \
822 "83" /* 131: Access Point Name */ \
823 apn /* (2 octets length, N octets encoded APN-NI) */ \
824 "84" /* 132: Protocol Configuration Options */ \
825 "0015" /* length = 21 */ \
826 "80c0231101010011036d69670868656d6d656c6967" \
827 "85" /* 133: GSN Address */ \
828 gsn_c /* (2 octets length, N octets addr) */ \
829 "85" /* 133: GSN Address (second entry) */ \
830 gsn_u /* (2 octets length, N octets addr) */ \
831 "86" /* 134: MS International PSTN/ISDN Number (MSISDN) */ \
832 "0007" /* length */ \
833 "916407123254f6" /* 1946702123456(f) */ \
834 "87" /* 135: Quality of Service (QoS) Profile */ \
835 "0004" /* length */ \
836 "00" /* priority */ \
837 "0b921f" /* QoS profile data */
838
839#define MSG_PDP_CTX_RSP(len, tei_h, seq, restart, tei_u, tei_c, gsn_c, gsn_u) \
840 "32" \
841 "11" /* Create PDP Context Response */ \
842 len /* msg length = 8 + len (2 octets) */ \
843 tei_h /* destination TEI (sent in req above) */ \
844 seq /* mapped seq */ \
845 "00" "00" \
846 /* IEs */ \
847 "01" /* 1: Cause */ \
848 "80" /* value = 0b10000000 = response, no rejection. */ \
849 "08" /* 8: Reordering Required */ \
850 "00" /* not required. */ \
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100851 "0e" restart /* 14: Recovery */ \
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100852 "10" /* 16: TEI Data I */ \
853 tei_u \
854 "11" /* 17: TEI Control */ \
855 tei_c \
856 "7f" /* 127: Charging ID */ \
857 "00000001" \
858 "80" /* 128: End User Address */ \
859 "0006" /* length = 6 */ \
860 "f121" /* spare 0xf0, PDP organization 1, PDP type number 0x21 = 33 */ \
861 "7f000002" \
862 "84" /* 132: Protocol Configuration Options */ \
863 "0014" /* len = 20 */ \
864 "8080211002000010810608080808830600000000" \
865 "85" /* 133: GSN Address (Ctrl) */ \
866 gsn_c \
867 "85" /* 133: GSN Address (User) */ \
868 gsn_u \
869 "87" /* 135: Quality of Service (QoS) Profile */ \
870 "0004" /* length */ \
871 "00" /* priority */ \
872 "0b921f" /* QoS profile data */
873
874#define msg_from_sgsn_c(A,B,C,D) msg_from_sgsn(GTPH_PLANE_CTRL, A,B,C,D)
875#define msg_from_sgsn_u(A,B,C,D) msg_from_sgsn(GTPH_PLANE_USER, A,B,C,D)
876static int msg_from_sgsn(int plane_idx,
877 struct osmo_sockaddr *_sgsn_sender,
878 struct osmo_sockaddr *ggsn_receiver,
879 const char *hex_from_sgsn,
880 const char *hex_to_ggsn)
881{
882 struct osmo_fd *ggsn_ofd = NULL;
883 struct osmo_sockaddr ggsn_addr;
884 int send;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100885 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, _sgsn_sender,
886 buf, msg(hex_from_sgsn), now,
887 &reply_buf, &ggsn_ofd, &ggsn_addr);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100888 LVL2_ASSERT(send > 0);
889 LVL2_ASSERT(same_addr(&ggsn_addr, ggsn_receiver));
890 LVL2_ASSERT(reply_is(hex_to_ggsn));
891 return 1;
892}
893
894#define msg_from_ggsn_c(A,B,C,D) msg_from_ggsn(GTPH_PLANE_CTRL, A,B,C,D)
895#define msg_from_ggsn_u(A,B,C,D) msg_from_ggsn(GTPH_PLANE_USER, A,B,C,D)
896static int msg_from_ggsn(int plane_idx,
897 struct osmo_sockaddr *ggsn_sender,
898 struct osmo_sockaddr *sgsn_receiver,
899 const char *msg_from_ggsn,
900 const char *msg_to_sgsn)
901{
902 struct osmo_fd *sgsn_ofd;
903 struct osmo_sockaddr sgsn_addr;
904 int send;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100905 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, ggsn_sender,
906 buf, msg(msg_from_ggsn), now,
907 &reply_buf, &sgsn_ofd, &sgsn_addr);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100908 LVL2_ASSERT(send > 0);
909 LVL2_ASSERT(same_addr(&sgsn_addr, sgsn_receiver));
910 LVL2_ASSERT(reply_is(msg_to_sgsn));
911 return 1;
912}
913
914static int create_pdp_ctx()
915{
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100916 const char *gtp_req_from_sgsn =
917 MSG_PDP_CTX_REQ("0068",
918 "abcd",
919 "60",
920 "42000121436587f9",
921 "00000123",
922 "00000321",
923 "0009""08696e7465726e6574", /* "(8)internet" */
924 "0004""c0a82a17", /* same as default sgsn_sender */
925 "0004""c0a82a17"
926 );
927 const char *gtp_req_to_ggsn =
928 MSG_PDP_CTX_REQ("0068",
929 "6d31", /* mapped seq ("abcd") */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100930 "23",
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100931 "42000121436587f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +0100932 "00000001", /* Data I: tunnel's TEI */
933 "00000001", /* Control: tunnel's TEI */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100934 "0009""08696e7465726e6574",
935 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
936 "0004""7f000202" /* replaced with gtphub's ggsn user */
937 );
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100938
939 LVL2_ASSERT(msg_from_sgsn_c(&sgsn_sender,
940 &resolved_ggsn_addr,
941 gtp_req_from_sgsn,
942 gtp_req_to_ggsn));
943 LVL2_ASSERT(was_resolved_for("240010123456789", "internet"));
944
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100945 LVL2_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +0100946 "TEI=1:"
947 " 192.168.42.23 (TEI C=321 U=123)"
948 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100949 " @21945\n"));
950
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100951 const char *gtp_resp_from_ggsn =
952 MSG_PDP_CTX_RSP("004e",
953 "00000001", /* destination TEI (sent in req above) */
954 "6d31", /* mapped seq */
955 "01", /* restart */
956 "00000567", /* TEI U */
957 "00000765", /* TEI C */
958 "0004""c0a82b22", /* GSN addresses */
959 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
960 );
961 const char *gtp_resp_to_sgsn =
962 MSG_PDP_CTX_RSP("004e",
963 "00000321", /* unmapped TEI ("001") */
964 "abcd", /* unmapped seq ("6d31") */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100965 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +0100966 "00000001", /* mapped TEI from GGSN ("567") */
967 "00000001", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100968 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
969 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
970 );
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100971 /* The response should go back to whichever port the request came from
972 * (unmapped by sequence nr) */
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100973 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
974 &sgsn_sender,
975 gtp_resp_from_ggsn,
976 gtp_resp_to_sgsn));
977
978 return 1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200979}
980
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +0100981#define MSG_DEL_PDP_CTX_REQ(tei, seq) \
982 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
983 "14" /* type 20: Delete PDP Context Request */ \
984 "0008" /* msg length = 8 + len (2 octets) */ \
985 tei /* TEI Ctrl */ \
986 seq /* Sequence nr (2 octets) */ \
987 "00" /* N-PDU 0 */ \
988 "00" /* No extensions */ \
989 /* IEs */ \
990 "13fe" /* 19: Teardown ind = 0 */ \
991 "1400" /* 20: NSAPI = 0*/ \
992
993#define MSG_DEL_PDP_CTX_RSP(tei, seq) \
994 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
995 "15" /* type 21: Delete PDP Context Response */ \
996 "0006" /* msg length = 8 + len (2 octets) */ \
997 tei /* TEI Ctrl */ \
998 seq /* Sequence nr (2 octets) */ \
999 "00" /* N-PDU 0 */ \
1000 "00" /* No extensions */ \
1001 /* IEs */ \
1002 "01" /* 1: Cause */ \
1003 "80" /* value = 0b10000000 = response, no rejection. */ \
1004
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001005static int delete_pdp_ctx_from_sgsn(void)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001006{
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001007 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
1008 gtphub_gc(hub, now);
1009
1010 LVL2_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001011 "TEI=1:"
1012 " 192.168.42.23 (TEI C=321 U=123)"
1013 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001014 " @21945\n"));
1015
1016 /* TEI Ctrl from above and next sequence after abcd. */
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001017 const char *gtp_req_from_sgsn = MSG_DEL_PDP_CTX_REQ("00000001", "abce");
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001018 const char *gtp_req_to_ggsn = MSG_DEL_PDP_CTX_REQ("00000765", "6d32");
1019
1020 LVL2_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1021 &resolved_ggsn_addr,
1022 gtp_req_from_sgsn,
1023 gtp_req_to_ggsn));
1024
1025 /* 21945 + 31 = 21976 */
1026 LVL2_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001027 "TEI=1:"
1028 " 192.168.42.23 (TEI C=321 U=123)"
1029 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001030 " @21976\n"));
1031
1032 const char *gtp_resp_from_ggsn =
1033 MSG_DEL_PDP_CTX_RSP("00000001", "6d32");
1034 const char *gtp_resp_to_sgsn =
1035 MSG_DEL_PDP_CTX_RSP("00000321", "abce");
1036
1037 /* The response should go back to whichever port the request came from
1038 * (unmapped by sequence nr) */
1039 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1040 &sgsn_sender,
1041 gtp_resp_from_ggsn,
1042 gtp_resp_to_sgsn));
1043
1044 LVL2_ASSERT(tunnels_are(""));
1045
1046 return 1;
1047}
1048
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001049static int delete_pdp_ctx_from_ggsn(void)
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001050{
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001051 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
1052 gtphub_gc(hub, now);
1053
1054 LVL2_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001055 "TEI=1:"
1056 " 192.168.42.23 (TEI C=321 U=123)"
1057 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001058 " @21945\n"));
1059
1060 /* TEI Ctrl from above and next sequence after abcd. */
1061 const char *gtp_req_from_ggsn = MSG_DEL_PDP_CTX_REQ("00000001", "5432");
1062 const char *gtp_req_to_sgsn = MSG_DEL_PDP_CTX_REQ("00000321", "6d31");
1063
1064 LVL2_ASSERT(msg_from_ggsn_c(&ggsn_sender,
1065 &resolved_sgsn_addr,
1066 gtp_req_from_ggsn,
1067 gtp_req_to_sgsn));
1068
1069 /* 21945 + 31 = 21976 */
1070 LVL2_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001071 "TEI=1:"
1072 " 192.168.42.23 (TEI C=321 U=123)"
1073 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001074 " @21976\n"));
1075
1076 const char *gtp_resp_from_sgsn =
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001077 MSG_DEL_PDP_CTX_RSP("00000001", "6d31");
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001078 const char *gtp_resp_to_ggsn =
1079 MSG_DEL_PDP_CTX_RSP("00000765", "5432");
1080
1081 /* The response should go back to whichever port the request came from
1082 * (unmapped by sequence nr) */
1083 LVL2_ASSERT(msg_from_sgsn_c(&resolved_sgsn_addr,
1084 &ggsn_sender,
1085 gtp_resp_from_sgsn,
1086 gtp_resp_to_ggsn));
1087
1088 LVL2_ASSERT(tunnels_are(""));
1089
1090 return 1;
1091}
1092
1093static void test_one_pdp_ctx(int del_from_side)
1094{
1095 if (del_from_side == GTPH_SIDE_SGSN)
1096 LOG("test_one_pdp_ctx (del from SGSN)")
1097 else LOG("test_one_pdp_ctx (del from GGSN)");
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001098 OSMO_ASSERT(setup_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001099
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001100 OSMO_ASSERT(create_pdp_ctx());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001101
1102 struct gtphub_peer_port *ggsn_port =
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001103 gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001104 &resolved_ggsn_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001105 OSMO_ASSERT(ggsn_port);
1106 struct gtphub_peer *ggsn = ggsn_port->peer_addr->peer;
1107 /* now == 345; now + 30 == 375.
1108 * seq mapping from above:
1109 * 0xabcd == 43981 (sent in the packet)
1110 * 0x6d31 == 27953 (harcoded seq mapping start val) */
1111 OSMO_ASSERT(nr_map_is(&ggsn->seq_map, "(43981->27953@375), "));
1112
1113 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945.
1114 * 0x00000321 == 801 (TEI from SGSN Ctrl)
1115 * 0x00000123 == 291 (TEI from SGSN User)
1116 * 0x00000765 == 1893 (TEI from GGSN Ctrl)
1117 * 0x00000567 == 1383 (TEI from GGSN User)
1118 * Mapped TEIs should be 1 and 2. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001119 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001120 "TEI=1:"
1121 " 192.168.42.23 (TEI C=321 U=123)"
1122 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001123 " @21945\n"));
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001124
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001125 if (del_from_side == GTPH_SIDE_SGSN) {
1126 OSMO_ASSERT(delete_pdp_ctx_from_sgsn());
1127 } else {
1128 OSMO_ASSERT(delete_pdp_ctx_from_ggsn());
1129 }
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001130 OSMO_ASSERT(tunnels_are(""));
1131
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001132 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001133}
1134
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001135static void test_user_data(void)
1136{
1137 LOG("test_user_data");
1138
1139 OSMO_ASSERT(setup_test_hub());
1140
1141 OSMO_ASSERT(create_pdp_ctx());
1142
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001143 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945. */
1144 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001145 "TEI=1:"
1146 " 192.168.42.23 (TEI C=321 U=123)"
1147 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001148 " @21945\n"));
1149
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001150 LOG("- user data starts");
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001151 /* Now expect default port numbers for User plane. */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001152 resolve_to_ggsn("192.168.43.34", 2152);
1153 resolve_to_sgsn("192.168.42.23", 2152);
1154
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001155 /* 10 minutes later */
1156 now += 600;
1157
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001158 const char *u_from_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001159 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001160 "ff" /* type 255: G-PDU */
1161 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001162 "00000001" /* mapped TEI for SGSN from create_pdp_ctx() */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001163 "0070" /* seq */
1164 "0000" /* No extensions */
1165 /* User data (ICMP packet), 96 - 12 = 84 octets */
1166 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1167 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1168 "202122232425262728292a2b2c2d2e2f3031323334353637"
1169 ;
1170 const char *u_to_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001171 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001172 "ff" /* type 255: G-PDU */
1173 "0058" /* length: 88 + 8 octets == 96 */
1174 "00000123" /* unmapped User TEI */
1175 "6d31" /* new mapped seq */
1176 "0000"
1177 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1178 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1179 "202122232425262728292a2b2c2d2e2f3031323334353637"
1180 ;
1181
1182 /* This depends on create_pdp_ctx() sending resolved_sgsn_addr as GSN
1183 * Address IEs in the GGSN's Create PDP Ctx Response. */
1184 OSMO_ASSERT(msg_from_ggsn_u(&ggsn_sender,
1185 &resolved_sgsn_addr,
1186 u_from_ggsn,
1187 u_to_sgsn));
1188
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001189 /* Make sure the user plane messages have refreshed the TEI mapping
1190 * timeouts: 21945 + 600 == 22545. */
1191 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001192 "TEI=1:"
1193 " 192.168.42.23 (TEI C=321 U=123)"
1194 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001195 " @22545\n"));
1196
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001197 const char *u_from_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001198 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001199 "ff" /* type 255: G-PDU */
1200 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001201 "00000001" /* mapped User TEI for GGSN from create_pdp_ctx() */
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001202 "1234" /* unknown seq */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001203 "0000" /* No extensions */
1204 /* User data (ICMP packet), 96 - 12 = 84 octets */
1205 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1206 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1207 "202122232425262728292a2b2c2d2e2f3031323334353637"
1208 ;
1209 const char *u_to_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001210 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001211 "ff" /* type 255: G-PDU */
1212 "0058" /* length: 88 + 8 octets == 96 */
1213 "00000567" /* unmapped User TEI */
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001214 "6d31" /* unmapped seq */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001215 "0000"
1216 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1217 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1218 "202122232425262728292a2b2c2d2e2f3031323334353637"
1219 ;
1220
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001221 OSMO_ASSERT(msg_from_sgsn_u(&sgsn_sender,
1222 &resolved_ggsn_addr,
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001223 u_from_sgsn,
1224 u_to_ggsn));
1225
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001226 /* Make sure the user plane messages have refreshed the TEI mapping
1227 * timeouts: 21945 + 600 == 22545. Both timeouts refreshed: */
1228 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001229 "TEI=1:"
1230 " 192.168.42.23 (TEI C=321 U=123)"
1231 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001232 " @22545\n"));
1233
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001234 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001235}
1236
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001237static void test_reused_tei(void)
1238{
1239 LOG("test_reused_tei");
1240
1241 OSMO_ASSERT(setup_test_hub());
1242
1243 OSMO_ASSERT(create_pdp_ctx());
1244
1245 const char *gtp_req_from_sgsn =
1246 MSG_PDP_CTX_REQ("0068",
1247 "abce", /* Next seq */
1248 "60",
1249 "42000121436587f9",
1250 "00000123", /* Same TEIs as before */
1251 "00000321",
1252 "0009""08696e7465726e6574", /* "(8)internet" */
1253 "0004""c0a82a17", /* same as default sgsn_sender */
1254 "0004""c0a82a17"
1255 );
1256 const char *gtp_req_to_ggsn =
1257 MSG_PDP_CTX_REQ("0068",
1258 "6d32", /* mapped seq ("abce") */
1259 "23",
1260 "42000121436587f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001261 "00000002", /* mapped TEI Data I ("123") */
1262 "00000002", /* mapped TEI Control ("321") */
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001263 "0009""08696e7465726e6574",
1264 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1265 "0004""7f000202" /* replaced with gtphub's ggsn user */
1266 );
1267
1268 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1269 &resolved_ggsn_addr,
1270 gtp_req_from_sgsn,
1271 gtp_req_to_ggsn));
1272 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1273
1274 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001275 "TEI=2:"
1276 " 192.168.42.23 (TEI C=321 U=123)"
1277 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001278 " @21945\n"));
1279
1280 const char *gtp_resp_from_ggsn =
1281 MSG_PDP_CTX_RSP("004e",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001282 "00000002", /* destination TEI (sent in req above) */
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001283 "6d32", /* mapped seq */
1284 "01", /* restart */
1285 "00000567", /* TEI U */
1286 "00000765", /* TEI C */
1287 "0004""c0a82b22", /* GSN addresses */
1288 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1289 );
1290 const char *gtp_resp_to_sgsn =
1291 MSG_PDP_CTX_RSP("004e",
1292 "00000321", /* unmapped TEI ("001") */
1293 "abce", /* unmapped seq ("6d32") */
1294 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001295 "00000002", /* mapped TEI from GGSN ("567") */
1296 "00000002", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001297 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1298 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1299 );
1300 /* The response should go back to whichever port the request came from
1301 * (unmapped by sequence nr) */
1302 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1303 &sgsn_sender,
1304 gtp_resp_from_ggsn,
1305 gtp_resp_to_sgsn));
1306
1307 OSMO_ASSERT(clear_test_hub());
1308}
1309
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001310static void test_peer_restarted(void)
1311{
1312 LOG("test_peer_restarted");
1313
1314 OSMO_ASSERT(setup_test_hub());
1315
1316 OSMO_ASSERT(create_pdp_ctx());
1317
1318 now += 10;
1319
1320 const char *gtp_req_from_sgsn =
1321 MSG_PDP_CTX_REQ("0068",
1322 "1234", /* brand new seq */
1323 "61", /* DIFFERING restart counter */
1324 "42000121436587f9",
1325 "00000abc",
1326 "00000cba",
1327 "0009""08696e7465726e6574", /* "(8)internet" */
1328 "0004""c0a82a17", /* same as default sgsn_sender */
1329 "0004""c0a82a17"
1330 );
1331 const char *gtp_req_to_ggsn =
1332 MSG_PDP_CTX_REQ("0068",
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001333 "6d33", /* mapped seq ("1234") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001334 "23",
1335 "42000121436587f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001336 "00000002", /* mapped TEI Data I ("123") */
1337 "00000002", /* mapped TEI Control ("321") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001338 "0009""08696e7465726e6574",
1339 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1340 "0004""7f000202" /* replaced with gtphub's ggsn user */
1341 );
1342
1343 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1344 &resolved_ggsn_addr,
1345 gtp_req_from_sgsn,
1346 gtp_req_to_ggsn));
1347 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1348
1349 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001350 "TEI=2:"
1351 " 192.168.42.23 (TEI C=cba U=abc)"
1352 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001353 " @21955\n"
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001354 "TEI=1:"
1355 " (uninitialized) (TEI C=321 U=123)"
1356 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001357 " @21945\n"
1358 ));
1359
1360 const char *gtp_resp_from_ggsn =
1361 MSG_PDP_CTX_RSP("004e",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001362 "00000002", /* destination TEI (sent in req above) */
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001363 "6d33", /* mapped seq */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001364 "01", /* restart */
1365 "00000def", /* TEI U */
1366 "00000fde", /* TEI C */
1367 "0004""c0a82b22", /* GSN addresses */
1368 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1369 );
1370 const char *gtp_resp_to_sgsn =
1371 MSG_PDP_CTX_RSP("004e",
1372 "00000cba", /* unmapped TEI ("005") */
1373 "1234", /* unmapped seq ("6d32") */
1374 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001375 "00000002", /* mapped TEI from GGSN ("567") */
1376 "00000002", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001377 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1378 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1379 );
1380 /* The response should go back to whichever port the request came from
1381 * (unmapped by sequence nr) */
1382 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1383 &sgsn_sender,
1384 gtp_resp_from_ggsn,
1385 gtp_resp_to_sgsn));
1386
1387 OSMO_ASSERT(clear_test_hub());
1388}
1389
1390static void test_peer_restarted_reusing_tei(void)
1391{
1392 LOG("test_peer_restarted_reusing_tei");
1393
1394 OSMO_ASSERT(setup_test_hub());
1395
1396 OSMO_ASSERT(create_pdp_ctx());
1397
1398 now += 10;
1399
1400 const char *gtp_req_from_sgsn =
1401 MSG_PDP_CTX_REQ("0068",
1402 "1234", /* brand new seq */
1403 "61", /* DIFFERING restart counter */
1404 "42000121436587f9",
1405 "00000123", /* SAME TEI */
1406 "00000321",
1407 "0009""08696e7465726e6574", /* "(8)internet" */
1408 "0004""c0a82a17", /* same as default sgsn_sender */
1409 "0004""c0a82a17"
1410 );
1411 const char *gtp_req_to_ggsn =
1412 MSG_PDP_CTX_REQ("0068",
1413 "6d32", /* mapped seq ("1234") */
1414 "23",
1415 "42000121436587f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001416 "00000002", /* mapped TEI Data I ("123") */
1417 "00000002", /* mapped TEI Control ("321") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001418 "0009""08696e7465726e6574",
1419 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1420 "0004""7f000202" /* replaced with gtphub's ggsn user */
1421 );
1422
1423 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1424 &resolved_ggsn_addr,
1425 gtp_req_from_sgsn,
1426 gtp_req_to_ggsn));
1427 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1428
1429 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001430 "TEI=2:"
1431 " 192.168.42.23 (TEI C=321 U=123)"
1432 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001433 " @21955\n"
1434 ));
1435
1436 const char *gtp_resp_from_ggsn =
1437 MSG_PDP_CTX_RSP("004e",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001438 "00000002", /* destination TEI (sent in req above) */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001439 "6d32", /* mapped seq */
1440 "01", /* restart */
1441 "00000def", /* TEI U */
1442 "00000fde", /* TEI C */
1443 "0004""c0a82b22", /* GSN addresses */
1444 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1445 );
1446 const char *gtp_resp_to_sgsn =
1447 MSG_PDP_CTX_RSP("004e",
1448 "00000321", /* unmapped TEI ("005") */
1449 "1234", /* unmapped seq ("6d32") */
1450 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001451 "00000002", /* mapped TEI from GGSN ("567") */
1452 "00000002", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001453 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1454 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1455 );
1456 /* The response should go back to whichever port the request came from
1457 * (unmapped by sequence nr) */
1458 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1459 &sgsn_sender,
1460 gtp_resp_from_ggsn,
1461 gtp_resp_to_sgsn));
1462
1463 OSMO_ASSERT(clear_test_hub());
1464}
1465
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001466static void test_sgsn_behind_nat(void)
1467{
1468 LOG("test_user_data");
1469
1470 OSMO_ASSERT(setup_test_hub());
1471 hub->sgsn_use_sender = 1; /* <-- Main difference to test_user_data() */
1472 resolve_to_sgsn("192.168.42.23", 423); /* Same as sender */
1473
1474 OSMO_ASSERT(create_pdp_ctx());
1475
1476 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945. */
1477 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001478 "TEI=1:"
1479 " 192.168.42.23 (TEI C=321 U=123)"
1480 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001481 " @21945\n"));
1482
1483 LOG("- user data starts");
1484 /* Now expect default port numbers for User plane -- except SGSN. */
1485 resolve_to_ggsn("192.168.43.34", 2152);
1486
1487 /* 10 minutes later */
1488 now += 600;
1489
1490 const char *u_from_ggsn =
1491 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1492 "ff" /* type 255: G-PDU */
1493 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001494 "00000001" /* mapped User TEI for SGSN from create_pdp_ctx() */
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001495 "0070" /* seq */
1496 "0000" /* No extensions */
1497 /* User data (ICMP packet), 96 - 12 = 84 octets */
1498 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1499 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1500 "202122232425262728292a2b2c2d2e2f3031323334353637"
1501 ;
1502 const char *u_to_sgsn =
1503 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1504 "ff" /* type 255: G-PDU */
1505 "0058" /* length: 88 + 8 octets == 96 */
1506 "00000123" /* unmapped User TEI */
1507 "6d31" /* new mapped seq */
1508 "0000"
1509 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1510 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1511 "202122232425262728292a2b2c2d2e2f3031323334353637"
1512 ;
1513
1514 /* This depends on create_pdp_ctx() sending resolved_sgsn_addr as GSN
1515 * Address IEs in the GGSN's Create PDP Ctx Response. */
1516 OSMO_ASSERT(msg_from_ggsn_u(&ggsn_sender,
1517 &resolved_sgsn_addr,
1518 u_from_ggsn,
1519 u_to_sgsn));
1520
1521 /* Make sure the user plane messages have refreshed the TEI mapping
1522 * timeouts: 21945 + 600 == 22545. */
1523 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001524 "TEI=1:"
1525 " 192.168.42.23 (TEI C=321 U=123)"
1526 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001527 " @22545\n"));
1528
1529 const char *u_from_sgsn =
1530 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1531 "ff" /* type 255: G-PDU */
1532 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001533 "00000001" /* mapped User TEI for GGSN from create_pdp_ctx() */
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001534 "1234" /* unknown seq */
1535 "0000" /* No extensions */
1536 /* User data (ICMP packet), 96 - 12 = 84 octets */
1537 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1538 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1539 "202122232425262728292a2b2c2d2e2f3031323334353637"
1540 ;
1541 const char *u_to_ggsn =
1542 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1543 "ff" /* type 255: G-PDU */
1544 "0058" /* length: 88 + 8 octets == 96 */
1545 "00000567" /* unmapped User TEI */
1546 "6d31" /* unmapped seq */
1547 "0000"
1548 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1549 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1550 "202122232425262728292a2b2c2d2e2f3031323334353637"
1551 ;
1552
1553 OSMO_ASSERT(msg_from_sgsn_u(&sgsn_sender,
1554 &resolved_ggsn_addr,
1555 u_from_sgsn,
1556 u_to_ggsn));
1557
1558 /* Make sure the user plane messages have refreshed the TEI mapping
1559 * timeouts: 21945 + 600 == 22545. Both timeouts refreshed: */
1560 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001561 "TEI=1:"
1562 " 192.168.42.23 (TEI C=321 U=123)"
1563 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001564 " @22545\n"));
1565
1566 OSMO_ASSERT(clear_test_hub());
1567}
1568
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001569void test_parallel_context_creation(void)
1570{
1571 LOG("test_parallel_context_creation");
1572
1573 OSMO_ASSERT(setup_test_hub());
1574
1575 const char *gtp_req_from_sgsn1 =
1576 MSG_PDP_CTX_REQ("0068",
1577 "abcd",
1578 "60",
1579 "42000121436587f9",
1580 "00000123",
1581 "00000321",
1582 "0009""08696e7465726e6574", /* "(8)internet" */
1583 "0004""c0a82a17", /* same as default sgsn_sender */
1584 "0004""c0a82a17"
1585 );
1586 const char *gtp_req_to_ggsn1 =
1587 MSG_PDP_CTX_REQ("0068",
1588 "6d31", /* mapped seq ("abcd") */
1589 "23",
1590 "42000121436587f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001591 "00000001", /* mapped TEI Data I ("123") */
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001592 "00000001", /* mapped TEI Control ("321") */
1593 "0009""08696e7465726e6574",
1594 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1595 "0004""7f000202" /* replaced with gtphub's ggsn user */
1596 );
1597
1598 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1599 &resolved_ggsn_addr,
1600 gtp_req_from_sgsn1,
1601 gtp_req_to_ggsn1));
1602
1603 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001604 "TEI=1:"
1605 " 192.168.42.23 (TEI C=321 U=123)"
1606 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001607 " @21945\n"));
1608
1609 now ++;
1610
1611 const char *gtp_req_from_sgsn2 =
1612 MSG_PDP_CTX_REQ("0068",
1613 "abce",
1614 "60",
1615 "42000121436588f9",
1616 "00000124",
1617 "00000322",
1618 "0009""08696e7465726e6574", /* "(8)internet" */
1619 "0004""c0a82a17", /* same as default sgsn_sender */
1620 "0004""c0a82a17"
1621 );
1622 const char *gtp_req_to_ggsn2 =
1623 MSG_PDP_CTX_REQ("0068",
1624 "6d32", /* mapped seq ("abce") */
1625 "23",
1626 "42000121436588f9",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001627 "00000002", /* mapped TEI Data I ("124") */
1628 "00000002", /* mapped TEI Control ("322") */
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001629 "0009""08696e7465726e6574",
1630 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1631 "0004""7f000202" /* replaced with gtphub's ggsn user */
1632 );
1633
1634 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1635 &resolved_ggsn_addr,
1636 gtp_req_from_sgsn2,
1637 gtp_req_to_ggsn2));
1638
1639 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001640 "TEI=2:"
1641 " 192.168.42.23 (TEI C=322 U=124)"
1642 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001643 " @21946\n"
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001644 "TEI=1:"
1645 " 192.168.42.23 (TEI C=321 U=123)"
1646 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001647 " @21945\n"
1648 ));
1649
1650 now ++;
1651
1652 const char *gtp_resp_from_ggsn1 =
1653 MSG_PDP_CTX_RSP("004e",
1654 "00000001", /* destination TEI (sent in req above) */
1655 "6d31", /* mapped seq */
1656 "01", /* restart */
1657 "00000567", /* TEI U */
1658 "00000765", /* TEI C */
1659 "0004""c0a82b22", /* GSN addresses */
1660 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1661 );
1662 const char *gtp_resp_to_sgsn1 =
1663 MSG_PDP_CTX_RSP("004e",
1664 "00000321", /* unmapped TEI ("001") */
1665 "abcd", /* unmapped seq ("6d31") */
1666 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001667 "00000001", /* mapped TEI from GGSN ("567") */
1668 "00000001", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001669 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1670 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1671 );
1672
1673 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1674 &sgsn_sender,
1675 gtp_resp_from_ggsn1,
1676 gtp_resp_to_sgsn1));
1677
1678 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001679 "TEI=2:"
1680 " 192.168.42.23 (TEI C=322 U=124)"
1681 " <-> 192.168.43.34/(uninitialized) (TEI C=0 U=0)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001682 " @21946\n"
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001683 "TEI=1:"
1684 " 192.168.42.23 (TEI C=321 U=123)"
1685 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001686 " @21947\n"
1687 ));
1688
1689 now ++;
1690
1691 const char *gtp_resp_from_ggsn2 =
1692 MSG_PDP_CTX_RSP("004e",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001693 "00000002", /* destination TEI (sent in req above) */
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001694 "6d32", /* mapped seq */
1695 "01", /* restart */
1696 "00000568", /* TEI U */
1697 "00000766", /* TEI C */
1698 "0004""c0a82b22", /* GSN addresses */
1699 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1700 );
1701 const char *gtp_resp_to_sgsn2 =
1702 MSG_PDP_CTX_RSP("004e",
1703 "00000322", /* unmapped TEI ("001") */
1704 "abce", /* unmapped seq ("6d31") */
1705 "23",
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001706 "00000002", /* mapped TEI from GGSN ("567") */
1707 "00000002", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001708 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1709 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1710 );
1711
1712 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1713 &sgsn_sender,
1714 gtp_resp_from_ggsn2,
1715 gtp_resp_to_sgsn2));
1716
1717 OSMO_ASSERT(tunnels_are(
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001718 "TEI=2:"
1719 " 192.168.42.23 (TEI C=322 U=124)"
1720 " <-> 192.168.43.34 (TEI C=766 U=568)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001721 " @21948\n"
Neels Hofmeyra2217ec2015-12-06 19:11:45 +01001722 "TEI=1:"
1723 " 192.168.42.23 (TEI C=321 U=123)"
1724 " <-> 192.168.43.34 (TEI C=765 U=567)"
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001725 " @21947\n"
1726 ));
1727
1728 OSMO_ASSERT(clear_test_hub());
1729}
1730
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001731
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001732static struct log_info_cat gtphub_categories[] = {
1733 [DGTPHUB] = {
1734 .name = "DGTPHUB",
1735 .description = "GTP Hub",
1736 .color = "\033[1;33m",
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001737 .enabled = 1, .loglevel = LOGL_DEBUG,
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001738 },
1739};
1740
1741static struct log_info info = {
1742 .cat = gtphub_categories,
1743 .num_cat = ARRAY_SIZE(gtphub_categories),
1744};
1745
1746int main(int argc, char **argv)
1747{
1748 osmo_init_logging(&info);
1749 osmo_gtphub_ctx = talloc_named_const(NULL, 0, "osmo_gtphub");
1750
1751 test_nr_map_basic();
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +01001752 test_nr_map_wrap();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001753 test_expiry();
1754 test_echo();
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001755 test_one_pdp_ctx(GTPH_SIDE_SGSN);
1756 test_one_pdp_ctx(GTPH_SIDE_GGSN);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001757 test_user_data();
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001758 test_reused_tei();
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001759 test_peer_restarted();
1760 test_peer_restarted_reusing_tei();
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001761 test_sgsn_behind_nat();
Neels Hofmeyr81d75192015-12-06 19:02:43 +01001762 test_parallel_context_creation();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001763 printf("Done\n");
1764
1765 talloc_report_full(osmo_gtphub_ctx, stderr);
1766 OSMO_ASSERT(talloc_total_blocks(osmo_gtphub_ctx) == 1);
1767 return 0;
1768}
1769