blob: 1f5c8386760066d687643c6a4b721e8d826b3ba6 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file osmo-auc-gen.c
2 * GSM/GPRS/3G authentication testing tool. */
3/*
4 * (C) 2010-2012 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 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24
25#include <stdlib.h>
26#include <stdio.h>
27#include <errno.h>
28#include <string.h>
Jan Engelhardta6d83932013-06-03 01:38:57 +020029#include <time.h>
Harald Welte915e0ef2011-12-07 02:38:42 +010030#include <getopt.h>
Harald Welteb53717f2012-08-02 08:42:59 +020031#include <unistd.h>
Holger Hans Peter Freythera652abc2013-07-14 09:11:47 +020032#include <inttypes.h>
33#include <time.h>
Harald Welte915e0ef2011-12-07 02:38:42 +010034
35#include <osmocom/crypt/auth.h>
36#include <osmocom/core/utils.h>
37
Harald Welte57799ed2012-06-27 15:06:19 +020038static void dump_triplets_dat(struct osmo_auth_vector *vec)
39{
40 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
41 fprintf(stderr, "triplets.dat doesn't support UMTS!\n");
42 return;
43 }
44 printf("imsi,");
45 printf("%s,", osmo_hexdump_nospc(vec->rand, sizeof(vec->rand)));
46 printf("%s,", osmo_hexdump_nospc(vec->sres, sizeof(vec->sres)));
47 printf("%s\n", osmo_hexdump_nospc(vec->kc, sizeof(vec->kc)));
48}
49
Harald Welte915e0ef2011-12-07 02:38:42 +010050static void dump_auth_vec(struct osmo_auth_vector *vec)
51{
Harald Welte4f511b62016-05-18 19:36:42 +020052 printf("RAND:\t%s\n", osmo_hexdump_nospc(vec->rand, sizeof(vec->rand)));
Harald Welte915e0ef2011-12-07 02:38:42 +010053
54 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
Harald Welte4f511b62016-05-18 19:36:42 +020055 printf("AUTN:\t%s\n", osmo_hexdump_nospc(vec->autn, sizeof(vec->autn)));
56 printf("IK:\t%s\n", osmo_hexdump_nospc(vec->ik, sizeof(vec->ik)));
57 printf("CK:\t%s\n", osmo_hexdump_nospc(vec->ck, sizeof(vec->ck)));
58 printf("RES:\t%s\n", osmo_hexdump_nospc(vec->res, vec->res_len));
Harald Welte915e0ef2011-12-07 02:38:42 +010059 }
60
61 if (vec->auth_types & OSMO_AUTH_TYPE_GSM) {
Harald Welte4f511b62016-05-18 19:36:42 +020062 printf("SRES:\t%s\n", osmo_hexdump_nospc(vec->sres, sizeof(vec->sres)));
63 printf("Kc:\t%s\n", osmo_hexdump_nospc(vec->kc, sizeof(vec->kc)));
Harald Welte915e0ef2011-12-07 02:38:42 +010064 }
65}
66
67static struct osmo_sub_auth_data test_aud = {
68 .type = OSMO_AUTH_TYPE_NONE,
69 .algo = OSMO_AUTH_ALG_NONE,
70};
71
Harald Welte5fb795e2012-03-21 08:51:48 +010072static void help()
73{
Neels Hofmeyr18d65be2017-02-03 18:36:32 +010074 int alg;
Harald Welte5fb795e2012-03-21 08:51:48 +010075 printf( "-2 --2g\tUse 2G (GSM) authentication\n"
76 "-3 --3g\tUse 3G (UMTS) authentication\n"
77 "-a --algorithm\tSpecify name of the algorithm\n"
78 "-k --key\tSpecify Ki / K\n"
79 "-o --opc\tSpecify OPC (only for 3G)\n"
Harald Weltea72e47b2012-03-21 09:03:16 +010080 "-O --op\tSpecify OP (only for 3G)\n"
Holger Hans Peter Freyther91ff17c2015-05-26 00:11:37 +080081 "-f --amf\tSpecify AMF (only for 3G)\n"
Harald Welte5fb795e2012-03-21 08:51:48 +010082 "-s --sqn\tSpecify SQN (only for 3G)\n"
Neels Hofmeyr3cb08272017-08-26 21:45:33 +020083 "-i --ind\tSpecify IND slot for new SQN after AUTS (only for 3G)\n"
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +020084 "-l --ind-len\tSpecify IND bit length (default=5) (only for 3G)\n"
Harald Weltecebf3f02012-03-22 16:45:23 +010085 "-A --auts\tSpecify AUTS (only for 3G)\n"
Harald Welte57799ed2012-06-27 15:06:19 +020086 "-r --rand\tSpecify random value\n"
87 "-I --ipsec\tOutput in triplets.dat format for strongswan\n");
Neels Hofmeyr18d65be2017-02-03 18:36:32 +010088
89 fprintf(stderr, "\nAvailable algorithms for option -a:\n");
90 for (alg = 1; alg < _OSMO_AUTH_ALG_NUM; alg++)
91 fprintf(stderr, " %s\n",
92 osmo_auth_alg_name(alg));
Harald Welte5fb795e2012-03-21 08:51:48 +010093}
94
Harald Welte915e0ef2011-12-07 02:38:42 +010095int main(int argc, char **argv)
96{
97 struct osmo_auth_vector _vec;
98 struct osmo_auth_vector *vec = &_vec;
Neels Hofmeyr8352d312017-02-02 20:05:14 +010099 uint8_t _rand[16], _auts[14];
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200100 uint64_t sqn;
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200101 unsigned int ind = 0;
Harald Welte915e0ef2011-12-07 02:38:42 +0100102 int rc, option_index;
103 int rand_is_set = 0;
Harald Weltecebf3f02012-03-22 16:45:23 +0100104 int auts_is_set = 0;
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200105 int sqn_is_set = 0;
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200106 int ind_is_set = 0;
Harald Welte57799ed2012-06-27 15:06:19 +0200107 int fmt_triplets_dat = 0;
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200108 uint64_t ind_mask = 0;
Harald Welte915e0ef2011-12-07 02:38:42 +0100109
Harald Weltebc6f56c2012-03-21 17:37:53 +0100110 printf("osmo-auc-gen (C) 2011-2012 by Harald Welte\n");
Harald Welte915e0ef2011-12-07 02:38:42 +0100111 printf("This is FREE SOFTWARE with ABSOLUTELY NO WARRANTY\n\n");
112
Harald Weltecebf3f02012-03-22 16:45:23 +0100113 memset(_auts, 0, sizeof(_auts));
114
Harald Welte915e0ef2011-12-07 02:38:42 +0100115 while (1) {
116 int c;
Harald Welte915e0ef2011-12-07 02:38:42 +0100117 static struct option long_options[] = {
118 { "2g", 0, 0, '2' },
119 { "3g", 0, 0, '3' },
120 { "algorithm", 1, 0, 'a' },
121 { "key", 1, 0, 'k' },
122 { "opc", 1, 0, 'o' },
Harald Weltea72e47b2012-03-21 09:03:16 +0100123 { "op", 1, 0, 'O' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100124 { "amf", 1, 0, 'f' },
125 { "sqn", 1, 0, 's' },
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200126 { "ind", 1, 0, 'i' },
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200127 { "ind-len", 1, 0, 'l' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100128 { "rand", 1, 0, 'r' },
Harald Weltecebf3f02012-03-22 16:45:23 +0100129 { "auts", 1, 0, 'A' },
Harald Welte5fb795e2012-03-21 08:51:48 +0100130 { "help", 0, 0, 'h' },
Harald Welte915e0ef2011-12-07 02:38:42 +0100131 { 0, 0, 0, 0 }
132 };
133
134 rc = 0;
135
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200136 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 +0100137 &option_index);
138
139 if (c == -1)
140 break;
141
142 switch (c) {
143 case '2':
144 test_aud.type = OSMO_AUTH_TYPE_GSM;
145 break;
146 case '3':
147 test_aud.type = OSMO_AUTH_TYPE_UMTS;
Neels Hofmeyr4315e012017-08-26 21:40:11 +0200148 test_aud.u.umts.ind_bitlen = 5;
Harald Welte915e0ef2011-12-07 02:38:42 +0100149 break;
150 case 'a':
151 rc = osmo_auth_alg_parse(optarg);
152 if (rc < 0)
153 break;
154 test_aud.algo = rc;
155 break;
156 case 'k':
157 switch (test_aud.type) {
158 case OSMO_AUTH_TYPE_GSM:
Harald Welteaae23622011-12-07 11:35:02 +0100159 rc = osmo_hexparse(optarg, test_aud.u.gsm.ki,
160 sizeof(test_aud.u.gsm.ki));
Harald Welte915e0ef2011-12-07 02:38:42 +0100161 break;
162 case OSMO_AUTH_TYPE_UMTS:
Harald Welteaae23622011-12-07 11:35:02 +0100163 rc = osmo_hexparse(optarg, test_aud.u.umts.k,
164 sizeof(test_aud.u.umts.k));
Harald Welte915e0ef2011-12-07 02:38:42 +0100165 break;
166 default:
167 fprintf(stderr, "please specify 2g/3g first!\n");
168 }
169 break;
170 case 'o':
171 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
172 fprintf(stderr, "Only UMTS has OPC\n");
173 exit(2);
174 }
Harald Welteaae23622011-12-07 11:35:02 +0100175 rc = osmo_hexparse(optarg, test_aud.u.umts.opc,
176 sizeof(test_aud.u.umts.opc));
Harald Weltea72e47b2012-03-21 09:03:16 +0100177 test_aud.u.umts.opc_is_op = 0;
178 break;
179 case 'O':
180 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
181 fprintf(stderr, "Only UMTS has OP\n");
182 exit(2);
183 }
184 rc = osmo_hexparse(optarg, test_aud.u.umts.opc,
185 sizeof(test_aud.u.umts.opc));
186 test_aud.u.umts.opc_is_op = 1;
Harald Welte915e0ef2011-12-07 02:38:42 +0100187 break;
Harald Weltecebf3f02012-03-22 16:45:23 +0100188 case 'A':
189 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
190 fprintf(stderr, "Only UMTS has AUTS\n");
191 exit(2);
192 }
193 rc = osmo_hexparse(optarg, _auts, sizeof(_auts));
194 auts_is_set = 1;
195 break;
Harald Welte915e0ef2011-12-07 02:38:42 +0100196 case 'f':
197 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
198 fprintf(stderr, "Only UMTS has AMF\n");
199 exit(2);
200 }
Harald Welteaae23622011-12-07 11:35:02 +0100201 rc = osmo_hexparse(optarg, test_aud.u.umts.amf,
202 sizeof(test_aud.u.umts.amf));
Harald Welte915e0ef2011-12-07 02:38:42 +0100203 break;
204 case 's':
205 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
206 fprintf(stderr, "Only UMTS has SQN\n");
207 exit(2);
208 }
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200209 sqn = strtoull(optarg, 0, 10);
210 sqn_is_set = 1;
Harald Welte915e0ef2011-12-07 02:38:42 +0100211 break;
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200212 case 'i':
213 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
214 fprintf(stderr, "Only UMTS has IND\n");
215 exit(2);
216 }
217 ind = atoi(optarg);
218 ind_is_set = 1;
219 break;
Neels Hofmeyrb1af6ef2017-08-26 21:38:51 +0200220 case 'l':
221 if (test_aud.type != OSMO_AUTH_TYPE_UMTS) {
222 fprintf(stderr, "Only UMTS has IND bitlen\n");
223 exit(2);
224 }
225 test_aud.u.umts.ind_bitlen = atoi(optarg);
226 break;
Harald Welte915e0ef2011-12-07 02:38:42 +0100227 case 'r':
228 rc = osmo_hexparse(optarg, _rand, sizeof(_rand));
229 rand_is_set = 1;
230 break;
Harald Welte57799ed2012-06-27 15:06:19 +0200231 case 'I':
232 fmt_triplets_dat = 1;
233 break;
Harald Welte5fb795e2012-03-21 08:51:48 +0100234 case 'h':
235 help();
236 exit(0);
237 default:
238 help();
239 exit(1);
Harald Welte915e0ef2011-12-07 02:38:42 +0100240 }
241
242 if (rc < 0) {
Neels Hofmeyr18d65be2017-02-03 18:36:32 +0100243 help();
244 fprintf(stderr, "\nError parsing argument of option `%c'\n", c);
Harald Welte915e0ef2011-12-07 02:38:42 +0100245 exit(2);
246 }
247 }
248
249 if (!rand_is_set) {
Holger Hans Peter Freyther17aa6b22014-06-22 16:53:55 +0200250 int i;
Harald Welte915e0ef2011-12-07 02:38:42 +0100251 printf("WARNING: We're using really weak random numbers!\n\n");
252 srand(time(NULL));
Holger Hans Peter Freyther17aa6b22014-06-22 16:53:55 +0200253
254 for (i = 0; i < 4; ++i) {
255 uint32_t r;
256 r = rand();
257 memcpy(&_rand[i*4], &r, 4);
258 }
Harald Welte915e0ef2011-12-07 02:38:42 +0100259 }
260
Harald Welte5fb795e2012-03-21 08:51:48 +0100261 if (test_aud.type == OSMO_AUTH_TYPE_NONE ||
262 test_aud.algo == OSMO_AUTH_ALG_NONE) {
263 help();
Neels Hofmeyr18d65be2017-02-03 18:36:32 +0100264 fprintf(stderr, "\nError: you need to pass at least"
265 " -2 or -3, as well as an algorithm to use.\n");
Harald Welte5fb795e2012-03-21 08:51:48 +0100266 exit(2);
267 }
268
Harald Welte915e0ef2011-12-07 02:38:42 +0100269 memset(vec, 0, sizeof(*vec));
270
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200271 if (test_aud.type == OSMO_AUTH_TYPE_UMTS) {
Neels Hofmeyrb2e41cc2017-09-12 03:25:43 +0200272 uint64_t seq_1 = 1LL << test_aud.u.umts.ind_bitlen;
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200273 ind_mask = seq_1 - 1;
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200274
275 if (sqn_is_set) {
276 /* Before calculating the UMTS auth vector, osmo_auth_gen_vec() increments SEQ.
277 * To end up with the SQN passed in by the user, we need to pass in SEQ-1, and
278 * indicate which IND slot to target. */
279 test_aud.u.umts.sqn = sqn - seq_1;
280 test_aud.u.umts.ind = sqn & ind_mask;
281 }
Neels Hofmeyr3cb08272017-08-26 21:45:33 +0200282
283 if (sqn_is_set && ind_is_set) {
284 fprintf(stderr, "Requesting --sqn %"PRIu64" implies IND=%u,"
285 " so no further --ind argument is allowed.\n",
286 sqn, test_aud.u.umts.ind);
287 exit(2);
288 }
289
290 if (ind_is_set) {
291 if (ind >= (1 << test_aud.u.umts.ind_bitlen)) {
292 fprintf(stderr, "Requested --ind %u is too large for IND bitlen of %u\n",
293 ind, test_aud.u.umts.ind_bitlen);
294 exit(2);
295 }
296 test_aud.u.umts.ind = ind;
297 }
Neels Hofmeyrd157bbb2017-08-26 22:08:36 +0200298 }
299
Harald Weltecebf3f02012-03-22 16:45:23 +0100300 if (!auts_is_set)
301 rc = osmo_auth_gen_vec(vec, &test_aud, _rand);
302 else
303 rc = osmo_auth_gen_vec_auts(vec, &test_aud, _auts, _rand, _rand);
Harald Welte915e0ef2011-12-07 02:38:42 +0100304 if (rc < 0) {
Harald Weltecebf3f02012-03-22 16:45:23 +0100305 if (!auts_is_set)
306 fprintf(stderr, "error generating auth vector\n");
307 else
308 fprintf(stderr, "AUTS from MS seems incorrect\n");
Harald Welte915e0ef2011-12-07 02:38:42 +0100309 exit(1);
310 }
311
Harald Welte57799ed2012-06-27 15:06:19 +0200312 if (fmt_triplets_dat)
313 dump_triplets_dat(vec);
Neels Hofmeyr5fe3d1b2017-03-15 01:16:43 +0100314 else {
Harald Welte57799ed2012-06-27 15:06:19 +0200315 dump_auth_vec(vec);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200316 if (test_aud.type == OSMO_AUTH_TYPE_UMTS) {
Neels Hofmeyr82c9a0e2017-03-13 17:36:17 +0100317 printf("SQN:\t%" PRIu64 "\n", test_aud.u.umts.sqn);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200318 printf("IND:\t%u\n", (unsigned int)(test_aud.u.umts.sqn & ind_mask));
Neels Hofmeyr2066a422017-08-26 22:43:50 +0200319 if (auts_is_set)
320 printf("SQN.MS:\t%" PRIu64 "\n", test_aud.u.umts.sqn_ms);
Neels Hofmeyre6e64462017-08-26 22:29:51 +0200321 }
Neels Hofmeyr5fe3d1b2017-03-15 01:16:43 +0100322 }
Harald Welte915e0ef2011-12-07 02:38:42 +0100323
Harald Weltecebf3f02012-03-22 16:45:23 +0100324 exit(0);
Harald Welte915e0ef2011-12-07 02:38:42 +0100325}