blob: 2f2a8d33e1f2e65bb7c19fea6a74129fb00b0ad8 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welted82e0eb2011-12-06 21:53:42 +01002
Harald Welte007a71e2012-07-18 19:47:56 +02003/*! \addtogroup auth
4 * @{
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>
10
Max483cdff2017-08-28 10:38:59 +020011#define OSMO_A5_MAX_KEY_LEN_BYTES (128/8)
12
Neels Hofmeyr87e45502017-06-20 00:17:59 +020013/*! Authentication Type (GSM/UMTS) */
Harald Welted82e0eb2011-12-06 21:53:42 +010014enum osmo_sub_auth_type {
15 OSMO_AUTH_TYPE_NONE = 0x00,
16 OSMO_AUTH_TYPE_GSM = 0x01,
17 OSMO_AUTH_TYPE_UMTS = 0x02,
18};
19
Neels Hofmeyr87e45502017-06-20 00:17:59 +020020/*! Authentication Algorithm */
Harald Welted82e0eb2011-12-06 21:53:42 +010021enum osmo_auth_algo {
22 OSMO_AUTH_ALG_NONE,
23 OSMO_AUTH_ALG_COMP128v1,
24 OSMO_AUTH_ALG_COMP128v2,
25 OSMO_AUTH_ALG_COMP128v3,
26 OSMO_AUTH_ALG_XOR,
27 OSMO_AUTH_ALG_MILENAGE,
28 _OSMO_AUTH_ALG_NUM,
29};
30
Neels Hofmeyr87e45502017-06-20 00:17:59 +020031/*! permanent (secret) subscriber auth data */
Harald Welted82e0eb2011-12-06 21:53:42 +010032struct osmo_sub_auth_data {
33 enum osmo_sub_auth_type type;
34 enum osmo_auth_algo algo;
35 union {
36 struct {
Harald Welte007a71e2012-07-18 19:47:56 +020037 uint8_t opc[16]; /*!< operator invariant value */
38 uint8_t k[16]; /*!< secret key of the subscriber */
Harald Welted82e0eb2011-12-06 21:53:42 +010039 uint8_t amf[2];
Neels Hofmeyr95500c82017-08-26 22:38:08 +020040 uint64_t sqn; /*!< sequence number (in: prev sqn; out: used sqn) */
Harald Welte007a71e2012-07-18 19:47:56 +020041 int opc_is_op; /*!< is the OPC field OPC (0) or OP (1) ? */
Neels Hofmeyrbb6f7b72017-03-13 17:27:17 +010042 unsigned int ind_bitlen; /*!< nr of bits not in SEQ, only SQN */
Neels Hofmeyr95500c82017-08-26 22:38:08 +020043 unsigned int ind; /*!< which IND slot to use an SQN from */
Neels Hofmeyr2066a422017-08-26 22:43:50 +020044 uint64_t sqn_ms; /*!< sqn from AUTS (output value only) */
Harald Welted82e0eb2011-12-06 21:53:42 +010045 } umts;
46 struct {
Max483cdff2017-08-28 10:38:59 +020047 uint8_t ki[OSMO_A5_MAX_KEY_LEN_BYTES]; /*!< secret key */
Harald Welted82e0eb2011-12-06 21:53:42 +010048 } gsm;
Harald Welteaae23622011-12-07 11:35:02 +010049 } u;
Harald Welted82e0eb2011-12-06 21:53:42 +010050};
51
52/* data structure describing a computed auth vector, generated by AuC */
53struct osmo_auth_vector {
Harald Welte007a71e2012-07-18 19:47:56 +020054 uint8_t rand[16]; /*!< random challenge */
55 uint8_t autn[16]; /*!< authentication nonce */
56 uint8_t ck[16]; /*!< ciphering key */
57 uint8_t ik[16]; /*!< integrity key */
58 uint8_t res[16]; /*!< authentication result */
59 uint8_t res_len; /*!< length (in bytes) of res */
60 uint8_t kc[8]; /*!< Kc for GSM encryption (A5) */
61 uint8_t sres[4]; /*!< authentication result for GSM */
Harald Welted82e0eb2011-12-06 21:53:42 +010062 uint32_t auth_types; /*!< bitmask of OSMO_AUTH_TYPE_* */
63};
64
Neels Hofmeyr87e45502017-06-20 00:17:59 +020065/* An implementation of an authentication algorithm */
Harald Welted82e0eb2011-12-06 21:53:42 +010066struct osmo_auth_impl {
67 struct llist_head list;
Harald Welte007a71e2012-07-18 19:47:56 +020068 enum osmo_auth_algo algo; /*!< algorithm we implement */
69 const char *name; /*!< name of the implementation */
70 unsigned int priority; /*!< priority value (resp. othe implementations */
Harald Welted82e0eb2011-12-06 21:53:42 +010071
Neels Hofmeyr87e45502017-06-20 00:17:59 +020072 /*! callback for generate authentication vectors */
Harald Welted82e0eb2011-12-06 21:53:42 +010073 int (*gen_vec)(struct osmo_auth_vector *vec,
74 struct osmo_sub_auth_data *aud,
75 const uint8_t *_rand);
76
Neels Hofmeyr87e45502017-06-20 00:17:59 +020077 /* callback for generationg auth vectors + re-sync */
Harald Welted82e0eb2011-12-06 21:53:42 +010078 int (*gen_vec_auts)(struct osmo_auth_vector *vec,
79 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +010080 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +010081 const uint8_t *_rand);
82};
83
84int osmo_auth_gen_vec(struct osmo_auth_vector *vec,
85 struct osmo_sub_auth_data *aud, const uint8_t *_rand);
86
87int osmo_auth_gen_vec_auts(struct osmo_auth_vector *vec,
88 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +010089 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +010090 const uint8_t *_rand);
91
92int osmo_auth_register(struct osmo_auth_impl *impl);
93
94int osmo_auth_load(const char *path);
95
96int osmo_auth_supported(enum osmo_auth_algo algo);
Maxceae1232016-06-27 18:12:49 +020097void osmo_c4(uint8_t *ck, const uint8_t *kc);
Harald Weltea5ab1622011-12-07 02:33:11 +010098const char *osmo_auth_alg_name(enum osmo_auth_algo alg);
99enum osmo_auth_algo osmo_auth_alg_parse(const char *name);
100
Harald Welte007a71e2012-07-18 19:47:56 +0200101/* @} */