plcset.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcset.c -
  11. *
  12. *--------------------------------------------------------------------*/
  13. /*====================================================================*
  14. * system header files;
  15. *--------------------------------------------------------------------*/
  16. #include <unistd.h>
  17. #include <stdlib.h>
  18. #include <stdint.h>
  19. #include <limits.h>
  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/symbol.h"
  28. #include "../tools/types.h"
  29. #include "../tools/flags.h"
  30. #include "../tools/files.h"
  31. #include "../tools/error.h"
  32. #include "../plc/plc.h"
  33. #include "../ether/channel.h"
  34. /*====================================================================*
  35. * custom source files;
  36. *--------------------------------------------------------------------*/
  37. #ifndef MAKEFILE
  38. #include "../plc/Devices.c"
  39. #include "../plc/Confirm.c"
  40. #include "../plc/Display.c"
  41. #include "../plc/Failure.c"
  42. #include "../plc/Request.c"
  43. #include "../plc/ReadMME.c"
  44. #include "../plc/SendMME.c"
  45. #include "../plc/SetProperty.c"
  46. #endif
  47. #ifndef MAKEFILE
  48. #include "../tools/synonym.c"
  49. #include "../tools/getoptv.c"
  50. #include "../tools/putoptv.c"
  51. #include "../tools/version.c"
  52. #include "../tools/uintspec.c"
  53. #include "../tools/basespec.c"
  54. #include "../tools/dataspec.c"
  55. #include "../tools/bytespec.c"
  56. #include "../tools/hexdump.c"
  57. #include "../tools/hexencode.c"
  58. #include "../tools/hexdecode.c"
  59. #include "../tools/todigit.c"
  60. #include "../tools/binout.c"
  61. #include "../tools/error.c"
  62. #include "../tools/memencode.c"
  63. #endif
  64. #ifndef MAKEFILE
  65. #include "../ether/openchannel.c"
  66. #include "../ether/closechannel.c"
  67. #include "../ether/readpacket.c"
  68. #include "../ether/sendpacket.c"
  69. #include "../ether/channel.c"
  70. #endif
  71. #ifndef MAKEFILE
  72. #include "../mme/MMECode.c"
  73. #include "../mme/EthernetHeader.c"
  74. #include "../mme/QualcommHeader.c"
  75. #include "../mme/UnwantedMessage.c"
  76. #endif
  77. /*====================================================================*
  78. * program constants;
  79. *--------------------------------------------------------------------*/
  80. #define PLCSET_PROP_VERSION 0
  81. #define PLCSET_PROP_OPTION 1
  82. /*====================================================================*
  83. *
  84. * int main (int argc, char const * argv[]);
  85. *
  86. * parse command line, populate plc structure and perform selected
  87. * operations; show help summary if asked; see getoptv and putoptv
  88. * to understand command line parsing and help summary display; see
  89. * plc.h for the definition of struct plc;
  90. *
  91. * the command line accepts multiple MAC addresses and the program
  92. * performs the specified operations on each address, in turn; the
  93. * address order is significant but the option order is not; the
  94. * default address is a local broadcast that causes all devices on
  95. * the local H1 interface to respond but not those at the remote
  96. * end of the powerline;
  97. *
  98. * the default address is 00:B0:52:00:00:01; omitting the address
  99. * will automatically address the local device; some options will
  100. * cancel themselves if this makes no sense;
  101. *
  102. * the default interface is eth1 because most people use eth0 as
  103. * their principle network connection; you can specify another
  104. * interface with -i or define environment string PLC to make
  105. * that the default interface and save typing;
  106. *
  107. *--------------------------------------------------------------------*/
  108. int main (int argc, char const * argv [])
  109. {
  110. extern struct channel channel;
  111. static char const * optv [] =
  112. {
  113. "ei:n:o:qs:t:v",
  114. "[type data] [type data] [...] [device] [device] [...]\n\n\ttype :== 'byte'|'word'|'long'|'huge'|'text'|'data'|'zero'|'fill'|'skip'|'hfid'|'mac'|'key'",
  115. "Qualcomm Atheros PLC Set Property",
  116. "e\tredirect stderr to stdout",
  117. #if defined (WINPCAP) || defined (LIBPCAP)
  118. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  119. #else
  120. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  121. #endif
  122. "n n\tproperty identifier or version is (n) [" LITERAL (PLCSET_PROP_VERSION) "]",
  123. "o n\tproperty option is (n) [" LITERAL (PLCSET_PROP_OPTION) "]",
  124. "q\tquiet mode",
  125. "s x\tsession identifier is (x) [" LITERAL (PLCSESSION) "]",
  126. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  127. "v\tverbose mode",
  128. (char const *) (0)
  129. };
  130. #include "../plc/plc.c"
  131. struct plcproperty plcproperty;
  132. signed c;
  133. if (getenv (PLCDEVICE))
  134. {
  135. #if defined (WINPCAP) || defined (LIBPCAP)
  136. channel.ifindex = atoi (getenv (PLCDEVICE));
  137. #else
  138. channel.ifname = strdup (getenv (PLCDEVICE));
  139. #endif
  140. }
  141. optind = 1;
  142. memset (& plcproperty, 0, sizeof (plcproperty));
  143. plcproperty.PROP_OPTION = PLCSET_PROP_OPTION;
  144. plcproperty.PROP_VERSION = PLCSET_PROP_VERSION;
  145. while (~ (c = getoptv (argc, argv, optv)))
  146. {
  147. switch (c)
  148. {
  149. case 'e':
  150. dup2 (STDOUT_FILENO, STDERR_FILENO);
  151. break;
  152. case 'i':
  153. #if defined (WINPCAP) || defined (LIBPCAP)
  154. channel.ifindex = atoi (optarg);
  155. #else
  156. channel.ifname = optarg;
  157. #endif
  158. break;
  159. case 'n':
  160. if (! plcproperty.PROP_NUMBER)
  161. {
  162. plcproperty.PROP_NUMBER = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  163. }
  164. else
  165. {
  166. plcproperty.PROP_VERSION = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  167. }
  168. break;
  169. case 'o':
  170. plcproperty.PROP_OPTION = (uint8_t) (basespec (optarg, 16, sizeof (plcproperty.PROP_OPTION)));
  171. break;
  172. case 'q':
  173. _setbits (channel.flags, CHANNEL_SILENCE);
  174. _setbits (plc.flags, PLC_SILENCE);
  175. break;
  176. case 's':
  177. plc.cookie = (uint32_t) (basespec (optarg, 16, sizeof (plc.cookie)));
  178. break;
  179. case 't':
  180. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  181. break;
  182. case 'v':
  183. _setbits (channel.flags, CHANNEL_VERBOSE);
  184. _setbits (plc.flags, PLC_VERBOSE);
  185. break;
  186. default:
  187. break;
  188. }
  189. }
  190. argc -= optind;
  191. argv += optind;
  192. while ((argc > 1) && (* argv))
  193. {
  194. plcproperty.DATA_LENGTH += (uint32_t) (memencode (plcproperty.DATA_BUFFER + plcproperty.DATA_LENGTH, sizeof (plcproperty.DATA_BUFFER) - plcproperty.DATA_LENGTH, argv [0], argv [1]));
  195. argc -= 2;
  196. argv += 2;
  197. }
  198. openchannel (& channel);
  199. if (! (plc.message = malloc (sizeof (* plc.message))))
  200. {
  201. error (1, errno, PLC_NOMEMORY);
  202. }
  203. if (! argc)
  204. {
  205. SetProperty (& plc, & plcproperty);
  206. }
  207. while ((argc) && (* argv))
  208. {
  209. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  210. {
  211. error (1, errno, PLC_BAD_MAC, * argv);
  212. }
  213. SetProperty (& plc, & plcproperty);
  214. argc--;
  215. argv++;
  216. }
  217. free (plc.message);
  218. closechannel (& channel);
  219. exit (0);
  220. }