blob: d872f64269deb2986aa4e72af8f456a8095e68f8 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welted82e0eb2011-12-06 21:53:42 +01002
Harald Weltec368b542017-10-16 16:00:06 +02003/*! \defgroup auth GSM/GPRS/3G Authentication
Harald Welte007a71e2012-07-18 19:47:56 +02004 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02005 * \file auth.h */
Harald Welte007a71e2012-07-18 19:47:56 +02006
Harald Welted82e0eb2011-12-06 21:53:42 +01007#include <stdint.h>
8
9#include <osmocom/core/linuxlist.h>
Neels Hofmeyr26e30b12017-10-07 04:41:22 +020010#include <osmocom/core/utils.h>
Harald Welted82e0eb2011-12-06 21:53:42 +010011
Max483cdff2017-08-28 10:38:59 +020012#define OSMO_A5_MAX_KEY_LEN_BYTES (128/8)
Neels Hofmeyr1a02e362017-10-07 04:44:08 +020013#define OSMO_MILENAGE_IND_BITLEN_MAX 28
Max483cdff2017-08-28 10:38:59 +020014
Neels Hofmeyr87e45502017-06-20 00:17:59 +020015/*! Authentication Type (GSM/UMTS) */
Harald Welted82e0eb2011-12-06 21:53:42 +010016enum osmo_sub_auth_type {
17 OSMO_AUTH_TYPE_NONE = 0x00,
18 OSMO_AUTH_TYPE_GSM = 0x01,
19 OSMO_AUTH_TYPE_UMTS = 0x02,
20};
21
Neels Hofmeyr26e30b12017-10-07 04:41:22 +020022extern const struct value_string osmo_sub_auth_type_names[];
23static inline const char *osmo_sub_auth_type_name(enum osmo_sub_auth_type val)
24{ return get_value_string(osmo_sub_auth_type_names, val); }
25
26/*! Authentication Algorithm.
27 * See also osmo_auth_alg_name() and osmo_auth_alg_parse(). */
Harald Welted82e0eb2011-12-06 21:53:42 +010028enum osmo_auth_algo {
29 OSMO_AUTH_ALG_NONE,
30 OSMO_AUTH_ALG_COMP128v1,
31 OSMO_AUTH_ALG_COMP128v2,
32 OSMO_AUTH_ALG_COMP128v3,
Harald Welte9b7c9ae2023-02-21 22:24:15 +010033 OSMO_AUTH_ALG_XOR_3G,
Harald Welted82e0eb2011-12-06 21:53:42 +010034 OSMO_AUTH_ALG_MILENAGE,
Harald Weltee93c5e92023-02-21 22:18:11 +010035 OSMO_AUTH_ALG_XOR_2G,
Harald Welted82e0eb2011-12-06 21:53:42 +010036 _OSMO_AUTH_ALG_NUM,
37};
Harald Welte9b7c9ae2023-02-21 22:24:15 +010038/* Backwards-compatibility. We used to call XOR-3G just "XOR" which became ambiguous when
39 * we started to add XOR-2G support. */
40#define OSMO_AUTH_ALG_XOR OSMO_AUTH_ALG_XOR_3G
Harald Welted82e0eb2011-12-06 21:53:42 +010041
Neels Hofmeyr87e45502017-06-20 00:17:59 +020042/*! permanent (secret) subscriber auth data */
Harald Welted82e0eb2011-12-06 21:53:42 +010043struct osmo_sub_auth_data {
44 enum osmo_sub_auth_type type;
45 enum osmo_auth_algo algo;
46 union {
47 struct {
Harald Welte007a71e2012-07-18 19:47:56 +020048 uint8_t opc[16]; /*!< operator invariant value */
Maxaf25c372018-12-19 20:12:19 +010049 uint8_t k[OSMO_A5_MAX_KEY_LEN_BYTES]; /*!< secret key of the subscriber */
Harald Welted82e0eb2011-12-06 21:53:42 +010050 uint8_t amf[2];
Neels Hofmeyr95500c82017-08-26 22:38:08 +020051 uint64_t sqn; /*!< sequence number (in: prev sqn; out: used sqn) */
Harald Welte007a71e2012-07-18 19:47:56 +020052 int opc_is_op; /*!< is the OPC field OPC (0) or OP (1) ? */
Neels Hofmeyrbb6f7b72017-03-13 17:27:17 +010053 unsigned int ind_bitlen; /*!< nr of bits not in SEQ, only SQN */
Neels Hofmeyr95500c82017-08-26 22:38:08 +020054 unsigned int ind; /*!< which IND slot to use an SQN from */
Neels Hofmeyr2066a422017-08-26 22:43:50 +020055 uint64_t sqn_ms; /*!< sqn from AUTS (output value only) */
Harald Welted82e0eb2011-12-06 21:53:42 +010056 } umts;
57 struct {
Max483cdff2017-08-28 10:38:59 +020058 uint8_t ki[OSMO_A5_MAX_KEY_LEN_BYTES]; /*!< secret key */
Harald Welted82e0eb2011-12-06 21:53:42 +010059 } gsm;
Harald Welteaae23622011-12-07 11:35:02 +010060 } u;
Harald Welted82e0eb2011-12-06 21:53:42 +010061};
62
63/* data structure describing a computed auth vector, generated by AuC */
64struct osmo_auth_vector {
Harald Welte007a71e2012-07-18 19:47:56 +020065 uint8_t rand[16]; /*!< random challenge */
66 uint8_t autn[16]; /*!< authentication nonce */
Maxaf25c372018-12-19 20:12:19 +010067 uint8_t ck[OSMO_A5_MAX_KEY_LEN_BYTES]; /*!< ciphering key */
68 uint8_t ik[OSMO_A5_MAX_KEY_LEN_BYTES]; /*!< integrity key */
Harald Welte007a71e2012-07-18 19:47:56 +020069 uint8_t res[16]; /*!< authentication result */
70 uint8_t res_len; /*!< length (in bytes) of res */
71 uint8_t kc[8]; /*!< Kc for GSM encryption (A5) */
72 uint8_t sres[4]; /*!< authentication result for GSM */
Harald Welted82e0eb2011-12-06 21:53:42 +010073 uint32_t auth_types; /*!< bitmask of OSMO_AUTH_TYPE_* */
74};
75
Neels Hofmeyr87e45502017-06-20 00:17:59 +020076/* An implementation of an authentication algorithm */
Harald Welted82e0eb2011-12-06 21:53:42 +010077struct osmo_auth_impl {
78 struct llist_head list;
Harald Welte007a71e2012-07-18 19:47:56 +020079 enum osmo_auth_algo algo; /*!< algorithm we implement */
80 const char *name; /*!< name of the implementation */
81 unsigned int priority; /*!< priority value (resp. othe implementations */
Harald Welted82e0eb2011-12-06 21:53:42 +010082
Neels Hofmeyr87e45502017-06-20 00:17:59 +020083 /*! callback for generate authentication vectors */
Harald Welted82e0eb2011-12-06 21:53:42 +010084 int (*gen_vec)(struct osmo_auth_vector *vec,
85 struct osmo_sub_auth_data *aud,
86 const uint8_t *_rand);
87
Neels Hofmeyr87e45502017-06-20 00:17:59 +020088 /* callback for generationg auth vectors + re-sync */
Harald Welted82e0eb2011-12-06 21:53:42 +010089 int (*gen_vec_auts)(struct osmo_auth_vector *vec,
90 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +010091 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +010092 const uint8_t *_rand);
93};
94
95int osmo_auth_gen_vec(struct osmo_auth_vector *vec,
96 struct osmo_sub_auth_data *aud, const uint8_t *_rand);
97
98int osmo_auth_gen_vec_auts(struct osmo_auth_vector *vec,
99 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +0100100 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +0100101 const uint8_t *_rand);
102
103int osmo_auth_register(struct osmo_auth_impl *impl);
104
105int osmo_auth_load(const char *path);
106
107int osmo_auth_supported(enum osmo_auth_algo algo);
Maxceae1232016-06-27 18:12:49 +0200108void osmo_c4(uint8_t *ck, const uint8_t *kc);
Harald Weltea5ab1622011-12-07 02:33:11 +0100109const char *osmo_auth_alg_name(enum osmo_auth_algo alg);
110enum osmo_auth_algo osmo_auth_alg_parse(const char *name);
111
Neels Hofmeyraa84b712017-12-18 03:12:01 +0100112void osmo_auth_c3(uint8_t kc[], const uint8_t ck[], const uint8_t ik[]);
113
Harald Welte007a71e2012-07-18 19:47:56 +0200114/* @} */