plctone.c 22 KB

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