amphost.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. * system header files;
  10. *--------------------------------------------------------------------*/
  11. #include <unistd.h>
  12. #include <stdlib.h>
  13. #include <limits.h>
  14. #include <string.h>
  15. #include <ctype.h>
  16. /*====================================================================*
  17. * custom header files;
  18. *--------------------------------------------------------------------*/
  19. #include "../tools/getoptv.h"
  20. #include "../tools/putoptv.h"
  21. #include "../tools/memory.h"
  22. #include "../tools/number.h"
  23. #include "../tools/types.h"
  24. #include "../tools/flags.h"
  25. #include "../tools/files.h"
  26. #include "../tools/error.h"
  27. #include "../ram/nvram.h"
  28. #include "../ram/sdram.h"
  29. #include "../plc/plc.h"
  30. #include "../nvm/nvm.h"
  31. #include "../pib/pib.h"
  32. /*====================================================================*
  33. * custom source files;
  34. *--------------------------------------------------------------------*/
  35. #ifndef MAKEFILE
  36. #include "../plc/chipset.c"
  37. #include "../plc/Confirm.c"
  38. #include "../plc/Devices.c"
  39. #include "../plc/Failure.c"
  40. #include "../plc/FactoryDefaults.c"
  41. #include "../plc/FlashDevice1.c"
  42. #include "../plc/FlashNVM.c"
  43. #include "../plc/HostActionResponse.c"
  44. #include "../plc/Request.c"
  45. #include "../plc/ResetDevice.c"
  46. #include "../plc/ReadMME.c"
  47. #include "../plc/SendMME.c"
  48. #include "../plc/WaitForReset.c"
  49. #include "../plc/WaitForRestart.c"
  50. #include "../plc/WaitForStart.c"
  51. #include "../plc/WriteExecuteFirmware1.c"
  52. #include "../plc/WriteExecutePIB.c"
  53. #include "../plc/WriteMEM.c"
  54. #include "../plc/WriteNVM.c"
  55. #include "../plc/WritePIB.c"
  56. #include "../plc/ReadFirmware1.c"
  57. #include "../plc/ReadParameters1.c"
  58. #include "../plc/InitDevice1.c"
  59. #include "../plc/BootDevice1.c"
  60. #include "../plc/BootFirmware1.c"
  61. #include "../plc/BootParameters1.c"
  62. #include "../plc/WriteFirmware1.c"
  63. #include "../plc/StartFirmware1.c"
  64. #include "../plc/ModuleRead.c"
  65. #endif
  66. #ifndef MAKEFILE
  67. #include "../tools/getoptv.c"
  68. #include "../tools/putoptv.c"
  69. #include "../tools/version.c"
  70. #include "../tools/uintspec.c"
  71. #include "../tools/checkfilename.c"
  72. #include "../tools/hexdecode.c"
  73. #include "../tools/hexstring.c"
  74. #include "../tools/todigit.c"
  75. #include "../tools/hexdump.c"
  76. #include "../tools/checksum32.c"
  77. #include "../tools/fdchecksum32.c"
  78. #include "../tools/error.c"
  79. #include "../tools/strfbits.c"
  80. #include "../tools/typename.c"
  81. #endif
  82. #ifndef MAKEFILE
  83. #include "../ether/openchannel.c"
  84. #include "../ether/closechannel.c"
  85. #include "../ether/readpacket.c"
  86. #include "../ether/sendpacket.c"
  87. #include "../ether/channel.c"
  88. #endif
  89. #ifndef MAKEFILE
  90. #include "../mme/EthernetHeader.c"
  91. #include "../mme/QualcommHeader.c"
  92. #include "../mme/UnwantedMessage.c"
  93. #include "../mme/MMECode.c"
  94. #endif
  95. #ifndef MAKEFILE
  96. #include "../ram/sdramfile.c"
  97. #include "../ram/sdrampeek.c"
  98. #endif
  99. #ifndef MAKEFILE
  100. #include "../nvm/lightning_nvm_file.c"
  101. #endif
  102. #ifndef MAKEFILE
  103. #include "../pib/lightning_pib_peek.c"
  104. #include "../pib/lightning_pib_file.c"
  105. #endif
  106. #ifndef MAKEFILE
  107. #include "../key/keys.c"
  108. #endif
  109. /*====================================================================*
  110. * program constants;
  111. *--------------------------------------------------------------------*/
  112. #define NEWPIB "user.pib"
  113. #define NEWNVM "user.nvm"
  114. /*====================================================================*
  115. *
  116. * signed function (struct plc * plc);
  117. *
  118. * plc.h
  119. *
  120. * wait indefinitely for VS_HOST_ACTION messages; service the device
  121. * as directed; this function is for demonstration and experimentation
  122. * only; it will stop dead - like a bug! - on error;
  123. *
  124. * Contributor(s):
  125. * Charles Maier <cmaier@qca.qualcomm.com>
  126. *
  127. *--------------------------------------------------------------------*/
  128. signed function (struct plc * plc)
  129. {
  130. struct channel * channel = (struct channel *) (plc->channel);
  131. struct message * message = (struct message *) (plc->message);
  132. static char const * actions [] =
  133. {
  134. "start device",
  135. "store firmware",
  136. "store parameters",
  137. "update host",
  138. "config memory",
  139. "restore defaults",
  140. "unknown"
  141. };
  142. #ifndef __GNUC__
  143. #pragma pack (push,1)
  144. #endif
  145. struct __packed vs_host_action_ind
  146. {
  147. struct ethernet_hdr ethernet;
  148. struct qualcomm_hdr qualcomm;
  149. uint8_t MACTION;
  150. uint8_t MAJOR_VERSION;
  151. uint8_t MINOR_VERSION;
  152. }
  153. * indicate = (struct vs_host_action_ind *) (message);
  154. #ifndef __GNUC__
  155. #pragma pack (pop)
  156. #endif
  157. char const * FactoryNVM = plc->NVM.name;
  158. char const * FactoryPIB = plc->PIB.name;
  159. signed status;
  160. signed action;
  161. Request (plc, "Waiting for Host Action");
  162. while (1)
  163. {
  164. status = ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_IND));
  165. if (status < 0)
  166. {
  167. break;
  168. }
  169. if (status > 0)
  170. {
  171. printf ("\n");
  172. if (indicate->MACTION < SIZEOF (actions))
  173. {
  174. Confirm (plc, "Host Action Request is (%d) %s.", indicate->MACTION, actions [indicate->MACTION]);
  175. }
  176. else
  177. {
  178. error (0, ENOTSUP, "Host Action 0x%0X", indicate->MACTION);
  179. continue;
  180. }
  181. action = indicate->MACTION;
  182. memcpy (channel->peer, indicate->ethernet.OSA, sizeof (channel->peer));
  183. if (HostActionResponse (plc))
  184. {
  185. return (-1);
  186. }
  187. if (action == 0x00)
  188. {
  189. if (BootDevice1 (plc))
  190. {
  191. return (-1);
  192. }
  193. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  194. {
  195. FlashDevice1 (plc);
  196. }
  197. continue;
  198. }
  199. if (action == 0x01)
  200. {
  201. close (plc->NVM.file);
  202. if (ReadFirmware1 (plc))
  203. {
  204. return (-1);
  205. }
  206. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  207. {
  208. error (1, errno, "%s", plc->NVM.name);
  209. }
  210. if (ResetDevice (plc))
  211. {
  212. return (-1);
  213. }
  214. continue;
  215. }
  216. if (action == 0x02)
  217. {
  218. close (plc->PIB.file);
  219. if (ReadParameters1 (plc))
  220. {
  221. return (-1);
  222. }
  223. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  224. {
  225. error (1, errno, "%s", plc->PIB.name);
  226. }
  227. if (ResetDevice (plc))
  228. {
  229. return (-1);
  230. }
  231. continue;
  232. }
  233. if (action == 0x03)
  234. {
  235. close (plc->PIB.file);
  236. if (ReadParameters1 (plc))
  237. {
  238. return (-1);
  239. }
  240. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  241. {
  242. error (1, errno, "%s", plc->PIB.name);
  243. }
  244. close (plc->NVM.file);
  245. if (ReadFirmware1 (plc))
  246. {
  247. return (-1);
  248. }
  249. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  250. {
  251. error (1, errno, "%s", plc->NVM.name);
  252. }
  253. if (ResetDevice (plc))
  254. {
  255. return (-1);
  256. }
  257. continue;
  258. }
  259. if (action == 0x04)
  260. {
  261. if (InitDevice1 (plc))
  262. {
  263. return (-1);
  264. }
  265. continue;
  266. }
  267. if (action == 0x05)
  268. {
  269. close (plc->PIB.file);
  270. if ((plc->PIB.file = open (plc->PIB.name = FactoryPIB, O_BINARY | O_RDONLY)) == -1)
  271. {
  272. error (1, errno, "%s", plc->PIB.name);
  273. }
  274. close (plc->NVM.file);
  275. if ((plc->NVM.file = open (plc->NVM.name = FactoryNVM, O_BINARY | O_RDONLY)) == -1)
  276. {
  277. error (1, errno, "%s", plc->NVM.name);
  278. }
  279. if (ResetDevice (plc))
  280. {
  281. return (-1);
  282. }
  283. continue;
  284. }
  285. if (action == 0x06)
  286. {
  287. close (plc->PIB.file);
  288. if (ReadParameters1 (plc))
  289. {
  290. return (-1);
  291. }
  292. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  293. {
  294. error (1, errno, "%s", plc->PIB.name);
  295. }
  296. continue;
  297. }
  298. if (action == 0x07)
  299. {
  300. error (0, 0, "Host has rebooted.");
  301. continue;
  302. }
  303. error (0, ENOSYS, "Host Action 0x%02X", action);
  304. }
  305. }
  306. return (0);
  307. }
  308. /*====================================================================*
  309. *
  310. * int main (int argc, char const * argv[]);
  311. *
  312. * parse command line, populate plc structure and perform selected
  313. * operations; show help summary when asked; see getoptv and putoptv
  314. * to understand command line parsing and help summary display; see
  315. * plc.h for the definition of struct plc;
  316. *
  317. * the default interface is eth1 because most people use eth0 as
  318. * their principle network connection; you can specify another
  319. * interface with -i or define environment string PLC to make
  320. * that the default interface and save typing;
  321. *
  322. *--------------------------------------------------------------------*/
  323. int main (int argc, char const * argv [])
  324. {
  325. extern struct channel channel;
  326. static char const * optv [] =
  327. {
  328. "Fi:n:N:p:P:qt:vx",
  329. "-N file -P file [-n file] [-p file]",
  330. "Qualcomm Atheros INT6400 Host Emulator",
  331. "F[F]\tflash (force) NVRAM using VS_MOD_NVM",
  332. #if defined (WINPCAP) || defined (LIBPCAP)
  333. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  334. #else
  335. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  336. #endif
  337. "n f\tread NVM from device into file using VS_RD_MOD",
  338. "N f\twrite NVM file to device using VS_WR_MEM",
  339. "p f\tread PIB from device into file using VS_RD_MOD",
  340. "P f\twrite PIB file to device using VS_WR_MEM",
  341. "q\tquiet mode",
  342. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  343. "v\tverbose mode",
  344. "x\texit on error",
  345. (char const *) (0)
  346. };
  347. #include "../plc/plc.c"
  348. signed c;
  349. if (getenv (PLCDEVICE))
  350. {
  351. #if defined (WINPCAP) || defined (LIBPCAP)
  352. channel.ifindex = atoi (getenv (PLCDEVICE));
  353. #else
  354. channel.ifname = strdup (getenv (PLCDEVICE));
  355. #endif
  356. }
  357. optind = 1;
  358. while (~ (c = getoptv (argc, argv, optv)))
  359. {
  360. switch (c)
  361. {
  362. case 'F':
  363. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  364. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  365. {
  366. _setbits (plc.module, VS_MODULE_FORCE);
  367. }
  368. _setbits (plc.flags, PLC_FLASH_DEVICE);
  369. break;
  370. case 'i':
  371. #if defined (WINPCAP) || defined (LIBPCAP)
  372. channel.ifindex = atoi (optarg);
  373. #else
  374. channel.ifname = optarg;
  375. #endif
  376. break;
  377. case 'N':
  378. if (! checkfilename (optarg))
  379. {
  380. error (1, EINVAL, "%s", optarg);
  381. }
  382. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  383. {
  384. error (1, errno, "%s", plc.NVM.name);
  385. }
  386. if (lightning_nvm_file (& plc.NVM))
  387. {
  388. error (1, errno, "Bad lightning image file: %s", plc.NVM.name);
  389. }
  390. _setbits (plc.flags, PLC_WRITE_MAC);
  391. break;
  392. case 'n':
  393. if (! checkfilename (optarg))
  394. {
  395. error (1, EINVAL, "%s", optarg);
  396. }
  397. if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  398. {
  399. error (1, errno, "%s", plc.nvm.name);
  400. }
  401. break;
  402. case 'P':
  403. if (! checkfilename (optarg))
  404. {
  405. error (1, EINVAL, "%s", optarg);
  406. }
  407. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  408. {
  409. error (1, errno, "%s", plc.PIB.name);
  410. }
  411. if (lightning_pib_file (& plc.PIB))
  412. {
  413. error (1, errno, "Bad lightning parameter file: %s", plc.PIB.name);
  414. }
  415. _setbits (plc.flags, PLC_WRITE_PIB);
  416. break;
  417. case 'p':
  418. if (! checkfilename (optarg))
  419. {
  420. error (1, EINVAL, "%s", optarg);
  421. }
  422. if ((plc.pib.file = open (plc.pib.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  423. {
  424. error (1, errno, "%s", plc.pib.name);
  425. }
  426. break;
  427. case 'q':
  428. _setbits (channel.flags, CHANNEL_SILENCE);
  429. _setbits (plc.flags, PLC_SILENCE);
  430. break;
  431. case 't':
  432. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  433. break;
  434. case 'v':
  435. _setbits (channel.flags, CHANNEL_VERBOSE);
  436. _setbits (plc.flags, PLC_VERBOSE);
  437. break;
  438. case 'x':
  439. _setbits (plc.flags, PLC_BAILOUT);
  440. break;
  441. default:
  442. break;
  443. }
  444. }
  445. argc -= optind;
  446. argv += optind;
  447. if (argc)
  448. {
  449. error (1, ENOTSUP, ERROR_TOOMANY);
  450. }
  451. if (plc.NVM.file == -1)
  452. {
  453. error (1, ECANCELED, "No host NVM file named");
  454. }
  455. if (plc.PIB.file == -1)
  456. {
  457. error (1, ECANCELED, "No host PIB file named");
  458. }
  459. if (plc.nvm.file == -1)
  460. {
  461. if ((plc.nvm.file = open (plc.nvm.name = NEWNVM, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  462. {
  463. error (1, errno, "%s", plc.nvm.name);
  464. }
  465. }
  466. if (plc.pib.file == -1)
  467. {
  468. if ((plc.pib.file = open (plc.pib.name = NEWPIB, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  469. {
  470. error (1, errno, "%s", plc.pib.name);
  471. }
  472. }
  473. openchannel (& channel);
  474. if (! (plc.message = malloc (sizeof (* plc.message))))
  475. {
  476. error (1, errno, PLC_NOMEMORY);
  477. }
  478. function (& plc);
  479. free (plc.message);
  480. closechannel (& channel);
  481. exit (0);
  482. }