blob: e6501cb6d27632e8d5d0a3bf02ed4f2f5a631c57 [file] [log] [blame]
Neels Hofmeyrf06046b2015-10-12 11:57:35 +02001/* Test Osmocom Authentication Protocol */
2/*
3 * (C) 2015 by sysmocom s.f.m.c. GmbH
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include <osmocom/core/application.h>
Harald Welte736474c2016-05-06 23:28:52 +020022#include <osmocom/gsm/oap.h>
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020023
24#include <openbsc/debug.h>
Neels Hofmeyr11ecc932016-12-08 21:29:23 +010025#include <openbsc/oap_client.h>
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020026
27#include <stdio.h>
Harald Welte31760a12016-04-27 15:17:14 +020028#include <string.h>
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020029
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020030static void test_oap_api(void)
Neels Hofmeyrf06046b2015-10-12 11:57:35 +020031{
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010032 printf("Testing OAP API\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020033
Neels Hofmeyr49012f12016-12-08 21:30:34 +010034 struct oap_client_config _config;
35 struct oap_client_config *config = &_config;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020036
Neels Hofmeyr49012f12016-12-08 21:30:34 +010037 struct oap_client_state _state;
38 struct oap_client_state *state = &_state;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020039
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010040 struct osmo_oap_message oap_rx;
41 struct msgb *msg_rx;
42
43 struct osmo_oap_message oap_tx;
44 struct msgb *msg_tx;
45
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020046 memset(config, 0, sizeof(*config));
47 memset(state, 0, sizeof(*state));
48
49 OSMO_ASSERT(osmo_hexparse("0102030405060708090a0b0c0d0e0f10", config->secret_k, 16) == 16);
50 OSMO_ASSERT(osmo_hexparse("1112131415161718191a1b1c1d1e1f20", config->secret_opc, 16) == 16);
51
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010052 fprintf(stderr, "- make sure filling with zeros means uninitialized\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020053 OSMO_ASSERT(state->state == OAP_UNINITIALIZED);
54
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010055 fprintf(stderr, "- reject messages in uninitialized state\n");
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010056 memset(&oap_rx, 0, sizeof(oap_rx));
57 state->client_id = 1;
58 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
59 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010060 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
61 OSMO_ASSERT(state->state == OAP_UNINITIALIZED);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010062 msgb_free(msg_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010063 OSMO_ASSERT(!msg_tx);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010064
Neels Hofmeyr37f92522016-12-08 23:58:31 +010065 fprintf(stderr, "- NULL config should disable\n");
66 OSMO_ASSERT( oap_client_init(NULL, state) == 0 );
67 OSMO_ASSERT(state->state == OAP_DISABLED);
68
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010069 fprintf(stderr, "- reject messages in disabled state\n");
70 memset(state, 0, sizeof(*state));
71 memset(&oap_rx, 0, sizeof(oap_rx));
72 state->state = OAP_DISABLED;
73 state->client_id = 1;
74 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
75 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010076 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
77 OSMO_ASSERT(state->state == OAP_DISABLED);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010078 msgb_free(msg_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010079 OSMO_ASSERT(!msg_tx);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010080
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010081 fprintf(stderr, "- invalid client_id and shared secret\n");
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010082 memset(state, 0, sizeof(*state));
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020083 config->client_id = 0;
84 config->secret_k_present = 0;
85 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010086 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020087 OSMO_ASSERT(state->state == OAP_DISABLED);
88
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010089 fprintf(stderr, "- reset state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020090 memset(state, 0, sizeof(*state));
91
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010092 fprintf(stderr, "- only client_id is invalid\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020093 config->client_id = 0;
94 config->secret_k_present = 1;
95 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010096 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020097 OSMO_ASSERT(state->state == OAP_DISABLED);
98
99 memset(state, 0, sizeof(*state));
100
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100101 fprintf(stderr, "- valid id, but omitted shared_secret (1/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200102 config->client_id = 12345;
103 config->secret_k_present = 0;
104 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100105 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200106 OSMO_ASSERT(state->state == OAP_DISABLED);
107
108 memset(state, 0, sizeof(*state));
109
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100110 fprintf(stderr, "- valid id, but omitted shared_secret (2/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200111 config->client_id = 12345;
112 config->secret_k_present = 1;
113 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100114 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200115 OSMO_ASSERT(state->state == OAP_DISABLED);
116
117 memset(state, 0, sizeof(*state));
118
119
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100120 fprintf(stderr, "- mint configuration\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200121 config->client_id = 12345;
122 config->secret_k_present = 1;
123 config->secret_opc_present = 1;
124 /*config->secret_* buffers are still set from the top */
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100125 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200126 OSMO_ASSERT(state->state == OAP_INITIALIZED);
127
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200128
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100129 fprintf(stderr, "- Missing challenge data\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200130 memset(&oap_rx, 0, sizeof(oap_rx));
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200131 oap_rx.message_type = OAP_MSGT_CHALLENGE_REQUEST;
132 oap_rx.rand_present = 0;
133 oap_rx.autn_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100134 msg_rx = oap_client_encoded(&oap_rx);
135 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200136 msgb_free(msg_rx);
137 OSMO_ASSERT(!msg_tx);
138
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100139 fprintf(stderr, "- AUTN missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200140 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
141 oap_rx.rand, 16);
142 oap_rx.rand_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100143 msg_rx = oap_client_encoded(&oap_rx);
144 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200145 msgb_free(msg_rx);
146 OSMO_ASSERT(!msg_tx);
147
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100148 fprintf(stderr, "- RAND missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200149 oap_rx.rand_present = 0;
150 osmo_hexparse("cec4e3848a33000086781158ca40f136",
151 oap_rx.autn, 16);
152 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100153 msg_rx = oap_client_encoded(&oap_rx);
154 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200155 msgb_free(msg_rx);
156 OSMO_ASSERT(!msg_tx);
157
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100158 fprintf(stderr, "- wrong autn (by one bit)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200159 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
160 oap_rx.rand, 16);
161 osmo_hexparse("dec4e3848a33000086781158ca40f136",
162 oap_rx.autn, 16);
163 oap_rx.rand_present = 1;
164 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100165 msg_rx = oap_client_encoded(&oap_rx);
166 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200167 msgb_free(msg_rx);
168 OSMO_ASSERT(!msg_tx);
169
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100170 fprintf(stderr, "- all data correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200171 osmo_hexparse("cec4e3848a33000086781158ca40f136",
172 oap_rx.autn, 16);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100173 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200174
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100175 fprintf(stderr, "- but refuse to evaluate in uninitialized state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200176 OSMO_ASSERT(state->state == OAP_INITIALIZED);
177
178 state->state = OAP_UNINITIALIZED;
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +0100179 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200180 OSMO_ASSERT(!msg_tx);
181
182 state->state = OAP_DISABLED;
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +0100183 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200184 OSMO_ASSERT(!msg_tx);
185
186 state->state = OAP_INITIALIZED;
187
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100188 fprintf(stderr, "- now everything is correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200189 /* a successful return value here indicates correct autn */
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100190 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200191 msgb_free(msg_rx);
192
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100193 fprintf(stderr, "- Expect the challenge response in msg_tx\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200194 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200195 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200196 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_CHALLENGE_RESULT);
197 OSMO_ASSERT(strcmp("e2d05b598c61d9ba",
198 osmo_hexdump_nospc(oap_tx.xres, sizeof(oap_tx.xres)))
199 == 0);
200 OSMO_ASSERT(state->state == OAP_SENT_CHALLENGE_RESULT);
201 msgb_free(msg_tx);
202 msg_tx = 0;
203
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100204 struct oap_client_state saved_state = _state;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200205
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100206 fprintf(stderr, "- Receive registration error for the first time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200207
208 memset(&oap_rx, 0, sizeof(oap_rx));
209 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
210 oap_rx.cause = GMM_CAUSE_PROTO_ERR_UNSPEC;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100211 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200212
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200213 OSMO_ASSERT(state->registration_failures == 0);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100214 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200215 OSMO_ASSERT(state->registration_failures == 1);
216 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200217 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200218 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_REGISTER_REQUEST);
219 OSMO_ASSERT(state->state == OAP_REQUESTED_CHALLENGE);
220 msgb_free(msg_tx);
221 msg_tx = 0;
222
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100223 fprintf(stderr, "- Receive registration error for the Nth time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200224 state->registration_failures = 999;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100225 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -11);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200226 OSMO_ASSERT(!msg_tx);
227 OSMO_ASSERT(state->state == OAP_INITIALIZED);
228 msgb_free(msg_tx);
229 msg_tx = 0;
230
231 msgb_free(msg_rx);
232
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100233 fprintf(stderr, "- Registration success\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200234
235 _state = saved_state;
236 memset(&oap_rx, 0, sizeof(oap_rx));
237 oap_rx.message_type = OAP_MSGT_REGISTER_RESULT;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100238 msg_rx = oap_client_encoded(&oap_rx);
239 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200240 OSMO_ASSERT(!msg_tx);
241 OSMO_ASSERT(state->state == OAP_REGISTERED);
242 msgb_free(msg_rx);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200243}
244
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100245static struct log_info_cat oap_client_test_categories[] = {
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200246};
247
248static struct log_info info = {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100249 .cat = oap_client_test_categories,
250 .num_cat = ARRAY_SIZE(oap_client_test_categories),
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200251};
252
253int main(int argc, char **argv)
254{
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +0200255 msgb_talloc_ctx_init(NULL, 0);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200256 osmo_init_logging(&info);
257
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100258 OSMO_ASSERT(osmo_stderr_target);
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100259 log_set_use_color(osmo_stderr_target, 0);
260 log_set_print_timestamp(osmo_stderr_target, 0);
261 log_set_print_filename(osmo_stderr_target, 0);
262 log_set_print_category(osmo_stderr_target, 1);
263 log_parse_category_mask(osmo_stderr_target, "DLOAP,1");
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100264
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200265 test_oap_api();
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200266 printf("Done\n");
267
268 return 0;
269}
270