blob: c3b86c060779b1c2a07e42c33966070b700acecf [file] [log] [blame]
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08001/*
2 * BSC NAT Message filtering
3 *
4 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freytherdf6143a2010-06-15 18:46:56 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#include <openbsc/debug.h>
27#include <openbsc/gsm_data.h>
28#include <openbsc/bsc_nat.h>
29
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +080030#include <osmocore/talloc.h>
31
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080032#include <stdio.h>
33
34/* test messages for ipa */
35static u_int8_t ipa_id[] = {
36 0x00, 0x01, 0xfe, 0x06,
37};
38
39/* SCCP messages are below */
40static u_int8_t gsm_reset[] = {
41 0x00, 0x12, 0xfd,
42 0x09, 0x00, 0x03, 0x05, 0x07, 0x02, 0x42, 0xfe,
43 0x02, 0x42, 0xfe, 0x06, 0x00, 0x04, 0x30, 0x04,
44 0x01, 0x20,
45};
46
47static const u_int8_t gsm_reset_ack[] = {
48 0x00, 0x13, 0xfd,
49 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
50 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x03,
51 0x00, 0x01, 0x31,
52};
53
54static const u_int8_t gsm_paging[] = {
55 0x00, 0x20, 0xfd,
56 0x09, 0x00, 0x03, 0x07, 0x0b, 0x04, 0x43, 0x01,
57 0x00, 0xfe, 0x04, 0x43, 0x5c, 0x00, 0xfe, 0x10,
58 0x00, 0x0e, 0x52, 0x08, 0x08, 0x29, 0x47, 0x10,
59 0x02, 0x01, 0x31, 0x97, 0x61, 0x1a, 0x01, 0x06,
60};
61
62/* BSC -> MSC connection open */
63static const u_int8_t bssmap_cr[] = {
64 0x00, 0x2c, 0xfd,
65 0x01, 0x01, 0x02, 0x03, 0x02, 0x02, 0x04, 0x02,
66 0x42, 0xfe, 0x0f, 0x1f, 0x00, 0x1d, 0x57, 0x05,
67 0x08, 0x00, 0x72, 0xf4, 0x80, 0x20, 0x12, 0xc3,
68 0x50, 0x17, 0x10, 0x05, 0x24, 0x11, 0x03, 0x33,
69 0x19, 0xa2, 0x08, 0x29, 0x47, 0x10, 0x02, 0x01,
70 0x31, 0x97, 0x61, 0x00
71};
72
73/* MSC -> BSC connection confirm */
74static const u_int8_t bssmap_cc[] = {
75 0x00, 0x0a, 0xfd,
76 0x02, 0x01, 0x02, 0x03, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00,
77};
78
79/* MSC -> BSC released */
80static const u_int8_t bssmap_released[] = {
81 0x00, 0x0e, 0xfd,
82 0x04, 0x00, 0x00, 0x03, 0x01, 0x02, 0x03, 0x00, 0x01, 0x0f,
83 0x02, 0x23, 0x42, 0x00,
84};
85
86/* BSC -> MSC released */
87static const u_int8_t bssmap_release_complete[] = {
88 0x00, 0x07, 0xfd,
89 0x05, 0x01, 0x02, 0x03, 0x00, 0x00, 0x03
90};
91
Holger Hans Peter Freythera128d912010-04-01 08:47:12 +020092/* MGCP wrap... */
93static const u_int8_t mgcp_msg[] = {
94 0x00, 0x03, 0xfc,
95 0x20, 0x20, 0x20,
96};
97
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080098struct filter_result {
99 const u_int8_t *data;
100 const u_int16_t length;
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100101 const int dir;
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800102 const int result;
103};
104
105static const struct filter_result results[] = {
106 {
107 .data = ipa_id,
108 .length = ARRAY_SIZE(ipa_id),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100109 .dir = DIR_MSC,
110 .result = 1,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800111 },
112 {
113 .data = gsm_reset,
114 .length = ARRAY_SIZE(gsm_reset),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100115 .dir = DIR_MSC,
116 .result = 1,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800117 },
118 {
119 .data = gsm_reset_ack,
120 .length = ARRAY_SIZE(gsm_reset_ack),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100121 .dir = DIR_BSC,
122 .result = 1,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800123 },
124 {
125 .data = gsm_paging,
126 .length = ARRAY_SIZE(gsm_paging),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100127 .dir = DIR_BSC,
128 .result = 0,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800129 },
130 {
131 .data = bssmap_cr,
132 .length = ARRAY_SIZE(bssmap_cr),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100133 .dir = DIR_MSC,
134 .result = 0,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800135 },
136 {
137 .data = bssmap_cc,
138 .length = ARRAY_SIZE(bssmap_cc),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100139 .dir = DIR_BSC,
140 .result = 0,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800141 },
142 {
143 .data = bssmap_released,
144 .length = ARRAY_SIZE(bssmap_released),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100145 .dir = DIR_MSC,
146 .result = 0,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800147 },
148 {
149 .data = bssmap_release_complete,
150 .length = ARRAY_SIZE(bssmap_release_complete),
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100151 .dir = DIR_BSC,
152 .result = 0,
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800153 },
Holger Hans Peter Freythera128d912010-04-01 08:47:12 +0200154 {
155 .data = mgcp_msg,
156 .length = ARRAY_SIZE(mgcp_msg),
157 .dir = DIR_MSC,
158 .result = 0,
159 },
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800160};
161
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800162static void test_filter(void)
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800163{
164 int i;
165
166
167 /* start testinh with proper messages */
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800168 fprintf(stderr, "Testing BSS Filtering.\n");
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800169 for (i = 0; i < ARRAY_SIZE(results); ++i) {
170 int result;
171 struct bsc_nat_parsed *parsed;
172 struct msgb *msg = msgb_alloc(4096, "test-message");
173
174 fprintf(stderr, "Going to test item: %d\n", i);
175 memcpy(msg->data, results[i].data, results[i].length);
176 msg->l2h = msgb_put(msg, results[i].length);
177
178 parsed = bsc_nat_parse(msg);
179 if (!parsed) {
180 fprintf(stderr, "FAIL: Failed to parse the message\n");
181 continue;
182 }
183
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100184 result = bsc_nat_filter_ipa(results[i].dir, msg, parsed);
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800185 if (result != results[i].result) {
186 fprintf(stderr, "FAIL: Not the expected result got: %d wanted: %d\n",
187 result, results[i].result);
188 }
189
190 msgb_free(msg);
191 }
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800192}
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800193
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800194#include "bsc_data.c"
195
196static void copy_to_msg(struct msgb *msg, const u_int8_t *data, unsigned int length)
197{
198 msgb_reset(msg);
199 msg->l2h = msgb_put(msg, length);
200 memcpy(msg->l2h, data, msgb_l2len(msg));
201}
202
203#define VERIFY(con_found, con, msg, ver, str) \
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800204 if (!con_found || con_found->bsc != con) { \
Holger Hans Peter Freyther72ba1622010-06-15 18:48:44 +0800205 fprintf(stderr, "Failed to find the con: %p\n", con_found); \
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800206 abort(); \
207 } \
208 if (memcmp(msg->data, ver, sizeof(ver)) != 0) { \
209 fprintf(stderr, "Failed to patch the %s msg.\n", str); \
210 abort(); \
211 }
212
213/* test conn tracking once */
214static void test_contrack()
215{
216 int rc;
217 struct bsc_nat *nat;
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800218 struct bsc_connection *con;
219 struct sccp_connections *con_found;
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800220 struct bsc_nat_parsed *parsed;
221 struct msgb *msg;
222
223 fprintf(stderr, "Testing connection tracking.\n");
224 nat = bsc_nat_alloc();
225 con = bsc_connection_alloc(nat);
226 msg = msgb_alloc(4096, "test");
227
228 /* 1.) create a connection */
229 copy_to_msg(msg, bsc_cr, sizeof(bsc_cr));
230 parsed = bsc_nat_parse(msg);
231 con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
232 if (con_found != NULL) {
Holger Hans Peter Freyther72ba1622010-06-15 18:48:44 +0800233 fprintf(stderr, "Con should not exist %p\n", con_found);
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800234 abort();
235 }
236 rc = create_sccp_src_ref(con, msg, parsed);
237 if (rc != 0) {
238 fprintf(stderr, "Failed to create a ref\n");
239 abort();
240 }
241 con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800242 if (!con_found || con_found->bsc != con) {
Holger Hans Peter Freyther72ba1622010-06-15 18:48:44 +0800243 fprintf(stderr, "Failed to find the con: %p\n", con_found);
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800244 abort();
245 }
246 if (memcmp(msg->data, bsc_cr_patched, sizeof(bsc_cr_patched)) != 0) {
247 fprintf(stderr, "Failed to patch the BSC CR msg.\n");
248 abort();
249 }
250 talloc_free(parsed);
251
252 /* 2.) get the cc */
253 copy_to_msg(msg, msc_cc, sizeof(msc_cc));
254 parsed = bsc_nat_parse(msg);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800255 con_found = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
256 VERIFY(con_found, con, msg, msc_cc_patched, "MSC CC");
257 if (update_sccp_src_ref(con_found, parsed) != 0) {
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800258 fprintf(stderr, "Failed to update the SCCP con.\n");
259 abort();
260 }
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800261
262 /* 3.) send some data */
263 copy_to_msg(msg, bsc_dtap, sizeof(bsc_dtap));
264 parsed = bsc_nat_parse(msg);
265 con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
266 VERIFY(con_found, con, msg, bsc_dtap_patched, "BSC DTAP");
267
268 /* 4.) receive some data */
269 copy_to_msg(msg, msc_dtap, sizeof(msc_dtap));
270 parsed = bsc_nat_parse(msg);
271 con_found = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
272 VERIFY(con_found, con, msg, msc_dtap_patched, "MSC DTAP");
273
274 /* 5.) close the connection */
275 copy_to_msg(msg, msc_rlsd, sizeof(msc_rlsd));
276 parsed = bsc_nat_parse(msg);
277 con_found = patch_sccp_src_ref_to_bsc(msg, parsed, nat);
278 VERIFY(con_found, con, msg, msc_rlsd_patched, "MSC RLSD");
279
280 /* 6.) confirm the connection close */
281 copy_to_msg(msg, bsc_rlc, sizeof(bsc_rlc));
282 parsed = bsc_nat_parse(msg);
283 con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800284 if (!con_found || con_found->bsc != con) {
Holger Hans Peter Freyther72ba1622010-06-15 18:48:44 +0800285 fprintf(stderr, "Failed to find the con: %p\n", con_found);
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800286 abort();
287 }
288 if (memcmp(msg->data, bsc_rlc_patched, sizeof(bsc_rlc_patched)) != 0) {
289 fprintf(stderr, "Failed to patch the BSC CR msg.\n");
290 abort();
291 }
292 remove_sccp_src_ref(con, msg, parsed);
293 con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
294
295 /* verify that it is gone */
296 if (con_found != NULL) {
Holger Hans Peter Freyther72ba1622010-06-15 18:48:44 +0800297 fprintf(stderr, "Con should be gone. %p\n", con_found);
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800298 abort();
299 }
300 talloc_free(parsed);
301
302
303 talloc_free(nat);
304 msgb_free(msg);
305}
306
Holger Hans Peter Freyther04fd9922010-03-30 06:51:53 +0200307static void test_paging(void)
308{
309 struct bsc_nat *nat;
310 struct bsc_connection *con;
311 struct bsc_nat_parsed *parsed;
312 struct msgb *msg;
313
314 fprintf(stderr, "Testing paging by lac.\n");
315
316 nat = bsc_nat_alloc();
317 con = bsc_connection_alloc(nat);
318 con->lac = 23;
319 con->authenticated = 1;
320 llist_add(&con->list_entry, &nat->bsc_connections);
321 msg = msgb_alloc(4096, "test");
322
323 /* Test completely bad input */
324 copy_to_msg(msg, paging_by_lac_cmd, sizeof(paging_by_lac_cmd));
325 if (bsc_nat_find_bsc(nat, msg) != 0) {
326 fprintf(stderr, "Should have not found anything.\n");
327 abort();
328 }
329
330 /* Test it by not finding it */
331 copy_to_msg(msg, paging_by_lac_cmd, sizeof(paging_by_lac_cmd));
332 parsed = bsc_nat_parse(msg);
333 if (bsc_nat_find_bsc(nat, msg) != 0) {
334 fprintf(stderr, "Should have not found aynthing.\n");
335 abort();
336 }
337 talloc_free(parsed);
338
339 /* Test by finding it */
340 con->lac = 8213;
341 copy_to_msg(msg, paging_by_lac_cmd, sizeof(paging_by_lac_cmd));
342 parsed = bsc_nat_parse(msg);
343 if (bsc_nat_find_bsc(nat, msg) != con) {
344 fprintf(stderr, "Should have found it.\n");
345 abort();
346 }
347 talloc_free(parsed);
348}
349
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200350static void test_mgcp_ass_tracking(void)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800351{
352 struct sccp_connections con;
353 struct bsc_nat_parsed *parsed;
354 struct msgb *msg;
355
356 fprintf(stderr, "Testing MGCP.\n");
357 memset(&con, 0, sizeof(con));
358
359 msg = msgb_alloc(4096, "foo");
360 copy_to_msg(msg, ass_cmd, sizeof(ass_cmd));
361 parsed = bsc_nat_parse(msg);
362 if (bsc_mgcp_assign(&con, msg) != 0) {
363 fprintf(stderr, "Failed to handle assignment.\n");
364 abort();
365 }
366
367 if (con.msc_timeslot != 21) {
368 fprintf(stderr, "Timeslot should be 21.\n");
369 abort();
370 }
371
372 if (con.bsc_timeslot != 21) {
373 fprintf(stderr, "Assigned timeslot should have been 21.\n");
374 abort();
375 }
376 talloc_free(parsed);
377
378 bsc_mgcp_clear(&con);
379 if (con.bsc_timeslot != -1 || con.msc_timeslot != -1) {
380 fprintf(stderr, "Clearing should remove the mapping.\n");
381 abort();
382 }
383}
384
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200385/* test the code to find a given connection */
386static void test_mgcp_find(void)
387{
388 struct bsc_nat *nat;
389 struct bsc_connection *con;
390 struct sccp_connections *sccp_con;
391
392 fprintf(stderr, "Testing finding of a BSC Connection\n");
393
394 nat = bsc_nat_alloc();
395 con = bsc_connection_alloc(nat);
396 llist_add(&con->list_entry, &nat->bsc_connections);
397
398 sccp_con = talloc_zero(con, struct sccp_connections);
399 sccp_con->msc_timeslot = 12;
400 sccp_con->bsc_timeslot = 12;
401 sccp_con->bsc = con;
402 llist_add(&sccp_con->list_entry, &nat->sccp_connections);
403
404 if (bsc_mgcp_find_con(nat, 11) != NULL) {
405 fprintf(stderr, "Found the wrong connection.\n");
406 abort();
407 }
408
409 if (bsc_mgcp_find_con(nat, 12) != con) {
410 fprintf(stderr, "Didn't find the connection\n");
411 abort();
412 }
413
414 sccp_con->msc_timeslot = 0;
415 sccp_con->bsc_timeslot = 0;
416 if (bsc_mgcp_find_con(nat, 1) != con) {
417 fprintf(stderr, "Didn't find the connection\n");
418 abort();
419 }
420
421 /* free everything */
422 talloc_free(nat);
423}
424
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200425static void test_mgcp_rewrite(void)
426{
427 int i;
428 struct msgb *input, *output;
429 fprintf(stderr, "Test rewriting MGCP messages.\n");
430
431 input = msgb_alloc(4096, "input");
432
433 for (i = 0; i < ARRAY_SIZE(mgcp_messages); ++i) {
434 const char *orig = mgcp_messages[i].orig;
435 const char *patc = mgcp_messages[i].patch;
436 const char *ip = mgcp_messages[i].ip;
437 const int port = mgcp_messages[i].port;
438
439 copy_to_msg(input, (const u_int8_t *) orig, strlen(orig) + 1);
440
441 output = bsc_mgcp_rewrite(input, ip, port);
442 if (msgb_l2len(output) != strlen(patc)) {
443 fprintf(stderr, "Wrong sizes for test: %d %d != %d != %d\n", i, msgb_l2len(output), strlen(patc), strlen(orig));
444 fprintf(stderr, "String '%s' vs '%s'\n", (const char *) output->l2h, patc);
445 abort();
446 }
447
448 if (memcmp(output->l2h, patc, msgb_l2len(output)) != 0) {
449 fprintf(stderr, "Broken on %d msg: '%s'\n", i, (const char *) output->l2h);
450 abort();
451 }
452
453 msgb_free(output);
454 }
455
456 msgb_free(input);
457}
458
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800459int main(int argc, char **argv)
460{
461 struct debug_target *stderr_target;
462
463 stderr_target = debug_target_create_stderr();
464 debug_add_target(stderr_target);
465 debug_set_all_filter(stderr_target, 1);
466
467 test_filter();
Holger Hans Peter Freyther04fd9922010-03-30 06:51:53 +0200468 test_contrack();
Holger Hans Peter Freyther04fd9922010-03-30 06:51:53 +0200469 test_paging();
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200470 test_mgcp_ass_tracking();
471 test_mgcp_find();
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200472 test_mgcp_rewrite();
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800473 return 0;
474}
Holger Hans Peter Freyther38f7c752010-06-15 18:48:36 +0800475
476void input_event()
477{}
478int nm_state_event()
479{
480 return -1;
481}
482
483int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
484{
485 return -1;
486}