blob: 187b9adbcfab3165905ce8b85380061410ffe069 [file] [log] [blame]
Harald Weltee076ac02011-12-07 00:10:18 +01001
2#include <stdlib.h>
3#include <stdio.h>
4#include <errno.h>
5#include <string.h>
Neels Hofmeyr8e1b5982017-03-13 17:36:36 +01006#include <inttypes.h>
Harald Weltee076ac02011-12-07 00:10:18 +01007
8#include <osmocom/crypt/auth.h>
9#include <osmocom/core/utils.h>
10
Jacob Erlbeck73ae7a92013-10-08 12:04:42 +020011int milenage_opc_gen(uint8_t *opc, const uint8_t *k, const uint8_t *op);
12
Harald Weltee076ac02011-12-07 00:10:18 +010013static void dump_auth_vec(struct osmo_auth_vector *vec)
14{
15 printf("RAND:\t%s\n", osmo_hexdump(vec->rand, sizeof(vec->rand)));
16
17 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
18 printf("AUTN:\t%s\n", osmo_hexdump(vec->autn, sizeof(vec->autn)));
19 printf("IK:\t%s\n", osmo_hexdump(vec->ik, sizeof(vec->ik)));
20 printf("CK:\t%s\n", osmo_hexdump(vec->ck, sizeof(vec->ck)));
21 printf("RES:\t%s\n", osmo_hexdump(vec->res, vec->res_len));
22 }
23
24 if (vec->auth_types & OSMO_AUTH_TYPE_GSM) {
25 printf("SRES:\t%s\n", osmo_hexdump(vec->sres, sizeof(vec->sres)));
26 printf("Kc:\t%s\n", osmo_hexdump(vec->kc, sizeof(vec->kc)));
27 }
28}
29
30static struct osmo_sub_auth_data test_aud = {
31 .type = OSMO_AUTH_TYPE_UMTS,
32 .algo = OSMO_AUTH_ALG_MILENAGE,
Harald Welteaae23622011-12-07 11:35:02 +010033 .u.umts = {
Harald Weltee076ac02011-12-07 00:10:18 +010034 .opc = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
35 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
36 .k = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
37 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
38 .amf = { 0x00, 0x00 },
Harald Welte57143a42011-12-07 03:12:44 +010039 .sqn = 0x22,
Harald Weltee076ac02011-12-07 00:10:18 +010040 },
41};
42
Harald Welte042afe72012-03-21 08:19:47 +010043static int opc_test(const struct osmo_sub_auth_data *aud)
44{
45 int rc;
46 uint8_t opc[16];
47#if 0
48 const uint8_t op[16] = { 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
49 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f };
50#else
51 const uint8_t op[16] = { 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0 };
52#endif
53
Maxeb59f242016-06-27 15:44:16 +020054 printf("MILENAGE supported: %d\n",
55 osmo_auth_supported(osmo_auth_alg_parse("MILENAGE")));
56
Harald Welte042afe72012-03-21 08:19:47 +010057 rc = milenage_opc_gen(opc, aud->u.umts.k, op);
58
59 printf("OP:\t%s\n", osmo_hexdump(op, sizeof(op)));
60 printf("OPC:\t%s\n", osmo_hexdump(opc, sizeof(opc)));
61 return rc;
62}
63
Harald Weltee076ac02011-12-07 00:10:18 +010064int main(int argc, char **argv)
65{
66 struct osmo_auth_vector _vec;
67 struct osmo_auth_vector *vec = &_vec;
68 uint8_t _rand[16];
69 int rc;
70
71#if 0
72 srand(time(NULL));
73 *(uint32_t *)&_rand[0] = rand();
74 *(uint32_t *)(&_rand[4]) = rand();
75 *(uint32_t *)(&_rand[8]) = rand();
76 *(uint32_t *)(&_rand[12]) = rand();
77#else
78 memset(_rand, 0, sizeof(_rand));
79#endif
80 memset(vec, 0, sizeof(*vec));
81
82 rc = osmo_auth_gen_vec(vec, &test_aud, _rand);
83 if (rc < 0) {
84 fprintf(stderr, "error generating auth vector\n");
85 exit(1);
86 }
87
88 dump_auth_vec(vec);
89
90 const uint8_t auts[14] = { 0x87, 0x11, 0xa0, 0xec, 0x9e, 0x16, 0x37, 0xdf,
91 0x17, 0xf8, 0x0b, 0x38, 0x4e, 0xe4 };
92
93 rc = osmo_auth_gen_vec_auts(vec, &test_aud, auts, _rand, _rand);
94 if (rc < 0) {
95 printf("AUTS failed\n");
96 } else {
Neels Hofmeyr8e1b5982017-03-13 17:36:36 +010097 printf("AUTS success: tuple generated with SQN = %" PRIu64 "\n",
98 test_aud.u.umts.sqn);
Harald Weltee076ac02011-12-07 00:10:18 +010099 }
100
Harald Welte042afe72012-03-21 08:19:47 +0100101 opc_test(&test_aud);
102
Harald Weltee076ac02011-12-07 00:10:18 +0100103 exit(0);
104
105}