blob: e372edea903e677637414cff71c7a368b677c24b [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 Hofmeyr11ecc932016-12-08 21:29:23 +010030#include <openbsc/oap_client.h>
Neels Hofmeyrd739f092015-10-12 11:57:34 +020031#include <openbsc/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
38 if (config->client_id == 0)
39 goto disable;
40
41 if (config->secret_k_present == 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +010042 LOGP(DLOAP, LOGL_NOTICE, "OAP: client ID set, but secret K missing.\n");
Neels Hofmeyrd739f092015-10-12 11:57:34 +020043 goto disable;
44 }
45
46 if (config->secret_opc_present == 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +010047 LOGP(DLOAP, LOGL_NOTICE, "OAP: client ID set, but secret OPC missing.\n");
Neels Hofmeyrd739f092015-10-12 11:57:34 +020048 goto disable;
49 }
50
51 state->client_id = config->client_id;
52 memcpy(state->secret_k, config->secret_k, sizeof(state->secret_k));
53 memcpy(state->secret_opc, config->secret_opc, sizeof(state->secret_opc));
54 state->state = OAP_INITIALIZED;
55 return 0;
56
57disable:
58 state->state = OAP_DISABLED;
59 return 0;
60}
61
62/* From the given state and received RAND and AUTN octets, validate the
63 * server's authenticity and formulate the matching milenage reply octets in
64 * *tx_xres. The state is not modified.
65 * On success, and if tx_res is not NULL, exactly 8 octets will be written to
66 * *tx_res. If not NULL, tx_res must point at allocated memory of at least 8
67 * octets. The caller will want to send XRES back to the server in a challenge
68 * response message and update the state.
69 * Return 0 on success; -1 if OAP is disabled; -2 if rx_random and rx_autn fail
70 * the authentication check; -3 for any other errors. */
Neels Hofmeyr49012f12016-12-08 21:30:34 +010071static int oap_evaluate_challenge(const struct oap_client_state *state,
Neels Hofmeyrd739f092015-10-12 11:57:34 +020072 const uint8_t *rx_random,
73 const uint8_t *rx_autn,
74 uint8_t *tx_xres)
75{
Neels Hofmeyrd739f092015-10-12 11:57:34 +020076 struct osmo_auth_vector vec;
77
78 struct osmo_sub_auth_data auth = {
79 .type = OSMO_AUTH_TYPE_UMTS,
80 .algo = OSMO_AUTH_ALG_MILENAGE,
81 };
82
Harald Welted8aa4122016-04-27 18:17:26 +020083 osmo_static_assert(sizeof(((struct osmo_sub_auth_data*)0)->u.umts.k)
84 == sizeof(state->secret_k), _secret_k_size_match);
85 osmo_static_assert(sizeof(((struct osmo_sub_auth_data*)0)->u.umts.opc)
86 == sizeof(state->secret_opc), _secret_opc_size_match);
87
88 switch (state->state) {
89 case OAP_UNINITIALIZED:
90 case OAP_DISABLED:
91 return -1;
92 default:
93 break;
94 }
95
Neels Hofmeyrd739f092015-10-12 11:57:34 +020096 memcpy(auth.u.umts.k, state->secret_k, sizeof(auth.u.umts.k));
97 memcpy(auth.u.umts.opc, state->secret_opc, sizeof(auth.u.umts.opc));
98 memset(auth.u.umts.amf, '\0', sizeof(auth.u.umts.amf));
99 auth.u.umts.sqn = 42; /* TODO use incrementing sequence nr */
100
101 memset(&vec, 0, sizeof(vec));
102 osmo_auth_gen_vec(&vec, &auth, rx_random);
103
104 if (vec.res_len != 8) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100105 LOGP(DLOAP, LOGL_ERROR, "OAP: Expected XRES to be 8 octets, got %d\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200106 vec.res_len);
107 return -3;
108 }
109
Harald Welte50f1c0a2016-04-25 19:01:26 +0200110 if (osmo_constant_time_cmp(vec.autn, rx_autn, sizeof(vec.autn)) != 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100111 LOGP(DLOAP, LOGL_ERROR, "OAP: AUTN mismatch!\n");
112 LOGP(DLOAP, LOGL_INFO, "OAP: AUTN from server: %s\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200113 osmo_hexdump_nospc(rx_autn, sizeof(vec.autn)));
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100114 LOGP(DLOAP, LOGL_INFO, "OAP: AUTN expected: %s\n",
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200115 osmo_hexdump_nospc(vec.autn, sizeof(vec.autn)));
116 return -2;
117 }
118
119 if (tx_xres != NULL)
120 memcpy(tx_xres, vec.res, 8);
121 return 0;
122}
123
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100124struct msgb *oap_client_encoded(const struct osmo_oap_message *oap_msg)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200125{
126 struct msgb *msg = msgb_alloc_headroom(1000, 64, __func__);
127 OSMO_ASSERT(msg);
Harald Welte564c0652016-04-27 18:14:14 +0200128 osmo_oap_encode(msg, oap_msg);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200129 return msg;
130}
131
132/* Create a new msgb containing an OAP registration message.
133 * On error, return NULL. */
134static struct msgb* oap_msg_register(uint16_t client_id)
135{
Harald Welted8aa4122016-04-27 18:17:26 +0200136 struct osmo_oap_message oap_msg = {0};
137
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200138 if (client_id < 1) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100139 LOGP(DLOAP, LOGL_ERROR, "OAP: Invalid client ID: %d\n", client_id);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200140 return NULL;
141 }
142
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200143 oap_msg.message_type = OAP_MSGT_REGISTER_REQUEST;
144 oap_msg.client_id = client_id;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100145 return oap_client_encoded(&oap_msg);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200146}
147
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100148int oap_client_register(struct oap_client_state *state, struct msgb **msg_tx)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200149{
150 *msg_tx = oap_msg_register(state->client_id);
151 if (!(*msg_tx))
152 return -1;
153
154 state->state = OAP_REQUESTED_CHALLENGE;
155 return 0;
156}
157
158/* Create a new msgb containing an OAP challenge response message.
159 * xres must point at 8 octets to return as challenge response.
160 * On error, return NULL. */
161static struct msgb* oap_msg_challenge_response(uint8_t *xres)
162{
Harald Welte564c0652016-04-27 18:14:14 +0200163 struct osmo_oap_message oap_reply = {0};
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200164
165 oap_reply.message_type = OAP_MSGT_CHALLENGE_RESULT;
166 memcpy(oap_reply.xres, xres, sizeof(oap_reply.xres));
167 oap_reply.xres_present = 1;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100168 return oap_client_encoded(&oap_reply);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200169}
170
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100171static int handle_challenge(struct oap_client_state *state,
Harald Welte564c0652016-04-27 18:14:14 +0200172 struct osmo_oap_message *oap_rx,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200173 struct msgb **msg_tx)
174{
175 int rc;
Harald Welted8aa4122016-04-27 18:17:26 +0200176 uint8_t xres[8];
177
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200178 if (!(oap_rx->rand_present && oap_rx->autn_present)) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100179 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200180 "OAP challenge incomplete (rand_present: %d, autn_present: %d)\n",
181 oap_rx->rand_present, oap_rx->autn_present);
182 rc = -2;
183 goto failure;
184 }
185
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200186 rc = oap_evaluate_challenge(state,
187 oap_rx->rand,
188 oap_rx->autn,
189 xres);
190 if (rc < 0)
191 goto failure;
192
193 *msg_tx = oap_msg_challenge_response(xres);
194 if ((*msg_tx) == NULL) {
195 rc = -1;
196 goto failure;
197 }
198
199 state->state = OAP_SENT_CHALLENGE_RESULT;
200 return 0;
201
202failure:
203 OSMO_ASSERT(rc < 0);
204 state->state = OAP_INITIALIZED;
205 return rc;
206}
207
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100208int oap_client_handle(struct oap_client_state *state,
209 const struct msgb *msg_rx, struct msgb **msg_tx)
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200210{
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200211 uint8_t *data = msgb_l2(msg_rx);
212 size_t data_len = msgb_l2len(msg_rx);
Harald Welted8aa4122016-04-27 18:17:26 +0200213 struct osmo_oap_message oap_msg = {0};
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200214 int rc = 0;
215
Harald Welted8aa4122016-04-27 18:17:26 +0200216 *msg_tx = NULL;
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200217
218 OSMO_ASSERT(data);
219
Harald Welte5d547a42016-04-27 18:21:16 +0200220 rc = osmo_oap_decode(&oap_msg, data, data_len);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200221 if (rc < 0) {
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100222 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200223 "Decoding OAP message failed with error '%s' (%d)\n",
224 get_value_string(gsm48_gmm_cause_names, -rc), -rc);
225 return -10;
226 }
227
Neels Hofmeyr2fa74fa2016-12-08 23:12:17 +0100228 switch (state->state) {
229 case OAP_UNINITIALIZED:
230 LOGP(DLOAP, LOGL_ERROR,
231 "Received OAP message %d, but the OAP client is"
232 " not initialized\n", oap_msg.message_type);
233 return -ENOTCONN;
234 case OAP_DISABLED:
235 LOGP(DLOAP, LOGL_ERROR,
236 "Received OAP message %d, but the OAP client is"
237 " disabled\n", oap_msg.message_type);
238 return -ENOTCONN;
239 default:
240 break;
241 }
242
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200243 switch (oap_msg.message_type) {
244 case OAP_MSGT_CHALLENGE_REQUEST:
245 return handle_challenge(state, &oap_msg, msg_tx);
246
247 case OAP_MSGT_REGISTER_RESULT:
248 /* successfully registered */
249 state->state = OAP_REGISTERED;
250 break;
251
252 case OAP_MSGT_REGISTER_ERROR:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100253 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200254 "OAP registration failed\n");
255 state->state = OAP_INITIALIZED;
256 if (state->registration_failures < 3) {
257 state->registration_failures ++;
Neels Hofmeyr49012f12016-12-08 21:30:34 +0100258 return oap_client_register(state, msg_tx);
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200259 }
260 return -11;
261
262 case OAP_MSGT_REGISTER_REQUEST:
263 case OAP_MSGT_CHALLENGE_RESULT:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100264 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200265 "Received invalid OAP message type for OAP client side: %d\n",
266 (int)oap_msg.message_type);
267 return -12;
268
269 default:
Neels Hofmeyr73ed4552016-12-09 00:01:56 +0100270 LOGP(DLOAP, LOGL_ERROR,
Neels Hofmeyrd739f092015-10-12 11:57:34 +0200271 "Unknown OAP message type: %d\n",
272 (int)oap_msg.message_type);
273 return -13;
274 }
275
276 return 0;
277}