mac2pwd.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 <ctype.h>
  14. #include <errno.h>
  15. #include <limits.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 * file, unsigned alpha, unsigned bunch, flag_t flags)
  60. *
  61. * read Ethernet hardware address strings from a file and print
  62. * address passwords pairs on stdout;
  63. *
  64. * parse an Ethernet hardware address string into vendor and device
  65. * ID substrings; print a specified number of consecutive addresses
  66. * and password strings having a defined letter count and grouping;
  67. *
  68. * Contributor(s):
  69. * Charles Maier <cmaier@qca.qualcomm.com>
  70. *
  71. *--------------------------------------------------------------------*/
  72. static void function (const char * file, unsigned alpha, unsigned bunch, unsigned space, flag_t flags)
  73. {
  74. extern void (* generate)(unsigned, unsigned, unsigned, unsigned, unsigned, char, flag_t);
  75. unsigned line = 1;
  76. unsigned radix = 0x10;
  77. unsigned width;
  78. unsigned digit;
  79. signed c = getc (stdin);
  80. while (c != EOF)
  81. {
  82. uint32_t vendor = 0;
  83. uint32_t device = 0;
  84. while (isspace (c))
  85. {
  86. if (c == '\n')
  87. {
  88. line++;
  89. }
  90. c = getc (stdin);
  91. }
  92. if ((c == '#') || (c == ';'))
  93. {
  94. do
  95. {
  96. c = getc (stdin);
  97. }
  98. while ((c != '\n') && (c != EOF));
  99. continue;
  100. }
  101. for (width = 0; width < ETHER_ADDR_LEN; width++)
  102. {
  103. if ((digit = todigit (c)) < radix)
  104. {
  105. vendor *= radix;
  106. vendor += digit;
  107. c = getc (stdin);
  108. continue;
  109. }
  110. error (1, EINVAL, "%s: line %d: Illegal vendor", file, line);
  111. }
  112. if (!vendor)
  113. {
  114. error (1, EPERM, "%s: line %d: Vendor can't be zero", file, line);
  115. }
  116. for (width = 0; width < ETHER_ADDR_LEN; width++)
  117. {
  118. if ((digit = todigit (c)) < radix)
  119. {
  120. device *= radix;
  121. device += digit;
  122. c = getc (stdin);
  123. continue;
  124. }
  125. error (1, EINVAL, "%s: line %d: Illegal device", file, line);
  126. }
  127. if (!device)
  128. {
  129. error (1, EPERM, "%s: line %d: Device can't be zero", file, line);
  130. }
  131. while (isspace (c))
  132. {
  133. if (c == '\n')
  134. {
  135. line++;
  136. }
  137. c = getc (stdin);
  138. }
  139. generate (vendor, device, 1, alpha, bunch, space, flags);
  140. }
  141. return;
  142. }
  143. /*====================================================================*
  144. *
  145. * int main (int argc, const char * argv []);
  146. *
  147. * read one or more text files containing device address strings
  148. * and print a stream of address/password pairs; device addresses
  149. * must be separated by white space;
  150. *
  151. * Contributor(s):
  152. * Charles Maier <cmaier@qca.qualcomm.com>
  153. *
  154. *--------------------------------------------------------------------*/
  155. #define DEFAULT_ALPHA 25
  156. #define DEFAULT_BUNCH 0
  157. int main (int argc, const char * argv [])
  158. {
  159. #ifdef WIN32
  160. time_t LocalTime;
  161. #endif
  162. extern void (* generate)(unsigned, unsigned, unsigned, unsigned, unsigned, char, flag_t);
  163. static const char * optv [] =
  164. {
  165. "b:el:mqv",
  166. PUTOPTV_S_FUNNEL,
  167. "Atheros device password generator",
  168. "b n\tbunching factor [" LITERAL (DEFAULT_BUNCH) "]",
  169. "e\tbase passwords on host system entropy (more secure)",
  170. "l n\tpassword letters [" LITERAL (DEFAULT_ALPHA) "]",
  171. "m\tbase passwords on MAC addresses (non-secure)",
  172. "q\tomit device address on output",
  173. "v\tprepend PTS flag on output",
  174. (const char *)(0)
  175. };
  176. unsigned alpha = DEFAULT_ALPHA;
  177. unsigned bunch = DEFAULT_BUNCH;
  178. unsigned space = '-';
  179. flag_t flags = (flag_t)(0);
  180. signed c;
  181. optind = 1;
  182. #ifdef WIN32
  183. LocalTime = time(&LocalTime);
  184. srand((unsigned int)LocalTime);
  185. #endif
  186. while ((c = getoptv (argc, argv, optv)) != -1)
  187. {
  188. switch ((char)(c))
  189. {
  190. case 'b':
  191. bunch = uintspec (optarg, 0, UCHAR_MAX);
  192. break;
  193. case 'e':
  194. generate = RNDPasswords;
  195. break;
  196. case 'l':
  197. alpha = uintspec (optarg, 12, 64);
  198. break;
  199. case 'm':
  200. generate = MACPasswords;
  201. break;
  202. case 'q':
  203. _setbits (flags, PASSWORD_SILENCE);
  204. break;
  205. case 'v':
  206. _setbits (flags, PASSWORD_VERBOSE);
  207. break;
  208. default:
  209. break;
  210. }
  211. }
  212. argc -= optind;
  213. argv += optind;
  214. if (!argc)
  215. {
  216. function ("stdin", alpha, bunch, space, flags);
  217. }
  218. while ((argv) && (* argv))
  219. {
  220. if (!freopen (* argv, "rb", stdin))
  221. {
  222. error (1, EINVAL, "Can't open %s", * argv);
  223. }
  224. function (* argv, alpha, bunch, space, flags);
  225. argc--;
  226. argv++;
  227. }
  228. return (0);
  229. }