sada.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * sada.c - Slave Membership Manager;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <unistd.h>
  20. #include <stdlib.h>
  21. #include <stdint.h>
  22. /*====================================================================*
  23. * custom header files;
  24. *--------------------------------------------------------------------*/
  25. #include "../tools/getoptv.h"
  26. #include "../tools/putoptv.h"
  27. #include "../tools/memory.h"
  28. #include "../tools/number.h"
  29. #include "../tools/symbol.h"
  30. #include "../tools/types.h"
  31. #include "../tools/flags.h"
  32. #include "../tools/files.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. #include "../key/HPAVKey.h"
  36. #include "../ram/sdram.h"
  37. #include "../pib/pib.h"
  38. #include "../nvm/nvm.h"
  39. /*====================================================================*
  40. * custom source files;
  41. *--------------------------------------------------------------------*/
  42. #ifndef MAKEFILE
  43. #include "../plc/Confirm.c"
  44. #include "../plc/Display.c"
  45. #include "../plc/Failure.c"
  46. #include "../plc/Request.c"
  47. #include "../plc/ReadMME.c"
  48. #include "../plc/SendMME.c"
  49. #include "../mme/UnwantedMessage.c"
  50. #include "../plc/SlaveMembership.c"
  51. #include "../plc/Devices.c"
  52. #endif
  53. #ifndef MAKEFILE
  54. #include "../tools/getoptv.c"
  55. #include "../tools/putoptv.c"
  56. #include "../tools/version.c"
  57. #include "../tools/uintspec.c"
  58. #include "../tools/hexdump.c"
  59. #include "../tools/hexencode.c"
  60. #include "../tools/hexdecode.c"
  61. #include "../tools/todigit.c"
  62. #include "../tools/synonym.c"
  63. #include "../tools/error.c"
  64. #endif
  65. #ifndef MAKEFILE
  66. #include "../ether/openchannel.c"
  67. #include "../ether/closechannel.c"
  68. #include "../ether/readpacket.c"
  69. #include "../ether/sendpacket.c"
  70. #include "../ether/channel.c"
  71. #endif
  72. #ifndef MAKEFILE
  73. #include "../mme/MMECode.c"
  74. #include "../mme/EthernetHeader.c"
  75. #include "../mme/QualcommHeader.c"
  76. #endif
  77. /*====================================================================*
  78. * program constants;
  79. *--------------------------------------------------------------------*/
  80. #define SADA_AUTH_MODE 0
  81. #define SADA_RETRY_TIME 0
  82. /*====================================================================*
  83. *
  84. * void manager (struct plc * plc, signed count, signed pause);
  85. *
  86. * perform operations in logical order despite any order specfied
  87. * on the command line; for example read PIB before writing PIB;
  88. *
  89. * operation order is controlled by the order of "if" statements
  90. * shown here; the entire operation sequence can be repeated with
  91. * an optional pause between each iteration;
  92. *
  93. *--------------------------------------------------------------------*/
  94. static void manager (struct plc * plc, signed count, signed pause)
  95. {
  96. while (count--)
  97. {
  98. SlaveMembership (plc);
  99. sleep (pause);
  100. }
  101. return;
  102. }
  103. /*====================================================================*
  104. *
  105. * int main (int argc, char const * argv[]);
  106. *
  107. * parse command line, populate plc structure and perform selected
  108. * operations; show help summary if asked; see getoptv and putoptv
  109. * to understand command line parsing and help summary display; see
  110. * plc.h for the definition of struct plc;
  111. *
  112. * the command line accepts multiple MAC addresses and the program
  113. * performs the specified operations on each address, in turn; the
  114. * address order is significant but the option order is not; the
  115. * default address is a local broadcast that causes all devices on
  116. * the local H1 interface to respond but not those at the remote
  117. * end of the powerline;
  118. *
  119. * the default address is 00:B0:52:00:00:01; omitting the address
  120. * will automatically address the local device; some options will
  121. * cancel themselves if this makes no sense;
  122. *
  123. * the default interface is eth1 because most people use eth0 as
  124. * their principle network connection; you can specify another
  125. * interface with -i or define environment string PLC to make
  126. * that the default interface and save typing;
  127. *
  128. *--------------------------------------------------------------------*/
  129. int main (int argc, char const * argv [])
  130. {
  131. extern struct channel channel;
  132. static char const * optv [] =
  133. {
  134. "A:a:ei:qt:vx",
  135. "device [device] [...] [> stdout]",
  136. "Qualcomm Atheros Slave Membership Manager",
  137. "A x\tslave MAC address",
  138. "a n\tauthorization mode is n [" LITERAL (SADA_AUTH_MODE) "]\n\t0 = retain slave in AVLN\n\t1 = eject slave from AVNL\n\t2 = eject slave from AVLN and associates with next master",
  139. "e\tredirect stderr to stdout",
  140. #if defined (WINPCAP) || defined (LIBPCAP)
  141. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  142. #else
  143. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  144. #endif
  145. "q\tquiet mode",
  146. "t n\tassociation retry time [" LITERAL (SADA_RETRY_TIME) "]",
  147. "v\tverbose mode",
  148. "x\texit on error",
  149. (char const *) (0)
  150. };
  151. #include "../plc/plc.c"
  152. signed loop = 1;
  153. signed wait = 0;
  154. signed c;
  155. if (getenv (PLCDEVICE))
  156. {
  157. channel.ifname = strdup (getenv (PLCDEVICE));
  158. }
  159. optind = 1;
  160. plc.pushbutton = SADA_AUTH_MODE;
  161. plc.module = SADA_RETRY_TIME;
  162. while (~ (c = getoptv (argc, argv, optv)))
  163. {
  164. switch (c)
  165. {
  166. case 'A':
  167. if (! hexencode (plc.RDA, sizeof (plc.RDA), (char const *) (optarg)))
  168. {
  169. error (1, errno, PLC_BAD_MAC, optarg);
  170. }
  171. break;
  172. case 'a':
  173. plc.pushbutton = (uint32_t) (uintspec (optarg, 0, 2));
  174. break;
  175. case 'e':
  176. dup2 (STDOUT_FILENO, STDERR_FILENO);
  177. break;
  178. case 'i':
  179. #if defined (WINPCAP) || defined (LIBPCAP)
  180. channel.ifindex = atoi (optarg);
  181. #else
  182. channel.ifname = optarg;
  183. #endif
  184. break;
  185. case 'q':
  186. _setbits (channel.flags, CHANNEL_SILENCE);
  187. _setbits (plc.flags, PLC_SILENCE);
  188. break;
  189. case 't':
  190. plc.module = (uint32_t) (uintspec (optarg, 0, 0x0F));
  191. break;
  192. case 'v':
  193. _setbits (channel.flags, CHANNEL_VERBOSE);
  194. _setbits (plc.flags, PLC_VERBOSE);
  195. break;
  196. case 'x':
  197. _setbits (plc.flags, PLC_BAILOUT);
  198. break;
  199. default:
  200. break;
  201. }
  202. }
  203. argc -= optind;
  204. argv += optind;
  205. openchannel (& channel);
  206. if (! (plc.message = malloc (sizeof (* plc.message))))
  207. {
  208. error (1, errno, PLC_NOMEMORY);
  209. }
  210. if (! argc)
  211. {
  212. manager (& plc, loop, wait);
  213. }
  214. while ((argc) && (* argv))
  215. {
  216. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  217. {
  218. error (1, errno, PLC_BAD_MAC, * argv);
  219. }
  220. manager (& plc, loop, wait);
  221. argv++;
  222. argc--;
  223. }
  224. free (plc.message);
  225. closechannel (& channel);
  226. return (0);
  227. }