plctool.c 18 KB

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