int6krate.c 8.6 KB

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