ampboot.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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 <string.h>
  14. #include <limits.h>
  15. #include <fcntl.h>
  16. #include <ctype.h>
  17. #include <sys/stat.h>
  18. /*====================================================================*
  19. * custom header files;
  20. *--------------------------------------------------------------------*/
  21. #include "../tools/getoptv.h"
  22. #include "../tools/putoptv.h"
  23. #include "../tools/memory.h"
  24. #include "../tools/symbol.h"
  25. #include "../tools/number.h"
  26. #include "../tools/types.h"
  27. #include "../tools/flags.h"
  28. #include "../tools/files.h"
  29. #include "../tools/error.h"
  30. #include "../ram/nvram.h"
  31. #include "../ram/sdram.h"
  32. #include "../plc/plc.h"
  33. #include "../nvm/nvm.h"
  34. #include "../pib/pib.h"
  35. #include "../mme/mme.h"
  36. /*====================================================================*
  37. * custom source files;
  38. *--------------------------------------------------------------------*/
  39. #ifndef MAKEFILE
  40. #include "../plc/chipset.c"
  41. #include "../plc/Confirm.c"
  42. #include "../plc/Devices.c"
  43. #include "../plc/Display.c"
  44. #include "../plc/Failure.c"
  45. #include "../plc/FlashNVM.c"
  46. #include "../plc/ReadMME.c"
  47. #include "../plc/Request.c"
  48. #include "../plc/SendMME.c"
  49. #include "../plc/WriteMEM.c"
  50. #include "../plc/WriteNVM.c"
  51. #include "../plc/WritePIB.c"
  52. #include "../plc/WaitForReset.c"
  53. #include "../plc/WaitForRestart.c"
  54. #include "../plc/WaitForStart.c"
  55. #include "../plc/InitDevice1.c"
  56. #include "../plc/BootDevice1.c"
  57. #include "../plc/BootFirmware1.c"
  58. #include "../plc/BootParameters1.c"
  59. #include "../plc/WriteExecuteFirmware1.c"
  60. #include "../plc/WriteExecutePIB.c"
  61. #include "../plc/WriteFirmware1.c"
  62. #include "../plc/StartFirmware1.c"
  63. #include "../plc/FlashDevice1.c"
  64. #endif
  65. #ifndef MAKEFILE
  66. #include "../tools/getoptv.c"
  67. #include "../tools/putoptv.c"
  68. #include "../tools/version.c"
  69. #include "../tools/uintspec.c"
  70. #include "../tools/checkfilename.c"
  71. #include "../tools/hexdecode.c"
  72. #include "../tools/hexstring.c"
  73. #include "../tools/todigit.c"
  74. #include "../tools/hexdump.c"
  75. #include "../tools/checksum32.c"
  76. #include "../tools/fdchecksum32.c"
  77. #include "../tools/error.c"
  78. #include "../tools/strfbits.c"
  79. #include "../tools/typename.c"
  80. #endif
  81. #ifndef MAKEFILE
  82. #include "../ether/openchannel.c"
  83. #include "../ether/closechannel.c"
  84. #include "../ether/readpacket.c"
  85. #include "../ether/sendpacket.c"
  86. #include "../ether/channel.c"
  87. #endif
  88. #ifndef MAKEFILE
  89. #include "../ram/sdramfile.c"
  90. #include "../ram/sdrampeek.c"
  91. #endif
  92. #ifndef MAKEFILE
  93. #include "../nvm/lightning_nvm_file.c"
  94. #endif
  95. #ifndef MAKEFILE
  96. #include "../pib/lightning_pib_peek.c"
  97. #include "../pib/lightning_pib_file.c"
  98. #endif
  99. #ifndef MAKEFILE
  100. #include "../mme/EthernetHeader.c"
  101. #include "../mme/QualcommHeader.c"
  102. #include "../mme/UnwantedMessage.c"
  103. #include "../mme/MMECode.c"
  104. #endif
  105. #ifndef MAKEFILE
  106. #include "../key/keys.c"
  107. #endif
  108. /*====================================================================*
  109. *
  110. * int main (int argc, char const * argv[]);
  111. *
  112. *--------------------------------------------------------------------*/
  113. int main (int argc, char const * argv [])
  114. {
  115. extern struct channel channel;
  116. static char const * optv [] =
  117. {
  118. "ei:FN:p:P:qt:vx",
  119. "-N file -P file [device] [device] [...]",
  120. "Qualcomm Atheros AR7x00 Powerline Device Bootstrapper",
  121. "e\tredirect stderr to stdout",
  122. #if defined (WINPCAP) || defined (LIBPCAP)
  123. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  124. #else
  125. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  126. #endif
  127. "F[F]\tflash [force] non-volatile memory after boot",
  128. "N f\tfirmware file is (f)",
  129. "P f\tparameter file is (f)",
  130. "q\tquiet mode",
  131. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  132. "v\tverbose mode",
  133. "x\texit on error",
  134. (char const *) (0)
  135. };
  136. #include "../plc/plc.c"
  137. char firmware [PLC_VERSION_STRING];
  138. signed c;
  139. if (getenv (PLCDEVICE))
  140. {
  141. #if defined (WINPCAP) || defined (LIBPCAP)
  142. channel.ifindex = atoi (getenv (PLCDEVICE));
  143. #else
  144. channel.ifname = strdup (getenv (PLCDEVICE));
  145. #endif
  146. }
  147. optind = 1;
  148. while (~ (c = getoptv (argc, argv, optv)))
  149. {
  150. switch (c)
  151. {
  152. case 'i':
  153. #if defined (WINPCAP) || defined (LIBPCAP)
  154. channel.ifindex = atoi (optarg);
  155. #else
  156. channel.ifname = optarg;
  157. #endif
  158. break;
  159. case 'e':
  160. dup2 (STDOUT_FILENO, STDERR_FILENO);
  161. break;
  162. case 'F':
  163. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  164. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  165. {
  166. _setbits (plc.module, VS_MODULE_FORCE);
  167. }
  168. _setbits (plc.flags, PLC_FLASH_DEVICE);
  169. break;
  170. case 'N':
  171. if (! checkfilename (optarg))
  172. {
  173. error (1, EINVAL, "%s", optarg);
  174. }
  175. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  176. {
  177. error (1, errno, "%s", plc.NVM.name);
  178. }
  179. if (lightning_nvm_file (& plc.NVM))
  180. {
  181. error (1, errno, "Bad lightning image file: %s", plc.NVM.name);
  182. }
  183. _setbits (plc.flags, PLC_WRITE_MAC);
  184. break;
  185. case 'P':
  186. if (! checkfilename (optarg))
  187. {
  188. error (1, EINVAL, "%s", optarg);
  189. }
  190. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  191. {
  192. error (1, errno, "%s", plc.PIB.name);
  193. }
  194. if (lightning_pib_file (& plc.PIB))
  195. {
  196. error (1, errno, "Bad lightning parameter file: %s", plc.PIB.name);
  197. }
  198. _setbits (plc.flags, PLC_WRITE_PIB);
  199. break;
  200. case 'q':
  201. _setbits (channel.flags, CHANNEL_SILENCE);
  202. _setbits (plc.flags, PLC_SILENCE);
  203. break;
  204. case 't':
  205. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  206. break;
  207. case 'v':
  208. _setbits (channel.flags, CHANNEL_VERBOSE);
  209. _setbits (plc.flags, PLC_VERBOSE);
  210. break;
  211. case 'x':
  212. _setbits (plc.flags, PLC_BAILOUT);
  213. break;
  214. default:
  215. break;
  216. }
  217. }
  218. argc -= optind;
  219. argv += optind;
  220. if (argc)
  221. {
  222. error (1, ENOTSUP, ERROR_TOOMANY);
  223. }
  224. openchannel (& channel);
  225. if (! (plc.message = malloc (sizeof (* plc.message))))
  226. {
  227. error (1, errno, PLC_NOMEMORY);
  228. }
  229. if (WaitForStart (& plc, firmware, sizeof (firmware)))
  230. {
  231. Failure (& plc, PLC_NODETECT);
  232. exit (1);
  233. }
  234. if (plc.hardwareID < CHIPSET_AR7400)
  235. {
  236. Failure (& plc, "Device must be %s or later; Use program int6kboot instead.", chipsetname (CHIPSET_AR7400));
  237. exit (1);
  238. }
  239. if (plc.hardwareID >= CHIPSET_QCA7420)
  240. {
  241. Failure (& plc, "Program does not support %s or later; Use program plcboot instead.", chipsetname (CHIPSET_QCA7420));
  242. exit (1);
  243. }
  244. if (strcmp (firmware, "BootLoader"))
  245. {
  246. Failure (& plc, "Bootloader must be running");
  247. exit (1);
  248. }
  249. if (plc.PIB.file == -1)
  250. {
  251. error (1, ECANCELED, "No PIB file specified");
  252. }
  253. if (plc.NVM.file == -1)
  254. {
  255. error (1, ECANCELED, "No NVM file specified");
  256. }
  257. if (! InitDevice1 (& plc))
  258. {
  259. if (! BootDevice1 (& plc))
  260. {
  261. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  262. {
  263. FlashDevice1 (& plc);
  264. }
  265. }
  266. }
  267. free (plc.message);
  268. closechannel (& channel);
  269. exit (0);
  270. }