chstat.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcstat.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 <inttypes.h>
  21. #include <stdlib.h>
  22. #include <stdint.h>
  23. #include <limits.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/putoptv.h"
  29. #include "../tools/memory.h"
  30. #include "../tools/number.h"
  31. #include "../tools/symbol.h"
  32. #include "../tools/types.h"
  33. #include "../tools/flags.h"
  34. #include "../tools/files.h"
  35. #include "../tools/error.h"
  36. #include "../plc/plc.h"
  37. /*====================================================================*
  38. * custom source files;
  39. *--------------------------------------------------------------------*/
  40. #ifndef MAKEFILE
  41. #include "../plc/chipset.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/ReadFMI.c"
  48. #include "../plc/SendMME.c"
  49. #include "../plc/Devices.c"
  50. #include "../plc/LocalDevices.c"
  51. #include "../plc/NetworkInformation2.c"
  52. #include "../plc/Topology2.c"
  53. #include "../plc/Platform.c"
  54. #include "../plc/WaitForStart.c"
  55. #endif
  56. #ifndef MAKEFILE
  57. #include "../tools/error.c"
  58. #include "../tools/getoptv.c"
  59. #include "../tools/putoptv.c"
  60. #include "../tools/version.c"
  61. #include "../tools/uintspec.c"
  62. #include "../tools/hexdump.c"
  63. #include "../tools/hexencode.c"
  64. #include "../tools/hexdecode.c"
  65. #include "../tools/hexstring.c"
  66. #include "../tools/todigit.c"
  67. #include "../tools/synonym.c"
  68. #include "../tools/typename.c"
  69. #endif
  70. #ifndef MAKEFILE
  71. #include "../ether/openchannel.c"
  72. #include "../ether/closechannel.c"
  73. #include "../ether/readpacket.c"
  74. #include "../ether/sendpacket.c"
  75. #include "../ether/channel.c"
  76. #endif
  77. #ifndef MAKEFILE
  78. #include "../mme/EthernetHeader.c"
  79. #include "../mme/QualcommHeader.c"
  80. #include "../mme/QualcommHeader1.c"
  81. #include "../mme/UnwantedMessage.c"
  82. #include "../mme/MMECode.c"
  83. #endif
  84. /*====================================================================*
  85. * program constants;
  86. *--------------------------------------------------------------------*/
  87. #define PLCSTAT_LOOP 1
  88. #define PLCSTAT_WAIT 0
  89. #define PERCENT " %6.2f%%"
  90. #define COUNTER " %20" PRId64
  91. /*====================================================================*
  92. * variables;
  93. *--------------------------------------------------------------------*/
  94. #ifndef __GNUC__
  95. #pragma pack (push,1)
  96. #endif
  97. typedef struct __packed cheetah_transmit
  98. {
  99. uint64_t RESERVED;
  100. uint64_t LAST_TIME_UPDATED;
  101. uint64_t NUMTXMPDU_ACKD;
  102. uint64_t NUMTXMPDU_COLL;
  103. uint64_t NUMTXMPDU_FAIL;
  104. uint64_t NUMTXPBS_PASSED;
  105. uint64_t NUMTXPBS_FAILED;
  106. uint32_t RESERVED1 [24];
  107. }
  108. transmit;
  109. typedef struct __packed cheetah_receive
  110. {
  111. uint64_t RESERVED;
  112. uint64_t LAST_TIME_UPDATED;
  113. uint64_t NUMRXMPDU_ACKD;
  114. uint64_t NUMRXMPDU_FAIL;
  115. uint64_t NUMRXPBS_PASSED;
  116. uint64_t NUMRXPBS_FAILED;
  117. uint64_t SUMTURBOBER_PASSED;
  118. uint64_t SUMTURBOBER_FAILED;
  119. uint64_t RESERVED1 [4];
  120. uint8_t NUMRXINTERVALS;
  121. uint8_t RESERVED2 [3];
  122. struct cheetah_receive_interval
  123. {
  124. uint64_t NUMRXPBS_PASSED;
  125. uint64_t NUMRXPBS_FAILED;
  126. uint64_t SUMTURBOBER_PASSED;
  127. uint64_t SUMTURBOBER_FAILED;
  128. uint8_t RESERVED1 [27];
  129. uint8_t NUM_PHYRATES;
  130. uint16_t PHYRATE_MBPS_CHAN0;
  131. uint16_t PHYRATE_MBPS_CHAN1;
  132. uint64_t RESERVED2;
  133. }
  134. RXINTERVALSTATS [6];
  135. }
  136. receive;
  137. #ifndef __GNUC__
  138. #pragma pack (pop)
  139. #endif
  140. /*====================================================================*
  141. *
  142. * unsigned error_rate (uint64_t passed, uint64_t failed);
  143. *
  144. * compute error rate for a given quantity; the error rate is the
  145. * ratio of failures to attempts;
  146. *
  147. *--------------------------------------------------------------------*/
  148. static float cheetah_error_rate (uint64_t passed, uint64_t failed)
  149. {
  150. if ((passed) || (failed))
  151. {
  152. return ((float) (failed * 100) / (float) (passed + failed));
  153. }
  154. return (0);
  155. }
  156. /*====================================================================*
  157. *
  158. * float fec_bit_error_rate (struct cheetah_receive * receive);
  159. *
  160. * compute the FEC-BER from the VS_LINK_STATS when DIRECTION=1 and
  161. * LID=0xF8;
  162. *
  163. *--------------------------------------------------------------------*/
  164. static float cheetah_fec_bit_error_rate (struct cheetah_receive * receive)
  165. {
  166. float FECBitErrorRate = 0;
  167. if (receive->SUMTURBOBER_PASSED || receive->SUMTURBOBER_FAILED)
  168. {
  169. float TotalSumOfBitError = 100 * (float) (LE64TOH (receive->SUMTURBOBER_PASSED) + LE64TOH (receive->SUMTURBOBER_FAILED));
  170. float TotalSumOfBits = 8 * 520 * (float) (LE64TOH (receive->NUMRXPBS_PASSED) + LE64TOH (receive->NUMRXPBS_FAILED));
  171. FECBitErrorRate = TotalSumOfBitError / TotalSumOfBits;
  172. }
  173. return (FECBitErrorRate);
  174. }
  175. /*====================================================================*
  176. *
  177. * void transmit (struct cheetah_transmit * transmit);
  178. *
  179. * display transmit statistics in fixed field format;
  180. *
  181. *--------------------------------------------------------------------*/
  182. static void cheetah_transmit_statistics (struct cheetah_transmit * transmit)
  183. {
  184. printf (" TX");
  185. printf (COUNTER, LE64TOH (transmit->NUMTXPBS_PASSED));
  186. printf (COUNTER, LE64TOH (transmit->NUMTXPBS_FAILED));
  187. printf (PERCENT, cheetah_error_rate (LE64TOH (transmit->NUMTXPBS_PASSED), LE64TOH (transmit->NUMTXPBS_FAILED)));
  188. printf (COUNTER, LE64TOH (transmit->NUMTXMPDU_ACKD));
  189. printf (COUNTER, LE64TOH (transmit->NUMTXMPDU_FAIL));
  190. printf (COUNTER, LE64TOH (transmit->NUMTXMPDU_COLL));
  191. printf (PERCENT, cheetah_error_rate (LE64TOH (transmit->NUMTXMPDU_ACKD), LE64TOH (transmit->NUMTXMPDU_FAIL)));
  192. printf ("\n");
  193. return;
  194. }
  195. /*====================================================================*
  196. *
  197. * void Receive (struct cheetah_receive * receive);
  198. *
  199. * display receive statistics in fixed field format;
  200. *
  201. *--------------------------------------------------------------------*/
  202. static void cheetah_receive_statistics (struct cheetah_receive * receive)
  203. {
  204. printf (" RX");
  205. printf (COUNTER, LE64TOH (receive->NUMRXPBS_PASSED));
  206. printf (COUNTER, LE64TOH (receive->NUMRXPBS_FAILED));
  207. printf (PERCENT, cheetah_error_rate (LE64TOH (receive->NUMRXPBS_PASSED), LE64TOH (receive->NUMRXPBS_FAILED)));
  208. printf (COUNTER, LE64TOH (receive->NUMRXMPDU_ACKD));
  209. printf (COUNTER, LE64TOH (receive->NUMRXMPDU_FAIL));
  210. printf (PERCENT, cheetah_error_rate (LE64TOH (receive->NUMRXMPDU_ACKD), LE64TOH (receive->NUMRXMPDU_FAIL)));
  211. printf ("\n");
  212. return;
  213. }
  214. /*====================================================================*
  215. *
  216. * void Receive (struct receive * receive);
  217. *
  218. * display receive statistics in fixed field format for each slot;
  219. * the last line sumarizes results for all slots;
  220. *
  221. *--------------------------------------------------------------------*/
  222. static void cheetah_receive_interval (struct cheetah_receive * receive)
  223. {
  224. struct cheetah_receive_interval * interval = (struct cheetah_receive_interval *) (receive->RXINTERVALSTATS);
  225. uint8_t slot = 0;
  226. while (slot < receive->NUMRXINTERVALS)
  227. {
  228. printf (" %1d", slot);
  229. printf (" %3d", interval->PHYRATE_MBPS_CHAN0);
  230. printf (" %3d", interval->PHYRATE_MBPS_CHAN1);
  231. printf (COUNTER, LE64TOH (interval->NUMRXPBS_PASSED));
  232. printf (COUNTER, LE64TOH (interval->NUMRXPBS_FAILED));
  233. printf (PERCENT, cheetah_error_rate (LE64TOH (interval->NUMRXPBS_PASSED), LE64TOH (interval->NUMRXPBS_FAILED)));
  234. printf (COUNTER, LE64TOH (interval->SUMTURBOBER_PASSED));
  235. printf (COUNTER, LE64TOH (interval->SUMTURBOBER_FAILED));
  236. printf (PERCENT, cheetah_error_rate (LE64TOH (interval->SUMTURBOBER_PASSED), LE64TOH (interval->SUMTURBOBER_FAILED)));
  237. printf ("\n");
  238. interval++;
  239. slot++;
  240. }
  241. printf (" ALL");
  242. printf (COUNTER, LE64TOH (receive->NUMRXPBS_PASSED));
  243. printf (COUNTER, LE64TOH (receive->NUMRXPBS_FAILED));
  244. printf (PERCENT, cheetah_error_rate (LE64TOH (receive->NUMRXPBS_PASSED), LE64TOH (receive->NUMRXPBS_FAILED)));
  245. printf (COUNTER, LE64TOH (receive->SUMTURBOBER_PASSED));
  246. printf (COUNTER, LE64TOH (receive->SUMTURBOBER_FAILED));
  247. printf (PERCENT, cheetah_error_rate (LE64TOH (receive->SUMTURBOBER_PASSED), LE64TOH (receive->SUMTURBOBER_FAILED)));
  248. printf (PERCENT, cheetah_fec_bit_error_rate (receive));
  249. printf ("\n");
  250. return;
  251. }
  252. /*====================================================================*
  253. *
  254. * signed CheetahLinkStatistics (struct plc * plc);
  255. *
  256. *--------------------------------------------------------------------*/
  257. signed cheetah_link_statistics (struct plc * plc)
  258. {
  259. struct channel * channel = (struct channel *) (plc->channel);
  260. struct message * message = (struct message *) (plc->message);
  261. #ifndef __GNUC__
  262. #pragma pack (push,1)
  263. #endif
  264. struct __packed vs_lnk_stats_request
  265. {
  266. struct ethernet_hdr ethernet;
  267. struct qualcomm_fmi qualcomm;
  268. uint8_t MCONTROL;
  269. uint8_t DIRECTION;
  270. uint8_t LID;
  271. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  272. }
  273. * request = (struct vs_lnk_stats_request *) (message);
  274. struct __packed vs_lnk_stats_confirm
  275. {
  276. struct ethernet_hdr ethernet;
  277. struct qualcomm_fmi qualcomm;
  278. uint8_t MSTATUS;
  279. uint8_t RESERVED1 [4];
  280. uint8_t MCONTROL;
  281. uint8_t DIRECTION;
  282. uint8_t RESERVED2;
  283. uint8_t LID;
  284. uint8_t MACADDR [6];
  285. uint8_t TEI;
  286. uint8_t RESERVED3 [4];
  287. uint8_t LSTATS [708];
  288. }
  289. * confirm = (struct vs_lnk_stats_confirm *) (message);
  290. #ifndef __GNUC__
  291. #pragma pack (pop)
  292. #endif
  293. memset (message, 0, sizeof (* message));
  294. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  295. QualcommHeader1 (& request->qualcomm, 1, (VS_LNK_STATS | MMTYPE_REQ));
  296. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  297. request->MCONTROL = plc->pushbutton;
  298. request->DIRECTION = plc->module;
  299. request->LID = plc->action;
  300. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  301. if (SendMME (plc) <= 0)
  302. {
  303. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  304. return (-1);
  305. }
  306. if (ReadFMI (plc, 1, (VS_LNK_STATS | MMTYPE_CNF)) <= 0)
  307. {
  308. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  309. return (-1);
  310. }
  311. confirm = (struct vs_lnk_stats_confirm *) (plc->content);
  312. if (confirm->MSTATUS)
  313. {
  314. Failure (plc, PLC_WONTDOIT);
  315. return (-1);
  316. }
  317. if (confirm->DIRECTION == 0)
  318. {
  319. printf (" DIR");
  320. printf (" ----------- PBs PASS");
  321. printf (" ----------- PBs FAIL");
  322. printf (" PBs ERR");
  323. printf (" ---------- MPDU ACKD");
  324. printf (" ---------- MPDU FAIL");
  325. printf ("\n");
  326. cheetah_transmit_statistics ((struct cheetah_transmit *) (confirm->LSTATS));
  327. printf ("\n");
  328. }
  329. if (confirm->DIRECTION == 1)
  330. {
  331. printf (" DIR");
  332. printf (" ----------- PBs PASS");
  333. printf (" ----------- PBs FAIL");
  334. printf (" PBs ERR");
  335. printf (" ---------- MPDU ACKD");
  336. printf (" ---------- MPDU FAIL");
  337. printf ("\n");
  338. cheetah_receive_statistics ((struct cheetah_receive *) (confirm->LSTATS));
  339. printf ("\n");
  340. printf (" CH0 CH1");
  341. printf (" ----------- PBs PASS");
  342. printf (" ----------- PBs FAIL");
  343. printf (" PBs ERR");
  344. printf (" ----------- BER PASS");
  345. printf (" ----------- BER FAIL");
  346. printf (" BER ERR");
  347. printf ("\n");
  348. cheetah_receive_interval ((struct cheetah_receive *) (confirm->LSTATS));
  349. printf ("\n");
  350. }
  351. if (confirm->DIRECTION == 2)
  352. {
  353. printf (" DIR");
  354. printf (" ----------- PBs PASS");
  355. printf (" ----------- PBs FAIL");
  356. printf (" PBs ERR");
  357. printf (" ---------- MPDU ACKD");
  358. printf (" ---------- MPDU FAIL");
  359. printf ("\n");
  360. cheetah_transmit_statistics ((struct cheetah_transmit *) (confirm->LSTATS));
  361. cheetah_receive_statistics ((struct cheetah_receive *) (confirm->LSTATS + sizeof (struct cheetah_transmit)));
  362. printf ("\n");
  363. printf (" CH0 CH1");
  364. printf (" ----------- PBs PASS");
  365. printf (" ----------- PBs FAIL");
  366. printf (" PBs ERR");
  367. printf (" ----------- BER PASS");
  368. printf (" ----------- BER FAIL");
  369. printf (" BER ERR");
  370. printf ("\n");
  371. cheetah_receive_interval ((struct cheetah_receive *) (confirm->LSTATS + sizeof (struct cheetah_transmit)));
  372. printf ("\n");
  373. }
  374. return (0);
  375. }
  376. /*====================================================================*
  377. *
  378. * void manager (struct plc * plc);
  379. *
  380. * perform operations in logical order despite any order specfied
  381. * on the command line; for example read PIB before writing PIB;
  382. *
  383. * operation order is controlled by the order of "if" statements
  384. * shown here; the entire operation sequence can be repeated with
  385. * an optional pause between each iteration;
  386. *
  387. *--------------------------------------------------------------------*/
  388. void manager (struct plc * plc, signed count, signed pause)
  389. {
  390. while (count--)
  391. {
  392. if (_anyset (plc->flags, PLC_ANALYSE))
  393. {
  394. Topology2 (plc);
  395. }
  396. if (_anyset (plc->flags, PLC_NETWORK))
  397. {
  398. NetworkInformation2 (plc);
  399. }
  400. if (_anyset (plc->flags, PLC_LINK_STATS))
  401. {
  402. cheetah_link_statistics (plc);
  403. }
  404. sleep (pause);
  405. }
  406. return;
  407. }
  408. /*====================================================================*
  409. *
  410. * int main (int argc, char const * argv[]);
  411. *
  412. * parse command line, populate plc structure and perform selected
  413. * operations; show help summary if asked; see getoptv and putoptv
  414. * to understand command line parsing and help summary display; see
  415. * plc.h for the definition of struct plc;
  416. *
  417. * the command line accepts multiple MAC addresses and the program
  418. * performs the specified operations on each address, in turn; the
  419. * address order is significant but the option order is not; the
  420. * default address is a local broadcast that causes all devices on
  421. * the local H1 interface to respond but not those at the remote
  422. * end of the powerline;
  423. *
  424. * the default address is 00:B0:52:00:00:01; omitting the address
  425. * will automatically address the local device; some options will
  426. * cancel themselves if this makes no sense;
  427. *
  428. * the default interface is eth1 because most people use eth0 as
  429. * their principle network connection; you can specify another
  430. * interface with -i or define environment string PLC to make
  431. * that the default interface and save typing;
  432. *
  433. *--------------------------------------------------------------------*/
  434. int main (int argc, char const * argv [])
  435. {
  436. extern struct channel channel;
  437. static char const * optv [] =
  438. {
  439. "Cd:ei:l:mp:qs:tvw:",
  440. "device [device] [...] [> stdout]",
  441. "Qualcomm Atheros QCA7500 Link Statistics",
  442. #if defined (WINPCAP) || defined (LIBPCAP)
  443. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  444. #else
  445. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  446. #endif
  447. "C\tclear statistics without reading using VS_LNK_STATS",
  448. "d n\tdirection is (n) (0=tx, 1=rx, 2=both) for VS_LNK_STATS",
  449. "e\tredirect stderr to stdout",
  450. "l n\tloop (n) times [" LITERAL (PLCSTAT_LOOP) "]",
  451. "s n\tLink ID is (n) for VS_LNK_STATS (see Programmer's Guide)",
  452. "m\tprint network membership information using VS_NW_INFO",
  453. "p x\tpeer node address is (x) for option -s",
  454. "q\tquiet mode",
  455. "t\tprint network topology using VS_NW_INFO with VS_SW_VER",
  456. "v\tverbose mode",
  457. "w n\twait (n) seconds [" LITERAL (PLCSTAT_WAIT) "]",
  458. (char const *) (0)
  459. };
  460. static const struct _term_ linkids [] =
  461. {
  462. {
  463. "CSMA-ALL",
  464. "0xFC"
  465. },
  466. {
  467. "CSMA-CAP0",
  468. "0x00"
  469. },
  470. {
  471. "CSMA-CAP1",
  472. "0x01"
  473. },
  474. {
  475. "CSMA-CAP2",
  476. "0x02"
  477. },
  478. {
  479. "CSMA-CAP3",
  480. "0x03"
  481. },
  482. {
  483. "CSMA-PEER",
  484. "0xF8"
  485. },
  486. };
  487. static const struct _term_ directions [] =
  488. {
  489. {
  490. "both",
  491. "2"
  492. },
  493. {
  494. "rx",
  495. "1"
  496. },
  497. {
  498. "tx",
  499. "0"
  500. }
  501. };
  502. #include "../plc/plc.c"
  503. signed loop = PLCSTAT_LOOP;
  504. signed wait = PLCSTAT_WAIT;
  505. signed c;
  506. if (getenv (PLCDEVICE))
  507. {
  508. #if defined (WINPCAP) || defined (LIBPCAP)
  509. channel.ifindex = atoi (getenv (PLCDEVICE));
  510. #else
  511. channel.ifname = strdup (getenv (PLCDEVICE));
  512. #endif
  513. }
  514. optind = 1;
  515. plc.pushbutton = 0;
  516. while (~ (c = getoptv (argc, argv, optv)))
  517. {
  518. switch (c)
  519. {
  520. case 'C':
  521. _setbits (plc.flags, PLC_LINK_STATS);
  522. plc.pushbutton = 1;
  523. break;
  524. case 'd':
  525. _setbits (plc.flags, PLC_LINK_STATS);
  526. plc.module = (uint8_t) (uintspec (synonym (optarg, directions, SIZEOF (directions)), 0, UCHAR_MAX));
  527. break;
  528. case 'e':
  529. dup2 (STDOUT_FILENO, STDERR_FILENO);
  530. break;
  531. case 'i':
  532. #if defined (WINPCAP) || defined (LIBPCAP)
  533. channel.ifindex = atoi (optarg);
  534. #else
  535. channel.ifname = optarg;
  536. #endif
  537. break;
  538. case 'm':
  539. _setbits (plc.flags, PLC_NETWORK);
  540. break;
  541. case 'p':
  542. _setbits (plc.flags, PLC_LINK_STATS);
  543. if (! hexencode (plc.RDA, sizeof (plc.RDA), (char const *) (optarg)))
  544. {
  545. error (1, errno, PLC_BAD_MAC, optarg);
  546. }
  547. break;
  548. case 'l':
  549. loop = (unsigned) (uintspec (optarg, 0, UINT_MAX));
  550. break;
  551. case 'q':
  552. _setbits (channel.flags, CHANNEL_SILENCE);
  553. _setbits (plc.flags, PLC_SILENCE);
  554. break;
  555. case 's':
  556. _setbits (plc.flags, PLC_LINK_STATS);
  557. plc.action = (uint8_t) (uintspec (synonym (optarg, linkids, SIZEOF (linkids)), 0, UCHAR_MAX));
  558. break;
  559. case 't':
  560. _setbits (plc.flags, PLC_ANALYSE);
  561. break;
  562. case 'v':
  563. _setbits (channel.flags, CHANNEL_VERBOSE);
  564. _setbits (plc.flags, PLC_VERBOSE);
  565. break;
  566. case 'w':
  567. wait = (unsigned) (uintspec (optarg, 0, 3600));
  568. break;
  569. default:
  570. break;
  571. }
  572. }
  573. argc -= optind;
  574. argv += optind;
  575. openchannel (& channel);
  576. if (! (plc.message = malloc (sizeof (* plc.message))))
  577. {
  578. error (1, errno, PLC_NOMEMORY);
  579. }
  580. if (! argc)
  581. {
  582. manager (& plc, loop, wait);
  583. }
  584. while ((argc) && (* argv))
  585. {
  586. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  587. {
  588. error (1, errno, PLC_BAD_MAC, * argv);
  589. }
  590. manager (& plc, loop, wait);
  591. argc--;
  592. argv++;
  593. }
  594. free (plc.message);
  595. closechannel (& channel);
  596. return (0);
  597. }