blob: 8e88ba82f93ab963e789feacb451ea4f387feb9d [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
Neels Hofmeyrc0164792017-09-04 15:15:32 +020027#include <osmocom/bsc/debug.h>
28#include <osmocom/bsc/gsm_data.h>
Jacob Erlbeck946d1412013-09-17 13:59:29 +020029
Neels Hofmeyrc0164792017-09-04 15:15:32 +020030#include <osmocom/bsc/osmo_bsc.h>
31#include <osmocom/bsc/bsc_msc_data.h>
32#include <osmocom/bsc/gsm_04_80.h>
Jacob Erlbeck946d1412013-09-17 13:59:29 +020033
34#include <osmocom/core/application.h>
35#include <osmocom/core/backtrace.h>
36#include <osmocom/core/talloc.h>
37
38#include <stdio.h>
39#include <search.h>
40
Neels Hofmeyre3416182018-03-05 05:31:14 +010041void *ctx = NULL;
42
Jacob Erlbeck946d1412013-09-17 13:59:29 +020043enum test {
44 TEST_SCAN_TO_BTS,
Jacob Erlbeck946d1412013-09-17 13:59:29 +020045};
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
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200125 struct gsm_network *net = gsm_network_init(ctx);
Harald Welte9f7b1952017-12-18 18:54:20 +0100126 struct gsm_bts *bts = gsm_bts_alloc(net, 0);
Neels Hofmeyra369e242017-02-23 21:57:23 +0100127 struct bsc_msc_data *msc;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200128 struct gsm_subscriber_connection *conn;
129
Neels Hofmeyra369e242017-02-23 21:57:23 +0100130 msc = talloc_zero(net, struct bsc_msc_data);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200131 conn = talloc_zero(net, struct gsm_subscriber_connection);
132
133 bts->network = net;
Harald Welte519c7e12018-01-28 02:45:46 +0100134 conn->sccp.msc = msc;
Harald Welte9f7b1952017-12-18 18:54:20 +0100135 conn->lchan = &bts->c0->ts[1].lchan[0];
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200136
Neels Hofmeyr378a4922016-05-09 21:07:43 +0200137 /* start testing with proper messages */
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200138 printf("Testing BTS<->MSC message scan.\n");
139 for (i = 0; i < ARRAY_SIZE(test_scan_defs); ++i) {
140 const struct test_definition *test_def = &test_scan_defs[i];
141 int result;
142 struct msgb *msg = msgb_alloc(4096, "test-message");
143 int is_set = 0;
144
Neels Hofmeyr73983952016-05-10 13:29:33 +0200145 net->tz.hr = get_int(test_def->params, test_def->n_params, "tz_hr", 0, &is_set);
146 net->tz.mn = get_int(test_def->params, test_def->n_params, "tz_mn", 0, &is_set);
147 net->tz.dst = get_int(test_def->params, test_def->n_params, "tz_dst", 0, &is_set);
148 net->tz.override = 1;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200149
150 printf("Going to test item: %d\n", i);
151 msg->l3h = msgb_put(msg, test_def->length);
152 memcpy(msg->l3h, test_def->data, test_def->length);
153
154 switch (test_def->dir) {
155 case TEST_SCAN_TO_BTS:
Neels Hofmeyrfea1df82016-02-27 23:38:28 +0100156 /* override timezone of msg coming from the MSC */
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200157 result = bsc_scan_msc_msg(conn, msg);
158 break;
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200159 default:
160 abort();
161 break;
162 }
163
164 if (result != test_def->result) {
165 printf("FAIL: Not the expected result, got: %d wanted: %d\n",
166 result, test_def->result);
167 goto out;
168 }
169
170 if (msgb_l3len(msg) != test_def->out_length) {
171 printf("FAIL: Not the expected message size, got: %d wanted: %d\n",
172 msgb_l3len(msg), test_def->out_length);
173 goto out;
174 }
175
176 if (memcmp(msgb_l3(msg), test_def->out_data, test_def->out_length) != 0) {
177 printf("FAIL: Not the expected message\n");
178 goto out;
179 }
180
181out:
182 msgb_free(msg);
183 }
184
185 talloc_free(net);
186}
187
Neels Hofmeyr7997bf42018-02-13 17:16:44 +0100188static const struct log_info_cat log_categories[] = {
189 [DNM] = {
190 .name = "DNM",
191 .description = "A-bis Network Management / O&M (NM/OML)",
192 .color = "\033[1;36m",
193 .enabled = 1, .loglevel = LOGL_INFO,
194 },
195 [DNAT] = {
196 .name = "DNAT",
197 .description = "GSM 08.08 NAT/Multiplexer",
198 .enabled = 1, .loglevel = LOGL_NOTICE,
199 },
200 [DMSC] = {
201 .name = "DMSC",
202 .description = "Mobile Switching Center",
203 .enabled = 1, .loglevel = LOGL_NOTICE,
204 },
205 [DCTRL] = {
206 .name = "DCTRL",
207 .description = "Control interface",
208 .enabled = 1, .loglevel = LOGL_NOTICE,
209 },
210 [DFILTER] = {
211 .name = "DFILTER",
212 .description = "BSC/NAT IMSI based filtering",
213 .enabled = 1, .loglevel = LOGL_DEBUG,
214 },
215};
216
217static const struct log_info log_info = {
218 .cat = log_categories,
219 .num_cat = ARRAY_SIZE(log_categories),
220};
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200221
222int main(int argc, char **argv)
223{
Neels Hofmeyre3416182018-03-05 05:31:14 +0100224 ctx = talloc_named_const(NULL, 0, "bsc-test");
225 msgb_talloc_ctx_init(ctx, 0);
226 osmo_init_logging2(ctx, &log_info);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200227
228 test_scan();
229
230 printf("Testing execution completed.\n");
Neels Hofmeyre3416182018-03-05 05:31:14 +0100231 talloc_free(ctx);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200232 return 0;
233}
Harald Welte3561bd42018-01-28 03:04:16 +0100234
235struct gsm_subscriber_connection *bsc_subscr_con_allocate(struct gsm_network *net) {
236 OSMO_ASSERT(0);
237}
Neels Hofmeyrc19581f2018-05-27 03:05:18 +0200238
239void bsc_sapi_n_reject(struct gsm_subscriber_connection *conn, int dlci) {}
240void bsc_cipher_mode_compl(struct gsm_subscriber_connection *conn, struct msgb *msg, uint8_t chosen_encr) {}
241int bsc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg, uint16_t chosen_channel)
242{ return 0; }
243void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg) {}
244void bsc_assign_compl(struct gsm_subscriber_connection *conn, uint8_t rr_cause) {}
245void bsc_assign_fail(struct gsm_subscriber_connection *conn, uint8_t cause, uint8_t *rr_cause) {}
246int bsc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
247{ return 0; }
248void bsc_cm_update(struct gsm_subscriber_connection *conn,
249 const uint8_t *cm2, uint8_t cm2_len,
250 const uint8_t *cm3, uint8_t cm3_len) {}
Neels Hofmeyr149160f2018-06-16 17:20:13 +0200251void gscon_submit_rsl_dtap(struct gsm_subscriber_connection *conn,
252 struct msgb *msg, int link_id, int allow_sacch) {}
Neels Hofmeyr31f525e2018-05-14 18:14:15 +0200253void ts_fsm_alloc(struct gsm_bts_trx_ts *ts) {}
254void lchan_activate(struct gsm_lchan *lchan, void *info) {}