blob: 230500edb79bfe1a0ee0c1c0d01c06aa9efe722d [file] [log] [blame]
Piotr Krysik9e2e8352018-02-27 12:16:25 +01001/* (C) 2010-2012 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23//#include "config.h"
24
25#include <errno.h>
26#include <stdint.h>
27#include <string.h>
28
29#include <osmocom/core/utils.h>
30#include <osmocom/core/linuxlist.h>
31//#include <osmocom/core/plugin.h>
32
33#include <osmocom/crypt/auth.h>
34
35/*! \addtogroup auth
36 * @{
37 * GSM/GPRS/3G authentication core infrastructure
38 *
39 * \file auth_core.c */
40
41static LLIST_HEAD(osmo_auths);
42
43static struct osmo_auth_impl *selected_auths[_OSMO_AUTH_ALG_NUM];
44
45/*! Register an authentication algorithm implementation with the core
46 * \param[in] impl Structure describing implementation and it's callbacks
47 * \returns 0 on success, or a negative error code on failure
48 *
49 * This function is called by an authentication implementation plugin to
50 * register itself with the authentication core.
51 */
52int osmo_auth_register(struct osmo_auth_impl *impl)
53{
54 if (impl->algo >= ARRAY_SIZE(selected_auths))
55 return -ERANGE;
56
57 llist_add_tail(&impl->list, &osmo_auths);
58
59 /* check if we want to select this implementation over others */
60 if (!selected_auths[impl->algo] ||
61 (selected_auths[impl->algo]->priority > impl->priority))
62 selected_auths[impl->algo] = impl;
63
64 return 0;
65}
66
67/*! Load all available authentication plugins from the given path
68 * \param[in] path Path name of the directory containing the plugins
69 * \returns number of plugins loaded in case of success, negative in case of error
70 *
71 * This function will load all plugins contained in the specified path.
72 */
73int osmo_auth_load(const char *path)
74{
75 /* load all plugins available from path */
76/*#if !defined(EMBEDDED)
77 return osmo_plugin_load_all(path);
78#else*/
79 return -1;
80/*#endif*/
81}
82
83/*! Determine if a given authentication algorithm is supported
84 * \param[in] algo Algorithm which should be checked
85 * \returns 1 if algo is supported, 0 if not, negative error on failure
86 *
87 * This function is used by an application to determine at runtime if a
88 * given authentication algorithm is supported or not.
89 */
90int osmo_auth_supported(enum osmo_auth_algo algo)
91{
92 if (algo >= ARRAY_SIZE(selected_auths))
93 return -ERANGE;
94
95 if (selected_auths[algo])
96 return 1;
97
98 return 0;
99}
100
101/* C5 function to derive UMTS IK from GSM Kc */
102static inline void c5_function(uint8_t *ik, const uint8_t *kc)
103{
104 unsigned int i;
105
106 for (i = 0; i < 4; i++)
107 ik[i] = kc[i] ^ kc[i+4];
108 memcpy(ik+4, kc, 8);
109 for (i = 12; i < 16; i++)
110 ik[i] = ik[i-12];
111}
112
113/* C4 function to derive UMTS CK from GSM Kc */
114void osmo_c4(uint8_t *ck, const uint8_t *kc)
115{
116 memcpy(ck, kc, 8);
117 memcpy(ck+8, kc, 8);
118}
119
120/*! Generate 3G CK + IK from 2G authentication vector
121 * \param vec Authentication Vector to be modified
122 * \returns 1 if the vector was changed, 0 otherwise
123 *
124 * This function performs the C5 and C4 functions to derive the UMTS key
125 * material from the GSM key material in the supplied vector, _if_ the input
126 * vector doesn't yet have UMTS authentication capability.
127 */
128int osmo_auth_3g_from_2g(struct osmo_auth_vector *vec)
129{
130 if ((vec->auth_types & OSMO_AUTH_TYPE_GSM) &&
131 !(vec->auth_types & OSMO_AUTH_TYPE_UMTS)) {
132 c5_function(vec->ik, vec->kc);
133 osmo_c4(vec->ck, vec->kc);
134 /* We cannot actually set OSMO_AUTH_TYPE_UMTS as we have no
135 * AUTN and no RES, and thus can only perform GSM
136 * authentication with this tuple.
137 */
138 return 1;
139 }
140
141 return 0;
142}
143
144/*! Generate authentication vector
145 * \param[out] vec Generated authentication vector
146 * \param[in] aud Subscriber-specific key material
147 * \param[in] _rand Random challenge to be used
148 * \returns 0 on success, negative error on failure
149 *
150 * This function performs the core cryptographic function of the AUC,
151 * computing authentication triples/quintuples based on the permanent
152 * subscriber data and a random value. The result is what is forwarded
153 * by the AUC via HLR and VLR to the MSC which will then be able to
154 * invoke authentication with the MS
155 */
156int osmo_auth_gen_vec(struct osmo_auth_vector *vec,
157 struct osmo_sub_auth_data *aud,
158 const uint8_t *_rand)
159{
160 struct osmo_auth_impl *impl = selected_auths[aud->algo];
161 int rc;
162
163 if (!impl)
164 return -ENOENT;
165
166 rc = impl->gen_vec(vec, aud, _rand);
167 if (rc < 0)
168 return rc;
169
170 memcpy(vec->rand, _rand, sizeof(vec->rand));
171
172 return 0;
173}
174
175/*! Generate authentication vector and re-sync sequence
176 * \param[out] vec Generated authentication vector
177 * \param[in] aud Subscriber-specific key material
178 * \param[in] auts AUTS value sent by the SIM/MS
179 * \param[in] rand_auts RAND value sent by the SIM/MS
180 * \param[in] _rand Random challenge to be used to generate vector
181 * \returns 0 on success, negative error on failure
182 *
183 * This function performs a special variant of the core cryptographic
184 * function of the AUC: computing authentication triples/quintuples
185 * based on the permanent subscriber data, a random value as well as the
186 * AUTS and RAND values returned by the SIM/MS. This special variant is
187 * needed if the sequence numbers between MS and AUC have for some
188 * reason become different.
189 */
190int osmo_auth_gen_vec_auts(struct osmo_auth_vector *vec,
191 struct osmo_sub_auth_data *aud,
192 const uint8_t *auts, const uint8_t *rand_auts,
193 const uint8_t *_rand)
194{
195 struct osmo_auth_impl *impl = selected_auths[aud->algo];
196 int rc;
197
198 if (!impl || !impl->gen_vec_auts)
199 return -ENOENT;
200
201 rc = impl->gen_vec_auts(vec, aud, auts, rand_auts, _rand);
202 if (rc < 0)
203 return rc;
204
205 memcpy(vec->rand, _rand, sizeof(vec->rand));
206
207 return 0;
208}
209
210static const struct value_string auth_alg_vals[] = {
211 { OSMO_AUTH_ALG_NONE, "None" },
212 { OSMO_AUTH_ALG_COMP128v1, "COMP128v1" },
213 { OSMO_AUTH_ALG_COMP128v2, "COMP128v2" },
214 { OSMO_AUTH_ALG_COMP128v3, "COMP128v3" },
215 { OSMO_AUTH_ALG_XOR, "XOR" },
216 { OSMO_AUTH_ALG_MILENAGE, "MILENAGE" },
217 { 0, NULL }
218};
219
220/*! Get human-readable name of authentication algorithm *
221const char *osmo_auth_alg_name(enum osmo_auth_algo alg)
222{
223 return get_value_string(auth_alg_vals, alg);
224}
225
226/*! Parse human-readable name of authentication algorithm */
227/*enum osmo_auth_algo osmo_auth_alg_parse(const char *name)
228{
229 return get_string_value(auth_alg_vals, name);
230}
231*/
232const struct value_string osmo_sub_auth_type_names[] = {
233 { OSMO_AUTH_TYPE_NONE, "None" },
234 { OSMO_AUTH_TYPE_GSM, "GSM" },
235 { OSMO_AUTH_TYPE_UMTS, "UMTS" },
236 { 0, NULL }
237};
238
239/* Derive GSM AKA ciphering key Kc from UMTS AKA CK and IK (auth function c3 from 3GPP TS 33.103 ยง
240 * 4.6.1).
241 * \param[out] kc GSM AKA Kc, 8 byte target buffer.
242 * \param[in] ck UMTS AKA CK, 16 byte input buffer.
243 * \param[in] ik UMTS AKA IK, 16 byte input buffer.
244 */
245void osmo_auth_c3(uint8_t kc[], const uint8_t ck[], const uint8_t ik[])
246{
247 int i;
248 for (i = 0; i < 8; i++)
249 kc[i] = ck[i] ^ ck[i + 8] ^ ik[i] ^ ik[i + 8];
250}
251
252/*! @} */