blob: 20ed5b43b538629202ca4ad1a86fe4eeefaef1d6 [file] [log] [blame]
Jacob Erlbeck946d1412013-09-17 13:59:29 +02001/*
2 * BSC Message filtering
3 *
4 * (C) 2013 by sysmocom s.f.m.c. GmbH
5 * Written by Jacob Erlbeck <jerlbeck@sysmocom.de>
6 * (C) 2010-2013 by Holger Hans Peter Freyther <zecke@selfish.org>
7 * (C) 2010-2013 by On-Waves
8 *
9 * All Rights Reserved
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26
27#include <openbsc/debug.h>
28#include <openbsc/gsm_data.h>
29
30#include <openbsc/osmo_bsc.h>
Neels Hofmeyra42855f2017-02-23 21:49:55 +010031#include <openbsc/bsc_msc_data.h>
Jacob Erlbeck946d1412013-09-17 13:59:29 +020032#include <openbsc/gsm_04_80.h>
33#include <openbsc/gsm_subscriber.h>
34
35#include <osmocom/core/application.h>
36#include <osmocom/core/backtrace.h>
37#include <osmocom/core/talloc.h>
38
39#include <stdio.h>
40#include <search.h>
41
42enum test {
43 TEST_SCAN_TO_BTS,
44 TEST_SCAN_TO_MSC,
45};
46
47/* GSM 04.08 MM INFORMATION test message */
48static uint8_t gsm48_mm_info_nn_tzt[] = {
49 0x05, 0x32, 0x45, 0x08, 0x80, 0x4f, 0x77, 0xeb,
50 0x1a, 0xb6, 0x97, 0xe7, 0x47, 0x31, 0x90, 0x61,
51 0x11, 0x02, 0x73, 0x00,
52};
53
54static uint8_t gsm48_mm_info_nn_tzt_out[] = {
55 0x05, 0x32, 0x45, 0x08, 0x80, 0x4f, 0x77, 0xeb,
56 0x1a, 0xb6, 0x97, 0xe7, 0x47, 0x31, 0x90, 0x61,
57 0x11, 0x02, 0x73, 0x1a,
58};
59
60static uint8_t gsm48_mm_info_nn_tzt_dst[] = {
61 0x05, 0x32, 0x45, 0x08, 0x80, 0x4f, 0x77, 0xeb,
62 0x1a, 0xb6, 0x97, 0xe7, 0x47, 0x31, 0x90, 0x61,
63 0x11, 0x02, 0x73, 0x00, 0x49, 0x01, 0x00,
64};
65
66static uint8_t gsm48_mm_info_nn_tzt_dst_out[] = {
67 0x05, 0x32, 0x45, 0x08, 0x80, 0x4f, 0x77, 0xeb,
68 0x1a, 0xb6, 0x97, 0xe7, 0x47, 0x31, 0x90, 0x61,
69 0x11, 0x02, 0x73, 0x1a, 0x49, 0x01, 0x02,
70};
71
72struct test_definition {
73 const uint8_t *data;
74 const uint16_t length;
75 const int dir;
76 const int result;
77 const uint8_t *out_data;
78 const uint16_t out_length;
79 const char* params;
80 const int n_params;
81};
82
83static int get_int(const char *params, size_t nmemb, const char *key, int def, int *is_set)
84{
85 const char *kv = NULL;
86
87 kv = strstr(params, key);
88 if (kv) {
89 kv += strlen(key) + 1;
90 fprintf(stderr, "get_int(%s) -> %d\n", key, atoi(kv));
91 if (is_set)
92 *is_set = 1;
93 }
94
95 return kv ? atoi(kv) : def;
96}
97
98static const struct test_definition test_scan_defs[] = {
99 {
100 .data = gsm48_mm_info_nn_tzt_dst,
101 .length = ARRAY_SIZE(gsm48_mm_info_nn_tzt),
102 .dir = TEST_SCAN_TO_BTS,
103 .result = 0,
104 .out_data = gsm48_mm_info_nn_tzt_dst_out,
105 .out_length = ARRAY_SIZE(gsm48_mm_info_nn_tzt_out),
106 .params = "tz_hr=-5 tz_mn=15 tz_dst=2",
107 .n_params = 3,
108 },
109 {
110 .data = gsm48_mm_info_nn_tzt_dst,
111 .length = ARRAY_SIZE(gsm48_mm_info_nn_tzt_dst),
112 .dir = TEST_SCAN_TO_BTS,
113 .result = 0,
114 .out_data = gsm48_mm_info_nn_tzt_dst_out,
115 .out_length = ARRAY_SIZE(gsm48_mm_info_nn_tzt_dst_out),
116 .params = "tz_hr=-5 tz_mn=15 tz_dst=2",
117 .n_params = 3,
118 },
119};
120
121static void test_scan(void)
122{
123 int i;
124
125 struct gsm_network *net;
126 struct gsm_bts *bts;
127 struct osmo_bsc_sccp_con *sccp_con;
Neels Hofmeyra369e242017-02-23 21:57:23 +0100128 struct bsc_msc_data *msc;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200129 struct gsm_subscriber_connection *conn;
130
131 net = talloc_zero(NULL, struct gsm_network);
132 bts = talloc_zero(net, struct gsm_bts);
133 sccp_con = talloc_zero(net, struct osmo_bsc_sccp_con);
Neels Hofmeyra369e242017-02-23 21:57:23 +0100134 msc = talloc_zero(net, struct bsc_msc_data);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200135 conn = talloc_zero(net, struct gsm_subscriber_connection);
136
137 bts->network = net;
138 sccp_con->msc = msc;
139 conn->bts = bts;
140 conn->sccp_con = sccp_con;
141
Neels Hofmeyr378a4922016-05-09 21:07:43 +0200142 /* start testing with proper messages */
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200143 printf("Testing BTS<->MSC message scan.\n");
144 for (i = 0; i < ARRAY_SIZE(test_scan_defs); ++i) {
145 const struct test_definition *test_def = &test_scan_defs[i];
146 int result;
147 struct msgb *msg = msgb_alloc(4096, "test-message");
148 int is_set = 0;
149
Neels Hofmeyr73983952016-05-10 13:29:33 +0200150 net->tz.hr = get_int(test_def->params, test_def->n_params, "tz_hr", 0, &is_set);
151 net->tz.mn = get_int(test_def->params, test_def->n_params, "tz_mn", 0, &is_set);
152 net->tz.dst = get_int(test_def->params, test_def->n_params, "tz_dst", 0, &is_set);
153 net->tz.override = 1;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200154
155 printf("Going to test item: %d\n", i);
156 msg->l3h = msgb_put(msg, test_def->length);
157 memcpy(msg->l3h, test_def->data, test_def->length);
158
159 switch (test_def->dir) {
160 case TEST_SCAN_TO_BTS:
Neels Hofmeyrfea1df82016-02-27 23:38:28 +0100161 /* override timezone of msg coming from the MSC */
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200162 result = bsc_scan_msc_msg(conn, msg);
163 break;
164 case TEST_SCAN_TO_MSC:
Neels Hofmeyrfea1df82016-02-27 23:38:28 +0100165 /* override timezone of msg coming from the BSC */
166 /* FIXME: no test for this case is defined in
167 * test_scan_defs[], so this is never used. */
168 result = bsc_scan_bts_msg(conn, msg);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200169 break;
170 default:
171 abort();
172 break;
173 }
174
175 if (result != test_def->result) {
176 printf("FAIL: Not the expected result, got: %d wanted: %d\n",
177 result, test_def->result);
178 goto out;
179 }
180
181 if (msgb_l3len(msg) != test_def->out_length) {
182 printf("FAIL: Not the expected message size, got: %d wanted: %d\n",
183 msgb_l3len(msg), test_def->out_length);
184 goto out;
185 }
186
187 if (memcmp(msgb_l3(msg), test_def->out_data, test_def->out_length) != 0) {
188 printf("FAIL: Not the expected message\n");
189 goto out;
190 }
191
192out:
193 msgb_free(msg);
194 }
195
196 talloc_free(net);
197}
198
199
200int main(int argc, char **argv)
201{
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +0200202 msgb_talloc_ctx_init(NULL, 0);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200203 osmo_init_logging(&log_info);
204
205 test_scan();
206
207 printf("Testing execution completed.\n");
208 return 0;
209}