chtone.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * chtone.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <stdio.h>
  20. #include <unistd.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/symbol.h"
  31. #include "../tools/number.h"
  32. #include "../tools/endian.h"
  33. #include "../tools/types.h"
  34. #include "../tools/flags.h"
  35. #include "../tools/files.h"
  36. #include "../tools/error.h"
  37. #include "../tools/tlv.h"
  38. #include "../plc/plc.h"
  39. #include "../mme/mme.h"
  40. /*====================================================================*
  41. * custom source files;
  42. *--------------------------------------------------------------------*/
  43. #ifndef MAKEFILE
  44. #include "../plc/Devices.c"
  45. #include "../plc/Failure.c"
  46. #include "../plc/ReadMME.c"
  47. #include "../plc/ReadFMI.c"
  48. #include "../plc/SendMME.c"
  49. #include "../plc/mod2bits.c"
  50. #endif
  51. #ifndef MAKEFILE
  52. #include "../tools/error.c"
  53. #include "../tools/getoptv.c"
  54. #include "../tools/putoptv.c"
  55. #include "../tools/version.c"
  56. #include "../tools/uintspec.c"
  57. #include "../tools/hexdump.c"
  58. #include "../tools/hexencode.c"
  59. #include "../tools/hexdecode.c"
  60. #include "../tools/hexstring.c"
  61. #include "../tools/todigit.c"
  62. #include "../tools/synonym.c"
  63. #endif
  64. #ifndef MAKEFILE
  65. #include "../ether/openchannel.c"
  66. #include "../ether/closechannel.c"
  67. #include "../ether/readpacket.c"
  68. #include "../ether/sendpacket.c"
  69. #include "../ether/channel.c"
  70. #endif
  71. #ifndef MAKEFILE
  72. #include "../mme/EthernetHeader.c"
  73. #include "../mme/QualcommHeader1.c"
  74. #include "../mme/UnwantedMessage.c"
  75. #include "../mme/MMECode.c"
  76. #endif
  77. /*====================================================================*
  78. * program constants;
  79. *--------------------------------------------------------------------*/
  80. #define SECRETS 1
  81. #define PRECODES 1
  82. #define CHTONE_TONEMAP (1 << 0)
  83. #define CHTONE_PRIMARY (1 << 1)
  84. #define CHTONE_ALTERNATE (1 << 2)
  85. #define CHTONE_PRECODING (1 << 3)
  86. #define PRECODE_ANGLE_PSI(angle) ((angle >> 0) & 0x1F)
  87. #define PRECODE_ANGLE_THETA(angle) ((angle >> 8) & 0x7F)
  88. /*====================================================================*
  89. * program variables;
  90. *--------------------------------------------------------------------*/
  91. #ifndef __GNUC__
  92. #pragma pack (push,1)
  93. #endif
  94. struct slotinfo
  95. {
  96. #if defined (SECRETS)
  97. struct secrets
  98. {
  99. uint8_t RESERVED1;
  100. uint8_t RESERVED2;
  101. uint8_t RESERVED3;
  102. uint32_t RESERVED4;
  103. uint8_t RESERVED5;
  104. uint8_t RESERVED6;
  105. }
  106. secrets;
  107. #endif
  108. struct tonemap
  109. {
  110. uint8_t RESERVED [7];
  111. uint8_t AVG_AGC_GAIN;
  112. uint32_t NUMCARRIERS;
  113. uint32_t NUM_BYTES;
  114. uint8_t DATA [CHEETAH_CARRIERS];
  115. }
  116. tonemap0,
  117. tonemap1;
  118. struct precode
  119. {
  120. uint8_t RESERVED [7];
  121. uint8_t GROUPING;
  122. uint32_t NUM_BYTES;
  123. uint16_t DATA [CHEETAH_PRECODES];
  124. }
  125. precode;
  126. }
  127. slotinfo [PLC_TIME_SLOTS];
  128. #ifndef __GNUC__
  129. #pragma pack (pop)
  130. #endif
  131. /*====================================================================*
  132. *
  133. * void CheetahSecrets (const struct slotinfo * slotinfo, uint8_t slots);
  134. *
  135. *--------------------------------------------------------------------*/
  136. #if defined (SECRETS)
  137. static void CheetahSecrets (const struct slotinfo * slotinfo, uint8_t slots)
  138. {
  139. uint8_t slot;
  140. printf ("RESERVED1");
  141. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  142. {
  143. printf (",%d", slotinfo [slot].secrets.RESERVED1);
  144. }
  145. printf ("\n");
  146. printf ("RESERVED2");
  147. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  148. {
  149. printf (",%d", slotinfo [slot].secrets.RESERVED2);
  150. }
  151. printf ("\n");
  152. printf ("RESERVED3");
  153. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  154. {
  155. printf (",%d", slotinfo [slot].secrets.RESERVED3);
  156. }
  157. printf ("\n");
  158. printf ("RESERVED4");
  159. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  160. {
  161. printf (",%d", slotinfo [slot].secrets.RESERVED4);
  162. }
  163. printf ("\n");
  164. printf ("\n");
  165. return;
  166. }
  167. #endif
  168. /*====================================================================*
  169. *
  170. * void CheetahPrecode (const struct slotinfo * slotinfo, uint8_t slots);
  171. *
  172. *--------------------------------------------------------------------*/
  173. static void CheetahPrecode (const struct slotinfo * slotinfo, uint8_t slots)
  174. {
  175. uint8_t slot;
  176. uint16_t index;
  177. printf ("GRP");
  178. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  179. {
  180. printf (",%3d", slotinfo [slot].precode.GROUPING);
  181. }
  182. printf ("\n");
  183. for (index = 0; index < CHEETAH_PRECODES; ++ index)
  184. {
  185. printf ("%03d", index);
  186. for (slot = 0; slot < slots; ++ slot)
  187. {
  188. uint16_t angle = LE16TOH (slotinfo [slot].precode.DATA [index]);
  189. printf (",%3d", PRECODE_ANGLE_PSI (angle));
  190. }
  191. printf ("\n");
  192. }
  193. printf ("\n");
  194. printf ("GRP");
  195. for (slot = 0; slot < PLC_TIME_SLOTS; ++ slot)
  196. {
  197. printf (",%3d", slotinfo [slot].precode.GROUPING);
  198. }
  199. printf ("\n");
  200. for (index = 0; index < CHEETAH_PRECODES; ++ index)
  201. {
  202. printf ("%03d", index);
  203. for (slot = 0; slot < slots; ++ slot)
  204. {
  205. uint16_t angle = LE16TOH (slotinfo [slot].precode.DATA [index]);
  206. printf (",%3d", PRECODE_ANGLE_THETA (angle));
  207. }
  208. printf ("\n");
  209. }
  210. printf ("\n");
  211. return;
  212. }
  213. /*====================================================================*
  214. *
  215. * void CheetahTonemap (const struct slotinfo * slotinfo, uint8_t slots);
  216. *
  217. *--------------------------------------------------------------------*/
  218. static void CheetahTonemap (const struct slotinfo * slotinfo, uint8_t slots, uint16_t carriers)
  219. {
  220. uint8_t slot;
  221. uint16_t carrier;
  222. for (carrier = 0; carrier < carriers; carrier++)
  223. {
  224. uint16_t value = 0;
  225. uint16_t scale = 0;
  226. uint16_t index = carrier >> 1;
  227. printf ("%04d", carrier);
  228. for (slot = 0; slot < slots; slot++)
  229. {
  230. value = slotinfo [slot].tonemap0.DATA [index];
  231. if ((carrier & 1))
  232. {
  233. value >>= 4;
  234. }
  235. value &= 0x0F;
  236. if (value < PLC_BITS_PER_TONE)
  237. {
  238. printf (",%02d", mod2bits [value]);
  239. value *= value;
  240. scale += value;
  241. }
  242. }
  243. for (slot = 0; slot < slots; slot++)
  244. {
  245. value = slotinfo [slot].tonemap1.DATA [index];
  246. if ((carrier & 1))
  247. {
  248. value >>= 4;
  249. }
  250. value &= 0x0F;
  251. if (value < PLC_BITS_PER_TONE)
  252. {
  253. printf (",%02d", mod2bits [value]);
  254. value *= value;
  255. }
  256. }
  257. printf ("\n");
  258. }
  259. printf ("\n");
  260. return;
  261. }
  262. /*====================================================================*
  263. *
  264. * signed CheetahTonemap1 (struct plc * plc, struct slotinfo * slotinfo, uint8_t slots, uint16_t carriers);
  265. *
  266. * plc.h
  267. *
  268. * collect cheetah tonemaps using one or more VS_TONE_MAP_CHAR
  269. * messages;
  270. *
  271. *--------------------------------------------------------------------*/
  272. static signed CheetahTonemap1 (struct plc * plc, struct slotinfo * slotinfo, uint8_t slots, uint16_t carriers)
  273. {
  274. struct channel * channel = (struct channel *) (plc->channel);
  275. struct message * message = (struct message *) (plc->message);
  276. #ifndef __GNUC__
  277. #pragma pack (push,1)
  278. #endif
  279. struct __packed vs_tonemap_char_request
  280. {
  281. struct ethernet_hdr ethernet;
  282. struct qualcomm_fmi qualcomm;
  283. uint8_t MME_SUBVER;
  284. uint8_t RESERVED1 [3];
  285. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  286. uint8_t TMSLOT;
  287. uint8_t TONEMAP_TYPE;
  288. }
  289. * request = (struct vs_tonemap_char_request *) (message);
  290. struct __packed vs_tonemap_char_confirm
  291. {
  292. struct ethernet_hdr ethernet;
  293. struct qualcomm_fmi qualcomm;
  294. uint8_t MSTATUS;
  295. uint8_t RESERVED1;
  296. uint16_t MME_LEN;
  297. uint8_t MME_SUBVER;
  298. uint8_t RESERVED2;
  299. uint8_t MACADDRESS [6];
  300. uint8_t TMSLOT;
  301. uint8_t TONEMAP_TYPE;
  302. uint8_t NUMTMS;
  303. uint8_t RESERVED3;
  304. uint16_t TMNUMACTCARRIERS;
  305. uint32_t RESERVED4;
  306. uint8_t DATA [1];
  307. }
  308. * confirm = (struct vs_tonemap_char_confirm *) (message);
  309. #ifndef __GNUC__
  310. #pragma pack (pop)
  311. #endif
  312. uint8_t slot;
  313. memset (slotinfo, 0, sizeof (* slotinfo));
  314. for (slot = 0; slot < slots; slot++)
  315. {
  316. memset (message, 0, sizeof (* message));
  317. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  318. QualcommHeader1 (& request->qualcomm, 1, (VS_TONE_MAP_CHAR | MMTYPE_REQ));
  319. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  320. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  321. request->TMSLOT = slot;
  322. request->TONEMAP_TYPE = plc->coupling;
  323. if (SendMME (plc) <= 0)
  324. {
  325. error (1, errno, CHANNEL_CANTSEND);
  326. }
  327. if (ReadFMI (plc, 1, (VS_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  328. {
  329. error (1, errno, CHANNEL_CANTREAD);
  330. }
  331. confirm = (struct vs_tonemap_char_confirm *) (plc->content);
  332. if (confirm->MSTATUS)
  333. {
  334. error (1, 0, "Device refused request for slot %d: %s", slot, MMECode (VS_TONE_MAP_CHAR | MMTYPE_CNF, confirm->MSTATUS));
  335. }
  336. slots = confirm->NUMTMS;
  337. #if defined (SECRETS)
  338. slotinfo [slot].secrets.RESERVED1 = confirm->RESERVED1;
  339. slotinfo [slot].secrets.RESERVED2 = confirm->RESERVED2;
  340. slotinfo [slot].secrets.RESERVED3 = confirm->RESERVED3;
  341. slotinfo [slot].secrets.RESERVED4 = confirm->RESERVED4;
  342. #endif
  343. if (confirm->TONEMAP_TYPE == 0)
  344. {
  345. memcpy (& slotinfo [slot].tonemap0.DATA, confirm->DATA, LE16TOH (confirm->TMNUMACTCARRIERS));
  346. confirm = (struct vs_tonemap_char_confirm *) (message);
  347. free (plc->content);
  348. plc->content = NULL;
  349. continue;
  350. }
  351. if (confirm->TONEMAP_TYPE == 1)
  352. {
  353. memcpy (& slotinfo [slot].tonemap1.DATA, confirm->DATA, LE16TOH (confirm->TMNUMACTCARRIERS));
  354. confirm = (struct vs_tonemap_char_confirm *) (message);
  355. free (plc->content);
  356. plc->content = NULL;
  357. continue;
  358. }
  359. if (confirm->TONEMAP_TYPE == 2)
  360. {
  361. struct cheetah_chain_header
  362. {
  363. uint32_t size;
  364. uint32_t data;
  365. }
  366. * header = (struct cheetah_chain_header *) (confirm->DATA);
  367. uint32_t length = LE32TOH (header->size);
  368. uint8_t * offset = (uint8_t *) (& header->data);
  369. while (length)
  370. {
  371. struct TLVNode * node = (struct TLVNode *) (offset);
  372. uint32_t type = LE32TOH (node->type);
  373. uint32_t size = LE32TOH (node->size);
  374. if (type == 0)
  375. {
  376. memcpy (& slotinfo [slot].tonemap0, & node->data, size);
  377. }
  378. else if (type == 1)
  379. {
  380. memcpy (& slotinfo [slot].tonemap1, & node->data, size);
  381. }
  382. else if (type == 2)
  383. {
  384. memcpy (& slotinfo [slot].precode, & node->data, size);
  385. }
  386. length -= TLVSPAN (node);
  387. offset += TLVSPAN (node);
  388. }
  389. confirm = (struct vs_tonemap_char_confirm *) (message);
  390. free (plc->content);
  391. plc->content = NULL;
  392. continue;
  393. }
  394. error (1, 0, "Unknown Tonemap Type %d", confirm->TONEMAP_TYPE);
  395. }
  396. #if defined (SECRETS)
  397. CheetahSecrets (slotinfo, slots);
  398. CheetahTonemap (slotinfo, slots, carriers);
  399. CheetahPrecode (slotinfo, slots);
  400. #else
  401. CheetahTonemap (slotinfo, slots, carriers);
  402. #endif
  403. return (0);
  404. }
  405. /*====================================================================*
  406. *
  407. * signed CheetahTonemap2 (struct plc * plc, struct slotinfo * slotinfo, uint8_t slots, uint16_t carriers);
  408. *
  409. * plc.h
  410. *
  411. * collect cheetah tonemaps using one or more VS_RX_TONE_MAP_CHAR
  412. * messages;
  413. *
  414. *--------------------------------------------------------------------*/
  415. static signed CheetahTonemap2 (struct plc * plc, struct slotinfo * slotinfo, uint8_t slots, uint16_t carriers)
  416. {
  417. struct channel * channel = (struct channel *) (plc->channel);
  418. struct message * message = (struct message *) (plc->message);
  419. #ifndef __GNUC__
  420. #pragma pack (push,1)
  421. #endif
  422. struct __packed vs_rx_tonemap_char_request
  423. {
  424. struct ethernet_hdr ethernet;
  425. struct qualcomm_fmi qualcomm;
  426. uint8_t MME_SUBVER;
  427. uint8_t RESERVED1 [3];
  428. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  429. uint8_t TMSLOT;
  430. uint8_t TONEMAP_TYPE;
  431. }
  432. * request = (struct vs_rx_tonemap_char_request *) (message);
  433. struct __packed vs_rx_tonemap_char_confirm
  434. {
  435. struct ethernet_hdr ethernet;
  436. struct qualcomm_fmi qualcomm;
  437. uint8_t MSTATUS;
  438. uint8_t RESERVED1;
  439. uint16_t MME_LEN;
  440. uint8_t MME_SUBVER;
  441. uint8_t RESERVED2;
  442. uint8_t MACADDRESS [6];
  443. uint8_t TMSLOT;
  444. uint8_t TONEMAP_TYPE;
  445. uint8_t NUMTMS;
  446. uint8_t RESERVED3;
  447. uint16_t TMNUMACTCARRIERS;
  448. uint32_t RESERVED4;
  449. uint8_t GIL;
  450. uint8_t RESERVED5;
  451. uint8_t AVG_ACG_GAIN;
  452. uint8_t RESERVED6;
  453. uint8_t DATA [1];
  454. }
  455. * confirm = (struct vs_rx_tonemap_char_confirm *) (message);
  456. #ifndef __GNUC__
  457. #pragma pack (pop)
  458. #endif
  459. uint8_t slot;
  460. memset (slotinfo, 0, sizeof (* slotinfo));
  461. for (slot = 0; slot < slots; slot++)
  462. {
  463. memset (message, 0, sizeof (* message));
  464. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  465. QualcommHeader1 (& request->qualcomm, 1, (VS_RX_TONE_MAP_CHAR | MMTYPE_REQ));
  466. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  467. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  468. request->TMSLOT = slot;
  469. request->TONEMAP_TYPE = plc->coupling;
  470. if (SendMME (plc) <= 0)
  471. {
  472. error (1, errno, CHANNEL_CANTSEND);
  473. }
  474. if (ReadFMI (plc, 1, (VS_RX_TONE_MAP_CHAR | MMTYPE_CNF)) <= 0)
  475. {
  476. error (1, errno, CHANNEL_CANTREAD);
  477. }
  478. confirm = (struct vs_rx_tonemap_char_confirm *) (plc->content);
  479. if (confirm->MSTATUS)
  480. {
  481. error (1, 0, "Device refused request for slot %d: %s", slot, MMECode (VS_RX_TONE_MAP_CHAR | MMTYPE_CNF, confirm->MSTATUS));
  482. }
  483. slots = confirm->NUMTMS;
  484. #if defined (SECRETS)
  485. slotinfo [slot].secrets.RESERVED1 = confirm->RESERVED1;
  486. slotinfo [slot].secrets.RESERVED2 = confirm->RESERVED2;
  487. slotinfo [slot].secrets.RESERVED3 = confirm->RESERVED3;
  488. slotinfo [slot].secrets.RESERVED4 = confirm->RESERVED4;
  489. slotinfo [slot].secrets.RESERVED5 = confirm->RESERVED5;
  490. slotinfo [slot].secrets.RESERVED6 = confirm->RESERVED6;
  491. #endif
  492. if (confirm->TONEMAP_TYPE == 0)
  493. {
  494. memcpy (& slotinfo [slot].tonemap0.DATA, confirm->DATA, LE16TOH (confirm->TMNUMACTCARRIERS));
  495. confirm = (struct vs_rx_tonemap_char_confirm *) (message);
  496. free (plc->content);
  497. plc->content = NULL;
  498. continue;
  499. }
  500. if (confirm->TONEMAP_TYPE == 1)
  501. {
  502. memcpy (& slotinfo [slot].tonemap1.DATA, confirm->DATA, LE16TOH (confirm->TMNUMACTCARRIERS));
  503. confirm = (struct vs_rx_tonemap_char_confirm *) (message);
  504. free (plc->content);
  505. plc->content = NULL;
  506. continue;
  507. }
  508. if (confirm->TONEMAP_TYPE == 2)
  509. {
  510. struct cheetah_chain_header
  511. {
  512. uint32_t size;
  513. uint32_t data;
  514. }
  515. * header = (struct cheetah_chain_header *) (confirm->DATA);
  516. uint32_t length = LE32TOH (header->size);
  517. uint8_t * offset = (uint8_t *) (& header->data);
  518. while (length)
  519. {
  520. struct TLVNode * node = (struct TLVNode *) (offset);
  521. uint32_t type = LE32TOH (node->type);
  522. uint32_t size = LE32TOH (node->size);
  523. if (type == 0)
  524. {
  525. memcpy (& slotinfo [slot].tonemap0, & node->data, size);
  526. }
  527. else if (type == 1)
  528. {
  529. memcpy (& slotinfo [slot].tonemap1, & node->data, size);
  530. }
  531. else if (type == 2)
  532. {
  533. memcpy (& slotinfo [slot].precode, & node->data, size);
  534. }
  535. length -= TLVSPAN (node);
  536. offset += TLVSPAN (node);
  537. }
  538. confirm = (struct vs_rx_tonemap_char_confirm *) (message);
  539. free (plc->content);
  540. plc->content = NULL;
  541. continue;
  542. }
  543. error (1, 0, "Unknown Tonemap Type %d", confirm->TONEMAP_TYPE);
  544. }
  545. printf (" AGC");
  546. for (slot = 0; slot < slots; slot++)
  547. {
  548. printf (",%02d", slotinfo [slot].tonemap0.AVG_AGC_GAIN);
  549. }
  550. for (slot = 0; slot < slots; slot++)
  551. {
  552. printf (",%02d", slotinfo [slot].tonemap1.AVG_AGC_GAIN);
  553. }
  554. printf ("\n");
  555. #if defined (SECRETS)
  556. CheetahSecrets (slotinfo, slots);
  557. CheetahTonemap (slotinfo, slots, carriers);
  558. CheetahPrecode (slotinfo, slots);
  559. #else
  560. CheetahTonemap (slotinfo, slots, carriers);
  561. #endif
  562. return (0);
  563. }
  564. /*====================================================================*
  565. *
  566. * int main (int argc, char const * argv[]);
  567. *
  568. *--------------------------------------------------------------------*/
  569. int main (int argc, char const * argv [])
  570. {
  571. extern struct channel channel;
  572. static char const * optv [] =
  573. {
  574. "c:ei:qrt:vx",
  575. "node peer [> stdout]",
  576. "Qualcomm Atheros QCA7500 Tone Map Monitor",
  577. "c n\tcoupling [" LITERAL (PLCOUPLING) "]",
  578. "e\tredirect stderr to stdout",
  579. #if defined (WINPCAP) || defined (LIBPCAP)
  580. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  581. #else
  582. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  583. #endif
  584. "q\tquiet mode",
  585. "r\tdisplay VS_RX_TONE_MAP AGC and tone map data on stdout",
  586. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  587. "v\tverbose mode",
  588. "x\texit on error",
  589. (char const *) (0)
  590. };
  591. static const struct _term_ coupling [] =
  592. {
  593. {
  594. "alt",
  595. "1"
  596. },
  597. {
  598. "mimo",
  599. "0"
  600. },
  601. {
  602. "pri",
  603. "0"
  604. }
  605. };
  606. #include "../plc/plc.c"
  607. signed (* function) (struct plc *, struct slotinfo *, uint8_t, uint16_t) = CheetahTonemap1;
  608. uint16_t carriers = CHEETAH_CARRIERS;
  609. uint8_t slots = PLC_TIME_SLOTS;
  610. signed c;
  611. if (getenv (PLCDEVICE))
  612. {
  613. #if defined (WINPCAP) || defined (LIBPCAP)
  614. channel.ifindex = atoi (getenv (PLCDEVICE));
  615. #else
  616. channel.ifname = strdup (getenv (PLCDEVICE));
  617. #endif
  618. }
  619. optind = 1;
  620. while (~ (c = getoptv (argc, argv, optv)))
  621. {
  622. switch (c)
  623. {
  624. case 'c':
  625. plc.coupling = (byte) (uintspec (synonym (optarg, coupling, SIZEOF (coupling)), 0, UCHAR_MAX));
  626. break;
  627. case 'e':
  628. dup2 (STDOUT_FILENO, STDERR_FILENO);
  629. break;
  630. case 'h':
  631. _setbits (plc.flags, PLC_GRAPH);
  632. break;
  633. case 'i':
  634. #if defined (WINPCAP) || defined (LIBPCAP)
  635. channel.ifindex = atoi (optarg);
  636. #else
  637. channel.ifname = optarg;
  638. #endif
  639. break;
  640. case 'q':
  641. _setbits (channel.flags, CHANNEL_SILENCE);
  642. _setbits (plc.flags, PLC_SILENCE);
  643. break;
  644. case 'r':
  645. function = CheetahTonemap2;
  646. break;
  647. case 't':
  648. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  649. break;
  650. case 'v':
  651. _setbits (channel.flags, CHANNEL_VERBOSE);
  652. _setbits (plc.flags, PLC_VERBOSE);
  653. break;
  654. case 'x':
  655. _setbits (plc.flags, PLC_BAILOUT);
  656. break;
  657. default:
  658. break;
  659. }
  660. }
  661. argc -= optind;
  662. argv += optind;
  663. if (! argc || ! argv)
  664. {
  665. error (1, ECANCELED, "No node address given");
  666. }
  667. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  668. {
  669. error (1, errno, PLC_BAD_MAC, * argv);
  670. }
  671. argc--;
  672. argv++;
  673. if (! argc || ! argv)
  674. {
  675. error (1, ECANCELED, "No peer address given");
  676. }
  677. if (! hexencode (plc.RDA, sizeof (plc.RDA), synonym (* argv, devices, SIZEOF (devices))))
  678. {
  679. error (1, errno, PLC_BAD_MAC, * argv);
  680. }
  681. argc--;
  682. argv++;
  683. openchannel (& channel);
  684. if (! (plc.message = malloc (sizeof (* plc.message))))
  685. {
  686. error (1, errno, PLC_NOMEMORY);
  687. }
  688. function (& plc, slotinfo, slots, carriers);
  689. free (plc.content);
  690. free (plc.message);
  691. closechannel (& channel);
  692. return (0);
  693. }