plctest.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plctest.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <unistd.h>
  20. #include <stdlib.h>
  21. #include <stdint.h>
  22. #include <limits.h>
  23. #include <errno.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/types.h"
  32. #include "../tools/flags.h"
  33. #include "../tools/files.h"
  34. #include "../tools/error.h"
  35. #include "../ether/channel.h"
  36. #include "../ram/nvram.h"
  37. #include "../ram/sdram.h"
  38. #include "../nvm/nvm.h"
  39. #include "../pib/pib.h"
  40. #include "../plc/plc.h"
  41. /*====================================================================*
  42. * custom source files;
  43. *--------------------------------------------------------------------*/
  44. #ifndef MAKEFILE
  45. #include "../plc/chipset.c"
  46. #include "../plc/Confirm.c"
  47. #include "../plc/Devices.c"
  48. #include "../plc/Display.c"
  49. #include "../plc/ExecuteApplets1.c"
  50. #include "../plc/ExecuteApplets2.c"
  51. #include "../plc/Failure.c"
  52. #include "../plc/NVMSelect.c"
  53. #include "../plc/Request.c"
  54. #include "../plc/SendMME.c"
  55. #include "../plc/StartFirmware1.c"
  56. #include "../plc/WaitForStart.c"
  57. #include "../plc/WriteExecuteApplet2.c"
  58. #include "../plc/WriteExecuteFirmware1.c"
  59. #include "../plc/WriteExecuteFirmware2.c"
  60. #include "../plc/WriteFirmware1.c"
  61. #include "../plc/WriteFirmware2.c"
  62. #endif
  63. #ifndef MAKEFILE
  64. #include "../tools/getoptv.c"
  65. #include "../tools/putoptv.c"
  66. #include "../tools/version.c"
  67. #include "../tools/uintspec.c"
  68. #include "../tools/checkfilename.c"
  69. #include "../tools/hexdecode.c"
  70. #include "../tools/todigit.c"
  71. #include "../tools/hexdump.c"
  72. #include "../tools/checksum32.c"
  73. #include "../tools/fdchecksum32.c"
  74. #include "../tools/error.c"
  75. #include "../tools/strfbits.c"
  76. #include "../tools/typename.c"
  77. #endif
  78. #ifndef MAKEFILE
  79. #include "../ether/openchannel.c"
  80. #include "../ether/closechannel.c"
  81. #include "../ether/readpacket.c"
  82. #include "../ether/sendpacket.c"
  83. #include "../ether/channel.c"
  84. #endif
  85. #ifndef MAKEFILE
  86. #include "../nvm/nvmfile.c"
  87. #include "../nvm/lightning_nvm_file.c"
  88. #include "../nvm/panther_nvm_file.c"
  89. #endif
  90. #ifndef MAKEFILE
  91. #include "../mme/EthernetHeader.c"
  92. #include "../mme/QualcommHeader.c"
  93. #include "../mme/UnwantedMessage.c"
  94. #include "../mme/FirmwareMessage.c"
  95. #include "../mme/ARPCPrint.c"
  96. #include "../mme/MMECode.c"
  97. #endif
  98. /*====================================================================*
  99. *
  100. * signed ReadMME (struct plc * plc, uint8_t MMV, uint16_t MMTYPE);
  101. *
  102. * plc.h
  103. *
  104. * this version of ReadMME() calls FirmwareMessage() to intercept
  105. * VS_ARPC messages and print them on stdout in readable format;
  106. *
  107. * Contributor(s):
  108. * Charles Maier <cmaier@qca.qualcomm.com>
  109. * Matthieu Poullet <m.poullet@avm.de>
  110. *
  111. *--------------------------------------------------------------------*/
  112. signed ReadMME (struct plc * plc, uint8_t MMV, uint16_t MMTYPE)
  113. {
  114. struct channel * channel = (struct channel *) (plc->channel);
  115. struct message * message = (struct message *) (plc->message);
  116. while ((plc->packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  117. {
  118. if (FirmwareMessage (message))
  119. {
  120. continue;
  121. }
  122. if (UnwantedMessage (message, plc->packetsize, MMV, MMTYPE))
  123. {
  124. continue;
  125. }
  126. break;
  127. }
  128. return (plc->packetsize);
  129. }
  130. /*====================================================================*
  131. *
  132. * void sequence (struct plc * plc, int argc, char const * argv);
  133. *
  134. * open each file on the command line and execute all applets in
  135. * each file; move on if errors occur;
  136. *
  137. * Contributor(s):
  138. * Charles Maier <cmaier@qca.qualcomm.com>
  139. *
  140. *--------------------------------------------------------------------*/
  141. static void sequence (struct plc * plc, int argc, char const * argv [])
  142. {
  143. while ((argc) && (* argv))
  144. {
  145. if ((plc->NVM.file = open (plc->NVM.name = * argv, O_BINARY | O_RDONLY)) == -1)
  146. {
  147. error (0, errno, FILE_CANTOPEN, plc->NVM.name);
  148. }
  149. else if (nvmfile (& plc->NVM))
  150. {
  151. error (0, errno, FILE_CANTLOAD, plc->NVM.name);
  152. }
  153. else
  154. {
  155. NVMSelect (plc, ExecuteApplets1, ExecuteApplets2);
  156. }
  157. close (plc->NVM.file);
  158. argc--;
  159. argv++;
  160. }
  161. return;
  162. }
  163. /*====================================================================*
  164. *
  165. * int main (int argc, char const * argv[]);
  166. *
  167. * parse command line, populate plc structure and perform selected
  168. * operations; show help summary when asked; see getoptv and putoptv
  169. * to understand command line parsing and help summary display; see
  170. * plc.h for the definition of struct plc;
  171. *
  172. * the default interface is eth1 because most people use eth0 as
  173. * their principle network connection; you can specify another
  174. * interface with -i or define environment string PLC to make
  175. * that the default interface and save typing;
  176. *
  177. * Contributor(s):
  178. * Charles Maier <cmaier@qca.qualcomm.com>
  179. *
  180. *--------------------------------------------------------------------*/
  181. int main (int argc, char const * argv [])
  182. {
  183. extern struct channel channel;
  184. char firmware [PLC_VERSION_STRING];
  185. static char const * optv [] =
  186. {
  187. "ei:lqt:vw:xX",
  188. "file [file] [...]",
  189. "Qualcomm Atheros PLC Test Applet Loader",
  190. "e\tredirect stderr to stdout",
  191. #if defined (WINPCAP) || defined (LIBPCAP)
  192. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  193. #else
  194. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  195. #endif
  196. "l\tloop until program is terminated",
  197. "q\tquiet mode",
  198. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  199. "v\tverbose mode",
  200. "w n\twait time is (n) seconds [" LITERAL (PLC_TIMER) "]",
  201. "x\texit on error",
  202. "X\texit on start",
  203. (char const *) (0)
  204. };
  205. #include "../plc/plc.c"
  206. signed loop = 0;
  207. signed c;
  208. if (getenv (PLCDEVICE))
  209. {
  210. #if defined (WINPCAP) || defined (LIBPCAP)
  211. channel.ifindex = atoi (getenv (PLCDEVICE));
  212. #else
  213. channel.ifname = strdup (getenv (PLCDEVICE));
  214. #endif
  215. }
  216. optind = 1;
  217. while (~ (c = getoptv (argc, argv, optv)))
  218. {
  219. switch (c)
  220. {
  221. case 'e':
  222. dup2 (STDOUT_FILENO, STDERR_FILENO);
  223. break;
  224. case 'i':
  225. #if defined (WINPCAP) || defined (LIBPCAP)
  226. channel.ifindex = atoi (optarg);
  227. #else
  228. channel.ifname = optarg;
  229. #endif
  230. break;
  231. case 'l':
  232. loop = 1;
  233. break;
  234. case 'q':
  235. _setbits (channel.flags, CHANNEL_SILENCE);
  236. _setbits (plc.flags, PLC_SILENCE);
  237. break;
  238. case 't':
  239. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  240. break;
  241. case 'v':
  242. _setbits (channel.flags, CHANNEL_VERBOSE);
  243. _setbits (plc.flags, PLC_VERBOSE);
  244. break;
  245. case 'w':
  246. plc.timer = (unsigned) (uintspec (optarg, 0, 3600));
  247. break;
  248. case 'x':
  249. _setbits (plc.flags, PLC_BAILOUT);
  250. break;
  251. case 'X':
  252. _setbits (plc.flags, PLC_QUICK_FLASH);
  253. break;
  254. }
  255. }
  256. argc -= optind;
  257. argv += optind;
  258. openchannel (& channel);
  259. if (! (plc.message = malloc (sizeof (* plc.message))))
  260. {
  261. error (1, errno, PLC_NOMEMORY);
  262. }
  263. if (WaitForStart (& plc, firmware, sizeof (firmware)))
  264. {
  265. error (1, ECANCELED, PLC_NODETECT);
  266. }
  267. if (strcmp (firmware, "BootLoader"))
  268. {
  269. error (1, ECANCELED, "BootLoader must be running");
  270. }
  271. do
  272. {
  273. sequence (& plc, argc, argv);
  274. }
  275. while (loop);
  276. free (plc.message);
  277. closechannel (& channel);
  278. return (plc.state);
  279. }