amptest.c 7.7 KB

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