int6k.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6k.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. /*====================================================================*
  18. * system header files;
  19. *--------------------------------------------------------------------*/
  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/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. #include "../ether/channel.h"
  38. #include "../key/HPAVKey.h"
  39. #include "../key/keys.h"
  40. #include "../ram/sdram.h"
  41. #include "../pib/pib.h"
  42. #include "../nvm/nvm.h"
  43. /*====================================================================*
  44. * custom source files;
  45. *--------------------------------------------------------------------*/
  46. #ifndef MAKEFILE
  47. #include "../plc/Attributes1.c"
  48. #include "../plc/chipset.c"
  49. #include "../plc/Devices.c"
  50. #include "../plc/Confirm.c"
  51. #include "../plc/Display.c"
  52. #include "../plc/Failure.c"
  53. #include "../plc/FlashDevice1.c"
  54. #include "../plc/FlashNVM.c"
  55. #include "../plc/FactoryDefaults.c"
  56. #include "../plc/Identity1.c"
  57. #include "../plc/HostActionResponse.c"
  58. #include "../plc/NetInfo1.c"
  59. #include "../plc/NVRAMInfo.c"
  60. #include "../plc/PushButton.c"
  61. #include "../plc/SDRAMInfo.c"
  62. #include "../plc/SetNMK.c"
  63. #include "../plc/Request.c"
  64. #include "../plc/ReadFirmware1.c"
  65. #include "../plc/ReadMME.c"
  66. #include "../plc/ReadMFG.c"
  67. #include "../plc/ReadParameters1.c"
  68. #include "../plc/ResetDevice.c"
  69. #include "../plc/SendMME.c"
  70. #include "../plc/VersionInfo1.c"
  71. #include "../plc/WriteCFG.c"
  72. #include "../plc/WriteNVM.c"
  73. #include "../plc/WritePIB.c"
  74. #include "../plc/WaitForReset.c"
  75. #include "../plc/WaitForRestart.c"
  76. #include "../plc/WaitForStart.c"
  77. #include "../plc/WatchdogReport.c"
  78. #include "../plc/StationRole.c"
  79. #include "../plc/ModuleRead.c"
  80. #endif
  81. #ifndef MAKEFILE
  82. #include "../tools/synonym.c"
  83. #include "../tools/getoptv.c"
  84. #include "../tools/putoptv.c"
  85. #include "../tools/version.c"
  86. #include "../tools/uintspec.c"
  87. #include "../tools/hexdump.c"
  88. #include "../tools/hexencode.c"
  89. #include "../tools/hexdecode.c"
  90. #include "../tools/hexstring.c"
  91. #include "../tools/todigit.c"
  92. #include "../tools/checkfilename.c"
  93. #include "../tools/checksum32.c"
  94. #include "../tools/fdchecksum32.c"
  95. #include "../tools/strfbits.c"
  96. #include "../tools/typename.c"
  97. #include "../tools/error.c"
  98. #endif
  99. #ifndef MAKEFILE
  100. #include "../ether/openchannel.c"
  101. #include "../ether/closechannel.c"
  102. #include "../ether/readpacket.c"
  103. #include "../ether/sendpacket.c"
  104. #include "../ether/channel.c"
  105. #endif
  106. #ifndef MAKEFILE
  107. #include "../ram/nvram.c"
  108. #include "../ram/sdramfile.c"
  109. #include "../ram/sdrampeek.c"
  110. #endif
  111. #ifndef MAKEFILE
  112. #include "../nvm/lightning_nvm_file.c"
  113. #endif
  114. #ifndef MAKEFILE
  115. #include "../pib/lightning_pib_file.c"
  116. #include "../pib/lightning_pib_peek.c"
  117. #endif
  118. #ifndef MAKEFILE
  119. #include "../mme/MMECode.c"
  120. #include "../mme/EthernetHeader.c"
  121. #include "../mme/QualcommHeader.c"
  122. #include "../mme/QualcommHeader1.c"
  123. #include "../mme/UnwantedMessage.c"
  124. #endif
  125. #ifndef MAKEFILE
  126. #include "../key/keys.c"
  127. #endif
  128. /*====================================================================*
  129. * program constants;
  130. *--------------------------------------------------------------------*/
  131. #define INT6K_WAIT 0
  132. #define INT6K_LOOP 1
  133. /*====================================================================*
  134. * program variables;
  135. *--------------------------------------------------------------------*/
  136. static struct _term_ const modules [] =
  137. {
  138. {
  139. "nvm",
  140. "1"
  141. },
  142. {
  143. "pib",
  144. "2"
  145. },
  146. {
  147. "both",
  148. "3"
  149. }
  150. };
  151. static struct _term_ const buttons [] =
  152. {
  153. {
  154. "join",
  155. "1"
  156. },
  157. {
  158. "leave",
  159. "2"
  160. },
  161. {
  162. "reset",
  163. "4"
  164. },
  165. {
  166. "status",
  167. "3"
  168. }
  169. };
  170. /*====================================================================*
  171. *
  172. * void manager (struct plc * plc, signed count, signed pause);
  173. *
  174. * perform operations in logical order despite any order specfied
  175. * on the command line; for example read PIB before writing PIB;
  176. *
  177. * operation order is controlled by the order of "if" statements
  178. * shown here; the entire operation sequence can be repeated with
  179. * an optional pause between each iteration;
  180. *
  181. *--------------------------------------------------------------------*/
  182. static void manager (struct plc * plc, signed count, signed pause)
  183. {
  184. while (count--)
  185. {
  186. if (_anyset (plc->flags, PLC_VERSION))
  187. {
  188. VersionInfo1 (plc);
  189. }
  190. if (_anyset (plc->flags, PLC_ATTRIBUTES))
  191. {
  192. Attributes1 (plc);
  193. }
  194. if (_anyset (plc->flags, PLC_WATCHDOG_REPORT))
  195. {
  196. WatchdogReport (plc);
  197. }
  198. if (_anyset (plc->flags, PLC_NVRAM_INFO))
  199. {
  200. NVRAMInfo (plc);
  201. }
  202. if (_anyset (plc->flags, PLC_SDRAM_INFO))
  203. {
  204. SDRAMInfo (plc);
  205. }
  206. if (_anyset (plc->flags, PLC_READ_IDENTITY))
  207. {
  208. Identity1 (plc);
  209. }
  210. if (_anyset (plc->flags, PLC_NETWORK))
  211. {
  212. NetInfo1 (plc);
  213. }
  214. if (_anyset (plc->flags, PLC_SDRAM_CONFIG))
  215. {
  216. WriteCFG (plc);
  217. }
  218. if (_anyset (plc->flags, PLC_WRITE_MAC))
  219. {
  220. WriteNVM (plc);
  221. }
  222. if (_anyset (plc->flags, PLC_READ_MAC))
  223. {
  224. ReadFirmware1 (plc);
  225. }
  226. if (_anyset (plc->flags, PLC_WRITE_PIB))
  227. {
  228. WritePIB (plc);
  229. }
  230. if (_anyset (plc->flags, PLC_READ_PIB))
  231. {
  232. ReadParameters1 (plc);
  233. }
  234. if (_anyset (plc->flags, PLC_HOST_ACTION))
  235. {
  236. HostActionResponse (plc);
  237. }
  238. if (_anyset (plc->flags, PLC_PUSH_BUTTON))
  239. {
  240. PushButton (plc);
  241. }
  242. if (_anyset (plc->flags, (PLC_SETLOCALKEY | PLC_SETREMOTEKEY)))
  243. {
  244. SetNMK (plc);
  245. }
  246. if (_anyset (plc->flags, PLC_FACTORY_DEFAULTS))
  247. {
  248. FactoryDefaults (plc);
  249. }
  250. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  251. {
  252. FlashNVM (plc);
  253. WaitForRestart (plc);
  254. }
  255. if (_anyset (plc->flags, PLC_RESET_DEVICE))
  256. {
  257. ResetDevice (plc);
  258. }
  259. sleep (pause);
  260. }
  261. return;
  262. }
  263. /*====================================================================*
  264. *
  265. * int main (int argc, char const * argv[]);
  266. *
  267. * parse command line, populate plc structure and perform selected
  268. * operations; show help summary if asked; see getoptv and putoptv
  269. * to understand command line parsing and help summary display; see
  270. * plc.h for the definition of struct plc;
  271. *
  272. * the command line accepts multiple MAC addresses and the program
  273. * performs the specified operations on each address, in turn; the
  274. * address order is significant but the option order is not; the
  275. * default address is a local broadcast that causes all devices on
  276. * the local H1 interface to respond but not those at the remote
  277. * end of the powerline;
  278. *
  279. * the default address is 00:B0:52:00:00:01; omitting the address
  280. * will automatically address the local device; some options will
  281. * cancel themselves if this makes no sense;
  282. *
  283. * the default interface is eth1 because most people use eth0 as
  284. * their principle network connection; you can specify another
  285. * interface with -i or define environment string PLC to make
  286. * that the default interface and save typing;
  287. *
  288. *--------------------------------------------------------------------*/
  289. int main (int argc, char const * argv [])
  290. {
  291. extern struct channel channel;
  292. extern struct _term_ const daks [];
  293. extern struct _term_ const nmks [];
  294. static char const * optv [] =
  295. {
  296. "aB:C:d:D:efFHi:IJ:K:l:mMn:N:p:P:QqrRS:st:Tvw:x12",
  297. "device [device] [...]",
  298. "Qualcomm Atheros INT6x00 Powerline Device Manager",
  299. "a\tread device attributes using VS_OP_ATTRIBUTES",
  300. "B n\tperform pushbutton action (n) using MS_PB_ENC [1|2|3|4|'join'|'leave'|'status'|'reset']",
  301. "C n\tflash NVRAM with module (n) using VS_MOD_NVM [1|2|3|'nvm'|'pib'|'both']",
  302. "d f\tdump and clear watchdog report to file (f) using VS_WD_RPT",
  303. "D x\tset DAK to (x) for option -J [" DAK1 "]",
  304. "e\tredirect stderr to stdout",
  305. "f\tread NVRAM Configuration using VS_GET_NVM",
  306. "F[F]\tflash [force] NVRAM with PIB and firmware using VS_MOD_NVM",
  307. "H\tstop host action requests using VS_HOST_ACTION.IND",
  308. #if defined (WINPCAP) || defined (LIBPCAP)
  309. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  310. #else
  311. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  312. #endif
  313. "I\tread device identity using VS_RD_MOD",
  314. "J x\tset NMK on remote device (x) via local device using VS_SET_KEY (see -K)",
  315. "K x\tset NMK to (x) for options -J and -M [" NMK1 "]",
  316. "l n\tloop (n) times [" LITERAL (INT6K_LOOP) "]",
  317. "m\tread network membership information using VS_NW_INFO",
  318. "M\tset NMK on local device using VS_SET_KEY (see -K)",
  319. "n f\tread NVM from SDRAM to file (f) using VS_RD_MOD",
  320. "N f\twrite NVM file (f) to SDRAM using VS_WR_MOD",
  321. "p f\tread PIB from SDRAM to file (f) using VS_RD_MOD",
  322. "P f\twrite PIB file (f) to SDRAM using VS_WR_MOD",
  323. "q\tquiet mode",
  324. "Q\tquick flash (return immediately)",
  325. "r\tread hardware and firmware revision using VS_SW_VER",
  326. "R\treset device using VS_RS_DEV",
  327. "s\tread SDRAM Configuration using VS_RD_CBLOCK",
  328. "S f\twrite an SDRAM Configuration file (f) using VS_SET_SDRAM",
  329. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  330. "T\trestore factory defaults using VS_FAC_DEFAULTS",
  331. "v\tverbose mode",
  332. "w n\tpause (n) seconds [" LITERAL (INT6K_WAIT) "]",
  333. "x\texit on error",
  334. "1\tsuppress confirm MME when resetting device [option -R only]",
  335. "2\tboot from host after reset [option -R only]",
  336. (char const *) (0)
  337. };
  338. #include "../plc/plc.c"
  339. signed loop = INT6K_LOOP;
  340. signed wait = INT6K_WAIT;
  341. signed c;
  342. if (getenv (PLCDEVICE))
  343. {
  344. #if defined (WINPCAP) || defined (LIBPCAP)
  345. channel.ifindex = atoi (getenv (PLCDEVICE));
  346. #else
  347. channel.ifname = strdup (getenv (PLCDEVICE));
  348. #endif
  349. }
  350. optind = 1;
  351. while (~ (c = getoptv (argc, argv, optv)))
  352. {
  353. switch (c)
  354. {
  355. case 'a':
  356. _setbits (plc.flags, PLC_ATTRIBUTES);
  357. break;
  358. case 'B':
  359. _setbits (plc.flags, PLC_PUSH_BUTTON);
  360. plc.pushbutton = (unsigned) (uintspec (synonym (optarg, buttons, SIZEOF (buttons)), 0, UCHAR_MAX));
  361. break;
  362. case 'C':
  363. _setbits (plc.flags, PLC_FLASH_DEVICE);
  364. plc.module = (unsigned) (uintspec (synonym (optarg, modules, SIZEOF (modules)), 0, UCHAR_MAX));
  365. break;
  366. case 'd':
  367. _setbits (plc.flags, PLC_WATCHDOG_REPORT);
  368. if (! checkfilename (optarg))
  369. {
  370. error (1, EINVAL, "%s", optarg);
  371. }
  372. if ((plc.rpt.file = open (plc.rpt.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  373. {
  374. error (1, errno, "%s", plc.rpt.name);
  375. }
  376. #ifndef WIN32
  377. chown (optarg, getuid (), getgid ());
  378. #endif
  379. plc.readaction = 3;
  380. break;
  381. case 'D':
  382. if (! hexencode (plc.DAK, sizeof (plc.DAK), synonym (optarg, daks, SIZEOF (daks))))
  383. {
  384. error (1, errno, PLC_BAD_DAK, optarg);
  385. }
  386. break;
  387. case 'e':
  388. dup2 (STDOUT_FILENO, STDERR_FILENO);
  389. break;
  390. case 'f':
  391. _setbits (plc.flags, PLC_NVRAM_INFO);
  392. break;
  393. case 'F':
  394. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  395. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  396. {
  397. _setbits (plc.module, VS_MODULE_FORCE);
  398. }
  399. _setbits (plc.flags, PLC_FLASH_DEVICE);
  400. break;
  401. case 'H':
  402. _setbits (plc.flags, PLC_HOST_ACTION);
  403. break;
  404. case 'I':
  405. _setbits (plc.flags, PLC_READ_IDENTITY);
  406. break;
  407. case 'i':
  408. #if defined (WINPCAP) || defined (LIBPCAP)
  409. channel.ifindex = atoi (optarg);
  410. #else
  411. channel.ifname = optarg;
  412. #endif
  413. break;
  414. case 'J':
  415. if (! hexencode (plc.RDA, sizeof (plc.RDA), (char const *) (optarg)))
  416. {
  417. error (1, errno, PLC_BAD_MAC, optarg);
  418. }
  419. _setbits (plc.flags, PLC_SETREMOTEKEY);
  420. break;
  421. case 'K':
  422. if (! hexencode (plc.NMK, sizeof (plc.NMK), synonym (optarg, nmks, SIZEOF (nmks))))
  423. {
  424. error (1, errno, PLC_BAD_DAK, optarg);
  425. }
  426. break;
  427. case 'M':
  428. _setbits (plc.flags, PLC_SETLOCALKEY);
  429. break;
  430. case 'l':
  431. loop = (unsigned) (uintspec (optarg, 0, UINT_MAX));
  432. break;
  433. case 'm':
  434. _setbits (plc.flags, PLC_NETWORK);
  435. break;
  436. case 'N':
  437. if (! checkfilename (optarg))
  438. {
  439. error (1, EINVAL, "%s", optarg);
  440. }
  441. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  442. {
  443. error (1, errno, "%s", plc.NVM.name);
  444. }
  445. if (lightning_nvm_file (& plc.NVM))
  446. {
  447. error (1, errno, "Bad thunderbolt image file: %s", plc.NVM.name);
  448. }
  449. _setbits (plc.flags, PLC_WRITE_MAC);
  450. break;
  451. case 'n':
  452. if (! checkfilename (optarg))
  453. {
  454. error (1, EINVAL, "%s", optarg);
  455. }
  456. if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  457. {
  458. error (1, errno, "%s", plc.nvm.name);
  459. }
  460. #ifndef WIN32
  461. chown (optarg, getuid (), getgid ());
  462. #endif
  463. _setbits (plc.flags, PLC_READ_MAC);
  464. break;
  465. case 'P':
  466. if (! checkfilename (optarg))
  467. {
  468. error (1, EINVAL, "%s", optarg);
  469. }
  470. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  471. {
  472. error (1, errno, "%s", plc.PIB.name);
  473. }
  474. if (lightning_pib_file (& plc.PIB))
  475. {
  476. error (1, errno, "Bad thunderbolt parameter file: %s", plc.PIB.name);
  477. }
  478. _setbits (plc.flags, PLC_WRITE_PIB);
  479. break;
  480. case 'p':
  481. if (! checkfilename (optarg))
  482. {
  483. error (1, EINVAL, "%s", optarg);
  484. }
  485. if ((plc.pib.file = open (plc.pib.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  486. {
  487. error (1, errno, "%s", plc.pib.name);
  488. }
  489. #ifndef WIN32
  490. chown (optarg, getuid (), getgid ());
  491. #endif
  492. _setbits (plc.flags, PLC_READ_PIB);
  493. break;
  494. case 'Q':
  495. _setbits (plc.flags, PLC_QUICK_FLASH);
  496. break;
  497. case 'q':
  498. _setbits (channel.flags, CHANNEL_SILENCE);
  499. _setbits (plc.flags, PLC_SILENCE);
  500. break;
  501. case 'R':
  502. _setbits (plc.flags, PLC_RESET_DEVICE);
  503. break;
  504. case 'r':
  505. _setbits (plc.flags, PLC_VERSION);
  506. break;
  507. case 'S':
  508. if (! checkfilename (optarg))
  509. {
  510. error (1, EINVAL, "%s", optarg);
  511. }
  512. if ((plc.CFG.file = open (plc.CFG.name = optarg, O_BINARY | O_RDONLY)) == - 1)
  513. {
  514. error (1, errno, "%s", plc.CFG.name);
  515. }
  516. if (sdramfile (plc.CFG.file, optarg, plc.flags))
  517. {
  518. error (1, ECANCELED, "SDRAM config file %s is corrupt", optarg);
  519. }
  520. _setbits (plc.flags, PLC_SDRAM_CONFIG);
  521. break;
  522. case 's':
  523. _setbits (plc.flags, PLC_SDRAM_INFO);
  524. break;
  525. case 't':
  526. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  527. break;
  528. case 'T':
  529. _setbits (plc.flags, PLC_FACTORY_DEFAULTS);
  530. break;
  531. case 'v':
  532. _setbits (channel.flags, CHANNEL_VERBOSE);
  533. _setbits (plc.flags, PLC_VERBOSE);
  534. break;
  535. case 'V':
  536. _setbits (plc.flags, PLC_SNIFFER);
  537. plc.action = (uint8_t) (uintspec (optarg, 0, UCHAR_MAX));
  538. break;
  539. case 'w':
  540. wait = (unsigned) (uintspec (optarg, 0, 3600));
  541. break;
  542. case 'x':
  543. _setbits (plc.flags, PLC_BAILOUT);
  544. break;
  545. case '1':
  546. _setbits (plc.flag2, PLC_FLAG2_CFM_ACT);
  547. break;
  548. case '2':
  549. _setbits (plc.flag2, PLC_FLAG2_BT_SRC);
  550. break;
  551. default:
  552. break;
  553. }
  554. }
  555. argc -= optind;
  556. argv += optind;
  557. if (argc != 1)
  558. {
  559. if (plc.nvm.file != -1)
  560. {
  561. error (1, ECANCELED, PLC_NODEVICE);
  562. }
  563. if (plc.pib.file != -1)
  564. {
  565. error (1, ECANCELED, PLC_NODEVICE);
  566. }
  567. if (plc.rpt.file != -1)
  568. {
  569. error (1, ECANCELED, PLC_NODEVICE);
  570. }
  571. }
  572. openchannel (& channel);
  573. if (! (plc.message = malloc (sizeof (* plc.message))))
  574. {
  575. error (1, errno, PLC_NOMEMORY);
  576. }
  577. if (! argc)
  578. {
  579. manager (& plc, loop, wait);
  580. }
  581. while ((argc) && (* argv))
  582. {
  583. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  584. {
  585. error (1, errno, PLC_BAD_MAC, * argv);
  586. }
  587. manager (& plc, loop, wait);
  588. argc--;
  589. argv++;
  590. }
  591. free (plc.message);
  592. closechannel (& channel);
  593. exit (0);
  594. }