plcget.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcget.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/GetProperty.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/hexdump.c"
  55. #include "../tools/hexencode.c"
  56. #include "../tools/hexdecode.c"
  57. #include "../tools/todigit.c"
  58. #include "../tools/binout.c"
  59. #include "../tools/hexout.c"
  60. #include "../tools/decout.c"
  61. #include "../tools/chrout.c"
  62. #include "../tools/error.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. *
  79. * int main (int argc, char const * argv[]);
  80. *
  81. * parse command line, populate plc structure and perform selected
  82. * operations; show help summary if asked; see getoptv and putoptv
  83. * to understand command line parsing and help summary display; see
  84. * plc.h for the definition of struct plc;
  85. *
  86. * the command line accepts multiple MAC addresses and the program
  87. * performs the specified operations on each address, in turn; the
  88. * address order is significant but the option order is not; the
  89. * default address is a local broadcast that causes all devices on
  90. * the local H1 interface to respond but not those at the remote
  91. * end of the powerline;
  92. *
  93. * the default address is 00:B0:52:00:00:01; omitting the address
  94. * will automatically address the local device; some options will
  95. * cancel themselves if this makes no sense;
  96. *
  97. * the default interface is eth1 because most people use eth0 as
  98. * their principle network connection; you can specify another
  99. * interface with -i or define environment string PLC to make
  100. * that the default interface and save typing;
  101. *
  102. *--------------------------------------------------------------------*/
  103. int main (int argc, char const * argv [])
  104. {
  105. extern struct channel channel;
  106. static char const * optv [] =
  107. {
  108. "abdeghi:n:qs:t:v",
  109. "device [device] [...]",
  110. "Qualcomm Atheros PLC Get Property",
  111. "a\tdisplay property in ASCII",
  112. "b\tdisplay property in binary",
  113. "d\tdisplay property in decimal",
  114. "e\tredirect stderr to stdout",
  115. "g\tdisplay GPIO structure",
  116. "h\tdisplay property in hexadecimal",
  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) [0]",
  123. "q\tquiet mode",
  124. "s x\tsession identifier is (x) [" LITERAL (PLCSESSION) "]",
  125. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  126. "v\tverbose mode",
  127. (char const *) (0)
  128. };
  129. #include "../plc/plc.c"
  130. struct plcproperty plcproperty;
  131. signed c;
  132. if (getenv (PLCDEVICE))
  133. {
  134. #if defined (WINPCAP) || defined (LIBPCAP)
  135. channel.ifindex = atoi (getenv (PLCDEVICE));
  136. #else
  137. channel.ifname = strdup (getenv (PLCDEVICE));
  138. #endif
  139. }
  140. optind = 1;
  141. memset (& plcproperty, 0, sizeof (plcproperty));
  142. while (~ (c = getoptv (argc, argv, optv)))
  143. {
  144. switch (c)
  145. {
  146. case 'a':
  147. plcproperty.DATA_FORMAT = PLC_FORMAT_ASC;
  148. break;
  149. case 'b':
  150. plcproperty.DATA_FORMAT = PLC_FORMAT_BIN;
  151. break;
  152. case 'h':
  153. plcproperty.DATA_FORMAT = PLC_FORMAT_HEX;
  154. break;
  155. case 'd':
  156. plcproperty.DATA_FORMAT = PLC_FORMAT_DEC;
  157. break;
  158. case 'e':
  159. dup2 (STDOUT_FILENO, STDERR_FILENO);
  160. break;
  161. case 'g':
  162. _setbits (plc.flags, PLC_ANALYSE);
  163. plcproperty.PROP_FORMAT = PLC_FORMAT_DEC;
  164. plcproperty.PROP_LENGTH = sizeof (uint32_t);
  165. plcproperty.PROP_NUMBER = 104;
  166. break;
  167. case 'i':
  168. #if defined (WINPCAP) || defined (LIBPCAP)
  169. channel.ifindex = atoi (optarg);
  170. #else
  171. channel.ifname = optarg;
  172. #endif
  173. break;
  174. case 'n':
  175. if (! plcproperty.PROP_NUMBER)
  176. {
  177. plcproperty.PROP_FORMAT = PLC_FORMAT_DEC;
  178. plcproperty.PROP_LENGTH = sizeof (uint32_t);
  179. plcproperty.PROP_NUMBER = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  180. }
  181. else
  182. {
  183. plcproperty.PROP_VERSION = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  184. }
  185. break;
  186. case 'q':
  187. _setbits (channel.flags, CHANNEL_SILENCE);
  188. _setbits (plc.flags, PLC_SILENCE);
  189. break;
  190. case 's':
  191. plc.cookie = (uint32_t) (basespec (optarg, 16, sizeof (plc.cookie)));
  192. break;
  193. case 't':
  194. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  195. break;
  196. case 'v':
  197. _setbits (channel.flags, CHANNEL_VERBOSE);
  198. _setbits (plc.flags, PLC_VERBOSE);
  199. break;
  200. default:
  201. break;
  202. }
  203. }
  204. argc -= optind;
  205. argv += optind;
  206. openchannel (& channel);
  207. if (! (plc.message = malloc (sizeof (* plc.message))))
  208. {
  209. error (1, errno, PLC_NOMEMORY);
  210. }
  211. if (! argc)
  212. {
  213. GetProperty (& plc, & plcproperty);
  214. }
  215. while ((argc) && (* argv))
  216. {
  217. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  218. {
  219. error (1, errno, PLC_BAD_MAC, * argv);
  220. }
  221. GetProperty (& plc, & plcproperty);
  222. argc--;
  223. argv++;
  224. }
  225. free (plc.message);
  226. closechannel (& channel);
  227. exit (0);
  228. }