backoff1.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  1. /*====================================================================*
  2. * Copyright (c) 2018-2019, 2021 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * backoff1.c
  9. *
  10. * Contributor(s):
  11. * Nisha K <nishk@qti.qualcomm.com>
  12. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  13. *
  14. *--------------------------------------------------------------------*/
  15. #include <stdio.h>
  16. #include <unistd.h>
  17. #include <stdlib.h>
  18. #include <stdint.h>
  19. #include <limits.h>
  20. #include <sys/time.h>
  21. #include <math.h>
  22. /*====================================================================*
  23. * custom header files;
  24. *--------------------------------------------------------------------*/
  25. #include "../tools/getoptv.h"
  26. #include "../tools/putoptv.h"
  27. #include "../tools/memory.h"
  28. #include "../tools/symbol.h"
  29. #include "../tools/number.h"
  30. #include "../tools/timer.h"
  31. #include "../tools/endian.h"
  32. #include "../tools/types.h"
  33. #include "../tools/flags.h"
  34. #include "../tools/files.h"
  35. #include "../tools/error.h"
  36. #include "../tools/tlv.h"
  37. #include "../plc/plc.h"
  38. /*====================================================================*
  39. * custom source files;
  40. *--------------------------------------------------------------------*/
  41. #ifndef MAKEFILE
  42. #include "../plc/Devices.c"
  43. #include "../plc/Failure.c"
  44. #include "../plc/ReadMME.c"
  45. #include "../plc/SendMME.c"
  46. #endif
  47. #ifndef MAKEFILE
  48. #include "../tools/error.c"
  49. #include "../tools/getoptv.c"
  50. #include "../tools/putoptv.c"
  51. #include "../tools/version.c"
  52. #include "../tools/uintspec.c"
  53. #include "../tools/hexload.c"
  54. #include "../tools/timer.h"
  55. #include "../tools/hexdump.c"
  56. #include "../tools/hexencode.c"
  57. #include "../tools/hexdecode.c"
  58. #include "../tools/hexstring.c"
  59. #include "../tools/todigit.c"
  60. #include "../tools/synonym.c"
  61. #endif
  62. #ifndef MAKEFILE
  63. #include "../ether/openchannel.c"
  64. #include "../ether/closechannel.c"
  65. #include "../ether/readpacket.c"
  66. #include "../ether/sendpacket.c"
  67. #include "../ether/channel.c"
  68. #endif
  69. #ifndef MAKEFILE
  70. #include "../mme/EthernetHeader.c"
  71. #include "../mme/QualcommHeader.c"
  72. #include "../mme/UnwantedMessage.c"
  73. #include "../mme/MMECode.c"
  74. #endif
  75. #define maxnumofbanddescriptor 16
  76. #define minfrequencyindex 0
  77. #define maxfrequencyindex 336
  78. #ifndef __GNUC__
  79. #pragma pack (push,1)
  80. #endif
  81. struct __packed band {
  82. uint16_t startidx;
  83. uint8_t startbackoffdB;
  84. uint16_t endidx;
  85. uint8_t endbackoffdB;
  86. };
  87. typedef struct band banddesc;
  88. struct __packed freqband {
  89. double startfrequency;
  90. uint8_t startbackoffdB;
  91. double endfrequency;
  92. uint8_t endbackoffdB;
  93. };
  94. typedef struct freqband freqbanddesc;
  95. #ifndef __GNUC__
  96. #pragma pack (pop)
  97. #endif
  98. uint8_t traffic_peer[ETHER_ADDR_LEN] = {0};
  99. bool unallowed_with_reset_check_flag = false;
  100. double vfrequencyindexmap[] = { 1.8, 2.0, 2.1, 2.3, 2.5, 2.7, 2.9, 3.1, 3.3, 3.5, 3.7, 3.9, 4.1, 4.3, 4.5,
  101. 4.7, 4.9, 5.1, 5.3, 5.5, 5.7, 5.9, 6.1, 6.2, 6.4, 6.6, 6.8, 7.0, 7.2, 7.4,
  102. 7.6, 7.8, 8.0, 8.2, 8.4, 8.6, 8.8, 9.0, 9.2, 9.4, 9.6, 9.8, 10.0, 10.2, 10.4,
  103. 10.5, 10.7, 10.9, 11.1, 11.3, 11.5, 11.7, 11.9, 12.1, 12.3, 12.5, 12.7, 12.9, 13.1, 13.3,
  104. 13.5, 13.7, 13.9, 14.1, 14.3, 14.5, 14.6, 14.8, 15.0, 15.2, 15.4, 15.6, 15.8, 16.0, 16.2,
  105. 16.4, 16.6, 16.8, 17.0, 17.2, 17.4, 17.6, 17.8, 18.0, 18.2, 18.4, 18.6, 18.7, 18.9, 19.1,
  106. 19.3, 19.5, 19.7, 19.9, 20.1, 20.3, 20.5, 20.7, 20.9, 21.1, 21.3, 21.5, 21.7, 21.9, 22.1,
  107. 22.3, 22.5, 22.7, 22.9, 23.0, 23.2, 23.4, 23.6, 23.8, 24.0, 24.2, 24.4, 24.6, 24.8, 25.0,
  108. 25.2, 25.4, 25.6, 25.8, 26.0, 26.2, 26.4, 26.6, 26.8, 27.0, 27.1, 27.3, 27.5, 27.7, 27.9,
  109. 28.1, 28.3, 28.5, 28.7, 28.9, 29.1, 29.3, 29.5, 29.7, 29.9, 30.1, 30.3, 30.5, 30.7, 30.9,
  110. 31.1, 31.2, 31.4, 31.6, 31.8, 32.0, 32.2, 32.4, 32.6, 32.8, 33.0, 33.2, 33.4, 33.6, 33.8,
  111. 34.0, 34.2, 34.4, 34.6, 34.8, 35.0, 35.2, 35.4, 35.5, 35.7, 35.9, 36.1, 36.3, 36.5, 36.7,
  112. 36.9, 37.1, 37.3, 37.5, 37.7, 37.9, 38.1, 38.3, 38.5, 38.7, 38.9, 39.1, 39.3, 39.5, 39.6,
  113. 39.8, 40.0, 40.2, 40.4, 40.6, 40.8, 41.0, 41.2, 41.4, 41.6, 41.8, 42.0, 42.2, 42.4, 42.6,
  114. 42.8, 43.0, 43.2, 43.4, 43.6, 43.7, 43.9, 44.1, 44.3, 44.5, 44.7, 44.9, 45.1, 45.3, 45.5,
  115. 45.7, 45.9, 46.1, 46.3, 46.5, 46.7, 46.9, 47.1, 47.3, 47.5, 47.7, 47.9, 48.0, 48.2, 48.4,
  116. 48.6, 48.8, 49.0, 49.2, 49.4, 49.6, 49.8, 50.0, 50.2, 50.4, 50.6, 50.8, 51.0, 51.2, 51.4,
  117. 51.6, 51.8, 52.0, 52.1, 52.3, 52.5, 52.7, 52.9, 53.1, 53.3, 53.5, 53.7, 53.9, 54.1, 54.3,
  118. 54.5, 54.7, 54.9, 55.1, 55.3, 55.5, 55.7, 55.9, 56.1, 56.2, 56.4, 56.6, 56.8, 57.0, 57.2,
  119. 57.4, 57.6, 57.8, 58.0, 58.2, 58.4, 58.6, 58.8, 59.0, 59.2, 59.4, 59.6, 59.8, 60.0, 60.2,
  120. 60.4, 60.5, 60.7, 60.9, 61.1, 61.3, 61.5, 61.7, 61.9, 62.1, 62.3, 62.5, 62.7, 62.9, 63.1,
  121. 63.3, 63.5, 63.7, 63.9, 64.1, 64.3, 64.5, 64.6, 64.8, 65.0, 65.2, 65.4, 65.6, 65.8, 66.0,
  122. 66.2, 66.4, 66.6, 66.8, 67.0, 67.2, 67.4 };
  123. /*====================================================================*
  124. *
  125. * signed getprescalervalues (struct plc * plc);
  126. *
  127. *===================================================================*/
  128. static signed getprescalervalues (struct plc * plc)
  129. {
  130. struct channel * channel = (struct channel *) (plc->channel);
  131. struct message * message = (struct message *) (plc->message);
  132. #ifndef __GNUC__
  133. #pragma pack (push,1)
  134. #endif
  135. struct __packed vs_get_prescaler_backoff_request
  136. {
  137. struct ethernet_hdr ethernet;
  138. struct qualcomm_hdr qualcomm;
  139. uint8_t RESERVED[4];
  140. }
  141. * request = (struct vs_get_prescaler_backoff_request *) (message);
  142. struct __packed vs_get_prescaler_backoff_confirm
  143. {
  144. struct ethernet_hdr ethernet;
  145. struct qualcomm_hdr qualcomm;
  146. uint8_t MSTATUS;
  147. uint8_t NUMOFBANDSPRIMARY;
  148. banddesc BANDDESC_PRI[16];
  149. uint8_t NUMOFBANDSALTERNATE;
  150. banddesc BANDDESC_ALT[16];
  151. }
  152. * confirm = (struct vs_get_prescaler_backoff_confirm *) (message);
  153. #ifndef __GNUC__
  154. #pragma pack (pop)
  155. #endif
  156. uint8_t i;
  157. memset (message, 0, sizeof (* message));
  158. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  159. QualcommHeader (& request->qualcomm, 0, (VS_GET_PRESCALER_BACKOFF | MMTYPE_REQ));
  160. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  161. if (SendMME (plc) <= 0)
  162. {
  163. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  164. return (-1);
  165. }
  166. if (ReadMME (plc, 0, (VS_GET_PRESCALER_BACKOFF | MMTYPE_CNF)) <= 0)
  167. {
  168. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  169. return (-1);
  170. }
  171. if (confirm->MSTATUS)
  172. {
  173. Failure (plc, PLC_WONTDOIT);
  174. return (-1);
  175. }
  176. if (confirm->NUMOFBANDSPRIMARY)
  177. {
  178. for (i=0; i<confirm->NUMOFBANDSPRIMARY; i++)
  179. {
  180. printf("Pri: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  181. vfrequencyindexmap[confirm->BANDDESC_PRI[i].startidx], vfrequencyindexmap[confirm->BANDDESC_PRI[i].endidx],
  182. confirm->BANDDESC_PRI[i].startbackoffdB, confirm->BANDDESC_PRI[i].endbackoffdB);
  183. }
  184. }
  185. if (confirm->NUMOFBANDSALTERNATE)
  186. {
  187. for (i=0; i<confirm->NUMOFBANDSALTERNATE; i++)
  188. {
  189. printf("Alt: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  190. vfrequencyindexmap[confirm->BANDDESC_ALT[i].startidx], vfrequencyindexmap[confirm->BANDDESC_ALT[i].endidx],
  191. confirm->BANDDESC_ALT[i].startbackoffdB, confirm->BANDDESC_ALT[i].endbackoffdB);
  192. }
  193. }
  194. return 0;
  195. }
  196. /*================================================================================================================================================*
  197. *
  198. * signed setprescalervalues (struct plc * plc, banddesc* aBandDescriptorArray, uint8_t numofbands, uint8_t duration, uint8_t trafficgen_rate);
  199. *
  200. *===============================================================================================================================================*/
  201. static signed setprescalervalues (struct plc * plc, banddesc* banddescriptorarray, uint8_t numofbands, uint8_t duration, uint8_t trafficgen_rate)
  202. {
  203. struct channel * channel = (struct channel *) (plc->channel);
  204. struct message * message = (struct message *) (plc->message);
  205. #ifndef __GNUC__
  206. #pragma pack (push,1)
  207. #endif
  208. struct __packed vs_set_prescaler_backoff_request
  209. {
  210. struct ethernet_hdr ethernet;
  211. struct qualcomm_hdr qualcomm;
  212. uint8_t COUPLING;
  213. uint8_t NUMOFFREQBANDS;
  214. banddesc BANDDESCRIPTOR[16];
  215. uint8_t mDuration;
  216. uint8_t mDestMAC_ForTraffic[ETHER_ADDR_LEN];
  217. uint8_t TRAFFICGEN_RATE;
  218. }
  219. * request = (struct vs_set_prescaler_backoff_request *) (message);
  220. struct __packed vs_set_prescaler_backoff_confirm
  221. {
  222. struct ethernet_hdr ethernet;
  223. struct qualcomm_hdr qualcomm;
  224. uint8_t MSTATUS;
  225. }
  226. * confirm = (struct vs_set_prescaler_backoff_confirm *) (message);
  227. #ifndef __GNUC__
  228. #pragma pack (pop)
  229. #endif
  230. int length = numofbands * sizeof(banddesc);
  231. memset (message, 0, sizeof (* message));
  232. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  233. QualcommHeader (& request->qualcomm, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_REQ));
  234. plc->packetsize = sizeof (struct vs_set_prescaler_backoff_request);
  235. request->COUPLING = plc->coupling;
  236. request->NUMOFFREQBANDS = numofbands;
  237. memcpy (request->BANDDESCRIPTOR, banddescriptorarray, length);
  238. request->mDuration = duration;
  239. memcpy (request->mDestMAC_ForTraffic, traffic_peer, ETHER_ADDR_LEN);
  240. request->TRAFFICGEN_RATE = trafficgen_rate;
  241. if (SendMME (plc) <= 0)
  242. {
  243. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  244. return (-1);
  245. }
  246. if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_CNF)) <= 0)
  247. {
  248. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  249. return (-1);
  250. }
  251. if (confirm->MSTATUS == 0x01) {
  252. printf("Invalid Coupling\n");
  253. } else if (confirm->MSTATUS == 0x02) {
  254. printf("Invalid Band Descriptor\n");
  255. } else if (confirm->MSTATUS == 0x03) {
  256. printf("Operation not permitted\n");
  257. } else if (confirm->MSTATUS == 0x04) {
  258. printf("Invalid Number of Bands\n");
  259. } else if (confirm->MSTATUS == 0x06) {
  260. printf("Previous Backoff In-progress\n");
  261. } else if (confirm->MSTATUS == 0x08) {
  262. printf("Invalid Duration\n");
  263. } else if (confirm->MSTATUS == 0x0C) {
  264. printf("Invalid trafficgen rate\n");
  265. }
  266. if (confirm->MSTATUS)
  267. {
  268. Failure (plc, PLC_WONTDOIT);
  269. return (-1);
  270. }
  271. return (0);
  272. }
  273. /*====================================================================*
  274. *
  275. * signed getindication1 (struct plc * plc);
  276. *
  277. *===================================================================*/
  278. static signed getindication1 (struct plc * plc)
  279. {
  280. struct message * message = (struct message *) (plc->message);
  281. struct timeval ts;
  282. struct timeval tc;
  283. unsigned timer = 0;
  284. uint8_t i;
  285. bool rcvd = 0;
  286. #ifndef __GNUC__
  287. #pragma pack (push,1)
  288. #endif
  289. struct __packed vs_set_prescaler_backoff_ind
  290. {
  291. struct ethernet_hdr ethernet;
  292. struct qualcomm_hdr qualcomm;
  293. uint8_t MSTATUS;
  294. uint8_t NUMOFBANDSPRIMARY;
  295. banddesc BANDDESC_PRI[16];
  296. uint8_t NUMOFBANDSALTERNATE;
  297. banddesc BANDDESC_ALT[16];
  298. }
  299. * indicate = (struct vs_set_prescaler_backoff_ind *) (message);
  300. #ifndef __GNUC__
  301. #pragma pack (pop)
  302. #endif
  303. memset (message, 0, sizeof (* message));
  304. printf("\n");
  305. if (gettimeofday (& ts, NULL) == -1)
  306. {
  307. error (1, errno, CANT_START_TIMER);
  308. }
  309. for (timer = 0; timer < 90; timer = SECONDS (ts, tc)) //wait 90 secs for indication
  310. {
  311. if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_IND)) > 0)
  312. {
  313. rcvd = 1;
  314. break;
  315. }
  316. if (gettimeofday (& tc, NULL) == -1)
  317. {
  318. error (1, errno, CANT_RESET_TIMER);
  319. }
  320. }
  321. if(!rcvd)
  322. {
  323. error (PLC_EXIT (plc), errno, "IND MME not received");
  324. return (-1);
  325. }
  326. if (indicate->MSTATUS == 0x00) {
  327. printf("New Backoff Applied\n");
  328. } else if(indicate->MSTATUS == 0x05) {
  329. printf("New Backoff Caused Link Loss.. Previous Backoff Restored\n");
  330. return (-1);
  331. } else if (indicate->MSTATUS == 0x07) {
  332. error (PLC_EXIT (plc), errno, "Failed to Apply New Backoff");
  333. return (-1);
  334. } else if(indicate->MSTATUS == 0x09) {
  335. error (PLC_EXIT (plc), errno, "Failed to Restore Previous Backoff");
  336. return (-1);
  337. } else if (indicate->MSTATUS == 0x0A) {
  338. printf("New Backoff Applied. But, Traffic Failed\n");
  339. } else if (indicate->MSTATUS == 0x0B) {
  340. printf("New Backoff Applied and Traffic Generated\n");
  341. } else {
  342. error (PLC_EXIT (plc), errno, "unknown indication1 received");
  343. return (-1);
  344. }
  345. if (indicate->NUMOFBANDSPRIMARY)
  346. {
  347. for (i=0; i<indicate->NUMOFBANDSPRIMARY; i++)
  348. {
  349. printf("Pri: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  350. vfrequencyindexmap[indicate->BANDDESC_PRI[i].startidx], vfrequencyindexmap[indicate->BANDDESC_PRI[i].endidx],
  351. indicate->BANDDESC_PRI[i].startbackoffdB, indicate->BANDDESC_PRI[i].endbackoffdB);
  352. }
  353. }
  354. if (indicate->NUMOFBANDSALTERNATE)
  355. {
  356. for (i=0; i<indicate->NUMOFBANDSALTERNATE; i++)
  357. {
  358. printf("Alt: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  359. vfrequencyindexmap[indicate->BANDDESC_ALT[i].startidx], vfrequencyindexmap[indicate->BANDDESC_ALT[i].endidx],
  360. indicate->BANDDESC_ALT[i].startbackoffdB, indicate->BANDDESC_ALT[i].endbackoffdB);
  361. }
  362. }
  363. return (0);
  364. }
  365. /*====================================================================*
  366. *
  367. * signed getindication2 (struct plc * plc, uint8_t duration);
  368. *
  369. *===================================================================*/
  370. static signed getindication2 (struct plc * plc, uint8_t duration)
  371. {
  372. struct message * message = (struct message *) (plc->message);
  373. struct timeval ts;
  374. struct timeval tc;
  375. unsigned timer = 0;
  376. bool rcvd = 0;
  377. uint8_t i;
  378. unsigned ind_timer = duration + 90;
  379. #ifndef __GNUC__
  380. #pragma pack (push,1)
  381. #endif
  382. struct __packed vs_set_prescaler_backoff_ind
  383. {
  384. struct ethernet_hdr ethernet;
  385. struct qualcomm_hdr qualcomm;
  386. uint8_t MSTATUS;
  387. uint8_t NUMOFBANDSPRIMARY;
  388. banddesc BANDDESC_PRI[16];
  389. uint8_t NUMOFBANDSALTERNATE;
  390. banddesc BANDDESC_ALT[16];
  391. }
  392. * indicate = (struct vs_set_prescaler_backoff_ind *) (message);
  393. #ifndef __GNUC__
  394. #pragma pack (pop)
  395. #endif
  396. memset (message, 0, sizeof (* message));
  397. printf("\n");
  398. if (gettimeofday (& ts, NULL) == -1)
  399. {
  400. error (1, errno, CANT_START_TIMER);
  401. }
  402. for (timer = 0; timer < ind_timer; timer = SECONDS (ts, tc)) //wait 90 secs for indication
  403. {
  404. if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_IND)) > 0)
  405. {
  406. rcvd = 1;
  407. break;
  408. }
  409. if (gettimeofday (& tc, NULL) == -1)
  410. {
  411. error (1, errno, CANT_RESET_TIMER);
  412. }
  413. }
  414. if(!rcvd)
  415. {
  416. error (PLC_EXIT (plc), errno, "IND MME not received");
  417. return (-1);
  418. }
  419. if(indicate->MSTATUS == 0x05) {
  420. printf("Previous Backoff Restored\n");
  421. } else if(indicate->MSTATUS == 0x09) {
  422. error (PLC_EXIT (plc), errno, "Failed to Restore Previous Backoff");
  423. return (-1);
  424. } else {
  425. error (PLC_EXIT (plc), errno, "unknown indication2 received");
  426. return (-1);
  427. }
  428. if (indicate->NUMOFBANDSPRIMARY)
  429. {
  430. for (i=0; i<indicate->NUMOFBANDSPRIMARY; i++)
  431. {
  432. printf("Pri: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  433. vfrequencyindexmap[indicate->BANDDESC_PRI[i].startidx], vfrequencyindexmap[indicate->BANDDESC_PRI[i].endidx],
  434. indicate->BANDDESC_PRI[i].startbackoffdB, indicate->BANDDESC_PRI[i].endbackoffdB);
  435. }
  436. }
  437. if (indicate->NUMOFBANDSALTERNATE)
  438. {
  439. for (i=0; i<indicate->NUMOFBANDSALTERNATE; i++)
  440. {
  441. printf("Alt: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  442. vfrequencyindexmap[indicate->BANDDESC_ALT[i].startidx], vfrequencyindexmap[indicate->BANDDESC_ALT[i].endidx],
  443. indicate->BANDDESC_ALT[i].startbackoffdB, indicate->BANDDESC_ALT[i].endbackoffdB);
  444. }
  445. }
  446. return (0);
  447. }
  448. /*====================================================================*
  449. *
  450. * signed getindication3 (struct plc * plc);
  451. *
  452. *===================================================================*/
  453. static signed getindication3 (struct plc * plc)
  454. {
  455. struct message * message = (struct message *) (plc->message);
  456. struct timeval ts;
  457. struct timeval tc;
  458. unsigned timer = 0;
  459. uint8_t i;
  460. bool rcvd = 0;
  461. bool reset_done = 0;
  462. #ifndef __GNUC__
  463. #pragma pack (push,1)
  464. #endif
  465. struct __packed vs_set_prescaler_backoff_ind
  466. {
  467. struct ethernet_hdr ethernet;
  468. struct qualcomm_hdr qualcomm;
  469. uint8_t MSTATUS;
  470. uint8_t NUMOFBANDSPRIMARY;
  471. banddesc BANDDESC_PRI[16];
  472. uint8_t NUMOFBANDSALTERNATE;
  473. banddesc BANDDESC_ALT[16];
  474. }
  475. * indicate = (struct vs_set_prescaler_backoff_ind *) (message);
  476. #ifndef __GNUC__
  477. #pragma pack (pop)
  478. #endif
  479. memset (message, 0, sizeof (* message));
  480. printf("\n");
  481. if (gettimeofday (& ts, NULL) == -1)
  482. {
  483. error (1, errno, CANT_START_TIMER);
  484. }
  485. for (timer = 0; timer < 90; timer = SECONDS (ts, tc)) //wait 90 secs for indication
  486. {
  487. if (ReadMME (plc, 0, (VS_SET_PRESCALER_BACKOFF | MMTYPE_IND)) > 0)
  488. {
  489. rcvd = 1;
  490. break;
  491. }
  492. if (gettimeofday (& tc, NULL) == -1)
  493. {
  494. error (1, errno, CANT_RESET_TIMER);
  495. }
  496. }
  497. if(!rcvd)
  498. {
  499. error (PLC_EXIT (plc), errno, "IND MME not received");
  500. return (-1);
  501. }
  502. if (indicate->MSTATUS == 0x00) {
  503. if(plc->coupling == 0) {
  504. if(indicate->NUMOFBANDSPRIMARY == 1) {
  505. if((indicate->BANDDESC_PRI[0].startidx == minfrequencyindex)
  506. && (indicate->BANDDESC_PRI[0].endidx == maxfrequencyindex)
  507. && (indicate->BANDDESC_PRI[0].startbackoffdB == 0)
  508. && (indicate->BANDDESC_PRI[0].endbackoffdB == 0) )
  509. {
  510. printf("Reset Successfull in Primary Coupling\n");
  511. reset_done = 1;
  512. }
  513. }
  514. } else if(plc->coupling == 1) {
  515. if(indicate->NUMOFBANDSALTERNATE == 1) {
  516. if((indicate->BANDDESC_ALT[0].startidx == minfrequencyindex)
  517. && (indicate->BANDDESC_ALT[0].endidx == maxfrequencyindex)
  518. && (indicate->BANDDESC_ALT[0].startbackoffdB == 0)
  519. && (indicate->BANDDESC_ALT[0].endbackoffdB == 0))
  520. {
  521. printf("Reset Successfull in Alternate Coupling\n");
  522. reset_done = 1;
  523. }
  524. }
  525. } else if(plc->coupling == 2) {
  526. if(indicate->NUMOFBANDSPRIMARY == 1 && indicate->NUMOFBANDSALTERNATE == 1) {
  527. if((indicate->BANDDESC_PRI[0].startidx == minfrequencyindex)
  528. && (indicate->BANDDESC_PRI[0].endidx == maxfrequencyindex)
  529. && (indicate->BANDDESC_PRI[0].startbackoffdB == 0)
  530. && (indicate->BANDDESC_PRI[0].endbackoffdB == 0)
  531. && (indicate->BANDDESC_ALT[0].startidx == minfrequencyindex)
  532. && (indicate->BANDDESC_ALT[0].endidx == maxfrequencyindex)
  533. && (indicate->BANDDESC_ALT[0].startbackoffdB == 0)
  534. && (indicate->BANDDESC_ALT[0].endbackoffdB == 0))
  535. {
  536. printf("Reset Successfull in Primary and Alternate Coupling\n");
  537. reset_done = 1;
  538. }
  539. }
  540. }
  541. if(reset_done == 0)
  542. {
  543. printf("Reset Failed\n");
  544. if (indicate->NUMOFBANDSPRIMARY)
  545. {
  546. for (i=0; i<indicate->NUMOFBANDSPRIMARY; i++)
  547. {
  548. printf("Pri: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  549. vfrequencyindexmap[indicate->BANDDESC_PRI[i].startidx], vfrequencyindexmap[indicate->BANDDESC_PRI[i].endidx],
  550. indicate->BANDDESC_PRI[i].startbackoffdB, indicate->BANDDESC_PRI[i].endbackoffdB);
  551. }
  552. }
  553. if (indicate->NUMOFBANDSALTERNATE)
  554. {
  555. for (i=0; i<indicate->NUMOFBANDSALTERNATE; i++)
  556. {
  557. printf("Alt: %4.1f - %4.1f MHz : %2d - %2d dB\n",
  558. vfrequencyindexmap[indicate->BANDDESC_ALT[i].startidx], vfrequencyindexmap[indicate->BANDDESC_ALT[i].endidx],
  559. indicate->BANDDESC_ALT[i].startbackoffdB, indicate->BANDDESC_ALT[i].endbackoffdB);
  560. }
  561. }
  562. }
  563. } else if (indicate->MSTATUS == 0x07) {
  564. error (PLC_EXIT (plc), errno, "Failed to Reset");
  565. return (-1);
  566. } else {
  567. error (PLC_EXIT (plc), errno, "unknown indication3 received");
  568. return (-1);
  569. }
  570. return (0);
  571. }
  572. double changeprecision(double num, double precision)
  573. {
  574. return floor(pow(10,precision)*num)/pow(10,precision);
  575. }
  576. /*====================================================================*
  577. *
  578. * banddesc parsebanddescriptor(char * aOptarg);
  579. *
  580. *===================================================================*/
  581. freqbanddesc parsebanddescriptor(char * optarg)
  582. {
  583. char *tokens, *varoptarg;
  584. const char *delimiters;
  585. uint16_t i; uint8_t parsedcount;
  586. freqbanddesc parsedfreqbanddescriptor;
  587. double temp;
  588. i = 0; temp = 0.0;
  589. varoptarg = optarg;
  590. // Trim the brackets
  591. while( varoptarg[i] != '\0' )
  592. {
  593. if(varoptarg[i] == '[')
  594. {
  595. varoptarg += i+1;
  596. continue;
  597. }
  598. if(varoptarg[i] == ']') {
  599. varoptarg[i] = '\0';
  600. break;
  601. }
  602. i++;
  603. }
  604. parsedcount = 0;
  605. delimiters = ",";
  606. tokens = strtok(varoptarg, delimiters);
  607. while(tokens != NULL)
  608. {
  609. switch(parsedcount)
  610. {
  611. case 0:
  612. temp = atof(tokens);
  613. temp = changeprecision(temp,1);
  614. if( temp < vfrequencyindexmap[minfrequencyindex] ) {
  615. temp = vfrequencyindexmap[minfrequencyindex];
  616. } else if ( temp > vfrequencyindexmap[maxfrequencyindex] ) {
  617. temp = vfrequencyindexmap[maxfrequencyindex];
  618. }
  619. parsedfreqbanddescriptor.startfrequency = temp;
  620. break;
  621. case 1:
  622. temp = atof(tokens);
  623. temp = changeprecision(temp,1);
  624. if( temp < vfrequencyindexmap[minfrequencyindex] ) {
  625. temp = vfrequencyindexmap[minfrequencyindex];
  626. } else if ( temp > vfrequencyindexmap[maxfrequencyindex] ) {
  627. temp = vfrequencyindexmap[maxfrequencyindex];
  628. }
  629. parsedfreqbanddescriptor.endfrequency = temp;
  630. break;
  631. case 2:
  632. parsedfreqbanddescriptor.startbackoffdB = atoi(tokens);
  633. break;
  634. case 3:
  635. parsedfreqbanddescriptor.endbackoffdB = atoi(tokens);
  636. break;
  637. default:
  638. //do nothing
  639. break;
  640. }
  641. tokens = strtok(NULL, delimiters);
  642. parsedcount++;
  643. }
  644. if(parsedcount != 4) {
  645. error (1, errno, "Invalid Band Descriptor");
  646. }
  647. return parsedfreqbanddescriptor;
  648. }
  649. void sortdescriptorsandcheckoverlap(freqbanddesc* freqbanddescriptorarray, uint8_t numofbands)
  650. {
  651. uint8_t i, j;
  652. freqbanddesc varfreqbanddesc;
  653. //sort descriptors
  654. for (i = 1; i < numofbands; i++)
  655. {
  656. for(j = 0; j < numofbands-i; j++)
  657. {
  658. if(freqbanddescriptorarray[j].startfrequency > freqbanddescriptorarray[j+1].startfrequency)
  659. {
  660. varfreqbanddesc = freqbanddescriptorarray[j];
  661. freqbanddescriptorarray[j] = freqbanddescriptorarray[j+1];
  662. freqbanddescriptorarray[j+1] = varfreqbanddesc;
  663. }
  664. }
  665. }
  666. //check for overlap
  667. for(i = 1; i < numofbands; i++)
  668. {
  669. if(freqbanddescriptorarray[i].startfrequency <= freqbanddescriptorarray[i-1].endfrequency)
  670. {
  671. error (1, errno, "Invalid band descriptor: overlapping frequencies");
  672. }
  673. }
  674. return;
  675. }
  676. void mapfrequencytoindex(freqbanddesc* freqbanddescriptorarray, banddesc* banddescriptorarray, uint8_t numofbands)
  677. {
  678. uint8_t i; uint16_t j;
  679. memset(banddescriptorarray, 0x00, sizeof(banddesc)*maxnumofbanddescriptor);
  680. // Fill start frequency
  681. for(i = 0; i < numofbands; i++)
  682. {
  683. for(j = minfrequencyindex; j <= maxfrequencyindex; j++)
  684. {
  685. if(vfrequencyindexmap[j] == freqbanddescriptorarray[i].startfrequency)
  686. {
  687. banddescriptorarray[i].startidx = j;
  688. break;
  689. }
  690. else if(vfrequencyindexmap[j] > freqbanddescriptorarray[i].startfrequency)
  691. {
  692. banddescriptorarray[i].startidx = j-1;
  693. break;
  694. }
  695. }
  696. }
  697. // Fill end frequency
  698. for(i = 0; i < numofbands; i++)
  699. {
  700. for(j = minfrequencyindex; j <= maxfrequencyindex; j++)
  701. {
  702. if(vfrequencyindexmap[j] == freqbanddescriptorarray[i].endfrequency)
  703. {
  704. banddescriptorarray[i].endidx = j;
  705. break;
  706. }
  707. else if(vfrequencyindexmap[j] > freqbanddescriptorarray[i].endfrequency)
  708. {
  709. banddescriptorarray[i].endidx = j;
  710. break;
  711. }
  712. }
  713. }
  714. // Fill backoff
  715. for(i = 0; i < numofbands; i++)
  716. {
  717. banddescriptorarray[i].startbackoffdB = freqbanddescriptorarray[i].startbackoffdB;
  718. banddescriptorarray[i].endbackoffdB = freqbanddescriptorarray[i].endbackoffdB;
  719. }
  720. for(i = 1; i < numofbands; i++)
  721. {
  722. if(banddescriptorarray[i].startidx <= banddescriptorarray[i-1].endidx )
  723. {
  724. banddescriptorarray[i].startidx = banddescriptorarray[i-1].endidx + 1;
  725. }
  726. }
  727. return;
  728. }
  729. /*====================================================================*
  730. *
  731. * signed getdsldetectionstatus (struct plc * plc);
  732. *
  733. *===================================================================*/
  734. static signed getdsldetectionstatus (struct plc * plc)
  735. {
  736. struct channel * channel = (struct channel *) (plc->channel);
  737. struct message * message = (struct message *) (plc->message);
  738. #ifndef __GNUC__
  739. #pragma pack (push,1)
  740. #endif
  741. struct __packed vs_xdsl_detection_status_request
  742. {
  743. struct ethernet_hdr ethernet;
  744. struct qualcomm_hdr qualcomm;
  745. uint8_t mCommand;
  746. }
  747. * request = (struct vs_xdsl_detection_status_request *) (message);
  748. struct __packed vs_xdsl_detection_status_confirm
  749. {
  750. struct ethernet_hdr ethernet;
  751. struct qualcomm_hdr qualcomm;
  752. uint8_t MSTATUS;
  753. uint8_t mVdsl2DetectionStatus;
  754. uint8_t mVdsl2NumOfEdgesDetected;
  755. uint8_t mVdsl2EdgeDelta_Ds1Us1;
  756. uint8_t mVdsl2EdgeDelta_Us1Ds2;
  757. uint8_t mVdsl2EdgeDelta_Ds2Us2;
  758. uint8_t mVdsl2EdgeDelta_Us2Ds3;
  759. uint32_t mVdsl2NumOfConsecutiveDetections;
  760. uint8_t mVdsl2BackoffStatus;
  761. }
  762. * confirm = (struct vs_xdsl_detection_status_confirm *) (message);
  763. #ifndef __GNUC__
  764. #pragma pack (pop)
  765. #endif
  766. enum tCommand
  767. {
  768. eCommand_GetStatus = 0x00
  769. };
  770. enum tStatus
  771. {
  772. eStatus_Success = 0x00,
  773. eStatus_NotSupported = 0x01,
  774. };
  775. memset (message, 0, sizeof (* message));
  776. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  777. QualcommHeader (& request->qualcomm, 0, (VS_XDSL_DETECTION_STATUS | MMTYPE_REQ));
  778. request->mCommand = eCommand_GetStatus;
  779. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  780. if (SendMME (plc) <= 0)
  781. {
  782. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  783. return (-1);
  784. }
  785. if (ReadMME (plc, 0, (VS_XDSL_DETECTION_STATUS | MMTYPE_CNF)) <= 0)
  786. {
  787. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  788. return (-1);
  789. }
  790. if (confirm->MSTATUS)
  791. {
  792. Failure (plc, PLC_WONTDOIT);
  793. return (-1);
  794. }
  795. float ds1_us1 = (float)confirm->mVdsl2EdgeDelta_Ds1Us1/4;
  796. float us1_ds2 = (float)confirm->mVdsl2EdgeDelta_Us1Ds2/4;
  797. float ds2_us2 = (float)confirm->mVdsl2EdgeDelta_Ds2Us2/4;
  798. float us2_ds3 = (float)confirm->mVdsl2EdgeDelta_Us2Ds3/4;
  799. printf("\n");
  800. printf(" [VDSL2] Detection Status: %d\n", confirm->mVdsl2DetectionStatus);
  801. printf(" [VDSL2] Detection Result (dB): %.2f, %.2f, %.2f, %.2f\n", ds1_us1, us1_ds2, ds2_us2, us2_ds3);
  802. printf(" [VDSL2] Number Of Edges Detected: %d\n", confirm->mVdsl2NumOfEdgesDetected);
  803. printf(" [VDSL2] Number Of Consecutive Detections: %d\n", confirm->mVdsl2NumOfConsecutiveDetections);
  804. printf(" [VDSL2] Backoff Active Status: %d\n", confirm->mVdsl2BackoffStatus);
  805. printf("\n");
  806. return 0;
  807. }
  808. /*====================================================================================================================================*
  809. *
  810. * void manager (struct plc * plc, banddesc* aBandDescriptorArray, uint8_t numofbands, uint8_t duration, uint8_t trafficgen_rate) ;
  811. *
  812. *====================================================================================================================================*/
  813. void manager (struct plc * plc, freqbanddesc* freqbanddescriptorarray, uint8_t numofbands, uint8_t duration, uint8_t trafficgen_rate)
  814. {
  815. banddesc banddescriptorarray[maxnumofbanddescriptor];
  816. if (!(_anyset (plc->flags, PLC_SET_PRESCALER)) && !(_anyset (plc->flags, PLC_GET_PRESCALER)) && !(_anyset (plc->flags, PLC_RESET_BACKOFF)) && !(_anyset (plc->flags, PLC_DSL_STATUS)))
  817. {
  818. error (1, errno, "Missing mandatory argument: get(-g) or set(-b) or reset(-r) or get_dsl_stats(-D)");
  819. }
  820. if(!(_anyset (plc->flags, PLC_COUPLING)))
  821. {
  822. if(_anyset (plc->flags, PLC_SET_PRESCALER) || _anyset (plc->flags, PLC_RESET_BACKOFF))
  823. error (1, errno, "Missing mandatory argument: coupling");
  824. }
  825. if ((_anyset (plc->flags, PLC_SET_PRESCALER) && _anyset (plc->flags, PLC_GET_PRESCALER) && _anyset (plc->flags, PLC_RESET_BACKOFF)) ||
  826. (_anyset (plc->flags, PLC_SET_PRESCALER) && _anyset (plc->flags, PLC_GET_PRESCALER)) ||
  827. (_anyset (plc->flags, PLC_SET_PRESCALER) && _anyset (plc->flags, PLC_RESET_BACKOFF)) ||
  828. (_anyset (plc->flags, PLC_RESET_BACKOFF) && _anyset (plc->flags, PLC_GET_PRESCALER))
  829. )
  830. {
  831. error (1, errno, "get(-g), set(-b), reset(-r) are mutually exclusive");
  832. }
  833. if ((_anyset(plc->flags, PLC_DEV_TRAFFIC_UNIDI)) && (duration == 0))
  834. {
  835. error (1, errno, "Missing mandatory argument for traffic generation: timeout");
  836. }
  837. if((_anyset (plc->flags, PLC_RESET_BACKOFF)) && ( (unallowed_with_reset_check_flag) || (_anyset(plc->flags, PLC_DEV_TRAFFIC_UNIDI))))
  838. {
  839. error (1, errno, "-a, -d, -T options are not allowed along with -r");
  840. }
  841. if (_anyset (plc->flags, PLC_SET_PRESCALER))
  842. {
  843. sortdescriptorsandcheckoverlap(freqbanddescriptorarray, numofbands);
  844. mapfrequencytoindex(freqbanddescriptorarray, banddescriptorarray, numofbands);
  845. if(setprescalervalues(plc, banddescriptorarray, numofbands, duration, trafficgen_rate) == 0)
  846. {
  847. if(getindication1(plc) == 0)
  848. {
  849. if(duration)
  850. {
  851. getindication2(plc, duration);
  852. }
  853. }
  854. }
  855. }
  856. else if (_anyset (plc->flags, PLC_GET_PRESCALER))
  857. {
  858. getprescalervalues (plc);
  859. }
  860. else if (_anyset (plc->flags, PLC_RESET_BACKOFF))
  861. {
  862. memset (banddescriptorarray, 0x00, sizeof(banddesc)*maxnumofbanddescriptor);
  863. banddescriptorarray[0].startidx = minfrequencyindex;
  864. banddescriptorarray[0].endidx = maxfrequencyindex;
  865. banddescriptorarray[0].startbackoffdB = 0;
  866. banddescriptorarray[0].endbackoffdB = 0;
  867. numofbands = 1;
  868. if(setprescalervalues (plc, banddescriptorarray, numofbands, 0, trafficgen_rate) == 0)
  869. {
  870. getindication3(plc);
  871. }
  872. }
  873. if (_anyset (plc->flags, PLC_DSL_STATUS))
  874. {
  875. getdsldetectionstatus (plc);
  876. }
  877. return;
  878. }
  879. /*====================================================================*
  880. *
  881. * int main (int argc, char const * argv[]);
  882. *
  883. *--------------------------------------------------------------------*/
  884. int main (int argc, char const * argv [])
  885. {
  886. extern struct channel channel;
  887. static char const * optv [] =
  888. {
  889. "a:b:c:d:Degi:qrt:Tvx",
  890. "[device] [device] [...]",
  891. "Qualcomm QCA75xx Prescaler Control MME utility command line",
  892. "a\trate(Mbps)[" LITERAL (DEFAULT_TRAFFICGEN_RATE) "] of traffic sent to peer device",
  893. "b s\tset prescaler backoff values from band descriptor (s) - Example: [1.80,5.90,5,5]",
  894. "c n\tcoupling is (n) [0|1|2|'pri'|'alt'|'mimo']",
  895. "d\ttimeout for backoff (and traffic)",
  896. "D\tget dsl auto detection status",
  897. "e\tredirect stderr to stdout",
  898. "g\tget prescaler backoff values",
  899. #if defined (WINPCAP) || defined (LIBPCAP)
  900. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  901. #else
  902. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  903. #endif
  904. "q\tquiet mode",
  905. "r\treset prescaler backoff",
  906. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  907. "T\tgenerate unidirectional traffic (node to peer)",
  908. "v\tverbose mode",
  909. "x\texit on error",
  910. (char const *) (0)
  911. };
  912. static const struct _term_ coupling [] =
  913. {
  914. {
  915. "alt",
  916. "1"
  917. },
  918. {
  919. "mimo",
  920. "2"
  921. },
  922. {
  923. "pri",
  924. "0"
  925. }
  926. };
  927. #include "../plc/plc.c"
  928. freqbanddesc freqbanddescriptorarray[maxnumofbanddescriptor];
  929. uint8_t numofbands = 0;
  930. uint8_t duration = 0;
  931. uint8_t trafficgen_rate = DEFAULT_TRAFFICGEN_RATE;
  932. signed c;
  933. if (getenv (PLCDEVICE))
  934. {
  935. #if defined (WINPCAP) || defined (LIBPCAP)
  936. channel.ifindex = atoi (getenv (PLCDEVICE));
  937. #else
  938. channel.ifname = strdup (getenv (PLCDEVICE));
  939. #endif
  940. }
  941. optind = 1;
  942. while (~ (c = getoptv (argc, argv, optv)))
  943. {
  944. switch (c)
  945. {
  946. case 'a':
  947. trafficgen_rate = (unsigned) (uintspec (optarg, 0, 50));
  948. unallowed_with_reset_check_flag = true;
  949. break;
  950. case 'b':
  951. if( numofbands == maxnumofbanddescriptor)
  952. error (1, errno, "Exceeded maximum number of band desciptor. Maximum is 16");
  953. freqbanddescriptorarray[numofbands] = parsebanddescriptor(optarg);
  954. numofbands++;
  955. _setbits (plc.flags, PLC_SET_PRESCALER);
  956. break;
  957. case 'c':
  958. plc.coupling = (byte) (uintspec (synonym (optarg, coupling, SIZEOF (coupling)), 0, UCHAR_MAX));
  959. _setbits (plc.flags, PLC_COUPLING);
  960. break;
  961. case 'd':
  962. duration = (unsigned) (uintspec (optarg, 0, 60));
  963. unallowed_with_reset_check_flag = true;
  964. break;
  965. case 'D':
  966. _setbits (plc.flags, PLC_DSL_STATUS);
  967. break;
  968. case 'e':
  969. dup2 (STDOUT_FILENO, STDERR_FILENO);
  970. break;
  971. case 'g':
  972. _setbits (plc.flags, PLC_GET_PRESCALER);
  973. break;
  974. case 'i':
  975. #if defined (WINPCAP) || defined (LIBPCAP)
  976. channel.ifindex = atoi (optarg);
  977. #else
  978. channel.ifname = optarg;
  979. #endif
  980. break;
  981. case 'q':
  982. _setbits (channel.flags, CHANNEL_SILENCE);
  983. _setbits (plc.flags, PLC_SILENCE);
  984. break;
  985. case 'r':
  986. _setbits (plc.flags, PLC_RESET_BACKOFF);
  987. break;
  988. case 't':
  989. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  990. break;
  991. case 'T' :
  992. _setbits (plc.flags, PLC_DEV_TRAFFIC_UNIDI);
  993. break;
  994. case 'v':
  995. _setbits (channel.flags, CHANNEL_VERBOSE);
  996. _setbits (plc.flags, PLC_VERBOSE);
  997. break;
  998. case 'x':
  999. _setbits (plc.flags, PLC_BAILOUT);
  1000. break;
  1001. default:
  1002. break;
  1003. }
  1004. }
  1005. if (optind == 1)
  1006. exit (0);
  1007. if (_anyset (plc.flags, PLC_SET_PRESCALER))
  1008. {
  1009. if (!numofbands){
  1010. error (1, errno, "Missing mandatory argument: band descriptor");
  1011. }
  1012. }
  1013. argc -= optind;
  1014. argv += optind;
  1015. openchannel (& channel);
  1016. if (!(plc.message = malloc (sizeof (* plc.message))))
  1017. {
  1018. error (1, errno, PLC_NOMEMORY);
  1019. }
  1020. if (_anyset(plc.flags, PLC_DEV_TRAFFIC_UNIDI))
  1021. {
  1022. if (! argc || ! argv)
  1023. {
  1024. error (1, ECANCELED, "No node address given");
  1025. }
  1026. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  1027. {
  1028. error (1, errno, PLC_BAD_MAC, *argv);
  1029. }
  1030. argv++;
  1031. argc--;
  1032. if (! argc || ! argv)
  1033. {
  1034. error (1, ECANCELED, "No peer address given");
  1035. }
  1036. if (! hexencode (traffic_peer, sizeof (traffic_peer), (char const *) (*argv)))
  1037. {
  1038. error (1, errno, PLC_BAD_MAC, * argv);
  1039. }
  1040. argv++;
  1041. argc--;
  1042. manager (& plc, freqbanddescriptorarray, numofbands, duration, trafficgen_rate);
  1043. }
  1044. else if ((argc) && (* argv))
  1045. {
  1046. while ((argc) && (* argv))
  1047. {
  1048. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  1049. {
  1050. error (1, errno, PLC_BAD_MAC, * argv);
  1051. }
  1052. manager (& plc, freqbanddescriptorarray, numofbands, duration, trafficgen_rate);
  1053. argc--;
  1054. argv++;
  1055. }
  1056. }
  1057. else if (! argc)
  1058. {
  1059. manager (& plc, freqbanddescriptorarray, numofbands, duration, trafficgen_rate);
  1060. }
  1061. free (plc.message);
  1062. closechannel (& channel);
  1063. exit (0);
  1064. return (0);
  1065. }