amptone.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * amptone.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/symbol.h"
  30. #include "../tools/number.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/Devices.c"
  41. #include "../plc/Failure.c"
  42. #include "../plc/ReadMME.c"
  43. #include "../plc/SendMME.c"
  44. #include "../plc/mod2bits.c"
  45. #include "../plc/mod2db.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/hexdump.c"
  54. #include "../tools/hexencode.c"
  55. #include "../tools/hexdecode.c"
  56. #include "../tools/hexstring.c"
  57. #include "../tools/todigit.c"
  58. #include "../tools/synonym.c"
  59. #endif
  60. #ifndef MAKEFILE
  61. #include "../ether/openchannel.c"
  62. #include "../ether/closechannel.c"
  63. #include "../ether/readpacket.c"
  64. #include "../ether/sendpacket.c"
  65. #include "../ether/channel.c"
  66. #endif
  67. #ifndef MAKEFILE
  68. #include "../mme/EthernetHeader.c"
  69. #include "../mme/QualcommHeader1.c"
  70. #include "../mme/UnwantedMessage.c"
  71. #include "../mme/MMECode.c"
  72. #endif
  73. /*====================================================================*
  74. *
  75. * signed ToneMaps2 (struct plc * plc);
  76. *
  77. * plc.h
  78. *
  79. * read and print lighting tonemap data on stdout;
  80. *
  81. *--------------------------------------------------------------------*/
  82. signed ToneMaps2 (struct plc * plc)
  83. {
  84. extern uint8_t const mod2bits [PLC_BITS_PER_TONE];
  85. struct channel * channel = (struct channel *) (plc->channel);
  86. struct message * message = (struct message *) (plc->message);
  87. uint8_t tonemap [PLC_TIME_SLOTS + 1] [AMP_CARRIERS >> 1];
  88. uint8_t slots = PLC_TIME_SLOTS;
  89. uint8_t slot = 0;
  90. uint16_t extent = 0;
  91. uint16_t carriers = AMP_CARRIERS;
  92. uint16_t carrier = 0;
  93. #ifndef __GNUC__
  94. #pragma pack (push,1)
  95. #endif
  96. struct __packed vs_tonemap_char_request
  97. {
  98. struct ethernet_hdr ethernet;
  99. struct qualcomm_fmi qualcomm;
  100. uint8_t MME_SUBVER;
  101. uint8_t Reserved1 [3];
  102. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  103. uint8_t TMSLOT;
  104. uint8_t COUPLING;
  105. }
  106. * request = (struct vs_tonemap_char_request *) (message);
  107. struct __packed vs_tonemap_char_confirm
  108. {
  109. struct ethernet_hdr ethernet;
  110. struct qualcomm_fmi qualcomm;
  111. uint8_t MSTATUS;
  112. uint8_t Reserved1;
  113. uint16_t MME_LEN;
  114. struct __packed vs_tonemap_char_header
  115. {
  116. uint8_t MME_SUBVER;
  117. uint8_t Reserved2;
  118. uint8_t MACADDRESS [6];
  119. uint8_t TMSLOT;
  120. uint8_t COUPLING;
  121. uint8_t NUMTMS;
  122. uint8_t Reserved4;
  123. uint16_t TMNUMACTCARRIERS;
  124. uint16_t Reserved5;
  125. uint16_t NUMCARRIERS;
  126. uint16_t Reserved6;
  127. uint32_t Reserved7;
  128. }
  129. header;
  130. uint8_t MOD_CARRIER [1];
  131. }
  132. * confirm = (struct vs_tonemap_char_confirm *) (message);
  133. struct __packed vs_tonemap_char_fragment
  134. {
  135. struct ethernet_hdr ethernet;
  136. struct homeplug_fmi qualcomm;
  137. uint8_t MOD_CARRIER [1];
  138. }
  139. * fragment = (struct vs_tonemap_char_fragment *) (message);
  140. #ifndef __GNUC__
  141. #pragma pack (pop)
  142. #endif
  143. memset (tonemap, 0, sizeof (tonemap));
  144. for (carrier = slot = 0; slot < slots; carrier = 0, slot++)
  145. {
  146. memset (message, 0, sizeof (* message));
  147. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  148. QualcommHeader1 (& request->qualcomm, 1, (VS_TONE_MAP_CHAR | MMTYPE_REQ));
  149. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  150. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  151. request->TMSLOT = slot;
  152. request->COUPLING = plc->coupling;
  153. if (SendMME (plc) <= 0)
  154. {
  155. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  156. return (-1);
  157. }
  158. if (ReadMME (plc, 1, (VS_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  159. {
  160. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  161. return (-1);
  162. }
  163. if (confirm->MSTATUS)
  164. {
  165. error (1, 0, "Device refused request for slot %d: %s", slot, MMECode (VS_TONE_MAP_CHAR | MMTYPE_CNF, confirm->MSTATUS));
  166. }
  167. carriers = LE16TOH (confirm->header.TMNUMACTCARRIERS);
  168. slots = confirm->header.NUMTMS;
  169. extent = LE16TOH (confirm->MME_LEN) - sizeof (struct vs_tonemap_char_header);
  170. if (extent > (AMP_CARRIERS >> 1))
  171. {
  172. error (1, EOVERFLOW, "Too many carriers");
  173. }
  174. plc->packetsize -= sizeof (struct vs_tonemap_char_confirm);
  175. plc->packetsize += sizeof (confirm->MOD_CARRIER);
  176. if (plc->packetsize > extent)
  177. {
  178. plc->packetsize = extent;
  179. }
  180. memcpy (& tonemap [slot] [carrier], & confirm->MOD_CARRIER, plc->packetsize);
  181. carrier += plc->packetsize;
  182. extent -= plc->packetsize;
  183. while (extent)
  184. {
  185. if (ReadMME (plc, 1, (VS_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  186. {
  187. error (1, errno, CHANNEL_CANTREAD);
  188. }
  189. plc->packetsize -= sizeof (struct vs_tonemap_char_fragment);
  190. plc->packetsize += sizeof (fragment->MOD_CARRIER);
  191. if (plc->packetsize > extent)
  192. {
  193. plc->packetsize = extent;
  194. }
  195. memcpy (& tonemap [slot] [carrier], fragment->MOD_CARRIER, plc->packetsize);
  196. carrier += plc->packetsize;
  197. extent -= plc->packetsize;
  198. }
  199. }
  200. for (carrier = 0; carrier < carriers; carrier++)
  201. {
  202. uint16_t scale = 0;
  203. uint16_t value = 0;
  204. uint16_t index = carrier >> 1;
  205. printf ("%04d", carrier);
  206. for (slot = 0; slot < slots; slot++)
  207. {
  208. value = tonemap [slot] [index];
  209. if ((carrier & 1))
  210. {
  211. value >>= 4;
  212. }
  213. value &= 0x0F;
  214. printf (",%02d", mod2bits [value]);
  215. value *= value;
  216. scale += value;
  217. }
  218. if (slots)
  219. {
  220. scale /= slots;
  221. }
  222. printf (" %03d ", scale);
  223. if (_anyset (plc->flags, PLC_GRAPH))
  224. {
  225. while (scale--)
  226. {
  227. printf ("#");
  228. }
  229. }
  230. printf ("\n");
  231. }
  232. return (0);
  233. }
  234. /*====================================================================*
  235. *
  236. * signed SignalToNoise2 (struct plc * plc);
  237. *
  238. * plc.h
  239. *
  240. * read lightning tonemap data; compute and print SNR values on
  241. * stdout; the computed SNR values are approximate and should not
  242. * be used for engineering, evaluation or commericial comparison;
  243. *
  244. *--------------------------------------------------------------------*/
  245. signed SignalToNoise2 (struct plc * plc)
  246. {
  247. extern uint8_t const mod2bits [PLC_BITS_PER_TONE];
  248. struct channel * channel = (struct channel *) (plc->channel);
  249. struct message * message = (struct message *) (plc->message);
  250. byte tonemap [PLC_TIME_SLOTS + 1] [AMP_CARRIERS >> 1];
  251. uint16_t GIL [PLC_TIME_SLOTS];
  252. uint16_t AGC [PLC_TIME_SLOTS];
  253. double SNR [PLC_TIME_SLOTS];
  254. double BPC [PLC_TIME_SLOTS];
  255. double AvgSNR;
  256. double AvgBPC;
  257. uint16_t extent = 0;
  258. uint16_t active = 0;
  259. uint16_t carriers = AMP_CARRIERS;
  260. uint16_t carrier = 0;
  261. uint8_t slots = PLC_TIME_SLOTS;
  262. uint8_t slot = 0;
  263. #ifndef __GNUC__
  264. #pragma pack (push,1)
  265. #endif
  266. struct __packed vs_rx_tone_map_char_request
  267. {
  268. struct ethernet_hdr ethernet;
  269. struct qualcomm_fmi qualcomm;
  270. uint8_t MME_SUBVER;
  271. uint8_t Reserved1 [3];
  272. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  273. uint8_t TMSLOT;
  274. uint8_t COUPLING;
  275. }
  276. * request = (struct vs_rx_tone_map_char_request *) (message);
  277. struct __packed vs_rx_tonemap_char_confirm
  278. {
  279. struct ethernet_hdr ethernet;
  280. struct qualcomm_fmi qualcomm;
  281. uint8_t MSTATUS;
  282. uint8_t Reserved1;
  283. uint16_t MME_LEN;
  284. uint8_t MME_SUBVER;
  285. uint8_t Reserved2;
  286. uint8_t MACADDR [6];
  287. uint8_t TMSLOT;
  288. uint8_t COUPLING;
  289. uint8_t NUMTMS;
  290. uint8_t Reserved4;
  291. uint16_t TMNUMACTCARRIERS;
  292. uint32_t Reserved6;
  293. uint8_t GIL;
  294. uint8_t Reserved7;
  295. uint8_t AGC;
  296. uint8_t Reserved8;
  297. uint8_t MOD_CARRIER [1];
  298. }
  299. * confirm = (struct vs_rx_tonemap_char_confirm *) (message);
  300. struct __packed vs_rx_tonemap_char_fragment
  301. {
  302. struct ethernet_hdr ethernet;
  303. struct homeplug_fmi qualcomm;
  304. uint8_t MOD_CARRIER [1];
  305. }
  306. * fragment = (struct vs_rx_tonemap_char_fragment *) (message);
  307. #ifndef __GNUC__
  308. #pragma pack (pop)
  309. #endif
  310. memset (tonemap, 0, sizeof (tonemap));
  311. for (carrier = slot = 0; slot < slots; carrier = 0, slot++)
  312. {
  313. memset (message, 0, sizeof (* message));
  314. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  315. QualcommHeader1 (& request->qualcomm, 1, (VS_RX_TONE_MAP_CHAR | MMTYPE_REQ));
  316. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  317. request->TMSLOT = slot;
  318. request->COUPLING = plc->coupling;
  319. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  320. if (SendMME (plc) <= 0)
  321. {
  322. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  323. return (-1);
  324. }
  325. if (ReadMME (plc, 1, (VS_RX_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  326. {
  327. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  328. return (-1);
  329. }
  330. if (confirm->MSTATUS)
  331. {
  332. error (1, 0, "Device refused request for slot %d: %s", slot, MMECode (VS_RX_TONE_MAP_CHAR | MMTYPE_CNF, confirm->MSTATUS));
  333. }
  334. GIL [slot] = confirm->GIL;
  335. AGC [slot] = confirm->AGC;
  336. carriers = LE16TOH (confirm->TMNUMACTCARRIERS);
  337. slots = confirm->NUMTMS;
  338. extent = LE16TOH (confirm->MME_LEN) - 22;
  339. if (extent > (AMP_CARRIERS >> 1))
  340. {
  341. error (1, EOVERFLOW, "Too many carriers");
  342. }
  343. plc->packetsize -= sizeof (struct vs_rx_tonemap_char_confirm);
  344. plc->packetsize += sizeof (confirm->MOD_CARRIER);
  345. if (plc->packetsize > extent)
  346. {
  347. plc->packetsize = extent;
  348. }
  349. memcpy (& tonemap [slot] [carrier], & confirm->MOD_CARRIER, plc->packetsize);
  350. carrier += plc->packetsize;
  351. extent -= plc->packetsize;
  352. while (extent)
  353. {
  354. if (ReadMME (plc, 1, (VS_RX_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  355. {
  356. error (1, errno, CHANNEL_CANTREAD);
  357. }
  358. plc->packetsize -= sizeof (struct vs_rx_tonemap_char_fragment);
  359. plc->packetsize += sizeof (fragment->MOD_CARRIER);
  360. if (plc->packetsize > extent)
  361. {
  362. plc->packetsize = extent;
  363. }
  364. memcpy (& tonemap [slot] [carrier], fragment->MOD_CARRIER, plc->packetsize);
  365. carrier += plc->packetsize;
  366. extent -= plc->packetsize;
  367. }
  368. }
  369. /*
  370. * LOW BANDS;
  371. */
  372. memset (BPC, 0, sizeof (BPC));
  373. memset (SNR, 0, sizeof (SNR));
  374. AvgBPC = 0;
  375. AvgSNR = 0;
  376. for (carrier = 0; carrier < INT_CARRIERS; carrier++)
  377. {
  378. unsigned value = 0;
  379. unsigned scale = 0;
  380. unsigned index = carrier >> 1;
  381. printf ("%04d", carrier);
  382. for (slot = 0; slot < slots; slot++)
  383. {
  384. value = tonemap [slot] [index];
  385. if ((carrier & 1))
  386. {
  387. value >>= 4;
  388. }
  389. value &= 0x0F;
  390. if (value > (PLC_BITS_PER_TONE -1))
  391. {
  392. error (0, EINVAL, "Index %d Slot %d Value %d", carrier, slot, value);
  393. }
  394. printf (",%02d", mod2bits [value]);
  395. BPC [slot] += mod2bits [value];
  396. SNR [slot] += mod2db [value];
  397. AvgBPC += mod2bits [value];
  398. AvgSNR += mod2db [value];
  399. value *= value;
  400. scale += value;
  401. }
  402. if (_anyset (plc->flags, PLC_GRAPH))
  403. {
  404. printf (" %03d ", scale);
  405. if (scale)
  406. {
  407. scale /= slots;
  408. while (scale--)
  409. {
  410. printf ("#");
  411. }
  412. active++;
  413. }
  414. }
  415. printf ("\n");
  416. }
  417. AvgBPC /= active;
  418. AvgBPC /= slots;
  419. AvgSNR /= active;
  420. AvgSNR /= slots;
  421. printf (" SNR");
  422. for (slot = 0; slot < slots; slot++)
  423. {
  424. printf (",%8.3f", (float) (SNR [slot]) / active);
  425. }
  426. printf (",%8.3f", AvgSNR);
  427. printf (" \n");
  428. printf (" ATN");
  429. for (slot = 0; slot < slots; slot++)
  430. {
  431. printf (",%8.3f", (float) (SNR [slot]) / active - 60);
  432. }
  433. printf (",%8.3f", AvgSNR - 60);
  434. printf (" \n");
  435. printf (" BPC");
  436. for (slot = 0; slot < slots; slot++)
  437. {
  438. printf (",%8.3f", (float) (BPC [slot]) / active);
  439. }
  440. printf (",%8.3f", AvgBPC);
  441. printf (" \n");
  442. /*
  443. * HIGH BANDS;
  444. */
  445. memset (BPC, 0, sizeof (BPC));
  446. memset (SNR, 0, sizeof (SNR));
  447. AvgBPC = 0;
  448. AvgSNR = 0;
  449. while (carrier < carriers)
  450. {
  451. unsigned value = 0;
  452. unsigned scale = 0;
  453. unsigned index = carrier >> 1;
  454. printf ("%04d", carrier);
  455. for (slot = 0; slot < slots; slot++)
  456. {
  457. value = tonemap [slot] [index];
  458. if ((carrier & 1))
  459. {
  460. value >>= 4;
  461. }
  462. value &= 0x0F;
  463. if (value > (PLC_BITS_PER_TONE -1))
  464. {
  465. error (0, EINVAL, "Index %d Slot %d Value %d", carrier, slot, value);
  466. }
  467. printf (",%02d", mod2bits [value]);
  468. BPC [slot] += mod2bits [value];
  469. SNR [slot] += mod2db [value];
  470. AvgBPC += mod2bits [value];
  471. AvgSNR += mod2db [value];
  472. value *= value;
  473. scale += value;
  474. }
  475. if (_anyset (plc->flags, PLC_GRAPH))
  476. {
  477. printf (" %03d ", scale);
  478. if (scale)
  479. {
  480. scale /= slots;
  481. while (scale--)
  482. {
  483. printf ("#");
  484. }
  485. }
  486. }
  487. printf ("\n");
  488. carrier++;
  489. active++;
  490. }
  491. AvgBPC /= active;
  492. AvgBPC /= slots;
  493. AvgSNR /= active;
  494. AvgSNR /= slots;
  495. printf (" SNR");
  496. for (slot = 0; slot < slots; slot++)
  497. {
  498. printf (",%8.3f", (float) (SNR [slot]) / active);
  499. }
  500. printf (",%8.3f", AvgSNR);
  501. printf (" \n");
  502. printf (" ATN");
  503. for (slot = 0; slot < slots; slot++)
  504. {
  505. printf (",%8.3f", (float) (SNR [slot]) / active - 60);
  506. }
  507. printf (",%8.3f", AvgSNR - 60);
  508. printf (" \n");
  509. printf (" BPC");
  510. for (slot = 0; slot < slots; slot++)
  511. {
  512. printf (",%8.3f", (float) (BPC [slot]) / active);
  513. }
  514. printf (",%8.3f", AvgBPC);
  515. printf (" \n");
  516. printf (" AGC");
  517. for (slot = 0; slot < slots; slot++)
  518. {
  519. printf (",%02d", AGC [slot]);
  520. }
  521. printf (" \n");
  522. printf (" GIL");
  523. for (slot = 0; slot < slots; slot++)
  524. {
  525. printf (",%02d", GIL [slot]);
  526. }
  527. printf (" \n");
  528. return (0);
  529. }
  530. /*====================================================================*
  531. *
  532. * int main (int argc, char const * argv[]);
  533. *
  534. * parse command line, populate plc structure and perform selected
  535. * operations; show help summary if asked; see getoptv and putoptv
  536. * to understand command line parsing and help summary display; see
  537. * plc.h for the definition of struct plc;
  538. *
  539. * the command line accepts multiple MAC addresses and the program
  540. * performs the specified operations on each address, in turn; the
  541. * address order is significant but the option order is not; the
  542. * default address is a local broadcast that causes all devices on
  543. * the local H1 interface to respond but not those at the remote
  544. * end of the powerline;
  545. *
  546. * the default address is 00:B0:52:00:00:01; omitting the address
  547. * will automatically address the local device; some options will
  548. * cancel themselves if this makes no sense;
  549. *
  550. * the default interface is eth1 because most people use eth0 as
  551. * their principle network connection; you can specify another
  552. * interface with -i or define environment string PLC to make
  553. * that the default interface and save typing;
  554. *
  555. *--------------------------------------------------------------------*/
  556. int main (int argc, char const * argv [])
  557. {
  558. extern struct channel channel;
  559. static char const * optv [] =
  560. {
  561. "ehi:p:qst:vx",
  562. "node peer [> stdout]",
  563. "Qualcomm Atheros Thunderbolt/Lightning Tone Map Dump using VS_TONE_MAP_CHAR",
  564. "e\tredirect stderr to stdout",
  565. "h\tprint mean-square histogram",
  566. #if defined (WINPCAP) || defined (LIBPCAP)
  567. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  568. #else
  569. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  570. #endif
  571. "p n\tcoupling [" LITERAL (PLCOUPLING) "]",
  572. "q\tquiet mode",
  573. "s\tcompute signal-to-noise and bits-per-carrier ratios using VS_RX_TONE_MAP_CHAR",
  574. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  575. "v\tverbose mode",
  576. "x\texit on error",
  577. (char const *) (0)
  578. };
  579. static const struct _term_ coupling [] =
  580. {
  581. {
  582. "alt",
  583. "1"
  584. },
  585. {
  586. "pri",
  587. "0"
  588. }
  589. };
  590. #include "../plc/plc.c"
  591. signed (* function) (struct plc *) = ToneMaps2;
  592. signed c;
  593. if (getenv (PLCDEVICE))
  594. {
  595. #if defined (WINPCAP) || defined (LIBPCAP)
  596. channel.ifindex = atoi (getenv (PLCDEVICE));
  597. #else
  598. channel.ifname = strdup (getenv (PLCDEVICE));
  599. #endif
  600. }
  601. optind = 1;
  602. while (~ (c = getoptv (argc, argv, optv)))
  603. {
  604. switch (c)
  605. {
  606. case 'p':
  607. #if 0
  608. plc.coupling = (unsigned) (uintspec (synonym (optarg, coupling, SIZEOF (coupling)), 0, SIZEOF (coupling)));
  609. #else
  610. plc.coupling = (unsigned) (uintspec (synonym (optarg, coupling, SIZEOF (coupling)), 0, UCHAR_MAX));
  611. #endif
  612. break;
  613. case 'e':
  614. dup2 (STDOUT_FILENO, STDERR_FILENO);
  615. break;
  616. case 'h':
  617. _setbits (plc.flags, PLC_GRAPH);
  618. break;
  619. case 'i':
  620. #if defined (WINPCAP) || defined (LIBPCAP)
  621. channel.ifindex = atoi (optarg);
  622. #else
  623. channel.ifname = optarg;
  624. #endif
  625. break;
  626. case 'q':
  627. _setbits (channel.flags, CHANNEL_SILENCE);
  628. _setbits (plc.flags, PLC_SILENCE);
  629. break;
  630. case 's':
  631. _setbits (plc.flags, PLC_ANALYSE);
  632. function = SignalToNoise2;
  633. break;
  634. case 't':
  635. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  636. break;
  637. case 'v':
  638. _setbits (channel.flags, CHANNEL_VERBOSE);
  639. _setbits (plc.flags, PLC_VERBOSE);
  640. break;
  641. case 'x':
  642. _setbits (plc.flags, PLC_BAILOUT);
  643. break;
  644. default:
  645. break;
  646. }
  647. }
  648. argc -= optind;
  649. argv += optind;
  650. if (! argc || ! argv)
  651. {
  652. error (1, ECANCELED, "No node address given");
  653. }
  654. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  655. {
  656. error (1, errno, PLC_BAD_MAC, * argv);
  657. }
  658. argc--;
  659. argv++;
  660. if (! argc || ! argv)
  661. {
  662. error (1, ECANCELED, "No peer address given");
  663. }
  664. if (! hexencode (plc.RDA, sizeof (plc.RDA), synonym (* argv, devices, SIZEOF (devices))))
  665. {
  666. error (1, errno, PLC_BAD_MAC, * argv);
  667. }
  668. argc--;
  669. argv++;
  670. openchannel (& channel);
  671. if (! (plc.message = malloc (sizeof (* plc.message))))
  672. {
  673. error (1, errno, PLC_NOMEMORY);
  674. }
  675. function (& plc);
  676. free (plc.message);
  677. closechannel (& channel);
  678. return (0);
  679. }