plcboot.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcboot.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 <string.h>
  23. #include <limits.h>
  24. #include <fcntl.h>
  25. #include <ctype.h>
  26. #include <sys/stat.h>
  27. /*====================================================================*
  28. * custom header files;
  29. *--------------------------------------------------------------------*/
  30. #include "../tools/getoptv.h"
  31. #include "../tools/putoptv.h"
  32. #include "../tools/memory.h"
  33. #include "../tools/symbol.h"
  34. #include "../tools/number.h"
  35. #include "../tools/types.h"
  36. #include "../tools/flags.h"
  37. #include "../tools/files.h"
  38. #include "../tools/error.h"
  39. #include "../ram/nvram.h"
  40. #include "../ram/sdram.h"
  41. #include "../plc/plc.h"
  42. #include "../nvm/nvm.h"
  43. #include "../pib/pib.h"
  44. #include "../mme/mme.h"
  45. /*====================================================================*
  46. * custom source files;
  47. *--------------------------------------------------------------------*/
  48. #ifndef MAKEFILE
  49. #include "../plc/BootDevice2.c"
  50. #include "../plc/BootFirmware2.c"
  51. #include "../plc/BootParameters2.c"
  52. #include "../plc/chipset.c"
  53. #include "../plc/Confirm.c"
  54. #include "../plc/Devices.c"
  55. #include "../plc/Display.c"
  56. #include "../plc/Failure.c"
  57. #include "../plc/FlashDevice2.c"
  58. #include "../plc/FlashNVM.c"
  59. #include "../plc/FlashSoftloader.c"
  60. #include "../plc/FlashParameters.c"
  61. #include "../plc/FlashFirmware.c"
  62. #include "../plc/InitDevice2.c"
  63. #include "../plc/ModuleCommit.c"
  64. #include "../plc/ModuleSession.c"
  65. #include "../plc/ModuleSpec.c"
  66. #include "../plc/ModuleWrite.c"
  67. #include "../plc/NVMSelect.c"
  68. #include "../plc/ReadMME.c"
  69. #include "../plc/Request.c"
  70. #include "../plc/ResetDevice.c"
  71. #include "../plc/SendMME.c"
  72. #include "../plc/WaitForReset.c"
  73. #include "../plc/WaitForStart.c"
  74. #include "../plc/WaitForRestart.c"
  75. #include "../plc/WriteExecuteApplet2.c"
  76. #include "../plc/WriteExecuteFirmware2.c"
  77. #include "../plc/WriteExecuteParameters2.c"
  78. #include "../plc/WriteFirmware2.c"
  79. #include "../plc/WriteMEM.c"
  80. #include "../plc/WriteNVM.c"
  81. #include "../plc/WritePIB.c"
  82. #include "../plc/WriteParameters2.c"
  83. #endif
  84. #ifndef MAKEFILE
  85. #include "../tools/basespec.c"
  86. #include "../tools/checkfilename.c"
  87. #include "../tools/checksum32.c"
  88. #include "../tools/error.c"
  89. #include "../tools/fdchecksum32.c"
  90. #include "../tools/getoptv.c"
  91. #include "../tools/hexdecode.c"
  92. #include "../tools/hexstring.c"
  93. #include "../tools/hexdump.c"
  94. #include "../tools/putoptv.c"
  95. #include "../tools/strfbits.c"
  96. #include "../tools/todigit.c"
  97. #include "../tools/typename.c"
  98. #include "../tools/uintspec.c"
  99. #include "../tools/version.c"
  100. #endif
  101. #ifndef MAKEFILE
  102. #include "../ether/channel.c"
  103. #include "../ether/closechannel.c"
  104. #include "../ether/openchannel.c"
  105. #include "../ether/readpacket.c"
  106. #include "../ether/sendpacket.c"
  107. #endif
  108. #ifndef MAKEFILE
  109. #include "../nvm/panther_nvm_file.c"
  110. #endif
  111. #ifndef MAKEFILE
  112. #include "../pib/panther_pib_file.c"
  113. #endif
  114. #ifndef MAKEFILE
  115. #include "../mme/EthernetHeader.c"
  116. #include "../mme/QualcommHeader.c"
  117. #include "../mme/UnwantedMessage.c"
  118. #include "../mme/MMECode.c"
  119. #endif
  120. #ifndef MAKEFILE
  121. #include "../key/keys.c"
  122. #endif
  123. /*====================================================================*
  124. *
  125. * int main (int argc, char const * argv[]);
  126. *
  127. *--------------------------------------------------------------------*/
  128. int main (int argc, char const * argv [])
  129. {
  130. extern struct channel channel;
  131. static char const * optv [] =
  132. {
  133. "eFi:N:p:P:qS:t:vx",
  134. "-N file -P file [device] [device] [...]",
  135. "Qualcomm Atheros Panther/Lynx Powerline Device Bootstrapper",
  136. "e\tredirect stderr to stdout",
  137. "F[F]\tFlash [Force] non-volatile memory after boot",
  138. #if defined (WINPCAP) || defined (LIBPCAP)
  139. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  140. #else
  141. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  142. #endif
  143. "N f\tfirmware file is (f)",
  144. "P f\tparameter file is (f)",
  145. "q\tquiet mode",
  146. "S f\tsoftloader file is (f)",
  147. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  148. "v\tverbose mode",
  149. "x\texit on error",
  150. (char const *) (0)
  151. };
  152. #include "../plc/plc.c"
  153. char firmware [PLC_VERSION_STRING];
  154. signed c;
  155. plc.timer = PLC_MODULE_BOOT_TIMEOUT;
  156. if (getenv (PLCDEVICE))
  157. {
  158. #if defined (WINPCAP) || defined (LIBPCAP)
  159. channel.ifindex = atoi (getenv (PLCDEVICE));
  160. #else
  161. channel.ifname = strdup (getenv (PLCDEVICE));
  162. #endif
  163. }
  164. optind = 1;
  165. while (~ (c = getoptv (argc, argv, optv)))
  166. {
  167. switch (c)
  168. {
  169. case 'e':
  170. dup2 (STDOUT_FILENO, STDERR_FILENO);
  171. break;
  172. case 'F':
  173. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  174. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  175. {
  176. _setbits (plc.module, VS_MODULE_FORCE);
  177. }
  178. _setbits (plc.flags, PLC_FLASH_DEVICE);
  179. break;
  180. case 'i':
  181. #if defined (WINPCAP) || defined (LIBPCAP)
  182. channel.ifindex = atoi (optarg);
  183. #else
  184. channel.ifname = optarg;
  185. #endif
  186. break;
  187. case 'N':
  188. if (! checkfilename (optarg))
  189. {
  190. error (1, EINVAL, "%s", optarg);
  191. }
  192. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  193. {
  194. error (1, errno, "%s", plc.NVM.name);
  195. }
  196. if (panther_nvm_file (& plc.NVM))
  197. {
  198. error (1, errno, "Bad panther image file: %s", plc.NVM.name);
  199. }
  200. _setbits (plc.flags, PLC_WRITE_MAC);
  201. break;
  202. case 'P':
  203. if (! checkfilename (optarg))
  204. {
  205. error (1, EINVAL, "%s", optarg);
  206. }
  207. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  208. {
  209. error (1, errno, "%s", plc.PIB.name);
  210. }
  211. if (panther_pib_file (& plc.PIB))
  212. {
  213. error (1, errno, "Bad panther parameter file: %s", plc.PIB.name);
  214. }
  215. _setbits (plc.flags, PLC_WRITE_PIB);
  216. break;
  217. case 'q':
  218. _setbits (channel.flags, CHANNEL_SILENCE);
  219. _setbits (plc.flags, PLC_SILENCE);
  220. break;
  221. case 'S':
  222. if (! checkfilename (optarg))
  223. {
  224. error (1, EINVAL, "%s", optarg);
  225. }
  226. if ((plc.SFT.file = open (plc.SFT.name = optarg, O_BINARY | O_RDONLY)) == -1)
  227. {
  228. error (1, errno, "%s", plc.SFT.name);
  229. }
  230. if (panther_nvm_file (& plc.SFT))
  231. {
  232. error (1, errno, "Bad panther image file: %s", plc.SFT.name);
  233. }
  234. break;
  235. case 't':
  236. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  237. break;
  238. case 'v':
  239. _setbits (channel.flags, CHANNEL_VERBOSE);
  240. _setbits (plc.flags, PLC_VERBOSE);
  241. break;
  242. case 'x':
  243. _setbits (plc.flags, PLC_BAILOUT);
  244. break;
  245. default:
  246. break;
  247. }
  248. }
  249. argc -= optind;
  250. argv += optind;
  251. if (argc)
  252. {
  253. error (1, ENOTSUP, ERROR_TOOMANY);
  254. }
  255. openchannel (& channel);
  256. if (! (plc.message = malloc (sizeof (* plc.message))))
  257. {
  258. error (1, errno, PLC_NOMEMORY);
  259. }
  260. if (WaitForStart (& plc, firmware, sizeof (firmware)))
  261. {
  262. Failure (& plc, PLC_NODETECT);
  263. exit (1);
  264. }
  265. if (plc.hardwareID < CHIPSET_INT6400)
  266. {
  267. Failure (& plc, "Device must be %s or later; Use program int6kboot instead.", chipsetname (CHIPSET_INT6400));
  268. exit (1);
  269. }
  270. if (strcmp (firmware, "BootLoader"))
  271. {
  272. Failure (& plc, "Bootloader must be running");
  273. exit (1);
  274. }
  275. if (plc.PIB.file == -1)
  276. {
  277. error (1, ECANCELED, "No Parameter file named");
  278. }
  279. if (plc.NVM.file == -1)
  280. {
  281. error (1, ECANCELED, "No Firmware file named");
  282. }
  283. if (plc.SFT.file == -1)
  284. {
  285. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  286. {
  287. error (1, ECANCELED, "No Softloader file named");
  288. }
  289. }
  290. if (! InitDevice2 (& plc))
  291. {
  292. if (! BootDevice2 (& plc))
  293. {
  294. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  295. {
  296. FlashDevice2 (& plc, (PLC_COMMIT_FORCE | PLC_COMMIT_NORESET | PLC_COMMIT_FACTPIB));
  297. }
  298. }
  299. }
  300. free (plc.message);
  301. closechannel (& channel);
  302. exit (0);
  303. }