blob: 7154baa2b5798ab67f521652573b78a57e635621 [file] [log] [blame]
Neels Hofmeyrd739f092015-10-12 11:57:34 +02001/* Osmocom Authentication Protocol API */
2
3/* (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
Harald Welte31760a12016-04-27 15:17:14 +020023#include <string.h>
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +010024#include <errno.h>
Harald Welte31760a12016-04-27 15:17:14 +020025
Harald Welte50f1c0a2016-04-25 19:01:26 +020026#include <osmocom/core/utils.h>
Neels Hofmeyrd739f092015-10-12 11:57:34 +020027#include <osmocom/crypt/auth.h>
Harald Welte736474c2016-05-06 23:28:52 +020028#include <osmocom/gsm/oap.h>
Neels Hofmeyrd739f092015-10-12 11:57:34 +020029
Neels Hofmeyr90843962017-09-04 15:04:35 +020030#include <osmocom/msc/oap_client.h>
31#include <osmocom/msc/debug.h>
Neels Hofmeyrd739f092015-10-12 11:57:34 +020032
Neels Hofmeyr49012f12016-12-08 21:30:34 +010033int oap_client_init(struct oap_client_config *config,
34 struct oap_client_state *state)
Neels Hofmeyrd739f092015-10-12 11:57:34 +020035{
36 OSMO_ASSERT(state->state == OAP_UNINITIALIZED);
37
Neels Hofmeyr37f92522016-12-08 23:58:31 +010038 if (!config)
39 goto disable;
40
Neels Hofmeyrd739f092015-10-12 11:57:34 +020041 if (config->client_id == 0)
42 goto disable;
43
44 if (config->secret_k_present == 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +010045 LOGP(DLOAP, LOGL_NOTICE, "OAP: client ID set, but secret K missing.\n");
Neels Hofmeyrd739f092015-10-12 11:57:34 +020046 goto disable;
47 }
48
49 if (config->secret_opc_present == 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +010050 LOGP(DLOAP, LOGL_NOTICE, "OAP: client ID set, but secret OPC missing.\n");
Neels Hofmeyrd739f092015-10-12 11:57:34 +020051 goto disable;
52 }
53
54 state->client_id = config->client_id;
55 memcpy(state->secret_k, config->secret_k, sizeof(state->secret_k));
56 memcpy(state->secret_opc, config->secret_opc, sizeof(state->secret_opc));
57 state->state = OAP_INITIALIZED;
58 return 0;
59
60disable:
61 state->state = OAP_DISABLED;
62 return 0;
63}
64
65/* From the given state and received RAND and AUTN octets, validate the
66 * server's authenticity and formulate the matching milenage reply octets in
67 * *tx_xres. The state is not modified.
68 * On success, and if tx_res is not NULL, exactly 8 octets will be written to
69 * *tx_res. If not NULL, tx_res must point at allocated memory of at least 8
70 * octets. The caller will want to send XRES back to the server in a challenge
71 * response message and update the state.
72 * Return 0 on success; -1 if OAP is disabled; -2 if rx_random and rx_autn fail
73 * the authentication check; -3 for any other errors. */
Neels Hofmeyr49012f12016-12-08 21:30:34 +010074static int oap_evaluate_challenge(const struct oap_client_state *state,
Neels Hofmeyrd739f092015-10-12 11:57:34 +020075 const uint8_t *rx_random,
76 const uint8_t *rx_autn,
77 uint8_t *tx_xres)
78{
Neels Hofmeyrd739f092015-10-12 11:57:34 +020079 struct osmo_auth_vector vec;
80
81 struct osmo_sub_auth_data auth = {
82 .type = OSMO_AUTH_TYPE_UMTS,
83 .algo = OSMO_AUTH_ALG_MILENAGE,
84 };
85
Harald Welted8aa4122016-04-27 18:17:26 +020086 osmo_static_assert(sizeof(((struct osmo_sub_auth_data*)0)->u.umts.k)
87 == sizeof(state->secret_k), _secret_k_size_match);
88 osmo_static_assert(sizeof(((struct osmo_sub_auth_data*)0)->u.umts.opc)
89 == sizeof(state->secret_opc), _secret_opc_size_match);
90
91 switch (state->state) {
92 case OAP_UNINITIALIZED:
93 case OAP_DISABLED:
94 return -1;
95 default:
96 break;
97 }
98
Neels Hofmeyrd739f092015-10-12 11:57:34 +020099 memcpy(auth.u.umts.k, state->secret_k, sizeof(auth.u.umts.k));
100 memcpy(auth.u.umts.opc, state->secret_opc, sizeof(auth.u.umts.opc));
101 memset(auth.u.umts.amf, '\0', sizeof(auth.u.umts.amf));
Neels Hofmeyr6dd0fc62017-03-15 16:05:42 +0100102 auth.u.umts.sqn = 41; /* TODO use incrementing sequence nr */
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200103
104 memset(&vec, 0, sizeof(vec));
105 osmo_auth_gen_vec(&vec, &auth, rx_random);
106
107 if (vec.res_len != 8) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100108 LOGP(DLOAP, LOGL_ERROR, "OAP: Expected XRES to be 8 octets, got %d\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200109 vec.res_len);
110 return -3;
111 }
112
Harald Welte50f1c0a2016-04-25 19:01:26 +0200113 if (osmo_constant_time_cmp(vec.autn, rx_autn, sizeof(vec.autn)) != 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100114 LOGP(DLOAP, LOGL_ERROR, "OAP: AUTN mismatch!\n");
115 LOGP(DLOAP, LOGL_INFO, "OAP: AUTN from server: %s\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200116 osmo_hexdump_nospc(rx_autn, sizeof(vec.autn)));
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100117 LOGP(DLOAP, LOGL_INFO, "OAP: AUTN expected: %s\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200118 osmo_hexdump_nospc(vec.autn, sizeof(vec.autn)));
119 return -2;
120 }
121
122 if (tx_xres != NULL)
123 memcpy(tx_xres, vec.res, 8);
124 return 0;
125}
126
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100127struct msgb *oap_client_encoded(const struct osmo_oap_message *oap_msg)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200128{
129 struct msgb *msg = msgb_alloc_headroom(1000, 64, __func__);
130 OSMO_ASSERT(msg);
Harald Welte564c0652016-04-27 18:14:14 +0200131 osmo_oap_encode(msg, oap_msg);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200132 return msg;
133}
134
135/* Create a new msgb containing an OAP registration message.
136 * On error, return NULL. */
137static struct msgb* oap_msg_register(uint16_t client_id)
138{
Harald Welted8aa4122016-04-27 18:17:26 +0200139 struct osmo_oap_message oap_msg = {0};
140
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200141 if (client_id < 1) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100142 LOGP(DLOAP, LOGL_ERROR, "OAP: Invalid client ID: %d\n", client_id);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200143 return NULL;
144 }
145
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200146 oap_msg.message_type = OAP_MSGT_REGISTER_REQUEST;
147 oap_msg.client_id = client_id;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100148 return oap_client_encoded(&oap_msg);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200149}
150
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100151int oap_client_register(struct oap_client_state *state, struct msgb **msg_tx)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200152{
153 *msg_tx = oap_msg_register(state->client_id);
154 if (!(*msg_tx))
155 return -1;
156
157 state->state = OAP_REQUESTED_CHALLENGE;
158 return 0;
159}
160
161/* Create a new msgb containing an OAP challenge response message.
162 * xres must point at 8 octets to return as challenge response.
163 * On error, return NULL. */
164static struct msgb* oap_msg_challenge_response(uint8_t *xres)
165{
Harald Welte564c0652016-04-27 18:14:14 +0200166 struct osmo_oap_message oap_reply = {0};
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200167
168 oap_reply.message_type = OAP_MSGT_CHALLENGE_RESULT;
169 memcpy(oap_reply.xres, xres, sizeof(oap_reply.xres));
170 oap_reply.xres_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100171 return oap_client_encoded(&oap_reply);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200172}
173
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100174static int handle_challenge(struct oap_client_state *state,
Harald Welte564c0652016-04-27 18:14:14 +0200175 struct osmo_oap_message *oap_rx,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200176 struct msgb **msg_tx)
177{
178 int rc;
Harald Welted8aa4122016-04-27 18:17:26 +0200179 uint8_t xres[8];
180
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200181 if (!(oap_rx->rand_present && oap_rx->autn_present)) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100182 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200183 "OAP challenge incomplete (rand_present: %d, autn_present: %d)\n",
184 oap_rx->rand_present, oap_rx->autn_present);
185 rc = -2;
186 goto failure;
187 }
188
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200189 rc = oap_evaluate_challenge(state,
190 oap_rx->rand,
191 oap_rx->autn,
192 xres);
193 if (rc < 0)
194 goto failure;
195
196 *msg_tx = oap_msg_challenge_response(xres);
197 if ((*msg_tx) == NULL) {
198 rc = -1;
199 goto failure;
200 }
201
202 state->state = OAP_SENT_CHALLENGE_RESULT;
203 return 0;
204
205failure:
206 OSMO_ASSERT(rc < 0);
207 state->state = OAP_INITIALIZED;
208 return rc;
209}
210
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100211int oap_client_handle(struct oap_client_state *state,
212 const struct msgb *msg_rx, struct msgb **msg_tx)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200213{
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200214 uint8_t *data = msgb_l2(msg_rx);
215 size_t data_len = msgb_l2len(msg_rx);
Harald Welted8aa4122016-04-27 18:17:26 +0200216 struct osmo_oap_message oap_msg = {0};
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200217 int rc = 0;
218
Harald Welted8aa4122016-04-27 18:17:26 +0200219 *msg_tx = NULL;
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200220
221 OSMO_ASSERT(data);
222
Harald Welte5d547a42016-04-27 18:21:16 +0200223 rc = osmo_oap_decode(&oap_msg, data, data_len);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200224 if (rc < 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100225 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200226 "Decoding OAP message failed with error '%s' (%d)\n",
227 get_value_string(gsm48_gmm_cause_names, -rc), -rc);
228 return -10;
229 }
230
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +0100231 switch (state->state) {
232 case OAP_UNINITIALIZED:
233 LOGP(DLOAP, LOGL_ERROR,
234 "Received OAP message %d, but the OAP client is"
235 " not initialized\n", oap_msg.message_type);
236 return -ENOTCONN;
237 case OAP_DISABLED:
238 LOGP(DLOAP, LOGL_ERROR,
239 "Received OAP message %d, but the OAP client is"
240 " disabled\n", oap_msg.message_type);
241 return -ENOTCONN;
242 default:
243 break;
244 }
245
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200246 switch (oap_msg.message_type) {
247 case OAP_MSGT_CHALLENGE_REQUEST:
248 return handle_challenge(state, &oap_msg, msg_tx);
249
250 case OAP_MSGT_REGISTER_RESULT:
251 /* successfully registered */
252 state->state = OAP_REGISTERED;
253 break;
254
255 case OAP_MSGT_REGISTER_ERROR:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100256 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200257 "OAP registration failed\n");
258 state->state = OAP_INITIALIZED;
259 if (state->registration_failures < 3) {
Max5e2e9bd2018-02-06 19:31:08 +0100260 state->registration_failures++;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100261 return oap_client_register(state, msg_tx);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200262 }
263 return -11;
264
265 case OAP_MSGT_REGISTER_REQUEST:
266 case OAP_MSGT_CHALLENGE_RESULT:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100267 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200268 "Received invalid OAP message type for OAP client side: %d\n",
269 (int)oap_msg.message_type);
270 return -12;
271
272 default:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100273 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200274 "Unknown OAP message type: %d\n",
275 (int)oap_msg.message_type);
276 return -13;
277 }
278
279 return 0;
280}