int6khost.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plchost.c - Qualcomm Atheros Powerline Device Host Emulator
  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. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../tools/getoptv.h"
  27. #include "../tools/putoptv.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/types.h"
  31. #include "../tools/flags.h"
  32. #include "../tools/files.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. #include "../ram/nvram.h"
  36. #include "../ram/sdram.h"
  37. #include "../nvm/nvm.h"
  38. #include "../pib/pib.h"
  39. /*====================================================================*
  40. * custom source files;
  41. *--------------------------------------------------------------------*/
  42. #ifndef MAKEFILE
  43. #include "../plc/chipset.c"
  44. #include "../plc/Confirm.c"
  45. #include "../plc/Devices.c"
  46. #include "../plc/Display.c"
  47. #include "../plc/EmulateHost.c"
  48. #include "../plc/Failure.c"
  49. #include "../plc/FactoryDefaults.c"
  50. #include "../plc/FlashNVM.c"
  51. #include "../plc/HostActionResponse.c"
  52. #include "../plc/ModuleRead.c"
  53. #include "../plc/Request.c"
  54. #include "../plc/ResetDevice.c"
  55. #include "../plc/ReadMME.c"
  56. #include "../plc/ReadFirmware1.c"
  57. #include "../plc/ReadParameters1.c"
  58. #include "../plc/SendMME.c"
  59. #include "../plc/StartFirmware1.c"
  60. #include "../plc/WriteFirmware1.c"
  61. #include "../plc/WaitForReset.c"
  62. #include "../plc/WaitForStart.c"
  63. #include "../plc/WriteMEM.c"
  64. #include "../plc/WriteNVM.c"
  65. #include "../plc/WritePIB.c"
  66. #include "../plc/WriteCFG.c"
  67. #endif
  68. #ifndef MAKEFILE
  69. #include "../tools/getoptv.c"
  70. #include "../tools/putoptv.c"
  71. #include "../tools/version.c"
  72. #include "../tools/uintspec.c"
  73. #include "../tools/checkfilename.c"
  74. #include "../tools/hexdecode.c"
  75. #include "../tools/hexstring.c"
  76. #include "../tools/todigit.c"
  77. #include "../tools/hexdump.c"
  78. #include "../tools/checksum32.c"
  79. #include "../tools/fdchecksum32.c"
  80. #include "../tools/error.c"
  81. #include "../tools/strfbits.c"
  82. #include "../tools/typename.c"
  83. #endif
  84. #ifndef MAKEFILE
  85. #include "../ether/openchannel.c"
  86. #include "../ether/closechannel.c"
  87. #include "../ether/readpacket.c"
  88. #include "../ether/sendpacket.c"
  89. #include "../ether/channel.c"
  90. #endif
  91. #ifndef MAKEFILE
  92. #include "../mme/MMECode.c"
  93. #include "../mme/EthernetHeader.c"
  94. #include "../mme/QualcommHeader.c"
  95. #include "../mme/UnwantedMessage.c"
  96. #endif
  97. #ifndef MAKEFILE
  98. #include "../key/keys.c"
  99. #endif
  100. #ifndef MAKEFILE
  101. #include "../ram/sdramfile.c"
  102. #include "../ram/sdrampeek.c"
  103. #endif
  104. #ifndef MAKEFILE
  105. #include "../nvm/lightning_nvm_file.c"
  106. #endif
  107. #ifndef MAKEFILE
  108. #include "../pib/lightning_pib_file.c"
  109. #include "../pib/lightning_pib_peek.c"
  110. #endif
  111. /*====================================================================*
  112. *
  113. * int main (int argc, char const * argv[]);
  114. *
  115. * parse command line, populate plc structure and perform selected
  116. * operations; show help summary when asked; see getoptv and putoptv
  117. * to understand command line parsing and help summary display; see
  118. * plc.h for the definition of struct plc;
  119. *
  120. * the default interface is eth1 because most people use eth0 as
  121. * their principle network connection; you can specify another
  122. * interface with -i or define environment string PLC to make
  123. * that the default interface and save typing;
  124. *
  125. *--------------------------------------------------------------------*/
  126. int main (int argc, char const * argv [])
  127. {
  128. extern struct channel channel;
  129. static char const * optv [] =
  130. {
  131. "C:eFi:n:N:p:P:qt:vx",
  132. "-N file -P file [-n file] [-p file]",
  133. "Qualcomm Atheros Powerline Device Host Emulator for INT6300",
  134. "C f\twrite NVM file to device using VS_SET_SDRAM",
  135. "e\tredirect stderr to stdout",
  136. "F[F]\tflash (force) NVRAM using VS_MOD_NVM",
  137. #if defined (WINPCAP) || defined (LIBPCAP)
  138. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  139. #else
  140. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  141. #endif
  142. "n f\tread NVM from device into file using VS_RD_MOD",
  143. "N f\twrite NVM file to device using VS_WR_MEM",
  144. "p f\tread PIB from device into file using VS_RD_MOD",
  145. "P f\twrite PIB file to device using VS_WR_MEM",
  146. "q\tquiet mode",
  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. signed c;
  154. if (getenv (PLCDEVICE))
  155. {
  156. #if defined (WINPCAP) || defined (LIBPCAP)
  157. channel.ifindex = atoi (getenv (PLCDEVICE));
  158. #else
  159. channel.ifname = strdup (getenv (PLCDEVICE));
  160. #endif
  161. }
  162. optind = 1;
  163. while (~ (c = getoptv (argc, argv, optv)))
  164. {
  165. switch (c)
  166. {
  167. case 'C':
  168. if (! checkfilename (optarg))
  169. {
  170. error (1, EINVAL, "%s", optarg);
  171. }
  172. if ((plc.CFG.file = open (plc.CFG.name = optarg, O_BINARY | O_RDONLY)) == -1)
  173. {
  174. error (1, errno, "%s", plc.CFG.name);
  175. }
  176. if (sdramfile (plc.CFG.file, optarg, plc.flags))
  177. {
  178. error (1, ECANCELED, "CFG file %s is corrupt", optarg);
  179. }
  180. _setbits (plc.flags, PLC_SDRAM_CONFIG);
  181. break;
  182. case 'e':
  183. dup2 (STDOUT_FILENO, STDERR_FILENO);
  184. break;
  185. case 'F':
  186. _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
  187. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  188. {
  189. _setbits (plc.module, VS_MODULE_FORCE);
  190. }
  191. _setbits (plc.flags, PLC_FLASH_DEVICE);
  192. break;
  193. case 'i':
  194. #if defined (WINPCAP) || defined (LIBPCAP)
  195. channel.ifindex = atoi (optarg);
  196. #else
  197. channel.ifname = optarg;
  198. #endif
  199. break;
  200. case 'N':
  201. if (! checkfilename (optarg))
  202. {
  203. error (1, EINVAL, "%s", optarg);
  204. }
  205. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  206. {
  207. error (1, errno, "%s", plc.NVM.name);
  208. }
  209. if (lightning_nvm_file (& plc.NVM))
  210. {
  211. error (1, errno, "Bad lightning image file: %s", plc.NVM.name);
  212. }
  213. _setbits (plc.flags, PLC_WRITE_MAC);
  214. break;
  215. case 'n':
  216. if (! checkfilename (optarg))
  217. {
  218. error (1, EINVAL, "%s", optarg);
  219. }
  220. if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  221. {
  222. error (1, errno, "%s", plc.nvm.name);
  223. }
  224. break;
  225. case 'P':
  226. if (! checkfilename (optarg))
  227. {
  228. error (1, EINVAL, "%s", optarg);
  229. }
  230. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  231. {
  232. error (1, errno, "%s", plc.PIB.name);
  233. }
  234. if (lightning_pib_file (& plc.PIB))
  235. {
  236. error (1, errno, "Bad lightning parameter file: %s", plc.PIB.name);
  237. }
  238. _setbits (plc.flags, PLC_WRITE_PIB);
  239. break;
  240. case 'p':
  241. if (! checkfilename (optarg))
  242. {
  243. error (1, EINVAL, "%s", optarg);
  244. }
  245. if ((plc.pib.file = open (plc.pib.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  246. {
  247. error (1, errno, "%s", plc.pib.name);
  248. }
  249. break;
  250. case 'q':
  251. _setbits (channel.flags, CHANNEL_SILENCE);
  252. _setbits (plc.flags, PLC_SILENCE);
  253. break;
  254. case 't':
  255. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  256. break;
  257. case 'v':
  258. _setbits (channel.flags, CHANNEL_VERBOSE);
  259. _setbits (plc.flags, PLC_VERBOSE);
  260. break;
  261. case 'x':
  262. _setbits (plc.flags, PLC_BAILOUT);
  263. break;
  264. default:
  265. break;
  266. }
  267. }
  268. argc -= optind;
  269. argv += optind;
  270. /*
  271. * cancel operation if the user omitted a file or entered to extra argments
  272. * on the command line;
  273. */
  274. if (argc)
  275. {
  276. error (1, ENOTSUP, ERROR_TOOMANY);
  277. }
  278. if (plc.CFG.file == -1)
  279. {
  280. error (1, ECANCELED, "No host CFG file named");
  281. }
  282. if (plc.NVM.file == -1)
  283. {
  284. error (1, ECANCELED, "No host NVM file named");
  285. }
  286. if (plc.PIB.file == -1)
  287. {
  288. error (1, ECANCELED, "No host PIB file named");
  289. }
  290. if (plc.nvm.file == -1)
  291. {
  292. error (1, ECANCELED, "No user NVM file named");
  293. }
  294. if (plc.pib.file == -1)
  295. {
  296. error (1, ECANCELED, "No user PIB file named");
  297. }
  298. openchannel (& channel);
  299. if (! (plc.message = malloc (sizeof (* plc.message))))
  300. {
  301. error (1, errno, PLC_NOMEMORY);
  302. }
  303. EmulateHost (& plc);
  304. free (plc.message);
  305. closechannel (& channel);
  306. exit (0);
  307. }