amprate.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /*====================================================================*
  2. Copyright (c) 2013,2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * amprate.c -
  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. #include <limits.h>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../tools/getoptv.h"
  27. #include "../tools/putoptv.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/symbol.h"
  31. #include "../tools/types.h"
  32. #include "../tools/flags.h"
  33. #include "../tools/files.h"
  34. #include "../tools/error.h"
  35. #include "../plc/plc.h"
  36. /*====================================================================*
  37. * custom source files;
  38. *--------------------------------------------------------------------*/
  39. #ifndef MAKEFILE
  40. #include "../plc/chipset.c"
  41. #include "../plc/Devices.c"
  42. #include "../plc/Confirm.c"
  43. #include "../plc/Display.c"
  44. #include "../plc/Failure.c"
  45. #include "../plc/Request.c"
  46. #include "../plc/ReadMME.c"
  47. #include "../plc/SendMME.c"
  48. #include "../plc/ResetDevice.c"
  49. #include "../plc/LocalDevices.c"
  50. #include "../plc/Antiphon.c"
  51. #include "../plc/NetworkTraffic2.c"
  52. #include "../plc/PhyRates2.c"
  53. #include "../plc/RxRates2.c"
  54. #include "../plc/StationRole.c"
  55. #include "../plc/PLCSelect.c"
  56. #include "../plc/Traffic2.c"
  57. #include "../plc/Transmit.c"
  58. #include "../plc/VersionInfo1.c"
  59. #include "../plc/WaitForStart.c"
  60. #endif
  61. #ifndef MAKEFILE
  62. #include "../tools/getoptv.c"
  63. #include "../tools/putoptv.c"
  64. #include "../tools/version.c"
  65. #include "../tools/uintspec.c"
  66. #include "../tools/hexdump.c"
  67. #include "../tools/hexdecode.c"
  68. #include "../tools/hexencode.c"
  69. #include "../tools/todigit.c"
  70. #include "../tools/checkfilename.c"
  71. #include "../tools/checksum32.c"
  72. #include "../tools/fdchecksum32.c"
  73. #include "../tools/synonym.c"
  74. #include "../tools/typename.c"
  75. #include "../tools/error.c"
  76. #endif
  77. #ifndef MAKEFILE
  78. #include "../ether/openchannel.c"
  79. #include "../ether/closechannel.c"
  80. #include "../ether/readpacket.c"
  81. #include "../ether/sendpacket.c"
  82. #include "../ether/channel.c"
  83. #endif
  84. #ifndef MAKEFILE
  85. #include "../mme/EthernetHeader.c"
  86. #include "../mme/QualcommHeader.c"
  87. #include "../mme/QualcommHeader1.c"
  88. #include "../mme/UnwantedMessage.c"
  89. #include "../mme/MMECode.c"
  90. #endif
  91. /*====================================================================*
  92. * program constants;
  93. *--------------------------------------------------------------------*/
  94. #define AMPRATE_LOOP 1
  95. #define AMPRATE_WAIT 0
  96. /*====================================================================*
  97. *
  98. * void manager (struct plc * plc, signed count, signed pause);
  99. *
  100. * perform operations in logical order despite any order specfied
  101. * on the command line; for example, read PIB before writing PIB;
  102. *
  103. * operation order is controlled by the order of "if" statements
  104. * shown here; the entire operation sequence can be repeated with
  105. * an optional pause between each iteration;
  106. *
  107. *--------------------------------------------------------------------*/
  108. void manager (struct plc * plc, signed count, signed pause)
  109. {
  110. while (count--)
  111. {
  112. if (_anyset (plc->flags, PLC_VERSION))
  113. {
  114. VersionInfo1 (plc);
  115. }
  116. if (_anyset (plc->flags, PLC_LOCAL_TRAFFIC))
  117. {
  118. Traffic2 (plc);
  119. }
  120. if (_anyset (plc->flags, PLC_NETWORK_TRAFFIC))
  121. {
  122. NetworkTraffic2 (plc);
  123. }
  124. if (_anyset (plc->flags, PLC_NETWORK))
  125. {
  126. PhyRates2 (plc);
  127. }
  128. if (_anyset (plc->flags, (PLC_TXONLY | PLC_RXONLY)))
  129. {
  130. RxRates2 (plc);
  131. }
  132. if (_anyset (plc->flags, PLC_RESET_DEVICE))
  133. {
  134. ResetDevice (plc);
  135. }
  136. sleep (pause);
  137. }
  138. return;
  139. }
  140. /*====================================================================*
  141. *
  142. * int main (int argc, char const * argv[]);
  143. *
  144. * parse command line, populate plc structure and perform selected
  145. * operations; show help summary if asked; see getoptv and putoptv
  146. * to understand command line parsing and help summary display; see
  147. * plc.h for the definition of struct plc;
  148. *
  149. * the command line accepts multiple MAC addresses and the program
  150. * performs the specified operations on each address, in turn; the
  151. * address order is significant but the option order is not; the
  152. * default address is a local broadcast that causes all devices on
  153. * the local H1 interface to respond but not those at the remote
  154. * end of the powerline;
  155. *
  156. * the default address is 00:B0:52:00:00:01; omitting the address
  157. * will automatically address the local device; some options will
  158. * cancel themselves if this makes no sense;
  159. *
  160. * the default interface is eth1 because most people use eth0 as
  161. * their principle network connection; you can specify another
  162. * interface with -i or define environment string PLC to make
  163. * that the default interface and save typing;
  164. *
  165. *--------------------------------------------------------------------*/
  166. int main (int argc, char const * argv [])
  167. {
  168. extern struct channel channel;
  169. static char const * optv [] =
  170. {
  171. "cd:ei:l:nNo:qrRtTuvw:x",
  172. "device [device] [...]",
  173. "Qualcomm Atheros AR7x00 PHY Rate Monitor",
  174. "c\tdisplay coded PHY rates",
  175. "d n\ttraffic duration is (n) seconds per leg [" LITERAL (PLC_ECHOTIME) "]",
  176. "e\tredirect stderr to stdout",
  177. #if defined (WINPCAP) || defined (LIBPCAP)
  178. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  179. #else
  180. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  181. #endif
  182. "l n\tloop (n) times [" LITERAL (AMPRATE_LOOP) "]",
  183. "n\tnetwork TX/RX information",
  184. "N\tnetwork RX only information",
  185. "o n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  186. "q\tquiet mode",
  187. "r\trequest device information",
  188. "R\treset device with VS_RS_DEV",
  189. "t\tgenerate network traffic (one-to-many)",
  190. "T\tgenerate network traffic (many-to-many)",
  191. "u\tdisplay uncoded PHY rates",
  192. "v\tverbose mode",
  193. "w n\twait (n) seconds [" LITERAL (AMPRATE_WAIT) "]",
  194. "x\texit on error",
  195. (char const *) (0)
  196. };
  197. #include "../plc/plc.c"
  198. signed loop = AMPRATE_LOOP;
  199. signed wait = AMPRATE_WAIT;
  200. signed c;
  201. optind = 1;
  202. if (getenv (PLCDEVICE))
  203. {
  204. #if defined (WINPCAP) || defined (LIBPCAP)
  205. channel.ifindex = atoi (getenv (PLCDEVICE));
  206. #else
  207. channel.ifname = strdup (getenv (PLCDEVICE));
  208. #endif
  209. }
  210. plc.timer = PLC_ECHOTIME;
  211. while (~ (c = getoptv (argc, argv, optv)))
  212. {
  213. switch (c)
  214. {
  215. case 'c':
  216. _clrbits (plc.flags, PLC_UNCODED_RATES);
  217. break;
  218. case 'd':
  219. plc.timer = (unsigned) (uintspec (optarg, 1, 60));
  220. break;
  221. case 'e':
  222. dup2 (STDOUT_FILENO, STDERR_FILENO);
  223. break;
  224. case 'i':
  225. #if defined (WINPCAP) || defined (LIBPCAP)
  226. channel.ifindex = atoi (optarg);
  227. #else
  228. channel.ifname = optarg;
  229. #endif
  230. break;
  231. case 'l':
  232. loop = (unsigned) (uintspec (optarg, 0, UINT_MAX));
  233. break;
  234. case 'n':
  235. _setbits (plc.flags, PLC_NETWORK);
  236. break;
  237. case 'N':
  238. _setbits (plc.flags, PLC_RXONLY);
  239. break;
  240. case 'o':
  241. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  242. break;
  243. case 'q':
  244. _setbits (plc.flags, PLC_SILENCE);
  245. break;
  246. case 'r':
  247. _setbits (plc.flags, PLC_VERSION);
  248. break;
  249. case 'R':
  250. _setbits (plc.flags, PLC_RESET_DEVICE);
  251. break;
  252. case 't':
  253. _setbits (plc.flags, PLC_LOCAL_TRAFFIC);
  254. break;
  255. case 'T':
  256. _setbits (plc.flags, PLC_NETWORK_TRAFFIC);
  257. break;
  258. case 'u':
  259. _setbits (plc.flags, PLC_UNCODED_RATES);
  260. break;
  261. case 'v':
  262. _setbits (channel.flags, CHANNEL_VERBOSE);
  263. _setbits (plc.flags, PLC_VERBOSE);
  264. break;
  265. case 'w':
  266. wait = (unsigned) (uintspec (optarg, 0, 3600));
  267. break;
  268. case 'x':
  269. _setbits (plc.flags, PLC_BAILOUT);
  270. break;
  271. default:
  272. break;
  273. }
  274. }
  275. argc -= optind;
  276. argv += optind;
  277. if (_allclr (plc.flags, PLC_VERSION | PLC_LOCAL_TRAFFIC | PLC_NETWORK_TRAFFIC | PLC_NETWORK | PLC_TXONLY | PLC_TXONLY | PLC_RXONLY | PLC_RESET_DEVICE))
  278. {
  279. _setbits (plc.flags, PLC_NETWORK);
  280. }
  281. openchannel (& channel);
  282. if (! (plc.message = malloc (sizeof (* plc.message))))
  283. {
  284. error (1, errno, PLC_NOMEMORY);
  285. }
  286. if (! argc)
  287. {
  288. manager (& plc, loop, wait);
  289. }
  290. while ((argc) && (* argv))
  291. {
  292. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  293. {
  294. error (1, errno, PLC_BAD_MAC, * argv);
  295. }
  296. manager (& plc, loop, wait);
  297. argv++;
  298. argc--;
  299. }
  300. free (plc.message);
  301. closechannel (& channel);
  302. exit (0);
  303. }