blob: ab651e63b8aa710ba5ca5044806fb7078af73315 [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
65 fprintf(stderr, "- reject messages in disabled state\n");
66 memset(state, 0, sizeof(*state));
67 memset(&oap_rx, 0, sizeof(oap_rx));
68 state->state = OAP_DISABLED;
69 state->client_id = 1;
70 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
71 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010072 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
73 OSMO_ASSERT(state->state == OAP_DISABLED);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010074 msgb_free(msg_rx);
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010075 OSMO_ASSERT(!msg_tx);
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010076
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010077 fprintf(stderr, "- invalid client_id and shared secret\n");
Neels Hofmeyr3cbc0522016-12-08 23:13:29 +010078 memset(state, 0, sizeof(*state));
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020079 config->client_id = 0;
80 config->secret_k_present = 0;
81 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010082 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020083 OSMO_ASSERT(state->state == OAP_DISABLED);
84
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010085 fprintf(stderr, "- reset state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020086 memset(state, 0, sizeof(*state));
87
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010088 fprintf(stderr, "- only client_id is invalid\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020089 config->client_id = 0;
90 config->secret_k_present = 1;
91 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010092 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020093 OSMO_ASSERT(state->state == OAP_DISABLED);
94
95 memset(state, 0, sizeof(*state));
96
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010097 fprintf(stderr, "- valid id, but omitted shared_secret (1/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020098 config->client_id = 12345;
99 config->secret_k_present = 0;
100 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100101 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200102 OSMO_ASSERT(state->state == OAP_DISABLED);
103
104 memset(state, 0, sizeof(*state));
105
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100106 fprintf(stderr, "- valid id, but omitted shared_secret (2/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200107 config->client_id = 12345;
108 config->secret_k_present = 1;
109 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100110 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200111 OSMO_ASSERT(state->state == OAP_DISABLED);
112
113 memset(state, 0, sizeof(*state));
114
115
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100116 fprintf(stderr, "- mint configuration\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200117 config->client_id = 12345;
118 config->secret_k_present = 1;
119 config->secret_opc_present = 1;
120 /*config->secret_* buffers are still set from the top */
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100121 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200122 OSMO_ASSERT(state->state == OAP_INITIALIZED);
123
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200124
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100125 fprintf(stderr, "- Missing challenge data\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200126 memset(&oap_rx, 0, sizeof(oap_rx));
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200127 oap_rx.message_type = OAP_MSGT_CHALLENGE_REQUEST;
128 oap_rx.rand_present = 0;
129 oap_rx.autn_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100130 msg_rx = oap_client_encoded(&oap_rx);
131 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200132 msgb_free(msg_rx);
133 OSMO_ASSERT(!msg_tx);
134
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100135 fprintf(stderr, "- AUTN missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200136 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
137 oap_rx.rand, 16);
138 oap_rx.rand_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100139 msg_rx = oap_client_encoded(&oap_rx);
140 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200141 msgb_free(msg_rx);
142 OSMO_ASSERT(!msg_tx);
143
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100144 fprintf(stderr, "- RAND missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200145 oap_rx.rand_present = 0;
146 osmo_hexparse("cec4e3848a33000086781158ca40f136",
147 oap_rx.autn, 16);
148 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100149 msg_rx = oap_client_encoded(&oap_rx);
150 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200151 msgb_free(msg_rx);
152 OSMO_ASSERT(!msg_tx);
153
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100154 fprintf(stderr, "- wrong autn (by one bit)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200155 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
156 oap_rx.rand, 16);
157 osmo_hexparse("dec4e3848a33000086781158ca40f136",
158 oap_rx.autn, 16);
159 oap_rx.rand_present = 1;
160 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100161 msg_rx = oap_client_encoded(&oap_rx);
162 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200163 msgb_free(msg_rx);
164 OSMO_ASSERT(!msg_tx);
165
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100166 fprintf(stderr, "- all data correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200167 osmo_hexparse("cec4e3848a33000086781158ca40f136",
168 oap_rx.autn, 16);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100169 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200170
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100171 fprintf(stderr, "- but refuse to evaluate in uninitialized state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200172 OSMO_ASSERT(state->state == OAP_INITIALIZED);
173
174 state->state = OAP_UNINITIALIZED;
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +0100175 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) < 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200176 OSMO_ASSERT(!msg_tx);
177
178 state->state = OAP_DISABLED;
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_INITIALIZED;
183
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100184 fprintf(stderr, "- now everything is correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200185 /* a successful return value here indicates correct autn */
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100186 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200187 msgb_free(msg_rx);
188
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100189 fprintf(stderr, "- Expect the challenge response in msg_tx\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200190 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200191 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200192 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_CHALLENGE_RESULT);
193 OSMO_ASSERT(strcmp("e2d05b598c61d9ba",
194 osmo_hexdump_nospc(oap_tx.xres, sizeof(oap_tx.xres)))
195 == 0);
196 OSMO_ASSERT(state->state == OAP_SENT_CHALLENGE_RESULT);
197 msgb_free(msg_tx);
198 msg_tx = 0;
199
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100200 struct oap_client_state saved_state = _state;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200201
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100202 fprintf(stderr, "- Receive registration error for the first time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200203
204 memset(&oap_rx, 0, sizeof(oap_rx));
205 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
206 oap_rx.cause = GMM_CAUSE_PROTO_ERR_UNSPEC;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100207 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200208
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200209 OSMO_ASSERT(state->registration_failures == 0);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100210 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200211 OSMO_ASSERT(state->registration_failures == 1);
212 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200213 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200214 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_REGISTER_REQUEST);
215 OSMO_ASSERT(state->state == OAP_REQUESTED_CHALLENGE);
216 msgb_free(msg_tx);
217 msg_tx = 0;
218
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100219 fprintf(stderr, "- Receive registration error for the Nth time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200220 state->registration_failures = 999;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100221 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -11);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200222 OSMO_ASSERT(!msg_tx);
223 OSMO_ASSERT(state->state == OAP_INITIALIZED);
224 msgb_free(msg_tx);
225 msg_tx = 0;
226
227 msgb_free(msg_rx);
228
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100229 fprintf(stderr, "- Registration success\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200230
231 _state = saved_state;
232 memset(&oap_rx, 0, sizeof(oap_rx));
233 oap_rx.message_type = OAP_MSGT_REGISTER_RESULT;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100234 msg_rx = oap_client_encoded(&oap_rx);
235 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200236 OSMO_ASSERT(!msg_tx);
237 OSMO_ASSERT(state->state == OAP_REGISTERED);
238 msgb_free(msg_rx);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200239}
240
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100241static struct log_info_cat oap_client_test_categories[] = {
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200242};
243
244static struct log_info info = {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100245 .cat = oap_client_test_categories,
246 .num_cat = ARRAY_SIZE(oap_client_test_categories),
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200247};
248
249int main(int argc, char **argv)
250{
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +0200251 msgb_talloc_ctx_init(NULL, 0);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200252 osmo_init_logging(&info);
253
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100254 OSMO_ASSERT(osmo_stderr_target);
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100255 log_set_use_color(osmo_stderr_target, 0);
256 log_set_print_timestamp(osmo_stderr_target, 0);
257 log_set_print_filename(osmo_stderr_target, 0);
258 log_set_print_category(osmo_stderr_target, 1);
259 log_parse_category_mask(osmo_stderr_target, "DLOAP,1");
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100260
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200261 test_oap_api();
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200262 printf("Done\n");
263
264 return 0;
265}
266