int6kmod.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6kmod.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. /*====================================================================*
  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/symbol.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 "../plc/plc.h"
  37. /*====================================================================*
  38. * custom source files;
  39. *--------------------------------------------------------------------*/
  40. #ifndef MAKEFILE
  41. #include "../plc/Devices.c"
  42. #include "../plc/Confirm.c"
  43. #include "../plc/Display.c"
  44. #include "../plc/Request.c"
  45. #include "../plc/Failure.c"
  46. #include "../plc/ReadMME.c"
  47. #include "../plc/SendMME.c"
  48. #include "../plc/ModuleCommit.c"
  49. #include "../plc/ModuleRead.c"
  50. #include "../plc/ModuleDump.c"
  51. #include "../plc/ModuleSpec.c"
  52. #include "../plc/ModuleSession.c"
  53. #include "../plc/ModuleWrite.c"
  54. #endif
  55. #ifndef MAKEFILE
  56. #include "../tools/basespec.c"
  57. #include "../tools/getoptv.c"
  58. #include "../tools/putoptv.c"
  59. #include "../tools/version.c"
  60. #include "../tools/uintspec.c"
  61. #include "../tools/hexdump.c"
  62. #include "../tools/hexview.c"
  63. #include "../tools/hexencode.c"
  64. #include "../tools/hexdecode.c"
  65. #include "../tools/hexstring.c"
  66. #include "../tools/todigit.c"
  67. #include "../tools/checkfilename.c"
  68. #include "../tools/checksum32.c"
  69. #include "../tools/fdchecksum32.c"
  70. #include "../tools/strfbits.c"
  71. #include "../tools/synonym.c"
  72. #include "../tools/typename.c"
  73. #include "../tools/error.c"
  74. #endif
  75. #ifndef MAKEFILE
  76. #include "../ether/openchannel.c"
  77. #include "../ether/closechannel.c"
  78. #include "../ether/readpacket.c"
  79. #include "../ether/sendpacket.c"
  80. #include "../ether/channel.c"
  81. #endif
  82. #ifndef MAKEFILE
  83. #include "../mme/MMECode.c"
  84. #include "../mme/EthernetHeader.c"
  85. #include "../mme/QualcommHeader.c"
  86. #include "../mme/UnwantedMessage.c"
  87. #endif
  88. /*====================================================================*
  89. *
  90. * void Manager (struct plc * plc, uint16_t ModuleID, uint16_t ModuleSubID);
  91. *
  92. * read a custom modul from flash memory or write a suceom module
  93. * to flash memory using the VS_MODULE_OPERATION message; read and
  94. * save the old module before writing and commiting the new module;
  95. *
  96. * ModuleDump () and ModuleRead () are called with argument source
  97. * set to VS_MODULE_FLASH because this function operates on modules
  98. * in flash memory only;
  99. *
  100. *--------------------------------------------------------------------*/
  101. static void Manager (struct plc * plc, uint16_t ModuleID, uint16_t ModuleSubID)
  102. {
  103. if (_anyset (plc->flags, PLC_DUMP_MODULE))
  104. {
  105. ModuleDump (plc, PLC_MOD_OP_READ_FLASH, ModuleID, ModuleSubID);
  106. return;
  107. }
  108. if (_anyset (plc->flags, PLC_READ_MODULE))
  109. {
  110. ModuleRead (plc, & plc->nvm, PLC_MOD_OP_READ_FLASH, ModuleID, ModuleSubID);
  111. }
  112. if (_anyset (plc->flags, PLC_WRITE_MODULE))
  113. {
  114. struct vs_module_spec vs_module_spec;
  115. vs_module_spec.MODULE_ID = ModuleID;
  116. vs_module_spec.MODULE_SUB_ID = ModuleSubID;
  117. ModuleSpec (& plc->NVM, & vs_module_spec);
  118. ModuleSession (plc, 1, & vs_module_spec);
  119. ModuleWrite (plc, & plc->NVM, 0, & vs_module_spec);
  120. ModuleCommit (plc, (PLC_COMMIT_FORCE));
  121. return;
  122. }
  123. return;
  124. }
  125. /*====================================================================*
  126. *
  127. * int main (int argc, char const * argv[]);
  128. *
  129. * parse command line, populate plc structure and perform selected
  130. * operations; show help summary if asked; see getoptv and putoptv
  131. * to understand command line parsing and help summary display; see
  132. * plc.h for the definition of struct plc;
  133. *
  134. * the command line accepts multiple MAC addresses and the program
  135. * performs the specified operations on each address, in turn; the
  136. * address order is significant but the option order is not; the
  137. * default address is a local broadcast that causes all devices on
  138. * the local H1 interface to respond but not those at the remote
  139. * end of the powerline;
  140. *
  141. * the default address is 00:B0:52:00:00:01; omitting the address
  142. * will automatically address the local device; some options will
  143. * cancel themselves if this makes no sense;
  144. *
  145. * the default interface is eth1 because most people use eth0 as
  146. * their principle network connection; you can specify another
  147. * interface with -i or define environment string PLC to make
  148. * that the default interface and save typing;
  149. *
  150. *--------------------------------------------------------------------*/
  151. int main (int argc, char const * argv [])
  152. {
  153. extern struct channel channel;
  154. static char const * optv [] =
  155. {
  156. "dei:m:M:qs:S:t:vx",
  157. "device [device] [...]",
  158. "Qualcomm Atheros Powerline Device Module Manager",
  159. "d\tdump module in hexadecimal format",
  160. "e\tredirect stderr to stdout",
  161. #if defined (WINPCAP) || defined (LIBPCAP)
  162. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  163. #else
  164. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  165. #endif
  166. "m f\tread module from NVRAM to file (f)",
  167. "M f\twrite module file (f) to flash memory",
  168. "s n\tmodule sub-ID [" LITERAL (PLC_SUBMODULEID) "]",
  169. "S n\tsession ID [" LITERAL (PLCSESSION) "]",
  170. "t n\tmodule ID [" LITERAL (PLC_MODULEID) "]",
  171. "q\tquiet mode",
  172. "v\tverbose mode",
  173. (char const *) (0)
  174. };
  175. #include "../plc/plc.c"
  176. struct vs_module_spec vs_module_spec;
  177. uint16_t ModuleID = 0;
  178. uint16_t ModuleSubID = 0;
  179. signed c;
  180. memset (& vs_module_spec, 0, sizeof (vs_module_spec));
  181. if (getenv (PLCDEVICE))
  182. {
  183. #if defined (WINPCAP) || defined (LIBPCAP)
  184. channel.ifindex = atoi (getenv (PLCDEVICE));
  185. #else
  186. channel.ifname = strdup (getenv (PLCDEVICE));
  187. #endif
  188. }
  189. optind = 1;
  190. while (~ (c = getoptv (argc, argv, optv)))
  191. {
  192. switch (c)
  193. {
  194. case 'e':
  195. dup2 (STDOUT_FILENO, STDERR_FILENO);
  196. break;
  197. case 'C':
  198. _setbits (plc.flags, PLC_COMMIT_MODULE);
  199. break;
  200. case 'd':
  201. if (_anyset (plc.flags, PLC_READ_MODULE))
  202. {
  203. error (1, EINVAL, "Options -d and -m are mutually exclusive");
  204. }
  205. _setbits (plc.flags, PLC_DUMP_MODULE);
  206. break;
  207. case 'i':
  208. #if defined (WINPCAP) || defined (LIBPCAP)
  209. channel.ifindex = atoi (optarg);
  210. #else
  211. channel.ifname = optarg;
  212. #endif
  213. break;
  214. case 'M':
  215. _setbits (plc.flags, PLC_WRITE_MODULE);
  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_RDONLY)) == -1)
  221. {
  222. error (1, errno, "%s", plc.NVM.name);
  223. }
  224. if (ModuleSpec (& plc.NVM, & vs_module_spec) == -1)
  225. {
  226. error (1, errno, "%s", optarg);
  227. }
  228. break;
  229. case 'm':
  230. if (_anyset (plc.flags, PLC_DUMP_MODULE))
  231. {
  232. error (1, EINVAL, "Options -d and -m are mutually exclusive");
  233. }
  234. _setbits (plc.flags, PLC_READ_MODULE);
  235. if (! checkfilename (optarg))
  236. {
  237. error (1, EINVAL, "%s", optarg);
  238. }
  239. if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  240. {
  241. error (1, errno, "%s", plc.nvm.name);
  242. }
  243. #ifndef WIN32
  244. chown (optarg, getuid (), getgid ());
  245. #endif
  246. break;
  247. case 't':
  248. ModuleID = (uint16_t) (basespec (optarg, 16, sizeof (ModuleID)));
  249. break;
  250. case 's':
  251. ModuleSubID = (uint16_t) (basespec (optarg, 16, sizeof (ModuleSubID)));
  252. break;
  253. case 'S':
  254. plc.cookie = (uint32_t) (basespec (optarg, 16, sizeof (plc.cookie)));
  255. break;
  256. case 'q':
  257. _setbits (channel.flags, CHANNEL_SILENCE);
  258. _setbits (plc.flags, PLC_SILENCE);
  259. break;
  260. case 'v':
  261. _setbits (channel.flags, CHANNEL_VERBOSE);
  262. _setbits (plc.flags, PLC_VERBOSE);
  263. break;
  264. case 'x':
  265. _setbits (plc.flags, PLC_BAILOUT);
  266. break;
  267. default:
  268. break;
  269. }
  270. }
  271. argc -= optind;
  272. argv += optind;
  273. if (argc != 1)
  274. {
  275. if (plc.nvm.file != -1)
  276. {
  277. error (1, ECANCELED, PLC_NODEVICE);
  278. }
  279. }
  280. openchannel (& channel);
  281. if (! (plc.message = malloc (sizeof (* plc.message))))
  282. {
  283. error (1, errno, PLC_NOMEMORY);
  284. }
  285. if (! argc)
  286. {
  287. Manager (& plc, ModuleID, ModuleSubID);
  288. }
  289. while ((argc) && (* argv))
  290. {
  291. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  292. {
  293. error (1, errno, PLC_BAD_MAC, * argv);
  294. }
  295. Manager (& plc, ModuleID, ModuleSubID);
  296. argc--;
  297. argv++;
  298. }
  299. free (plc.message);
  300. closechannel (& channel);
  301. exit (0);
  302. }