blob: a54e3869cff8a4733029113fd5130052831157be [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
40 memset(config, 0, sizeof(*config));
41 memset(state, 0, sizeof(*state));
42
43 OSMO_ASSERT(osmo_hexparse("0102030405060708090a0b0c0d0e0f10", config->secret_k, 16) == 16);
44 OSMO_ASSERT(osmo_hexparse("1112131415161718191a1b1c1d1e1f20", config->secret_opc, 16) == 16);
45
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010046 fprintf(stderr, "- make sure filling with zeros means uninitialized\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020047 OSMO_ASSERT(state->state == OAP_UNINITIALIZED);
48
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010049 fprintf(stderr, "- invalid client_id and shared secret\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020050 config->client_id = 0;
51 config->secret_k_present = 0;
52 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010053 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020054 OSMO_ASSERT(state->state == OAP_DISABLED);
55
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010056 fprintf(stderr, "- reset state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020057 memset(state, 0, sizeof(*state));
58
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010059 fprintf(stderr, "- only client_id is invalid\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020060 config->client_id = 0;
61 config->secret_k_present = 1;
62 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010063 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020064 OSMO_ASSERT(state->state == OAP_DISABLED);
65
66 memset(state, 0, sizeof(*state));
67
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010068 fprintf(stderr, "- valid id, but omitted shared_secret (1/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020069 config->client_id = 12345;
70 config->secret_k_present = 0;
71 config->secret_opc_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010072 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020073 OSMO_ASSERT(state->state == OAP_DISABLED);
74
75 memset(state, 0, sizeof(*state));
76
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010077 fprintf(stderr, "- valid id, but omitted shared_secret (2/2)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020078 config->client_id = 12345;
79 config->secret_k_present = 1;
80 config->secret_opc_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +010081 OSMO_ASSERT( oap_client_init(config, state) == 0 );
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020082 OSMO_ASSERT(state->state == OAP_DISABLED);
83
84 memset(state, 0, sizeof(*state));
85
86
Neels Hofmeyr2e109f02016-12-08 23:35:20 +010087 fprintf(stderr, "- mint configuration\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020088 config->client_id = 12345;
89 config->secret_k_present = 1;
90 config->secret_opc_present = 1;
91 /*config->secret_* buffers are still set from the top */
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_INITIALIZED);
94
Harald Welte564c0652016-04-27 18:14:14 +020095 struct osmo_oap_message oap_rx;
96 struct osmo_oap_message oap_tx;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +020097 struct msgb *msg_rx;
98 struct msgb *msg_tx;
99
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100100 fprintf(stderr, "- Missing challenge data\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200101 memset(&oap_rx, 0, sizeof(oap_rx));
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200102 oap_rx.message_type = OAP_MSGT_CHALLENGE_REQUEST;
103 oap_rx.rand_present = 0;
104 oap_rx.autn_present = 0;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100105 msg_rx = oap_client_encoded(&oap_rx);
106 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200107 msgb_free(msg_rx);
108 OSMO_ASSERT(!msg_tx);
109
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100110 fprintf(stderr, "- AUTN missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200111 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
112 oap_rx.rand, 16);
113 oap_rx.rand_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100114 msg_rx = oap_client_encoded(&oap_rx);
115 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200116 msgb_free(msg_rx);
117 OSMO_ASSERT(!msg_tx);
118
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100119 fprintf(stderr, "- RAND missing\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200120 oap_rx.rand_present = 0;
121 osmo_hexparse("cec4e3848a33000086781158ca40f136",
122 oap_rx.autn, 16);
123 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100124 msg_rx = oap_client_encoded(&oap_rx);
125 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200126 msgb_free(msg_rx);
127 OSMO_ASSERT(!msg_tx);
128
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100129 fprintf(stderr, "- wrong autn (by one bit)\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200130 osmo_hexparse("0102030405060708090a0b0c0d0e0f10",
131 oap_rx.rand, 16);
132 osmo_hexparse("dec4e3848a33000086781158ca40f136",
133 oap_rx.autn, 16);
134 oap_rx.rand_present = 1;
135 oap_rx.autn_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100136 msg_rx = oap_client_encoded(&oap_rx);
137 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -2);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200138 msgb_free(msg_rx);
139 OSMO_ASSERT(!msg_tx);
140
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100141 fprintf(stderr, "- all data correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200142 osmo_hexparse("cec4e3848a33000086781158ca40f136",
143 oap_rx.autn, 16);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100144 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200145
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100146 fprintf(stderr, "- but refuse to evaluate in uninitialized state\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200147 OSMO_ASSERT(state->state == OAP_INITIALIZED);
148
149 state->state = OAP_UNINITIALIZED;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100150 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -1);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200151 OSMO_ASSERT(!msg_tx);
152
153 state->state = OAP_DISABLED;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100154 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -1);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200155 OSMO_ASSERT(!msg_tx);
156
157 state->state = OAP_INITIALIZED;
158
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100159 fprintf(stderr, "- now everything is correct\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200160 /* a successful return value here indicates correct autn */
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100161 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200162 msgb_free(msg_rx);
163
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100164 fprintf(stderr, "- Expect the challenge response in msg_tx\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200165 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200166 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200167 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_CHALLENGE_RESULT);
168 OSMO_ASSERT(strcmp("e2d05b598c61d9ba",
169 osmo_hexdump_nospc(oap_tx.xres, sizeof(oap_tx.xres)))
170 == 0);
171 OSMO_ASSERT(state->state == OAP_SENT_CHALLENGE_RESULT);
172 msgb_free(msg_tx);
173 msg_tx = 0;
174
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100175 struct oap_client_state saved_state = _state;
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200176
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100177 fprintf(stderr, "- Receive registration error for the first time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200178
179 memset(&oap_rx, 0, sizeof(oap_rx));
180 oap_rx.message_type = OAP_MSGT_REGISTER_ERROR;
181 oap_rx.cause = GMM_CAUSE_PROTO_ERR_UNSPEC;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100182 msg_rx = oap_client_encoded(&oap_rx);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200183
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200184 OSMO_ASSERT(state->registration_failures == 0);
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100185 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200186 OSMO_ASSERT(state->registration_failures == 1);
187 OSMO_ASSERT(msg_tx);
Harald Welte5d547a42016-04-27 18:21:16 +0200188 OSMO_ASSERT(osmo_oap_decode(&oap_tx, msg_tx->data, msg_tx->len) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200189 OSMO_ASSERT(oap_tx.message_type == OAP_MSGT_REGISTER_REQUEST);
190 OSMO_ASSERT(state->state == OAP_REQUESTED_CHALLENGE);
191 msgb_free(msg_tx);
192 msg_tx = 0;
193
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100194 fprintf(stderr, "- Receive registration error for the Nth time.\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200195 state->registration_failures = 999;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100196 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == -11);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200197 OSMO_ASSERT(!msg_tx);
198 OSMO_ASSERT(state->state == OAP_INITIALIZED);
199 msgb_free(msg_tx);
200 msg_tx = 0;
201
202 msgb_free(msg_rx);
203
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100204 fprintf(stderr, "- Registration success\n");
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200205
206 _state = saved_state;
207 memset(&oap_rx, 0, sizeof(oap_rx));
208 oap_rx.message_type = OAP_MSGT_REGISTER_RESULT;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100209 msg_rx = oap_client_encoded(&oap_rx);
210 OSMO_ASSERT(oap_client_handle(state, msg_rx, &msg_tx) == 0);
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200211 OSMO_ASSERT(!msg_tx);
212 OSMO_ASSERT(state->state == OAP_REGISTERED);
213 msgb_free(msg_rx);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200214}
215
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100216static struct log_info_cat oap_client_test_categories[] = {
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200217};
218
219static struct log_info info = {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100220 .cat = oap_client_test_categories,
221 .num_cat = ARRAY_SIZE(oap_client_test_categories),
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200222};
223
224int main(int argc, char **argv)
225{
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +0200226 msgb_talloc_ctx_init(NULL, 0);
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200227 osmo_init_logging(&info);
228
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100229 OSMO_ASSERT(osmo_stderr_target);
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100230 log_set_use_color(osmo_stderr_target, 0);
231 log_set_print_timestamp(osmo_stderr_target, 0);
232 log_set_print_filename(osmo_stderr_target, 0);
233 log_set_print_category(osmo_stderr_target, 1);
234 log_parse_category_mask(osmo_stderr_target, "DLOAP,1");
Neels Hofmeyr2e109f02016-12-08 23:35:20 +0100235
Neels Hofmeyr89ef3242015-10-12 11:57:36 +0200236 test_oap_api();
Neels Hofmeyrf06046b2015-10-12 11:57:35 +0200237 printf("Done\n");
238
239 return 0;
240}
241