mac2pw.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. #define _GETOPT_H
  9. /*====================================================================*
  10. * system header files;
  11. *--------------------------------------------------------------------*/
  12. #include <stdio.h>
  13. #include <string.h>
  14. #include <limits.h>
  15. #include <errno.h>
  16. #ifdef WIN32
  17. #include <stdlib.h>
  18. #include <time.h>
  19. #endif
  20. /*====================================================================*
  21. * custom header files;
  22. *--------------------------------------------------------------------*/
  23. #include "../tools/getoptv.h"
  24. #include "../tools/putoptv.h"
  25. #include "../tools/memory.h"
  26. #include "../tools/number.h"
  27. #include "../tools/types.h"
  28. #include "../tools/flags.h"
  29. #include "../tools/error.h"
  30. #include "../key/keys.h"
  31. /*====================================================================*
  32. * custom source files;
  33. *--------------------------------------------------------------------*/
  34. #ifndef MAKEFILE
  35. #include "../tools/getoptv.c"
  36. #include "../tools/putoptv.c"
  37. #include "../tools/version.c"
  38. #include "../tools/todigit.c"
  39. #include "../tools/uintspec.c"
  40. #include "../tools/error.c"
  41. #endif
  42. #ifndef MAKEFILE
  43. #include "../key/MACPasswords.c"
  44. #include "../key/RNDPasswords.c"
  45. #include "../key/putpwd.c"
  46. #endif
  47. /*====================================================================*
  48. * program constants;
  49. *--------------------------------------------------------------------*/
  50. #ifndef ETHER_ADDR_LEN
  51. #define ETHER_ADDR_LEN 6
  52. #endif
  53. /*====================================================================*
  54. * program functions;
  55. *--------------------------------------------------------------------*/
  56. void (* generate)(unsigned, unsigned, unsigned, unsigned, unsigned, char, flag_t) = RNDPasswords;
  57. /*====================================================================*
  58. *
  59. * void function (const char * string, unsigned range, unsigned alpha, unsigned bunch, unsigned space, flag_t flags)
  60. *
  61. * parse an Ethernet hardware address string into vendor and device
  62. * ID substrings; print a specified number of consecutive addresses
  63. * and password strings having a defined letter count and grouping;
  64. *
  65. * Contributor(s):
  66. * Charles Maier <cmaier@qca.qualcomm.com>
  67. *
  68. *--------------------------------------------------------------------*/
  69. static void function (const char * string, unsigned range, unsigned alpha, unsigned bunch, unsigned space, flag_t flags)
  70. {
  71. extern void (* generate)(unsigned, unsigned, unsigned, unsigned, unsigned, char, flag_t);
  72. const char * offset = string;
  73. unsigned vendor = 0;
  74. unsigned device = 0;
  75. unsigned radix = 0x10;
  76. unsigned width;
  77. unsigned digit;
  78. for (width = 0; width < ETHER_ADDR_LEN; width++)
  79. {
  80. if ((digit = todigit (*offset)) < radix)
  81. {
  82. vendor *= radix;
  83. vendor += digit;
  84. offset++;
  85. continue;
  86. }
  87. error (1, EINVAL, "Bad MAC Address: %s", string);
  88. }
  89. if (!vendor)
  90. {
  91. error (1, EPERM, "Vendor ID can't be zero");
  92. }
  93. for (width = 0; width < ETHER_ADDR_LEN; width++)
  94. {
  95. if ((digit = todigit (*offset)) < radix)
  96. {
  97. device *= radix;
  98. device += digit;
  99. offset++;
  100. continue;
  101. }
  102. error (1, EINVAL, "Bad MAC Address: %s", string);
  103. }
  104. if (!device)
  105. {
  106. error (1, EPERM, "Device ID can't be zero");
  107. }
  108. if (*offset)
  109. {
  110. error (1, EINVAL, "Bad MAC address: %s", string);
  111. }
  112. if (range > (0x00FFFFFF - device))
  113. {
  114. error (1, ERANGE, "Want %d passwords but only %d left in range", range, (0x00FFFFFF - device));
  115. }
  116. generate (vendor, device, range, alpha, bunch, space, flags);
  117. return;
  118. }
  119. /*====================================================================*
  120. *
  121. * int main (int argc, const char * argv []);
  122. *
  123. * generate unique password strings for a range of device hardware
  124. * addresses; print paired addresses and passwords on stdout;
  125. *
  126. * Many Atheros programs expect the user to enter a password to
  127. * access a device; the password is encoded to produce the 16-bit
  128. * Device Access Key (DAK) stored in the PIB;
  129. *
  130. * Vendors must publish the device password so that end users can
  131. * reproduce the same 16-byte hexadecimal value later; a password
  132. * is more user-friendly than a 16-byte hexadecimal value;
  133. *
  134. * given a range of MAC address, this program will produce unique
  135. * passwords so vendors can program devices and print labels that
  136. * ship devices;
  137. *
  138. *
  139. * Contributor(s):
  140. * Charles Maier <cmaier@qca.qualcomm.com>
  141. *
  142. *--------------------------------------------------------------------*/
  143. #define DEFAULT_RANGE 1
  144. #define DEFAULT_ALPHA 25
  145. #define DEFAULT_BUNCH 0
  146. int main (int argc, const char * argv [])
  147. {
  148. #ifdef WIN32
  149. time_t LocalTime;
  150. #endif
  151. extern void (* generate)(unsigned, unsigned, unsigned, unsigned, unsigned, char, flag_t);
  152. static const char * optv [] =
  153. {
  154. "b:el:mn:qv",
  155. "address [address] [...]",
  156. "Atheros device password generator",
  157. "b n\tbunching factor [" LITERAL (DEFAULT_BUNCH) "]",
  158. "e\tbase passwords on host system entropy (more secure)",
  159. "l n\tpassword letters [" LITERAL (DEFAULT_ALPHA) "]",
  160. "m\tbase passwords on MAC addresses (non-secure)",
  161. "n n\tgenerate n consecutive passwords [" LITERAL (DEFAULT_RANGE) "]",
  162. "q\tomit device address on output",
  163. "v\tprepend PTS flag on output",
  164. (const char *)(0)
  165. };
  166. unsigned range = DEFAULT_RANGE;
  167. unsigned alpha = DEFAULT_ALPHA;
  168. unsigned bunch = DEFAULT_BUNCH;
  169. unsigned space = '-';
  170. flag_t flags = (flag_t)(0);
  171. signed c;
  172. optind = 1;
  173. #ifdef WIN32
  174. LocalTime = time(&LocalTime);
  175. srand((unsigned int)LocalTime);
  176. #endif
  177. while ((c = getoptv (argc, argv, optv)) != -1)
  178. {
  179. switch ((char)(c))
  180. {
  181. case 'b':
  182. bunch = uintspec (optarg, 0, UCHAR_MAX);
  183. break;
  184. case 'e':
  185. generate = RNDPasswords;
  186. break;
  187. case 'l':
  188. alpha = uintspec (optarg, 12, 64);
  189. break;
  190. case 'm':
  191. generate = MACPasswords;
  192. break;
  193. case 'n':
  194. range = uintspec (optarg, 0, 0x00FFFFFF);
  195. break;
  196. case 'q':
  197. _setbits (flags, PASSWORD_SILENCE);
  198. break;
  199. case 'v':
  200. _setbits (flags, PASSWORD_VERBOSE);
  201. break;
  202. default:
  203. break;
  204. }
  205. }
  206. argc -= optind;
  207. argv += optind;
  208. while ((argv) && (* argv))
  209. {
  210. function (* argv, range, alpha, bunch, space, flags);
  211. argc--;
  212. argv++;
  213. }
  214. return (0);
  215. }