trafficgen.c 9.2 KB

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