amptool2.c 16 KB

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