blob: 6d2c783dd94af3fd678e6d27bb6692b91263433f [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
Neels Hofmeyr87e45502017-06-20 00:17:59 +020011/*! Authentication Type (GSM/UMTS) */
Harald Welted82e0eb2011-12-06 21:53:42 +010012enum osmo_sub_auth_type {
13 OSMO_AUTH_TYPE_NONE = 0x00,
14 OSMO_AUTH_TYPE_GSM = 0x01,
15 OSMO_AUTH_TYPE_UMTS = 0x02,
16};
17
Neels Hofmeyr87e45502017-06-20 00:17:59 +020018/*! Authentication Algorithm */
Harald Welted82e0eb2011-12-06 21:53:42 +010019enum osmo_auth_algo {
20 OSMO_AUTH_ALG_NONE,
21 OSMO_AUTH_ALG_COMP128v1,
22 OSMO_AUTH_ALG_COMP128v2,
23 OSMO_AUTH_ALG_COMP128v3,
24 OSMO_AUTH_ALG_XOR,
25 OSMO_AUTH_ALG_MILENAGE,
26 _OSMO_AUTH_ALG_NUM,
27};
28
Neels Hofmeyr87e45502017-06-20 00:17:59 +020029/*! permanent (secret) subscriber auth data */
Harald Welted82e0eb2011-12-06 21:53:42 +010030struct osmo_sub_auth_data {
31 enum osmo_sub_auth_type type;
32 enum osmo_auth_algo algo;
33 union {
34 struct {
Harald Welte007a71e2012-07-18 19:47:56 +020035 uint8_t opc[16]; /*!< operator invariant value */
36 uint8_t k[16]; /*!< secret key of the subscriber */
Harald Welted82e0eb2011-12-06 21:53:42 +010037 uint8_t amf[2];
Neels Hofmeyr95500c82017-08-26 22:38:08 +020038 uint64_t sqn; /*!< sequence number (in: prev sqn; out: used sqn) */
Harald Welte007a71e2012-07-18 19:47:56 +020039 int opc_is_op; /*!< is the OPC field OPC (0) or OP (1) ? */
Neels Hofmeyrbb6f7b72017-03-13 17:27:17 +010040 unsigned int ind_bitlen; /*!< nr of bits not in SEQ, only SQN */
Neels Hofmeyr95500c82017-08-26 22:38:08 +020041 unsigned int ind; /*!< which IND slot to use an SQN from */
Neels Hofmeyr2066a422017-08-26 22:43:50 +020042 uint64_t sqn_ms; /*!< sqn from AUTS (output value only) */
Harald Welted82e0eb2011-12-06 21:53:42 +010043 } umts;
44 struct {
Harald Welte007a71e2012-07-18 19:47:56 +020045 uint8_t ki[16]; /*!< secret key */
Harald Welted82e0eb2011-12-06 21:53:42 +010046 } gsm;
Harald Welteaae23622011-12-07 11:35:02 +010047 } u;
Harald Welted82e0eb2011-12-06 21:53:42 +010048};
49
50/* data structure describing a computed auth vector, generated by AuC */
51struct osmo_auth_vector {
Harald Welte007a71e2012-07-18 19:47:56 +020052 uint8_t rand[16]; /*!< random challenge */
53 uint8_t autn[16]; /*!< authentication nonce */
54 uint8_t ck[16]; /*!< ciphering key */
55 uint8_t ik[16]; /*!< integrity key */
56 uint8_t res[16]; /*!< authentication result */
57 uint8_t res_len; /*!< length (in bytes) of res */
58 uint8_t kc[8]; /*!< Kc for GSM encryption (A5) */
59 uint8_t sres[4]; /*!< authentication result for GSM */
Harald Welted82e0eb2011-12-06 21:53:42 +010060 uint32_t auth_types; /*!< bitmask of OSMO_AUTH_TYPE_* */
61};
62
Neels Hofmeyr87e45502017-06-20 00:17:59 +020063/* An implementation of an authentication algorithm */
Harald Welted82e0eb2011-12-06 21:53:42 +010064struct osmo_auth_impl {
65 struct llist_head list;
Harald Welte007a71e2012-07-18 19:47:56 +020066 enum osmo_auth_algo algo; /*!< algorithm we implement */
67 const char *name; /*!< name of the implementation */
68 unsigned int priority; /*!< priority value (resp. othe implementations */
Harald Welted82e0eb2011-12-06 21:53:42 +010069
Neels Hofmeyr87e45502017-06-20 00:17:59 +020070 /*! callback for generate authentication vectors */
Harald Welted82e0eb2011-12-06 21:53:42 +010071 int (*gen_vec)(struct osmo_auth_vector *vec,
72 struct osmo_sub_auth_data *aud,
73 const uint8_t *_rand);
74
Neels Hofmeyr87e45502017-06-20 00:17:59 +020075 /* callback for generationg auth vectors + re-sync */
Harald Welted82e0eb2011-12-06 21:53:42 +010076 int (*gen_vec_auts)(struct osmo_auth_vector *vec,
77 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +010078 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +010079 const uint8_t *_rand);
80};
81
82int osmo_auth_gen_vec(struct osmo_auth_vector *vec,
83 struct osmo_sub_auth_data *aud, const uint8_t *_rand);
84
85int osmo_auth_gen_vec_auts(struct osmo_auth_vector *vec,
86 struct osmo_sub_auth_data *aud,
Neels Hofmeyr03ab9a62017-02-03 05:00:24 +010087 const uint8_t *auts, const uint8_t *rand_auts,
Harald Welted82e0eb2011-12-06 21:53:42 +010088 const uint8_t *_rand);
89
90int osmo_auth_register(struct osmo_auth_impl *impl);
91
92int osmo_auth_load(const char *path);
93
94int osmo_auth_supported(enum osmo_auth_algo algo);
Maxceae1232016-06-27 18:12:49 +020095void osmo_c4(uint8_t *ck, const uint8_t *kc);
Harald Weltea5ab1622011-12-07 02:33:11 +010096const char *osmo_auth_alg_name(enum osmo_auth_algo alg);
97enum osmo_auth_algo osmo_auth_alg_parse(const char *name);
98
Harald Welte007a71e2012-07-18 19:47:56 +020099/* @} */