MACPasswords.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void MACPasswords (unsigned vendor, unsigned device, unsigned number, unsigned count, unsigned group, char space, flag_t flags);
  11. *
  12. * keys.h
  13. *
  14. * print a range of device address/password pairs on stdout; print
  15. * an optional usage flag in first column for PTS compatability;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef MACPASSWORDS_SOURCE
  22. #define MACPASSWORDS_SOURCE
  23. #include <stdio.h>
  24. #include <ctype.h>
  25. #include <stdlib.h>
  26. #include <stdint.h>
  27. #include <limits.h>
  28. #include "../tools/types.h"
  29. #include "../tools/flags.h"
  30. #include "../key/keys.h"
  31. static uint64_t MACSeed = 0;
  32. static uint64_t MACSRand (uint64_t seed)
  33. {
  34. uint64_t temp = MACSeed;
  35. MACSeed = seed;
  36. return (temp);
  37. }
  38. static unsigned MACRand ()
  39. {
  40. MACSeed *= 0x41C64E6D;
  41. MACSeed += 0x00003029;
  42. return ((unsigned)((MACSeed >> 0x10) & 0x7FFFFFFF));
  43. }
  44. /*====================================================================*
  45. *
  46. * void MACPassword (unsigned device, char const charset [], unsigned limit, unsigned count, unsigned group, char space);
  47. *
  48. * keys.h
  49. *
  50. * Contributor(s):
  51. * Charles Maier <cmaier@qca.qualcomm.com>
  52. *
  53. *--------------------------------------------------------------------*/
  54. void MACPassword (unsigned device, char const charset [], unsigned limit, unsigned count, unsigned group, char space)
  55. {
  56. MACSRand (device);
  57. while (count--)
  58. {
  59. unsigned index = MACRand () % limit;
  60. putc (charset [index & limit], stdout);
  61. if ((count) && (group) && !(count % group))
  62. {
  63. putc (space, stdout);
  64. }
  65. }
  66. return;
  67. }
  68. /*====================================================================*
  69. *
  70. * void MACPasswords (unsigned vendor, unsigned device, unsigned number, unsigned count, unsigned group, char space, flag_t flags);
  71. *
  72. * keys.h
  73. *
  74. * print a range of device address/password pairs on stdout; print
  75. * an optional usage flag in first column for PTS compatability;
  76. *
  77. * Contributor(s):
  78. * Charles Maier <cmaier@qca.qualcomm.com>
  79. *
  80. *--------------------------------------------------------------------*/
  81. void MACPasswords (unsigned vendor, unsigned device, unsigned number, unsigned count, unsigned group, char space, flag_t flags)
  82. {
  83. char charset [UCHAR_MAX];
  84. unsigned offset = 0;
  85. if (vendor >> 24)
  86. {
  87. return;
  88. }
  89. if (device >> 24)
  90. {
  91. return;
  92. }
  93. if (number >> 24)
  94. {
  95. return;
  96. }
  97. MACSRand (vendor);
  98. while (offset < sizeof (charset))
  99. {
  100. unsigned c = MACRand () % (SCHAR_MAX + 1);
  101. if (isupper (c))
  102. {
  103. charset [offset++] = c;
  104. }
  105. }
  106. while (number--)
  107. {
  108. if (_anyset (flags, PASSWORD_VERBOSE))
  109. {
  110. putc ('0', stdout);
  111. putc (' ', stdout);
  112. }
  113. if (_allclr (flags, PASSWORD_SILENCE))
  114. {
  115. printf ("%06X", vendor & 0x00FFFFFF);
  116. printf ("%06X", device & 0x00FFFFFF);
  117. putc (' ', stdout);
  118. }
  119. MACPassword (device, charset, sizeof (charset), count, group, space);
  120. putc ('\n', stdout);
  121. device++;
  122. }
  123. return;
  124. }
  125. #endif