blob: bd7ac589470c189bfac197e499692df5c1676f71 [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
511#define buf_len 1024
512static uint8_t buf[buf_len];
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100513static uint8_t *reply_buf;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200514
515static unsigned int msg(const char *hex)
516{
517 unsigned int l = osmo_hexparse(hex, buf, buf_len);
518 OSMO_ASSERT(l > 0);
519 return l;
520}
521
522/* Compare static buf to given string constant. The amount of bytes is obtained
523 * from parsing the GTP header in buf. hex must match an osmo_hexdump() of the
524 * desired message. Return 1 if size and content match. */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100525#define reply_is(MSG) _reply_is(MSG, __FILE__, __LINE__)
526static int _reply_is(const char *hex, const char *file, int line)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200527{
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100528 struct gtp1_header_long *h = (void*)reply_buf;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200529 int len = ntoh16(h->length) + 8;
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100530 const char *dump = osmo_hexdump_nospc(reply_buf, len);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200531 int cmp = strcmp(dump, hex);
532
533 if (cmp != 0) {
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100534 printf("\n%s:%d: reply_is(): MISMATCH\n"
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200535 " expecting:\n'%s'\n"
536 " got:\n'%s'\n\n",
537 file,
538 line,
539 hex, dump);
540 int i;
541 int l = strlen(hex);
542 int m = strlen(dump);
543 if (m < l)
544 l = m;
545 for (i = 0; i < l; i++) {
546 if (hex[i] != dump[i]) {
547 printf("First mismatch at position %d:\n"
548 " %s\n %s\n", i, hex + i, dump + i);
549 break;
550 }
551 }
552 }
553 return cmp == 0;
554}
555
556#define same_addr(GOT, EXPECTED) _same_addr((GOT),(EXPECTED), __FILE__, __LINE__)
557static int _same_addr(const struct osmo_sockaddr *got,
558 const struct osmo_sockaddr *expected,
559 const char *file, int line)
560{
561 int cmp = osmo_sockaddr_cmp(got, expected);
562 if (!cmp)
563 return 1;
564 char buf[256];
565 printf("\n%s:%d: addr_is(): MISMATCH\n"
566 " expecting: '%s'\n"
567 " got: '%s'\n\n",
568 file, line,
569 osmo_sockaddr_to_str(expected),
570 osmo_sockaddr_to_strb(got, buf, sizeof(buf)));
571 return 0;
572}
573
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100574
575time_t now;
576static struct gtphub _hub;
577static struct gtphub *hub = &_hub;
578
579static int setup_test_hub()
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200580{
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100581 /* Not really needed, but to make 100% sure... */
582 ZERO_STRUCT(hub);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200583
584 gtphub_init(hub);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100585
586 /* Tell this mock gtphub its local address for this test. */
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100587 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100588 "127.0.1.1") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100589 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100590 "127.0.1.2") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100591 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100592 "127.0.2.1") == 0);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100593 LVL2_ASSERT(gsn_addr_from_str(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].local_addr,
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100594 "127.0.2.2") == 0);
595
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100596 hub->restart_counter = 0x23;
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100597 now = 345;
598 LVL2_ASSERT(send_from_sgsn("192.168.42.23", 423));
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100599 LVL2_ASSERT(resolve_to_ggsn("192.168.43.34", 2123));
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100600 LVL2_ASSERT(send_from_ggsn("192.168.43.34", 434));
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100601 LVL2_ASSERT(resolve_to_sgsn("192.168.42.23", 2123));
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100602
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100603#define GGSNS_CTRL_FD 1
604#define GGSNS_USER_FD 2
605#define SGSNS_CTRL_FD 3
606#define SGSNS_USER_FD 4
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100607 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].ofd.priv_nr = GGSNS_CTRL_FD;
608 hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].ofd.priv_nr = GGSNS_USER_FD;
609 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].ofd.priv_nr = SGSNS_CTRL_FD;
610 hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].ofd.priv_nr = SGSNS_USER_FD;
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100611
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100612 return 1;
613}
614
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100615static int clear_test_hub()
616{
617 /* expire all */
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100618 gtphub_gc(hub, now + (60 * GTPH_EXPIRE_SLOWLY_MINUTES) + 1);
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100619
620 int plane_idx;
621 plane_idx = GTPH_PLANE_CTRL;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100622 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_GGSN][plane_idx].peers));
623 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_SGSN][plane_idx].peers));
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100624 plane_idx = GTPH_PLANE_USER;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100625 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_GGSN][plane_idx].peers));
626 LVL2_ASSERT(llist_empty(&hub->to_gsns[GTPH_SIDE_SGSN][plane_idx].peers));
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100627
Neels Hofmeyr0fa507a2015-12-02 01:15:30 +0100628 LVL2_ASSERT(llist_empty(&hub->tunnels));
629 LVL2_ASSERT(llist_empty(&hub->pending_deletes));
630 LVL2_ASSERT(llist_empty(&hub->ggsn_lookups));
631 LVL2_ASSERT(llist_empty(&hub->resolved_ggsns));
632
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100633 gtphub_free(hub);
634 return 1;
635}
636
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100637static int tunnels_are(const char *expect)
638{
639 static char buf[4096];
640 char *pos = buf;
641 size_t len = sizeof(buf);
642 struct gtphub_tunnel *t;
643 llist_for_each_entry(t, &hub->tunnels, entry) {
644 size_t wrote = snprintf(pos, len, "%s @%d\n",
645 gtphub_tunnel_str(t),
646 (int)t->expiry_entry.expiry);
647 LVL2_ASSERT(wrote < len);
648 pos += wrote;
649 len -= wrote;
650 }
651 *pos = '\0';
652
653 if (strncmp(buf, expect, sizeof(buf)) != 0) {
654 fprintf(stderr, "FAILURE: tunnels_are() mismatches expected value:\n"
655 "EXPECTED:\n%s\n"
656 "IS:\n%s\n",
657 expect, buf);
658 LVL2_ASSERT("tunnels do not match expected listing.");
659 return 0;
660 }
661 return 1;
662}
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100663
664static void test_echo(void)
665{
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100666 LOG("test_echo");
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100667 OSMO_ASSERT(setup_test_hub());
668
669 now = 123;
Neels Hofmeyrf16657a2015-11-08 20:34:47 +0100670
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100671 struct osmo_fd *to_ofd;
672 struct osmo_sockaddr to_addr;
673 struct gtphub_peer_port *pp;
674 int send;
675
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200676 const char *gtp_ping_from_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100677 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200678 "01" /* type 01: Echo request */
679 "0004" /* length of 4 after header TEI */
680 "00000000" /* header TEI == 0 in Echo */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100681 "abcd" /* some 2 octet sequence nr */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200682 "0000" /* N-PDU 0, no extension header (why is this here?) */
683 ;
684
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100685 const char *gtp_pong_to_sgsn =
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200686 "32"
687 "02" /* type 02: Echo response */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100688 "0006" /* length of 6 after header TEI */
689 "00000000" /* header TEI == 0 in Echo */
690 "abcd" /* same sequence nr */
691 "0000"
692 "0e23" /* Recovery with restart counter */
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200693 ;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200694
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100695 to_ofd = NULL;
696 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100697 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, GTPH_PLANE_CTRL,
698 &sgsn_sender, buf, msg(gtp_ping_from_sgsn),
699 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200700 OSMO_ASSERT(send > 0);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100701 OSMO_ASSERT(to_addr.l);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100702 OSMO_ASSERT(same_addr(&to_addr, &sgsn_sender));
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100703 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == SGSNS_CTRL_FD));
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100704 OSMO_ASSERT(reply_is(gtp_pong_to_sgsn));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200705
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100706 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100707 &sgsn_sender);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100708 /* We don't record Echo peers. */
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100709 OSMO_ASSERT(!pp);
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100710
711 const char *gtp_ping_from_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100712 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100713 "01" /* type 01: Echo request */
714 "0004" /* length of 4 after header TEI */
715 "00000000" /* header TEI == 0 in Echo */
716 "cdef" /* some 2 octet sequence nr */
717 "0000" /* N-PDU 0, no extension header (why is this here?) */
718 ;
719
720 const char *gtp_pong_to_ggsn =
721 "32"
722 "02" /* type 02: Echo response */
723 "0006" /* length of 6 after header TEI */
724 "00000000" /* header TEI == 0 in Echo */
725 "cdef" /* same sequence nr */
726 "0000"
727 "0e23" /* Recovery with restart counter */
728 ;
729
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100730 to_ofd = NULL;
731 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100732 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, GTPH_PLANE_CTRL,
733 &ggsn_sender, buf, msg(gtp_ping_from_ggsn),
734 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200735 OSMO_ASSERT(send > 0);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100736 OSMO_ASSERT(same_addr(&to_addr, &ggsn_sender));
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100737 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == GGSNS_CTRL_FD));
Neels Hofmeyra7c10152015-11-09 15:12:25 +0100738 OSMO_ASSERT(reply_is(gtp_pong_to_ggsn));
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200739
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100740 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100741 &sgsn_sender);
742 OSMO_ASSERT(!pp);
743
744
745 /* And all the same on the user plane. */
746
747 to_ofd = NULL;
748 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100749 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, GTPH_PLANE_USER,
750 &sgsn_sender, buf, msg(gtp_ping_from_sgsn),
751 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100752 OSMO_ASSERT(send > 0);
753 OSMO_ASSERT(to_addr.l);
754 OSMO_ASSERT(same_addr(&to_addr, &sgsn_sender));
755 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == SGSNS_USER_FD));
756 OSMO_ASSERT(reply_is(gtp_pong_to_sgsn));
757
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100758 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100759 &sgsn_sender);
760 OSMO_ASSERT(!pp);
761
762 to_ofd = NULL;
763 ZERO_STRUCT(&to_addr);
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100764 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, GTPH_PLANE_USER,
765 &ggsn_sender, buf, msg(gtp_ping_from_ggsn),
766 now, &reply_buf, &to_ofd, &to_addr);
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100767 OSMO_ASSERT(send > 0);
768 OSMO_ASSERT(same_addr(&to_addr, &ggsn_sender));
769 OSMO_ASSERT(to_ofd && (to_ofd->priv_nr == GGSNS_USER_FD));
770 OSMO_ASSERT(reply_is(gtp_pong_to_ggsn));
771
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100772 pp = gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER],
Neels Hofmeyr0b700e32015-11-20 00:57:05 +0100773 &sgsn_sender);
774 OSMO_ASSERT(!pp);
775
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200776
Neels Hofmeyr21d08732015-11-20 00:08:28 +0100777 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100778}
779
780
781#define MSG_PDP_CTX_REQ(len, seq, restart, imsi, tei_u, tei_c, apn, gsn_c, gsn_u) \
782 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
783 "10" /* type 16: Create PDP Context Request */ \
784 len /* msg length = 8 + len (2 octets) */ \
785 "00000000" /* No TEI yet */ \
786 seq /* Sequence nr (2 octets) */ \
787 "00" /* N-PDU 0 */ \
788 "00" /* No extensions */ \
789 /* IEs */ \
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100790 "0e" restart /* 14: Recovery (restart counter: 1 octet) */ \
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100791 "02" /* 2 = IMSI */ \
792 imsi /* (8 octets) */ \
793 "0f01" /* 15: Selection mode = MS provided APN, subscription not verified*/ \
794 "10" /* 16: TEI Data I */ \
795 tei_u /* (4 octets) */ \
796 "11" /* 17: TEI Control Plane */ \
797 tei_c /* (4 octets) */ \
798 "1400" /* 20: NSAPI = 0*/ \
799 "1a" /* 26: Charging Characteristics */ \
800 "0800" \
801 "80" /* 128: End User Address */ \
802 "0002" /* length = 2: empty PDP Address */ \
803 "f121" /* spare 0xf0, PDP organization 1, PDP type number 0x21 = 33 */ \
804 "83" /* 131: Access Point Name */ \
805 apn /* (2 octets length, N octets encoded APN-NI) */ \
806 "84" /* 132: Protocol Configuration Options */ \
807 "0015" /* length = 21 */ \
808 "80c0231101010011036d69670868656d6d656c6967" \
809 "85" /* 133: GSN Address */ \
810 gsn_c /* (2 octets length, N octets addr) */ \
811 "85" /* 133: GSN Address (second entry) */ \
812 gsn_u /* (2 octets length, N octets addr) */ \
813 "86" /* 134: MS International PSTN/ISDN Number (MSISDN) */ \
814 "0007" /* length */ \
815 "916407123254f6" /* 1946702123456(f) */ \
816 "87" /* 135: Quality of Service (QoS) Profile */ \
817 "0004" /* length */ \
818 "00" /* priority */ \
819 "0b921f" /* QoS profile data */
820
821#define MSG_PDP_CTX_RSP(len, tei_h, seq, restart, tei_u, tei_c, gsn_c, gsn_u) \
822 "32" \
823 "11" /* Create PDP Context Response */ \
824 len /* msg length = 8 + len (2 octets) */ \
825 tei_h /* destination TEI (sent in req above) */ \
826 seq /* mapped seq */ \
827 "00" "00" \
828 /* IEs */ \
829 "01" /* 1: Cause */ \
830 "80" /* value = 0b10000000 = response, no rejection. */ \
831 "08" /* 8: Reordering Required */ \
832 "00" /* not required. */ \
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100833 "0e" restart /* 14: Recovery */ \
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100834 "10" /* 16: TEI Data I */ \
835 tei_u \
836 "11" /* 17: TEI Control */ \
837 tei_c \
838 "7f" /* 127: Charging ID */ \
839 "00000001" \
840 "80" /* 128: End User Address */ \
841 "0006" /* length = 6 */ \
842 "f121" /* spare 0xf0, PDP organization 1, PDP type number 0x21 = 33 */ \
843 "7f000002" \
844 "84" /* 132: Protocol Configuration Options */ \
845 "0014" /* len = 20 */ \
846 "8080211002000010810608080808830600000000" \
847 "85" /* 133: GSN Address (Ctrl) */ \
848 gsn_c \
849 "85" /* 133: GSN Address (User) */ \
850 gsn_u \
851 "87" /* 135: Quality of Service (QoS) Profile */ \
852 "0004" /* length */ \
853 "00" /* priority */ \
854 "0b921f" /* QoS profile data */
855
856#define msg_from_sgsn_c(A,B,C,D) msg_from_sgsn(GTPH_PLANE_CTRL, A,B,C,D)
857#define msg_from_sgsn_u(A,B,C,D) msg_from_sgsn(GTPH_PLANE_USER, A,B,C,D)
858static int msg_from_sgsn(int plane_idx,
859 struct osmo_sockaddr *_sgsn_sender,
860 struct osmo_sockaddr *ggsn_receiver,
861 const char *hex_from_sgsn,
862 const char *hex_to_ggsn)
863{
864 struct osmo_fd *ggsn_ofd = NULL;
865 struct osmo_sockaddr ggsn_addr;
866 int send;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100867 send = gtphub_handle_buf(hub, GTPH_SIDE_SGSN, plane_idx, _sgsn_sender,
868 buf, msg(hex_from_sgsn), now,
869 &reply_buf, &ggsn_ofd, &ggsn_addr);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100870 LVL2_ASSERT(send > 0);
871 LVL2_ASSERT(same_addr(&ggsn_addr, ggsn_receiver));
872 LVL2_ASSERT(reply_is(hex_to_ggsn));
873 return 1;
874}
875
876#define msg_from_ggsn_c(A,B,C,D) msg_from_ggsn(GTPH_PLANE_CTRL, A,B,C,D)
877#define msg_from_ggsn_u(A,B,C,D) msg_from_ggsn(GTPH_PLANE_USER, A,B,C,D)
878static int msg_from_ggsn(int plane_idx,
879 struct osmo_sockaddr *ggsn_sender,
880 struct osmo_sockaddr *sgsn_receiver,
881 const char *msg_from_ggsn,
882 const char *msg_to_sgsn)
883{
884 struct osmo_fd *sgsn_ofd;
885 struct osmo_sockaddr sgsn_addr;
886 int send;
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +0100887 send = gtphub_handle_buf(hub, GTPH_SIDE_GGSN, plane_idx, ggsn_sender,
888 buf, msg(msg_from_ggsn), now,
889 &reply_buf, &sgsn_ofd, &sgsn_addr);
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100890 LVL2_ASSERT(send > 0);
891 LVL2_ASSERT(same_addr(&sgsn_addr, sgsn_receiver));
892 LVL2_ASSERT(reply_is(msg_to_sgsn));
893 return 1;
894}
895
896static int create_pdp_ctx()
897{
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100898 const char *gtp_req_from_sgsn =
899 MSG_PDP_CTX_REQ("0068",
900 "abcd",
901 "60",
902 "42000121436587f9",
903 "00000123",
904 "00000321",
905 "0009""08696e7465726e6574", /* "(8)internet" */
906 "0004""c0a82a17", /* same as default sgsn_sender */
907 "0004""c0a82a17"
908 );
909 const char *gtp_req_to_ggsn =
910 MSG_PDP_CTX_REQ("0068",
911 "6d31", /* mapped seq ("abcd") */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100912 "23",
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100913 "42000121436587f9",
Neels Hofmeyr6c164062015-11-27 01:20:53 +0100914 "00000002", /* mapped TEI Data I ("123") */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100915 "00000001", /* mapped TEI Control ("321") */
916 "0009""08696e7465726e6574",
917 "0004""7f000201", /* replaced with gtphub's ggsn ctrl */
918 "0004""7f000202" /* replaced with gtphub's ggsn user */
919 );
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100920
921 LVL2_ASSERT(msg_from_sgsn_c(&sgsn_sender,
922 &resolved_ggsn_addr,
923 gtp_req_from_sgsn,
924 gtp_req_to_ggsn));
925 LVL2_ASSERT(was_resolved_for("240010123456789", "internet"));
926
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100927 LVL2_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +0100928 "192.168.42.23 (TEI C 321=1 / U 123=2)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +0100929 " <-> 192.168.43.34 / (uninitialized) (TEI C 0=0 / U 0=0)"
930 " @21945\n"));
931
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100932 const char *gtp_resp_from_ggsn =
933 MSG_PDP_CTX_RSP("004e",
934 "00000001", /* destination TEI (sent in req above) */
935 "6d31", /* mapped seq */
936 "01", /* restart */
937 "00000567", /* TEI U */
938 "00000765", /* TEI C */
939 "0004""c0a82b22", /* GSN addresses */
940 "0004""c0a82b22" /* (== resolved_ggsn_addr) */
941 );
942 const char *gtp_resp_to_sgsn =
943 MSG_PDP_CTX_RSP("004e",
944 "00000321", /* unmapped TEI ("001") */
945 "abcd", /* unmapped seq ("6d31") */
Neels Hofmeyr80ee3912015-11-26 22:19:22 +0100946 "23",
Neels Hofmeyr6c164062015-11-27 01:20:53 +0100947 "00000004", /* mapped TEI from GGSN ("567") */
948 "00000003", /* mapped TEI from GGSN ("765") */
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +0100949 "0004""7f000101", /* gtphub's address towards SGSNs (Ctrl) */
950 "0004""7f000102" /* gtphub's address towards SGSNs (User) */
951 );
Neels Hofmeyre6078bc2015-11-11 00:45:50 +0100952 /* The response should go back to whichever port the request came from
953 * (unmapped by sequence nr) */
Neels Hofmeyr43283a32015-11-10 22:07:04 +0100954 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
955 &sgsn_sender,
956 gtp_resp_from_ggsn,
957 gtp_resp_to_sgsn));
958
959 return 1;
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200960}
961
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +0100962#define MSG_DEL_PDP_CTX_REQ(tei, seq) \
963 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
964 "14" /* type 20: Delete PDP Context Request */ \
965 "0008" /* msg length = 8 + len (2 octets) */ \
966 tei /* TEI Ctrl */ \
967 seq /* Sequence nr (2 octets) */ \
968 "00" /* N-PDU 0 */ \
969 "00" /* No extensions */ \
970 /* IEs */ \
971 "13fe" /* 19: Teardown ind = 0 */ \
972 "1400" /* 20: NSAPI = 0*/ \
973
974#define MSG_DEL_PDP_CTX_RSP(tei, seq) \
975 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr. */ \
976 "15" /* type 21: Delete PDP Context Response */ \
977 "0006" /* msg length = 8 + len (2 octets) */ \
978 tei /* TEI Ctrl */ \
979 seq /* Sequence nr (2 octets) */ \
980 "00" /* N-PDU 0 */ \
981 "00" /* No extensions */ \
982 /* IEs */ \
983 "01" /* 1: Cause */ \
984 "80" /* value = 0b10000000 = response, no rejection. */ \
985
Neels Hofmeyr200aff62015-12-01 01:01:16 +0100986static int delete_pdp_ctx_from_sgsn(void)
Neels Hofmeyr9f796642015-09-24 17:32:30 +0200987{
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +0100988 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
989 gtphub_gc(hub, now);
990
991 LVL2_ASSERT(tunnels_are(
992 "192.168.42.23 (TEI C 321=1 / U 123=2)"
993 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
994 " @21945\n"));
995
996 /* TEI Ctrl from above and next sequence after abcd. */
997 const char *gtp_req_from_sgsn = MSG_DEL_PDP_CTX_REQ("00000003", "abce");
998 const char *gtp_req_to_ggsn = MSG_DEL_PDP_CTX_REQ("00000765", "6d32");
999
1000 LVL2_ASSERT(msg_from_sgsn_c(&sgsn_sender,
1001 &resolved_ggsn_addr,
1002 gtp_req_from_sgsn,
1003 gtp_req_to_ggsn));
1004
1005 /* 21945 + 31 = 21976 */
1006 LVL2_ASSERT(tunnels_are(
1007 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1008 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1009 " @21976\n"));
1010
1011 const char *gtp_resp_from_ggsn =
1012 MSG_DEL_PDP_CTX_RSP("00000001", "6d32");
1013 const char *gtp_resp_to_sgsn =
1014 MSG_DEL_PDP_CTX_RSP("00000321", "abce");
1015
1016 /* The response should go back to whichever port the request came from
1017 * (unmapped by sequence nr) */
1018 LVL2_ASSERT(msg_from_ggsn_c(&resolved_ggsn_addr,
1019 &sgsn_sender,
1020 gtp_resp_from_ggsn,
1021 gtp_resp_to_sgsn));
1022
1023 LVL2_ASSERT(tunnels_are(""));
1024
1025 return 1;
1026}
1027
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001028static int delete_pdp_ctx_from_ggsn(void)
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001029{
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001030 now += GTPH_EXPIRE_QUICKLY_SECS + 1;
1031 gtphub_gc(hub, now);
1032
1033 LVL2_ASSERT(tunnels_are(
1034 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1035 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1036 " @21945\n"));
1037
1038 /* TEI Ctrl from above and next sequence after abcd. */
1039 const char *gtp_req_from_ggsn = MSG_DEL_PDP_CTX_REQ("00000001", "5432");
1040 const char *gtp_req_to_sgsn = MSG_DEL_PDP_CTX_REQ("00000321", "6d31");
1041
1042 LVL2_ASSERT(msg_from_ggsn_c(&ggsn_sender,
1043 &resolved_sgsn_addr,
1044 gtp_req_from_ggsn,
1045 gtp_req_to_sgsn));
1046
1047 /* 21945 + 31 = 21976 */
1048 LVL2_ASSERT(tunnels_are(
1049 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1050 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
1051 " @21976\n"));
1052
1053 const char *gtp_resp_from_sgsn =
1054 MSG_DEL_PDP_CTX_RSP("00000003", "6d31");
1055 const char *gtp_resp_to_ggsn =
1056 MSG_DEL_PDP_CTX_RSP("00000765", "5432");
1057
1058 /* The response should go back to whichever port the request came from
1059 * (unmapped by sequence nr) */
1060 LVL2_ASSERT(msg_from_sgsn_c(&resolved_sgsn_addr,
1061 &ggsn_sender,
1062 gtp_resp_from_sgsn,
1063 gtp_resp_to_ggsn));
1064
1065 LVL2_ASSERT(tunnels_are(""));
1066
1067 return 1;
1068}
1069
1070static void test_one_pdp_ctx(int del_from_side)
1071{
1072 if (del_from_side == GTPH_SIDE_SGSN)
1073 LOG("test_one_pdp_ctx (del from SGSN)")
1074 else LOG("test_one_pdp_ctx (del from GGSN)");
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001075 OSMO_ASSERT(setup_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001076
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001077 OSMO_ASSERT(create_pdp_ctx());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001078
1079 struct gtphub_peer_port *ggsn_port =
Neels Hofmeyr5da32ac2015-11-29 23:49:48 +01001080 gtphub_port_find_sa(&hub->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
Neels Hofmeyr43283a32015-11-10 22:07:04 +01001081 &resolved_ggsn_addr);
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001082 OSMO_ASSERT(ggsn_port);
1083 struct gtphub_peer *ggsn = ggsn_port->peer_addr->peer;
1084 /* now == 345; now + 30 == 375.
1085 * seq mapping from above:
1086 * 0xabcd == 43981 (sent in the packet)
1087 * 0x6d31 == 27953 (harcoded seq mapping start val) */
1088 OSMO_ASSERT(nr_map_is(&ggsn->seq_map, "(43981->27953@375), "));
1089
1090 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945.
1091 * 0x00000321 == 801 (TEI from SGSN Ctrl)
1092 * 0x00000123 == 291 (TEI from SGSN User)
1093 * 0x00000765 == 1893 (TEI from GGSN Ctrl)
1094 * 0x00000567 == 1383 (TEI from GGSN User)
1095 * Mapped TEIs should be 1 and 2. */
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001096 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001097 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1098 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001099 " @21945\n"));
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001100
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001101 if (del_from_side == GTPH_SIDE_SGSN) {
1102 OSMO_ASSERT(delete_pdp_ctx_from_sgsn());
1103 } else {
1104 OSMO_ASSERT(delete_pdp_ctx_from_ggsn());
1105 }
Neels Hofmeyr3c6e0532015-12-01 00:23:45 +01001106 OSMO_ASSERT(tunnels_are(""));
1107
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001108 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001109}
1110
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001111static void test_user_data(void)
1112{
1113 LOG("test_user_data");
1114
1115 OSMO_ASSERT(setup_test_hub());
1116
1117 OSMO_ASSERT(create_pdp_ctx());
1118
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001119 /* now == 345; now + (6 * 60 * 60) == 21600 + 345 == 21945. */
1120 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001121 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1122 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001123 " @21945\n"));
1124
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001125 LOG("- user data starts");
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001126 /* Now expect default port numbers for User plane. */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001127 resolve_to_ggsn("192.168.43.34", 2152);
1128 resolve_to_sgsn("192.168.42.23", 2152);
1129
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001130 /* 10 minutes later */
1131 now += 600;
1132
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001133 const char *u_from_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001134 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001135 "ff" /* type 255: G-PDU */
1136 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001137 "00000002" /* mapped User TEI for SGSN from create_pdp_ctx() */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001138 "0070" /* seq */
1139 "0000" /* No extensions */
1140 /* User data (ICMP packet), 96 - 12 = 84 octets */
1141 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1142 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1143 "202122232425262728292a2b2c2d2e2f3031323334353637"
1144 ;
1145 const char *u_to_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001146 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001147 "ff" /* type 255: G-PDU */
1148 "0058" /* length: 88 + 8 octets == 96 */
1149 "00000123" /* unmapped User TEI */
1150 "6d31" /* new mapped seq */
1151 "0000"
1152 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1153 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1154 "202122232425262728292a2b2c2d2e2f3031323334353637"
1155 ;
1156
1157 /* This depends on create_pdp_ctx() sending resolved_sgsn_addr as GSN
1158 * Address IEs in the GGSN's Create PDP Ctx Response. */
1159 OSMO_ASSERT(msg_from_ggsn_u(&ggsn_sender,
1160 &resolved_sgsn_addr,
1161 u_from_ggsn,
1162 u_to_sgsn));
1163
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001164 /* Make sure the user plane messages have refreshed the TEI mapping
1165 * timeouts: 21945 + 600 == 22545. */
1166 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001167 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1168 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001169 " @22545\n"));
1170
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001171 const char *u_from_sgsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001172 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001173 "ff" /* type 255: G-PDU */
1174 "0058" /* length: 88 + 8 octets == 96 */
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001175 "00000004" /* mapped User TEI for GGSN from create_pdp_ctx() */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001176 "6d31" /* mapped seq */
1177 "0000" /* No extensions */
1178 /* User data (ICMP packet), 96 - 12 = 84 octets */
1179 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1180 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1181 "202122232425262728292a2b2c2d2e2f3031323334353637"
1182 ;
1183 const char *u_to_ggsn =
Neels Hofmeyr2a1d61f2015-11-16 14:52:05 +01001184 "32" /* 0b001'1 0010: version 1, protocol GTP, with seq nr */
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001185 "ff" /* type 255: G-PDU */
1186 "0058" /* length: 88 + 8 octets == 96 */
1187 "00000567" /* unmapped User TEI */
1188 "0070" /* unmapped seq */
1189 "0000"
1190 "45000054daee40004001f7890a172a010a172a02080060d23f590071e3f8"
1191 "4156000000007241010000000000101112131415161718191a1b1c1d1e1f"
1192 "202122232425262728292a2b2c2d2e2f3031323334353637"
1193 ;
1194
1195 OSMO_ASSERT(msg_from_sgsn_u(&resolved_sgsn_addr,
1196 &ggsn_sender,
1197 u_from_sgsn,
1198 u_to_ggsn));
1199
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001200 /* Make sure the user plane messages have refreshed the TEI mapping
1201 * timeouts: 21945 + 600 == 22545. Both timeouts refreshed: */
1202 OSMO_ASSERT(tunnels_are(
Neels Hofmeyr6c164062015-11-27 01:20:53 +01001203 "192.168.42.23 (TEI C 321=1 / U 123=2)"
1204 " <-> 192.168.43.34 (TEI C 765=3 / U 567=4)"
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001205 " @22545\n"));
1206
Neels Hofmeyr21d08732015-11-20 00:08:28 +01001207 OSMO_ASSERT(clear_test_hub());
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001208}
1209
1210
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001211static struct log_info_cat gtphub_categories[] = {
1212 [DGTPHUB] = {
1213 .name = "DGTPHUB",
1214 .description = "GTP Hub",
1215 .color = "\033[1;33m",
Neels Hofmeyr39da7112015-11-24 13:31:06 +01001216 .enabled = 1, .loglevel = LOGL_DEBUG,
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001217 },
1218};
1219
1220static struct log_info info = {
1221 .cat = gtphub_categories,
1222 .num_cat = ARRAY_SIZE(gtphub_categories),
1223};
1224
1225int main(int argc, char **argv)
1226{
1227 osmo_init_logging(&info);
1228 osmo_gtphub_ctx = talloc_named_const(NULL, 0, "osmo_gtphub");
1229
1230 test_nr_map_basic();
Neels Hofmeyr6a65a8f2015-11-17 14:30:37 +01001231 test_nr_map_wrap();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001232 test_expiry();
1233 test_echo();
Neels Hofmeyr200aff62015-12-01 01:01:16 +01001234 test_one_pdp_ctx(GTPH_SIDE_SGSN);
1235 test_one_pdp_ctx(GTPH_SIDE_GGSN);
Neels Hofmeyre6078bc2015-11-11 00:45:50 +01001236 test_user_data();
Neels Hofmeyr9f796642015-09-24 17:32:30 +02001237 printf("Done\n");
1238
1239 talloc_report_full(osmo_gtphub_ctx, stderr);
1240 OSMO_ASSERT(talloc_total_blocks(osmo_gtphub_ctx) == 1);
1241 return 0;
1242}
1243