f806b2c908eb3fdb93123a8950de8f14b66d9179
[cfe_generate_password.git] / cfe_generate_password.c
1 static const char *title = \
2 "Generate Broadcom CFE seeds and passwords for many popular modem/router devices\n"
3 ;
4 static const float VERSION = 1.3f;
5
6 static const char *copyright = \
7 "Copyright 2015 TJ <hacker@iam.tj>\n"
8 "Licenced on the terms of the GNU General Public Licence version 3\n"
9 ;
10
11 static const char *help = \
12 "This tool can generate passwords for use with many devices that contain Broadcom Common Firmware Environment (CFE) bootbase which has a debug mode that is enabled using the 'ATEN 1 XXXXXXXX' command, where XXXXXXXX is an eight digit hexadecimal 'password'.\n\n"
13
14 "It is NOT necessary to have the device generate a 'seed' using 'ATSE [MODEL-ID]' because this tool can generate the seed from the device's first (base) MAC address.\n\n"
15
16 "When the device generates a seed it combines the number of seconds since 1970-01-01 00:00:00 with the router MAC address. Both are encoded in a single 6-byte hexadecimal number\n\n"
17
18 "Each value is truncated to its 3 least significant bytes so, for example:\n\n"
19
20 " $ date +%F.%T; echo \"obase=16;$(date +%s)\" | bc\n"
21 " 2016-03-26.23:06:32\n"
22 " 56F715F8\n\n"
23
24 "and MAC Address: EC:43:F6:46:C0:80\n\n"
25
26 "becomes F715F8 concatenated with 46C080\n\n"
27
28 " CFE> ATSE DSL-2492GNAU-B1BC\n"
29 " F715F846C080   <<<< last 3 bytes of MAC address\n"
30 " ^^^^^^\n"
31 "   seconds since 1970-01-01 00:00:00 (2016-03-26 23:06:32)\n\n"
32
33 "*NOTE: the default seed after power-up is 000000 so no time value needs to be specifed if 'ATSE <model-id-string>' has not been executed on the device.\n\n"
34
35 "Access to the device's console via a serial UART port, or a network telnet/ssh session, is required to enter the password.\n\n"
36
37 "So, for a device with base MAC address (reported by the CFE during boot) E.g:\n\n"
38
39 " CFE version 1.0.38-112.118 for BCM963268 (32bit,SP,BE)\n"
40 "  ...\n"
41 " Base MAC Address                  : ec:43:f6:46:c0:80\n"
42 "  ...\n"
43 " *** Press any key to stop auto run (1 seconds) ***\n"
44 " CFE>\n\n"
45
46 "Using this tool do:\n\n"
47
48 " ./cfe_gen_pass -s ec:43:f6:46:c0:80 -p\n\n"
49
50 " MAC address: ec:43:f6:46:c0:80 Timestamp: 000000 Seed: 00000046c080 Password: 10f0a563\n\n"
51
52 "And on the device do:\n\n"
53
54 " CFE> ATEN 1 10f0a563\n"
55 " OK\n"
56 " *** command status = 0\n\n"
57
58 "The tool can accept a timestamp as 8 hexadecimal characters (useful for testing the algorithm):\n\n"
59
60 " ./cfe_gen_pass -t 0FF020 -s ec:43:f6:46:c0:80 -p\n\n"
61
62 "MAC address: ec:43:f6:46:c0:80 Timestamp: 0FF020 Seed: 0FF02046c080 Password: 110f65a3\n\n"
63 ;
64
65 #include <stdio.h>
66 #include <stdlib.h>
67 #include <stdarg.h>
68 #include <string.h>
69 #include <time.h>
70
71 static const size_t TIMESTAMP_SIZE = 8;
72 static const size_t SEED_SIZE = 12;
73 static const size_t PASSWORD_SIZE = 8;
74 static const size_t MESSAGE_SIZE = 128;
75 static const size_t MAC_ADDR_SIZE = 17;
76 static const size_t DATESTRING_SIZE = 20;
77
78 static void
79 pr_usage(int verbose)
80 {
81   fprintf(stderr,
82     "Usage:\n"
83     "  -v                   show version\n"
84     "  -s 00:01:02:03:04:05 create seed from MAC address\n"
85     "  -t [00000000]        seconds since 1970-01-01 (defaults to NOW) \n"
86     "  -p [SEED]            generate password (with optional seed)\n"
87     "  -h                   show additional help\n"
88     "\n"
89     "%s",
90     verbose ? help : ""
91   );
92 }
93
94 static void
95 pr_error_exit(unsigned int usage, const char *error, ...)
96 {
97  va_list args;
98  char error_message[MESSAGE_SIZE + 1];
99
100  if (!error) return;
101
102  va_start(args, error);
103  (void) vsnprintf(error_message, MESSAGE_SIZE + 1, error, args);
104  va_end(args);
105  fprintf(stderr, "Error: %s\n", error_message);
106
107  if (usage) pr_usage(usage);
108
109  exit(EXIT_FAILURE);
110 }
111
112 static const unsigned int passwords[8] = {
113   0x10F0A563,
114   0x887852B1,
115   0xC43C2958,
116   0x621E14AC,
117   0x310F0A56,
118   0x1887852B,
119   0x8C43C295,
120   0xC621E14A
121 };
122
123 static unsigned int
124 generate_seed(char *mac, char *timestamp, char *seed)
125 {
126   unsigned int result = 0;
127   if (mac && strlen(mac) == MAC_ADDR_SIZE) {
128     size_t i;
129     char *mac_ptr = mac + 9;
130     size_t ts_len = strlen(timestamp);
131     if (ts_len == TIMESTAMP_SIZE) {
132       for (i = 0; i < SEED_SIZE; ++i) {
133         if (i < 6) // first half of seed is the truncated timestamp
134           seed[i] = timestamp[i+2];
135         else { // second half is the truncated MAC address
136           if (*mac_ptr == ':' || *mac_ptr == '-')
137             ++mac_ptr;
138           seed[i] = *mac_ptr++;
139         }
140       }
141       result = 1;
142     } else
143       pr_error_exit(0, "Timestamp ('%s') should be %d hexadecimal characters e.g: 56F715F8", timestamp, TIMESTAMP_SIZE);
144   } else
145    pr_error_exit(0, "MAC-ADDR should be %d characters, e.g: 00:01:02:03:04:05", MAC_ADDR_SIZE);
146
147   return result;
148 }
149
150 static unsigned int
151 generate_pass(char *seed, char *password)
152 {
153   unsigned int result = 0;
154
155   if (seed && strlen(seed) == SEED_SIZE) {
156     unsigned int timestamp, byte, key, pass;
157     timestamp = byte = 0;
158     if(! sscanf(seed, "%06x", &timestamp))
159       pr_error_exit(1, "unable to parse seed's timestamp");
160     if (! sscanf(&seed[10], "%02x", &byte))
161       pr_error_exit(1, "unable to parse seed's MAC address");
162     key = byte & 0x07;
163     pass = (passwords[key] + timestamp) ^ timestamp;
164     snprintf(password, PASSWORD_SIZE + 1,  "%08x", pass);
165     result = 1;
166   } else
167     pr_error_exit(0, "Seed should be %d hex characters", SEED_SIZE);
168
169   return result;
170 }
171
172 int
173 main(int argc, char **argv, char **env)
174 {
175   int result = 0;
176
177   if (argc == 1) {
178     pr_usage(0);
179   }
180   else {
181     unsigned int arg;
182     char *MAC_ADDR = NULL;
183     char timestamp[TIMESTAMP_SIZE + 1];
184     char seed[SEED_SIZE + 1];
185     char password[PASSWORD_SIZE + 1];
186     char date_string[DATESTRING_SIZE + 1];
187     unsigned int opt_seed, opt_pass, opt_ts;
188     time_t ts = 0;
189     struct tm *t = NULL;
190     seed[0] = password[0] = timestamp[0] = 0;
191     seed[SEED_SIZE] = password[PASSWORD_SIZE] = 0;
192     opt_seed = opt_pass = opt_ts = 0;
193     strncpy(timestamp, "00000000", TIMESTAMP_SIZE + 1);
194
195     for (arg = 1; arg < (unsigned) argc; ++arg) {
196       size_t arg_len = strlen(argv[arg]);
197
198       if (argv[arg][0] == '-') {
199         switch (argv[arg][1]) {
200           case 's':
201             opt_seed = 1;
202             break;
203           case 'p':
204             opt_pass = 1;
205             break;
206           case 't':
207             opt_ts = 1;
208             break;
209           case 'h':
210             pr_usage(1);
211             exit(0);
212           case 'v':
213             fprintf(stderr, "Version: %0.2f\n", VERSION);
214         }
215       } else if (opt_seed == 1) {
216         MAC_ADDR = argv[arg];
217         ++opt_seed;
218       } else if (opt_pass == 1 && opt_seed == 0) {
219         if (arg_len != SEED_SIZE)
220           pr_error_exit(1, "seed length must be %d characters", SEED_SIZE);
221
222         strncpy(seed, argv[arg], SEED_SIZE);
223         ++opt_pass;
224       } else if (opt_ts == 1) {
225         if (arg_len != TIMESTAMP_SIZE)
226           pr_error_exit(1, "timestamp length must be %d hexadecimal characters", TIMESTAMP_SIZE);
227
228         strncpy(timestamp, argv[arg], TIMESTAMP_SIZE);
229         ++opt_ts;
230       }
231     }
232     if (! opt_seed && ! opt_pass)
233       pr_usage(0);
234     else if (opt_seed && opt_seed != 2)
235       pr_error_exit(1, "seed requires MAC-ADDRESS");
236     else if (! opt_seed && opt_pass && opt_pass != 2)
237       pr_error_exit(1, "password on its own requires a pre-generated seed");
238     else if (opt_seed && opt_pass && opt_pass != 1)
239       pr_error_exit(1, "generating seed and password; cannot also accept pre-generated seed");
240     else if (opt_pass == 2 && opt_ts)
241       pr_error_exit(1, "seed already contains a timestamp; cannot over-ride it");
242     else if (opt_ts == 1 || opt_pass == 2) { // no timestamp provided; use NOW
243       ts = time(NULL);
244       if (ts)
245         snprintf(timestamp, TIMESTAMP_SIZE + 1, "%08lX", ts);
246     }
247
248     if (opt_pass == 2) { // try to figure out the correct date-time from the seed
249       // inherits the most significant 2 characters from the NOW time
250       strncpy(timestamp+2, seed, 6);
251       time_t tmp;
252       if (sscanf(timestamp, "%08lx", &tmp))
253         if (tmp > ts-3600 && tmp < ts+3600) // timestamps are so close they must be for the same date
254           ts = tmp;
255     }
256
257     if(opt_ts) { // ts needs to be valid to be converted to a time string
258       if(! sscanf(timestamp, "%08lx", &ts))
259         pr_error_exit(1, "converting timestamp string ('%s') to number", timestamp);
260     }
261     t = gmtime(&ts);
262     strftime(date_string, DATESTRING_SIZE, "%F %T", t);
263
264     if (opt_seed)
265       if (! generate_seed(MAC_ADDR, timestamp, seed))
266         pr_error_exit(1, "unable to generate seed; aborting");
267     if (opt_pass)
268       if (! generate_pass(seed, password))
269         pr_error_exit(0, "unable to generate password");
270
271     if (opt_seed || opt_pass)
272       printf("MAC address: %s Timestamp: %s (%s) Seed: %s Password: %s\n", MAC_ADDR, timestamp, date_string, seed, password);
273   }
274
275   return result;
276 }
277