blob: bdce99d7ff4d96052921a781233842c376d93697 [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 Hofmeyr6c164062015-11-27 01:20:53 +0100932 "00000002", /* mapped TEI Data I ("123") */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100933 "00000001", /* mapped TEI Control ("321") */
934 "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 Hofmeyr6c164062015-11-27 01:20:53 +0100946 "192.168.42.23 (TEI C 321=1 / U 123=2)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100947 " <-> 192.168.43.34 / (uninitialized) (TEI C 0=0 / U 0=0)"
948 " @21945\n"));
949
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100950 const char *gtp_resp_from_ggsn =
951 MSG_PDP_CTX_RSP("004e",
952 "00000001", /* destination TEI (sent in req above) */
953 "6d31", /* mapped seq */
954 "01", /* restart */
955 "00000567", /* TEI U */
956 "00000765", /* TEI C */
957 "0004""c0a82b22", /* GSN addresses */
958 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
959 );
960 const char *gtp_resp_to_sgsn =
961 MSG_PDP_CTX_RSP("004e",
962 "00000321", /* unmapped TEI ("001") */
963 "abcd", /* unmapped seq ("6d31") */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100964 "23",
Neels Hofmeyr6c164062015-11-27 01:20:53 +0100965 "00000004", /* mapped TEI from GGSN ("567") */
966 "00000003", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100967 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
968 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
969 );
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100970 /* The response should go back to whichever port the request came from
971 * (unmapped by sequence nr) */
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100972 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
973 &sgsn_sender,
974 gtp_resp_from_ggsn,
975 gtp_resp_to_sgsn));
976
977 return 1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200978}
979
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +0100980#define MSG_DEL_PDP_CTX_REQ(tei, seq) \
981 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
982 "14" /* type 20: Delete PDP Context Request */ \
983 "0008" /* msg length = 8 + len (2 octets) */ \
984 tei /* TEI Ctrl */ \
985 seq /* Sequence nr (2 octets) */ \
986 "00" /* N-PDU 0 */ \
987 "00" /* No extensions */ \
988 /* IEs */ \
989 "13fe" /* 19: Teardown ind = 0 */ \
990 "1400" /* 20: NSAPI = 0*/ \
991
992#define MSG_DEL_PDP_CTX_RSP(tei, seq) \
993 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
994 "15" /* type 21: Delete PDP Context Response */ \
995 "0006" /* msg length = 8 + len (2 octets) */ \
996 tei /* TEI Ctrl */ \
997 seq /* Sequence nr (2 octets) */ \
998 "00" /* N-PDU 0 */ \
999 "00" /* No extensions */ \
1000 /* IEs */ \
1001 "01" /* 1: Cause */ \
1002 "80" /* value = 0b10000000 = response, no rejection. */ \
1003
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001004static int delete_pdp_ctx_from_sgsn(void)
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001005{
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001006 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
1007 gtphub_gc(hub, now);
1008
1009 LVL2_ASSERT(tunnels_are(
1010 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1011 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1012 " @21945\n"));
1013
1014 /* TEI Ctrl from above and next sequence after abcd. */
1015 const char *gtp_req_from_sgsn = MSG_DEL_PDP_CTX_REQ("00000003", "abce");
1016 const char *gtp_req_to_ggsn = MSG_DEL_PDP_CTX_REQ("00000765", "6d32");
1017
1018 LVL2_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1019 &resolved_ggsn_addr,
1020 gtp_req_from_sgsn,
1021 gtp_req_to_ggsn));
1022
1023 /* 21945 + 31 = 21976 */
1024 LVL2_ASSERT(tunnels_are(
1025 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1026 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1027 " @21976\n"));
1028
1029 const char *gtp_resp_from_ggsn =
1030 MSG_DEL_PDP_CTX_RSP("00000001", "6d32");
1031 const char *gtp_resp_to_sgsn =
1032 MSG_DEL_PDP_CTX_RSP("00000321", "abce");
1033
1034 /* The response should go back to whichever port the request came from
1035 * (unmapped by sequence nr) */
1036 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1037 &sgsn_sender,
1038 gtp_resp_from_ggsn,
1039 gtp_resp_to_sgsn));
1040
1041 LVL2_ASSERT(tunnels_are(""));
1042
1043 return 1;
1044}
1045
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001046static int delete_pdp_ctx_from_ggsn(void)
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001047{
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001048 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
1049 gtphub_gc(hub, now);
1050
1051 LVL2_ASSERT(tunnels_are(
1052 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1053 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1054 " @21945\n"));
1055
1056 /* TEI Ctrl from above and next sequence after abcd. */
1057 const char *gtp_req_from_ggsn = MSG_DEL_PDP_CTX_REQ("00000001", "5432");
1058 const char *gtp_req_to_sgsn = MSG_DEL_PDP_CTX_REQ("00000321", "6d31");
1059
1060 LVL2_ASSERT(msg_from_ggsn_c(&ggsn_sender,
1061 &resolved_sgsn_addr,
1062 gtp_req_from_ggsn,
1063 gtp_req_to_sgsn));
1064
1065 /* 21945 + 31 = 21976 */
1066 LVL2_ASSERT(tunnels_are(
1067 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1068 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1069 " @21976\n"));
1070
1071 const char *gtp_resp_from_sgsn =
1072 MSG_DEL_PDP_CTX_RSP("00000003", "6d31");
1073 const char *gtp_resp_to_ggsn =
1074 MSG_DEL_PDP_CTX_RSP("00000765", "5432");
1075
1076 /* The response should go back to whichever port the request came from
1077 * (unmapped by sequence nr) */
1078 LVL2_ASSERT(msg_from_sgsn_c(&resolved_sgsn_addr,
1079 &ggsn_sender,
1080 gtp_resp_from_sgsn,
1081 gtp_resp_to_ggsn));
1082
1083 LVL2_ASSERT(tunnels_are(""));
1084
1085 return 1;
1086}
1087
1088static void test_one_pdp_ctx(int del_from_side)
1089{
1090 if (del_from_side == GTPH_SIDE_SGSN)
1091 LOG("test_one_pdp_ctx (del from SGSN)")
1092 else LOG("test_one_pdp_ctx (del from GGSN)");
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001093 OSMO_ASSERT(setup_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001094
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001095 OSMO_ASSERT(create_pdp_ctx());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001096
1097 struct gtphub_peer_port *ggsn_port =
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001098 gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001099 &resolved_ggsn_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001100 OSMO_ASSERT(ggsn_port);
1101 struct gtphub_peer *ggsn = ggsn_port->peer_addr->peer;
1102 /* now == 345; now + 30 == 375.
1103 * seq mapping from above:
1104 * 0xabcd == 43981 (sent in the packet)
1105 * 0x6d31 == 27953 (harcoded seq mapping start val) */
1106 OSMO_ASSERT(nr_map_is(&ggsn->seq_map, "(43981->27953@375), "));
1107
1108 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945.
1109 * 0x00000321 == 801 (TEI from SGSN Ctrl)
1110 * 0x00000123 == 291 (TEI from SGSN User)
1111 * 0x00000765 == 1893 (TEI from GGSN Ctrl)
1112 * 0x00000567 == 1383 (TEI from GGSN User)
1113 * Mapped TEIs should be 1 and 2. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001114 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001115 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1116 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001117 " @21945\n"));
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001118
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001119 if (del_from_side == GTPH_SIDE_SGSN) {
1120 OSMO_ASSERT(delete_pdp_ctx_from_sgsn());
1121 } else {
1122 OSMO_ASSERT(delete_pdp_ctx_from_ggsn());
1123 }
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001124 OSMO_ASSERT(tunnels_are(""));
1125
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001126 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001127}
1128
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001129static void test_user_data(void)
1130{
1131 LOG("test_user_data");
1132
1133 OSMO_ASSERT(setup_test_hub());
1134
1135 OSMO_ASSERT(create_pdp_ctx());
1136
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001137 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945. */
1138 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001139 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1140 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001141 " @21945\n"));
1142
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001143 LOG("- user data starts");
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001144 /* Now expect default port numbers for User plane. */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001145 resolve_to_ggsn("192.168.43.34", 2152);
1146 resolve_to_sgsn("192.168.42.23", 2152);
1147
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001148 /* 10 minutes later */
1149 now += 600;
1150
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001151 const char *u_from_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001152 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001153 "ff" /* type 255: G-PDU */
1154 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001155 "00000002" /* mapped User TEI for SGSN from create_pdp_ctx() */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001156 "0070" /* seq */
1157 "0000" /* No extensions */
1158 /* User data (ICMP packet), 96 - 12 = 84 octets */
1159 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1160 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1161 "202122232425262728292a2b2c2d2e2f3031323334353637"
1162 ;
1163 const char *u_to_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001164 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001165 "ff" /* type 255: G-PDU */
1166 "0058" /* length: 88 + 8 octets == 96 */
1167 "00000123" /* unmapped User TEI */
1168 "6d31" /* new mapped seq */
1169 "0000"
1170 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1171 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1172 "202122232425262728292a2b2c2d2e2f3031323334353637"
1173 ;
1174
1175 /* This depends on create_pdp_ctx() sending resolved_sgsn_addr as GSN
1176 * Address IEs in the GGSN's Create PDP Ctx Response. */
1177 OSMO_ASSERT(msg_from_ggsn_u(&ggsn_sender,
1178 &resolved_sgsn_addr,
1179 u_from_ggsn,
1180 u_to_sgsn));
1181
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001182 /* Make sure the user plane messages have refreshed the TEI mapping
1183 * timeouts: 21945 + 600 == 22545. */
1184 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001185 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1186 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001187 " @22545\n"));
1188
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001189 const char *u_from_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001190 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001191 "ff" /* type 255: G-PDU */
1192 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001193 "00000004" /* mapped User TEI for GGSN from create_pdp_ctx() */
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001194 "1234" /* unknown seq */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001195 "0000" /* No extensions */
1196 /* User data (ICMP packet), 96 - 12 = 84 octets */
1197 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1198 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1199 "202122232425262728292a2b2c2d2e2f3031323334353637"
1200 ;
1201 const char *u_to_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001202 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001203 "ff" /* type 255: G-PDU */
1204 "0058" /* length: 88 + 8 octets == 96 */
1205 "00000567" /* unmapped User TEI */
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001206 "6d31" /* unmapped seq */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001207 "0000"
1208 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1209 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1210 "202122232425262728292a2b2c2d2e2f3031323334353637"
1211 ;
1212
Neels Hofmeyrd4abc822015-12-03 14:19:08 +01001213 OSMO_ASSERT(msg_from_sgsn_u(&sgsn_sender,
1214 &resolved_ggsn_addr,
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001215 u_from_sgsn,
1216 u_to_ggsn));
1217
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001218 /* Make sure the user plane messages have refreshed the TEI mapping
1219 * timeouts: 21945 + 600 == 22545. Both timeouts refreshed: */
1220 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001221 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1222 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001223 " @22545\n"));
1224
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001225 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001226}
1227
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001228static void test_reused_tei(void)
1229{
1230 LOG("test_reused_tei");
1231
1232 OSMO_ASSERT(setup_test_hub());
1233
1234 OSMO_ASSERT(create_pdp_ctx());
1235
1236 const char *gtp_req_from_sgsn =
1237 MSG_PDP_CTX_REQ("0068",
1238 "abce", /* Next seq */
1239 "60",
1240 "42000121436587f9",
1241 "00000123", /* Same TEIs as before */
1242 "00000321",
1243 "0009""08696e7465726e6574", /* "(8)internet" */
1244 "0004""c0a82a17", /* same as default sgsn_sender */
1245 "0004""c0a82a17"
1246 );
1247 const char *gtp_req_to_ggsn =
1248 MSG_PDP_CTX_REQ("0068",
1249 "6d32", /* mapped seq ("abce") */
1250 "23",
1251 "42000121436587f9",
1252 "00000006", /* mapped TEI Data I ("123") */
1253 "00000005", /* mapped TEI Control ("321") */
1254 "0009""08696e7465726e6574",
1255 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1256 "0004""7f000202" /* replaced with gtphub's ggsn user */
1257 );
1258
1259 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1260 &resolved_ggsn_addr,
1261 gtp_req_from_sgsn,
1262 gtp_req_to_ggsn));
1263 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1264
1265 OSMO_ASSERT(tunnels_are(
1266 "192.168.42.23 (TEI C 321=5 / U 123=6)"
1267 " <-> 192.168.43.34 / (uninitialized) (TEI C 0=0 / U 0=0)"
1268 " @21945\n"));
1269
1270 const char *gtp_resp_from_ggsn =
1271 MSG_PDP_CTX_RSP("004e",
1272 "00000005", /* destination TEI (sent in req above) */
1273 "6d32", /* mapped seq */
1274 "01", /* restart */
1275 "00000567", /* TEI U */
1276 "00000765", /* TEI C */
1277 "0004""c0a82b22", /* GSN addresses */
1278 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1279 );
1280 const char *gtp_resp_to_sgsn =
1281 MSG_PDP_CTX_RSP("004e",
1282 "00000321", /* unmapped TEI ("001") */
1283 "abce", /* unmapped seq ("6d32") */
1284 "23",
1285 "00000008", /* mapped TEI from GGSN ("567") */
1286 "00000007", /* mapped TEI from GGSN ("765") */
1287 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1288 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1289 );
1290 /* The response should go back to whichever port the request came from
1291 * (unmapped by sequence nr) */
1292 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1293 &sgsn_sender,
1294 gtp_resp_from_ggsn,
1295 gtp_resp_to_sgsn));
1296
1297 OSMO_ASSERT(clear_test_hub());
1298}
1299
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001300static void test_peer_restarted(void)
1301{
1302 LOG("test_peer_restarted");
1303
1304 OSMO_ASSERT(setup_test_hub());
1305
1306 OSMO_ASSERT(create_pdp_ctx());
1307
1308 now += 10;
1309
1310 const char *gtp_req_from_sgsn =
1311 MSG_PDP_CTX_REQ("0068",
1312 "1234", /* brand new seq */
1313 "61", /* DIFFERING restart counter */
1314 "42000121436587f9",
1315 "00000abc",
1316 "00000cba",
1317 "0009""08696e7465726e6574", /* "(8)internet" */
1318 "0004""c0a82a17", /* same as default sgsn_sender */
1319 "0004""c0a82a17"
1320 );
1321 const char *gtp_req_to_ggsn =
1322 MSG_PDP_CTX_REQ("0068",
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001323 "6d33", /* mapped seq ("1234") */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001324 "23",
1325 "42000121436587f9",
1326 "00000006", /* mapped TEI Data I ("123") */
1327 "00000005", /* mapped TEI Control ("321") */
1328 "0009""08696e7465726e6574",
1329 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1330 "0004""7f000202" /* replaced with gtphub's ggsn user */
1331 );
1332
1333 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1334 &resolved_ggsn_addr,
1335 gtp_req_from_sgsn,
1336 gtp_req_to_ggsn));
1337 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1338
1339 OSMO_ASSERT(tunnels_are(
1340 "192.168.42.23 (TEI C cba=5 / U abc=6)"
1341 " <-> 192.168.43.34 / (uninitialized) (TEI C 0=0 / U 0=0)"
1342 " @21955\n"
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001343 "(uninitialized) (TEI C 321=1 / U 123=2)"
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001344 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1345 " @21945\n"
1346 ));
1347
1348 const char *gtp_resp_from_ggsn =
1349 MSG_PDP_CTX_RSP("004e",
1350 "00000005", /* destination TEI (sent in req above) */
Neels Hofmeyrfe436262015-12-02 15:44:34 +01001351 "6d33", /* mapped seq */
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001352 "01", /* restart */
1353 "00000def", /* TEI U */
1354 "00000fde", /* TEI C */
1355 "0004""c0a82b22", /* GSN addresses */
1356 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1357 );
1358 const char *gtp_resp_to_sgsn =
1359 MSG_PDP_CTX_RSP("004e",
1360 "00000cba", /* unmapped TEI ("005") */
1361 "1234", /* unmapped seq ("6d32") */
1362 "23",
1363 "00000008", /* mapped TEI from GGSN ("567") */
1364 "00000007", /* mapped TEI from GGSN ("765") */
1365 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1366 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1367 );
1368 /* The response should go back to whichever port the request came from
1369 * (unmapped by sequence nr) */
1370 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1371 &sgsn_sender,
1372 gtp_resp_from_ggsn,
1373 gtp_resp_to_sgsn));
1374
1375 OSMO_ASSERT(clear_test_hub());
1376}
1377
1378static void test_peer_restarted_reusing_tei(void)
1379{
1380 LOG("test_peer_restarted_reusing_tei");
1381
1382 OSMO_ASSERT(setup_test_hub());
1383
1384 OSMO_ASSERT(create_pdp_ctx());
1385
1386 now += 10;
1387
1388 const char *gtp_req_from_sgsn =
1389 MSG_PDP_CTX_REQ("0068",
1390 "1234", /* brand new seq */
1391 "61", /* DIFFERING restart counter */
1392 "42000121436587f9",
1393 "00000123", /* SAME TEI */
1394 "00000321",
1395 "0009""08696e7465726e6574", /* "(8)internet" */
1396 "0004""c0a82a17", /* same as default sgsn_sender */
1397 "0004""c0a82a17"
1398 );
1399 const char *gtp_req_to_ggsn =
1400 MSG_PDP_CTX_REQ("0068",
1401 "6d32", /* mapped seq ("1234") */
1402 "23",
1403 "42000121436587f9",
1404 "00000006", /* mapped TEI Data I ("123") */
1405 "00000005", /* mapped TEI Control ("321") */
1406 "0009""08696e7465726e6574",
1407 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
1408 "0004""7f000202" /* replaced with gtphub's ggsn user */
1409 );
1410
1411 OSMO_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1412 &resolved_ggsn_addr,
1413 gtp_req_from_sgsn,
1414 gtp_req_to_ggsn));
1415 OSMO_ASSERT(was_resolved_for("240010123456789", "internet"));
1416
1417 OSMO_ASSERT(tunnels_are(
1418 "192.168.42.23 (TEI C 321=5 / U 123=6)"
1419 " <-> 192.168.43.34 / (uninitialized) (TEI C 0=0 / U 0=0)"
1420 " @21955\n"
1421 ));
1422
1423 const char *gtp_resp_from_ggsn =
1424 MSG_PDP_CTX_RSP("004e",
1425 "00000005", /* destination TEI (sent in req above) */
1426 "6d32", /* mapped seq */
1427 "01", /* restart */
1428 "00000def", /* TEI U */
1429 "00000fde", /* TEI C */
1430 "0004""c0a82b22", /* GSN addresses */
1431 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
1432 );
1433 const char *gtp_resp_to_sgsn =
1434 MSG_PDP_CTX_RSP("004e",
1435 "00000321", /* unmapped TEI ("005") */
1436 "1234", /* unmapped seq ("6d32") */
1437 "23",
1438 "00000008", /* mapped TEI from GGSN ("567") */
1439 "00000007", /* mapped TEI from GGSN ("765") */
1440 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
1441 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
1442 );
1443 /* The response should go back to whichever port the request came from
1444 * (unmapped by sequence nr) */
1445 OSMO_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1446 &sgsn_sender,
1447 gtp_resp_from_ggsn,
1448 gtp_resp_to_sgsn));
1449
1450 OSMO_ASSERT(clear_test_hub());
1451}
1452
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001453static void test_sgsn_behind_nat(void)
1454{
1455 LOG("test_user_data");
1456
1457 OSMO_ASSERT(setup_test_hub());
1458 hub->sgsn_use_sender = 1; /* <-- Main difference to test_user_data() */
1459 resolve_to_sgsn("192.168.42.23", 423); /* Same as sender */
1460
1461 OSMO_ASSERT(create_pdp_ctx());
1462
1463 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945. */
1464 OSMO_ASSERT(tunnels_are(
1465 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1466 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1467 " @21945\n"));
1468
1469 LOG("- user data starts");
1470 /* Now expect default port numbers for User plane -- except SGSN. */
1471 resolve_to_ggsn("192.168.43.34", 2152);
1472
1473 /* 10 minutes later */
1474 now += 600;
1475
1476 const char *u_from_ggsn =
1477 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1478 "ff" /* type 255: G-PDU */
1479 "0058" /* length: 88 + 8 octets == 96 */
1480 "00000002" /* mapped User TEI for SGSN from create_pdp_ctx() */
1481 "0070" /* seq */
1482 "0000" /* No extensions */
1483 /* User data (ICMP packet), 96 - 12 = 84 octets */
1484 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1485 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1486 "202122232425262728292a2b2c2d2e2f3031323334353637"
1487 ;
1488 const char *u_to_sgsn =
1489 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1490 "ff" /* type 255: G-PDU */
1491 "0058" /* length: 88 + 8 octets == 96 */
1492 "00000123" /* unmapped User TEI */
1493 "6d31" /* new mapped seq */
1494 "0000"
1495 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1496 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1497 "202122232425262728292a2b2c2d2e2f3031323334353637"
1498 ;
1499
1500 /* This depends on create_pdp_ctx() sending resolved_sgsn_addr as GSN
1501 * Address IEs in the GGSN's Create PDP Ctx Response. */
1502 OSMO_ASSERT(msg_from_ggsn_u(&ggsn_sender,
1503 &resolved_sgsn_addr,
1504 u_from_ggsn,
1505 u_to_sgsn));
1506
1507 /* Make sure the user plane messages have refreshed the TEI mapping
1508 * timeouts: 21945 + 600 == 22545. */
1509 OSMO_ASSERT(tunnels_are(
1510 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1511 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1512 " @22545\n"));
1513
1514 const char *u_from_sgsn =
1515 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1516 "ff" /* type 255: G-PDU */
1517 "0058" /* length: 88 + 8 octets == 96 */
1518 "00000004" /* mapped User TEI for GGSN from create_pdp_ctx() */
1519 "1234" /* unknown seq */
1520 "0000" /* No extensions */
1521 /* User data (ICMP packet), 96 - 12 = 84 octets */
1522 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1523 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1524 "202122232425262728292a2b2c2d2e2f3031323334353637"
1525 ;
1526 const char *u_to_ggsn =
1527 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
1528 "ff" /* type 255: G-PDU */
1529 "0058" /* length: 88 + 8 octets == 96 */
1530 "00000567" /* unmapped User TEI */
1531 "6d31" /* unmapped seq */
1532 "0000"
1533 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1534 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1535 "202122232425262728292a2b2c2d2e2f3031323334353637"
1536 ;
1537
1538 OSMO_ASSERT(msg_from_sgsn_u(&sgsn_sender,
1539 &resolved_ggsn_addr,
1540 u_from_sgsn,
1541 u_to_ggsn));
1542
1543 /* Make sure the user plane messages have refreshed the TEI mapping
1544 * timeouts: 21945 + 600 == 22545. Both timeouts refreshed: */
1545 OSMO_ASSERT(tunnels_are(
1546 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1547 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1548 " @22545\n"));
1549
1550 OSMO_ASSERT(clear_test_hub());
1551}
1552
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001553
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001554static struct log_info_cat gtphub_categories[] = {
1555 [DGTPHUB] = {
1556 .name = "DGTPHUB",
1557 .description = "GTP Hub",
1558 .color = "\033[1;33m",
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001559 .enabled = 1, .loglevel = LOGL_DEBUG,
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001560 },
1561};
1562
1563static struct log_info info = {
1564 .cat = gtphub_categories,
1565 .num_cat = ARRAY_SIZE(gtphub_categories),
1566};
1567
1568int main(int argc, char **argv)
1569{
1570 osmo_init_logging(&info);
1571 osmo_gtphub_ctx = talloc_named_const(NULL, 0, "osmo_gtphub");
1572
1573 test_nr_map_basic();
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +01001574 test_nr_map_wrap();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001575 test_expiry();
1576 test_echo();
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001577 test_one_pdp_ctx(GTPH_SIDE_SGSN);
1578 test_one_pdp_ctx(GTPH_SIDE_GGSN);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001579 test_user_data();
Neels Hofmeyr3a342cf2015-12-02 14:18:26 +01001580 test_reused_tei();
Neels Hofmeyr6402bae2015-12-02 14:31:45 +01001581 test_peer_restarted();
1582 test_peer_restarted_reusing_tei();
Neels Hofmeyr5aba0ec2015-12-03 14:29:48 +01001583 test_sgsn_behind_nat();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001584 printf("Done\n");
1585
1586 talloc_report_full(osmo_gtphub_ctx, stderr);
1587 OSMO_ASSERT(talloc_total_blocks(osmo_gtphub_ctx) == 1);
1588 return 0;
1589}
1590