amptool.c 16 KB

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