blob: 72f1fcd4bedd7094ce75690a1d6ac3b604652f26 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file osmo-auc-gen.c
2 * GSM/GPRS/3G authentication testing tool. */
3/*
Harald Welte53b4bbb2021-09-16 21:36:16 +02004 * (C) 2010-2021 by Harald Welte <laforge@gnumonks.org>
Harald Welte915e0ef2011-12-07 02:38:42 +01005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
Harald Welte915e0ef2011-12-07 02:38:42 +010018 */
19
20
21#include <stdlib.h>
22#include <stdio.h>
23#include <errno.h>
24#include <string.h>
Jan Engelhardta6d83932013-06-03 01:38:57 +020025#include <time.h>
Harald Welte915e0ef2011-12-07 02:38:42 +010026#include <getopt.h>
Harald Welteb53717f2012-08-02 08:42:59 +020027#include <unistd.h>
Holger Hans Peter Freythera652abc2013-07-14 09:11:47 +020028#include <inttypes.h>
29#include <time.h>
Harald Welte915e0ef2011-12-07 02:38:42 +010030
31#include <osmocom/crypt/auth.h>
32#include <osmocom/core/utils.h>
Harald Welte53b4bbb2021-09-16 21:36:16 +020033#include <osmocom/core/base64.h>
Max4b2b0cc2017-07-10 14:32:48 +020034#include <osmocom/gsm/gsm_utils.h>
Harald Welte915e0ef2011-12-07 02:38:42 +010035
Harald Welte53b4bbb2021-09-16 21:36:16 +020036static void print_base64(const char *fmt, const uint8_t *data, unsigned int len)
37{
38 uint8_t outbuf[256];
39 size_t olen;
40
41 OSMO_ASSERT(osmo_base64_encode(outbuf, sizeof(outbuf), &olen, data, len) == 0);
42 OSMO_ASSERT(sizeof(outbuf) > olen);
43 outbuf[olen] = '\0';
44 printf(fmt, outbuf);
45}
46
Harald Welte57799ed2012-06-27 15:06:19 +020047static void dump_triplets_dat(struct osmo_auth_vector *vec)
48{
49 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
50 fprintf(stderr, "triplets.dat doesn't support UMTS!\n");
51 return;
52 }
53 printf("imsi,");
54 printf("%s,", osmo_hexdump_nospc(vec->rand, sizeof(vec->rand)));
55 printf("%s,", osmo_hexdump_nospc(vec->sres, sizeof(vec->sres)));
56 printf("%s\n", osmo_hexdump_nospc(vec->kc, sizeof(vec->kc)));
57}
58
Harald Welte915e0ef2011-12-07 02:38:42 +010059static void dump_auth_vec(struct osmo_auth_vector *vec)
60{
Harald Welte4f511b62016-05-18 19:36:42 +020061 printf("RAND:\t%s\n", osmo_hexdump_nospc(vec->rand, sizeof(vec->rand)));
Harald Welte915e0ef2011-12-07 02:38:42 +010062
63 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
Harald Welte53b4bbb2021-09-16 21:36:16 +020064 uint8_t inbuf[sizeof(vec->rand) + sizeof(vec->autn)];
65
Harald Welte4f511b62016-05-18 19:36:42 +020066 printf("AUTN:\t%s\n", osmo_hexdump_nospc(vec->autn, sizeof(vec->autn)));
67 printf("IK:\t%s\n", osmo_hexdump_nospc(vec->ik, sizeof(vec->ik)));
68 printf("CK:\t%s\n", osmo_hexdump_nospc(vec->ck, sizeof(vec->ck)));
69 printf("RES:\t%s\n", osmo_hexdump_nospc(vec->res, vec->res_len));
Harald Welte53b4bbb2021-09-16 21:36:16 +020070
71 memcpy(inbuf, vec->rand, sizeof(vec->rand));
72 memcpy(inbuf + sizeof(vec->rand), vec->autn, sizeof(vec->autn));
73 print_base64("IMS nonce:\t%s\n", inbuf, sizeof(inbuf));
74 print_base64("IMS res:\t%s\n", vec->res, vec->res_len);
Harald Welte915e0ef2011-12-07 02:38:42 +010075 }
76
77 if (vec->auth_types & OSMO_AUTH_TYPE_GSM) {
Harald Welte4f511b62016-05-18 19:36:42 +020078 printf("SRES:\t%s\n", osmo_hexdump_nospc(vec->sres, sizeof(vec->sres)));
79 printf("Kc:\t%s\n", osmo_hexdump_nospc(vec->kc, sizeof(vec->kc)));
Harald Welte915e0ef2011-12-07 02:38:42 +010080 }
81}
82
83static struct osmo_sub_auth_data test_aud = {
84 .type = OSMO_AUTH_TYPE_NONE,
85 .algo = OSMO_AUTH_ALG_NONE,
86};
87
Harald Welte5fb795e2012-03-21 08:51:48 +010088static void help()
89{
Neels Hofmeyr18d65be2017-02-03 18:36:32 +010090 int alg;
Harald Welte5fb795e2012-03-21 08:51:48 +010091 printf( "-2 --2g\tUse 2G (GSM) authentication\n"
92 "-3 --3g\tUse 3G (UMTS) authentication\n"
93 "-a --algorithm\tSpecify name of the algorithm\n"
94 "-k --key\tSpecify Ki / K\n"
95 "-o --opc\tSpecify OPC (only for 3G)\n"
Harald Weltea72e47b2012-03-21 09:03:16 +010096 "-O --op\tSpecify OP (only for 3G)\n"
Holger Hans Peter Freyther91ff17c2015-05-26 00:11:37 +080097 "-f --amf\tSpecify AMF (only for 3G)\n"
Harald Welte5fb795e2012-03-21 08:51:48 +010098 "-s --sqn\tSpecify SQN (only for 3G)\n"
Neels Hofmeyr3cb08272017-08-26 21:45:33 +020099 "-i --ind\tSpecify IND slot for new SQN after AUTS (only for 3G)\n"
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200100 "-l --ind-len\tSpecify IND bit length (default=5) (only for 3G)\n"
Harald Weltecebf3f02012-03-22 16:45:23 +0100101 "-A --auts\tSpecify AUTS (only for 3G)\n"
Harald Welte57799ed2012-06-27 15:06:19 +0200102 "-r --rand\tSpecify random value\n"
103 "-I --ipsec\tOutput in triplets.dat format for strongswan\n");
Neels Hofmeyr18d65be2017-02-03 18:36:32 +0100104
105 fprintf(stderr, "\nAvailable algorithms for option -a:\n");
106 for (alg = 1; alg < _OSMO_AUTH_ALG_NUM; alg++)
107 fprintf(stderr, " %s\n",
108 osmo_auth_alg_name(alg));
Harald Welte5fb795e2012-03-21 08:51:48 +0100109}
110
Harald Welte915e0ef2011-12-07 02:38:42 +0100111int main(int argc, char **argv)
112{
113 struct osmo_auth_vector _vec;
114 struct osmo_auth_vector *vec = &_vec;
Neels Hofmeyr8352d312017-02-02 20:05:14 +0100115 uint8_t _rand[16], _auts[14];
Pau Espin Pedrolc30a76b2017-11-16 16:37:55 +0100116 uint64_t sqn = 0;
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200117 unsigned int ind = 0;
Harald Welte915e0ef2011-12-07 02:38:42 +0100118 int rc, option_index;
119 int rand_is_set = 0;
Harald Weltecebf3f02012-03-22 16:45:23 +0100120 int auts_is_set = 0;
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200121 int sqn_is_set = 0;
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200122 int ind_is_set = 0;
Harald Welte57799ed2012-06-27 15:06:19 +0200123 int fmt_triplets_dat = 0;
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200124 uint64_t ind_mask = 0;
Harald Welte915e0ef2011-12-07 02:38:42 +0100125
Harald Weltebc6f56c2012-03-21 17:37:53 +0100126 printf("osmo-auc-gen (C) 2011-2012 by Harald Welte\n");
Harald Welte915e0ef2011-12-07 02:38:42 +0100127 printf("This is FREE SOFTWARE with ABSOLUTELY NO WARRANTY\n\n");
128
Harald Weltecebf3f02012-03-22 16:45:23 +0100129 memset(_auts, 0, sizeof(_auts));
130
Harald Welte915e0ef2011-12-07 02:38:42 +0100131 while (1) {
132 int c;
Harald Welte915e0ef2011-12-07 02:38:42 +0100133 static struct option long_options[] = {
134 { "2g", 0, 0, '2' },
135 { "3g", 0, 0, '3' },
136 { "algorithm", 1, 0, 'a' },
137 { "key", 1, 0, 'k' },
138 { "opc", 1, 0, 'o' },
Harald Weltea72e47b2012-03-21 09:03:16 +0100139 { "op", 1, 0, 'O' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100140 { "amf", 1, 0, 'f' },
141 { "sqn", 1, 0, 's' },
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200142 { "ind", 1, 0, 'i' },
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200143 { "ind-len", 1, 0, 'l' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100144 { "rand", 1, 0, 'r' },
Harald Weltecebf3f02012-03-22 16:45:23 +0100145 { "auts", 1, 0, 'A' },
Harald Welte5fb795e2012-03-21 08:51:48 +0100146 { "help", 0, 0, 'h' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100147 { 0, 0, 0, 0 }
148 };
149
150 rc = 0;
151
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200152 c = getopt_long(argc, argv, "23a:k:o:f:s:i:l:r:hO:A:I", long_options,
Harald Welte915e0ef2011-12-07 02:38:42 +0100153 &option_index);
154
155 if (c == -1)
156 break;
157
158 switch (c) {
159 case '2':
160 test_aud.type = OSMO_AUTH_TYPE_GSM;
161 break;
162 case '3':
163 test_aud.type = OSMO_AUTH_TYPE_UMTS;
Neels Hofmeyr4315e012017-08-26 21:40:11 +0200164 test_aud.u.umts.ind_bitlen = 5;
Harald Welte915e0ef2011-12-07 02:38:42 +0100165 break;
166 case 'a':
167 rc = osmo_auth_alg_parse(optarg);
168 if (rc < 0)
169 break;
170 test_aud.algo = rc;
171 break;
172 case 'k':
173 switch (test_aud.type) {
174 case OSMO_AUTH_TYPE_GSM:
Harald Welteaae23622011-12-07 11:35:02 +0100175 rc = osmo_hexparse(optarg, test_aud.u.gsm.ki,
176 sizeof(test_aud.u.gsm.ki));
Harald Welte915e0ef2011-12-07 02:38:42 +0100177 break;
178 case OSMO_AUTH_TYPE_UMTS:
Harald Welteaae23622011-12-07 11:35:02 +0100179 rc = osmo_hexparse(optarg, test_aud.u.umts.k,
180 sizeof(test_aud.u.umts.k));
Harald Welte915e0ef2011-12-07 02:38:42 +0100181 break;
182 default:
183 fprintf(stderr, "please specify 2g/3g first!\n");
184 }
185 break;
186 case 'o':
187 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
188 fprintf(stderr, "Only UMTS has OPC\n");
189 exit(2);
190 }
Harald Welteaae23622011-12-07 11:35:02 +0100191 rc = osmo_hexparse(optarg, test_aud.u.umts.opc,
192 sizeof(test_aud.u.umts.opc));
Harald Weltea72e47b2012-03-21 09:03:16 +0100193 test_aud.u.umts.opc_is_op = 0;
194 break;
195 case 'O':
196 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
197 fprintf(stderr, "Only UMTS has OP\n");
198 exit(2);
199 }
200 rc = osmo_hexparse(optarg, test_aud.u.umts.opc,
201 sizeof(test_aud.u.umts.opc));
202 test_aud.u.umts.opc_is_op = 1;
Harald Welte915e0ef2011-12-07 02:38:42 +0100203 break;
Harald Weltecebf3f02012-03-22 16:45:23 +0100204 case 'A':
205 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
206 fprintf(stderr, "Only UMTS has AUTS\n");
207 exit(2);
208 }
209 rc = osmo_hexparse(optarg, _auts, sizeof(_auts));
210 auts_is_set = 1;
211 break;
Harald Welte915e0ef2011-12-07 02:38:42 +0100212 case 'f':
213 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
214 fprintf(stderr, "Only UMTS has AMF\n");
215 exit(2);
216 }
Harald Welteaae23622011-12-07 11:35:02 +0100217 rc = osmo_hexparse(optarg, test_aud.u.umts.amf,
218 sizeof(test_aud.u.umts.amf));
Harald Welte915e0ef2011-12-07 02:38:42 +0100219 break;
220 case 's':
221 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
222 fprintf(stderr, "Only UMTS has SQN\n");
223 exit(2);
224 }
Harald Welteb48f4382021-09-17 07:56:09 +0200225 sqn = strtoull(optarg, 0, 0);
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200226 sqn_is_set = 1;
Harald Welte915e0ef2011-12-07 02:38:42 +0100227 break;
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200228 case 'i':
229 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
230 fprintf(stderr, "Only UMTS has IND\n");
231 exit(2);
232 }
233 ind = atoi(optarg);
234 ind_is_set = 1;
235 break;
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200236 case 'l':
237 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
238 fprintf(stderr, "Only UMTS has IND bitlen\n");
239 exit(2);
240 }
241 test_aud.u.umts.ind_bitlen = atoi(optarg);
242 break;
Harald Welte915e0ef2011-12-07 02:38:42 +0100243 case 'r':
244 rc = osmo_hexparse(optarg, _rand, sizeof(_rand));
245 rand_is_set = 1;
246 break;
Harald Welte57799ed2012-06-27 15:06:19 +0200247 case 'I':
248 fmt_triplets_dat = 1;
249 break;
Harald Welte5fb795e2012-03-21 08:51:48 +0100250 case 'h':
251 help();
252 exit(0);
253 default:
254 help();
255 exit(1);
Harald Welte915e0ef2011-12-07 02:38:42 +0100256 }
257
258 if (rc < 0) {
Neels Hofmeyr18d65be2017-02-03 18:36:32 +0100259 help();
260 fprintf(stderr, "\nError parsing argument of option `%c'\n", c);
Harald Welte915e0ef2011-12-07 02:38:42 +0100261 exit(2);
262 }
263 }
264
Harald Welte278a6c82019-12-03 21:35:12 +0100265 if (argc > optind) {
266 fprintf(stderr, "Unsupported positional arguments in command line\n");
267 exit(2);
268 }
269
Harald Welte915e0ef2011-12-07 02:38:42 +0100270 if (!rand_is_set) {
Max4b2b0cc2017-07-10 14:32:48 +0200271 rc = osmo_get_rand_id(_rand, 16);
272 if (rc < 0) {
273 fprintf(stderr, "\nError: unable to obtain secure random numbers: %s!\n",
274 strerror(-rc));
275 exit(3);
Holger Hans Peter Freyther17aa6b22014-06-22 16:53:55 +0200276 }
Harald Welte915e0ef2011-12-07 02:38:42 +0100277 }
278
Harald Welte5fb795e2012-03-21 08:51:48 +0100279 if (test_aud.type == OSMO_AUTH_TYPE_NONE ||
280 test_aud.algo == OSMO_AUTH_ALG_NONE) {
281 help();
Neels Hofmeyr18d65be2017-02-03 18:36:32 +0100282 fprintf(stderr, "\nError: you need to pass at least"
283 " -2 or -3, as well as an algorithm to use.\n");
Harald Welte5fb795e2012-03-21 08:51:48 +0100284 exit(2);
285 }
286
Harald Welte915e0ef2011-12-07 02:38:42 +0100287 memset(vec, 0, sizeof(*vec));
288
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200289 if (test_aud.type == OSMO_AUTH_TYPE_UMTS) {
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200290 uint64_t seq_1 = 1LL << test_aud.u.umts.ind_bitlen;
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200291 ind_mask = seq_1 - 1;
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200292
293 if (sqn_is_set) {
294 /* Before calculating the UMTS auth vector, osmo_auth_gen_vec() increments SEQ.
295 * To end up with the SQN passed in by the user, we need to pass in SEQ-1, and
296 * indicate which IND slot to target. */
297 test_aud.u.umts.sqn = sqn - seq_1;
298 test_aud.u.umts.ind = sqn & ind_mask;
299 }
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200300
301 if (sqn_is_set && ind_is_set) {
302 fprintf(stderr, "Requesting --sqn %"PRIu64" implies IND=%u,"
303 " so no further --ind argument is allowed.\n",
304 sqn, test_aud.u.umts.ind);
305 exit(2);
306 }
307
308 if (ind_is_set) {
309 if (ind >= (1 << test_aud.u.umts.ind_bitlen)) {
310 fprintf(stderr, "Requested --ind %u is too large for IND bitlen of %u\n",
311 ind, test_aud.u.umts.ind_bitlen);
312 exit(2);
313 }
314 test_aud.u.umts.ind = ind;
315 }
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200316 }
317
Harald Weltecebf3f02012-03-22 16:45:23 +0100318 if (!auts_is_set)
319 rc = osmo_auth_gen_vec(vec, &test_aud, _rand);
320 else
321 rc = osmo_auth_gen_vec_auts(vec, &test_aud, _auts, _rand, _rand);
Harald Welte915e0ef2011-12-07 02:38:42 +0100322 if (rc < 0) {
Harald Weltecebf3f02012-03-22 16:45:23 +0100323 if (!auts_is_set)
324 fprintf(stderr, "error generating auth vector\n");
325 else
326 fprintf(stderr, "AUTS from MS seems incorrect\n");
Harald Welte915e0ef2011-12-07 02:38:42 +0100327 exit(1);
328 }
329
Harald Welte57799ed2012-06-27 15:06:19 +0200330 if (fmt_triplets_dat)
331 dump_triplets_dat(vec);
Neels Hofmeyr5fe3d1b2017-03-15 01:16:43 +0100332 else {
Harald Welte57799ed2012-06-27 15:06:19 +0200333 dump_auth_vec(vec);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200334 if (test_aud.type == OSMO_AUTH_TYPE_UMTS) {
Neels Hofmeyr82c9a0e2017-03-13 17:36:17 +0100335 printf("SQN:\t%" PRIu64 "\n", test_aud.u.umts.sqn);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200336 printf("IND:\t%u\n", (unsigned int)(test_aud.u.umts.sqn & ind_mask));
Neels Hofmeyr2066a422017-08-26 22:43:50 +0200337 if (auts_is_set)
338 printf("SQN.MS:\t%" PRIu64 "\n", test_aud.u.umts.sqn_ms);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200339 }
Neels Hofmeyr5fe3d1b2017-03-15 01:16:43 +0100340 }
Harald Welte915e0ef2011-12-07 02:38:42 +0100341
Harald Weltecebf3f02012-03-22 16:45:23 +0100342 exit(0);
Harald Welte915e0ef2011-12-07 02:38:42 +0100343}