plcID.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcID.c - Qualcomm Atheros Powerline Device Identity
  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 <limits.h>
  22. #include <string.h>
  23. #include <ctype.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/symbol.h"
  32. #include "../tools/types.h"
  33. #include "../tools/flags.h"
  34. #include "../tools/files.h"
  35. #include "../tools/error.h"
  36. #include "../plc/plc.h"
  37. #include "../ram/nvram.h"
  38. #include "../ram/sdram.h"
  39. #include "../nvm/nvm.h"
  40. #include "../pib/pib.h"
  41. #include "../mme/mme.h"
  42. /*====================================================================*
  43. * custom source files;
  44. *--------------------------------------------------------------------*/
  45. #ifndef MAKEFILE
  46. #include "../tools/getoptv.c"
  47. #include "../tools/putoptv.c"
  48. #include "../tools/version.c"
  49. #include "../tools/uintspec.c"
  50. #include "../tools/hexencode.c"
  51. #include "../tools/hexdecode.c"
  52. #include "../tools/todigit.c"
  53. #include "../tools/hexdump.c"
  54. #include "../tools/hexout.c"
  55. #include "../tools/error.c"
  56. #include "../tools/synonym.c"
  57. #include "../tools/checksum32.c"
  58. #endif
  59. #ifndef MAKEFILE
  60. #include "../plc/Display.c"
  61. #include "../plc/Devices.c"
  62. #include "../plc/Failure.c"
  63. #include "../plc/ReadMME.c"
  64. #include "../plc/SendMME.c"
  65. #endif
  66. #ifndef MAKEFILE
  67. #include "../mme/EthernetHeader.c"
  68. #include "../mme/QualcommHeader.c"
  69. #include "../mme/UnwantedMessage.c"
  70. #endif
  71. #ifndef MAKEFILE
  72. #include "../ether/openchannel.c"
  73. #include "../ether/closechannel.c"
  74. #include "../ether/readpacket.c"
  75. #include "../ether/sendpacket.c"
  76. #include "../ether/channel.c"
  77. #endif
  78. #ifndef MAKEFILE
  79. #include "../mme/MMECode.c"
  80. #endif
  81. /*====================================================================*
  82. * program constants;
  83. *--------------------------------------------------------------------*/
  84. #define PLCID_DAK 0
  85. #define PLCID_NMK 1
  86. #define PLCID_MAC 2
  87. #define PLCID_MFG 3
  88. #define PLCID_USR 4
  89. #define PLCID_NET 5
  90. /*====================================================================*
  91. *
  92. * signed function (struct plc * plc, signed newline, signed key);
  93. *
  94. * plc.h
  95. *
  96. * read start of parameter chain from the device using a single
  97. * VS_MODULE_OPERATION message; search parameter chain for PIB and
  98. * print requested key on stdout;
  99. *
  100. * Contributor(s):
  101. * Charles Maier <cmaier@qca.qualcomm.com>
  102. *
  103. *--------------------------------------------------------------------*/
  104. static signed function (struct plc * plc, signed newline, signed key)
  105. {
  106. struct channel * channel = (struct channel *) (plc->channel);
  107. struct message * message = (struct message *) (plc->message);
  108. struct panther_nvm_header * nvm_header;
  109. uint32_t origin = ~ 0;
  110. uint32_t offset = 0;
  111. signed module = 0;
  112. char * filename = "device";
  113. #ifndef __GNUC__
  114. #pragma pack (push,1)
  115. #endif
  116. struct __packed vs_module_operation_read_request
  117. {
  118. struct ethernet_hdr ethernet;
  119. struct qualcomm_hdr qualcomm;
  120. uint32_t RESERVED;
  121. uint8_t NUM_OP_DATA;
  122. struct __packed
  123. {
  124. uint16_t MOD_OP;
  125. uint16_t MOD_OP_DATA_LEN;
  126. uint32_t MOD_OP_RSVD;
  127. uint16_t MODULE_ID;
  128. uint16_t MODULE_SUB_ID;
  129. uint16_t MODULE_LENGTH;
  130. uint32_t MODULE_OFFSET;
  131. }
  132. MODULE_SPEC;
  133. }
  134. * request = (struct vs_module_operation_read_request *) (message);
  135. struct __packed vs_module_operation_read_confirm
  136. {
  137. struct ethernet_hdr ethernet;
  138. struct qualcomm_hdr qualcomm;
  139. uint16_t MSTATUS;
  140. uint16_t ERR_REC_CODE;
  141. uint32_t RESERVED;
  142. uint8_t NUM_OP_DATA;
  143. struct __packed
  144. {
  145. uint16_t MOD_OP;
  146. uint16_t MOD_OP_DATA_LEN;
  147. uint32_t MOD_OP_RSVD;
  148. uint16_t MODULE_ID;
  149. uint16_t MODULE_SUB_ID;
  150. uint16_t MODULE_LENGTH;
  151. uint32_t MODULE_OFFSET;
  152. }
  153. MODULE_SPEC;
  154. uint8_t MODULE_DATA [PLC_MODULE_SIZE];
  155. }
  156. * confirm = (struct vs_module_operation_read_confirm *) (message);
  157. #ifndef __GNUC__
  158. #pragma pack (pop)
  159. #endif
  160. memset (& message, 0, sizeof (message));
  161. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  162. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  163. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  164. request->NUM_OP_DATA = 1;
  165. request->MODULE_SPEC.MOD_OP = HTOLE16 (0);
  166. request->MODULE_SPEC.MOD_OP_DATA_LEN = HTOLE16 (sizeof (request->MODULE_SPEC));
  167. request->MODULE_SPEC.MOD_OP_RSVD = HTOLE32 (0);
  168. request->MODULE_SPEC.MODULE_ID = HTOLE16 (PLC_MODULEID_PARAMETERS);
  169. request->MODULE_SPEC.MODULE_SUB_ID = HTOLE16 (0);
  170. request->MODULE_SPEC.MODULE_LENGTH = HTOLE16 (PLC_MODULE_SIZE);
  171. request->MODULE_SPEC.MODULE_OFFSET = HTOLE32 (0);
  172. if (SendMME (plc) <= 0)
  173. {
  174. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  175. return (-1);
  176. }
  177. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  178. {
  179. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  180. return (-1);
  181. }
  182. if (confirm->MSTATUS)
  183. {
  184. Failure (plc, PLC_WONTDOIT);
  185. return (-1);
  186. }
  187. do
  188. {
  189. nvm_header = (struct panther_nvm_header *) (& confirm->MODULE_DATA [offset]);
  190. if (LE16TOH (nvm_header->MajorVersion) != 1)
  191. {
  192. if (_allclr (plc->flags, PLC_SILENCE))
  193. {
  194. error (0, errno, NVM_HDR_VERSION, filename, module);
  195. }
  196. return (-1);
  197. }
  198. if (LE16TOH (nvm_header->MinorVersion) != 1)
  199. {
  200. if (_allclr (plc->flags, PLC_SILENCE))
  201. {
  202. error (0, errno, NVM_HDR_VERSION, filename, module);
  203. }
  204. return (-1);
  205. }
  206. if (LE32TOH (nvm_header->PrevHeader) != origin)
  207. {
  208. if (_allclr (plc->flags, PLC_SILENCE))
  209. {
  210. error (0, errno, NVM_HDR_LINK, filename, module);
  211. }
  212. return (-1);
  213. }
  214. if (checksum32 (nvm_header, sizeof (* nvm_header), 0))
  215. {
  216. error (0, 0, NVM_HDR_CHECKSUM, filename, module);
  217. return (-1);
  218. }
  219. origin = offset;
  220. offset += sizeof (* nvm_header);
  221. if (LE32TOH (nvm_header->ImageType) == NVM_IMAGE_PIB)
  222. {
  223. struct simple_pib * pib = (struct simple_pib *) (& confirm->MODULE_DATA [offset]);
  224. if (key == PLCID_MAC)
  225. {
  226. hexout (pib->MAC, sizeof (pib->MAC), HEX_EXTENDER, 0, stdout);
  227. }
  228. else if (key == PLCID_DAK)
  229. {
  230. hexout (pib->DAK, sizeof (pib->DAK), HEX_EXTENDER, 0, stdout);
  231. }
  232. else if (key == PLCID_NMK)
  233. {
  234. hexout (pib->NMK, sizeof (pib->NMK), HEX_EXTENDER, 0, stdout);
  235. }
  236. else if (key == PLCID_MFG)
  237. {
  238. pib->MFG [PIB_HFID_LEN -1] = (char) (0);
  239. printf ("%s", pib->MFG);
  240. }
  241. else if (key == PLCID_USR)
  242. {
  243. pib->USR [PIB_HFID_LEN -1] = (char) (0);
  244. printf ("%s", pib->USR);
  245. }
  246. else if (key == PLCID_NET)
  247. {
  248. pib->NET [PIB_HFID_LEN -1] = (char) (0);
  249. printf ("%s", pib->NET);
  250. }
  251. if (_anyset (plc->flags, PLC_NEWLINE))
  252. {
  253. putc (newline, stdout);
  254. }
  255. break;
  256. }
  257. if (checksum32 (& confirm->MODULE_DATA [offset], LE32TOH (nvm_header->ImageLength), nvm_header->ImageChecksum))
  258. {
  259. if (_allclr (plc->flags, PLC_SILENCE))
  260. {
  261. error (0, errno, NVM_IMG_CHECKSUM, filename, module);
  262. }
  263. return (-1);
  264. }
  265. offset += LE32TOH (nvm_header->ImageLength);
  266. module++;
  267. }
  268. while (~ nvm_header->NextHeader);
  269. return (0);
  270. }
  271. /*====================================================================*
  272. *
  273. * int main (int argc, char const * argv []);
  274. *
  275. *--------------------------------------------------------------------*/
  276. int main (int argc, char const * argv [])
  277. {
  278. extern struct channel channel;
  279. static char const * optv [] =
  280. {
  281. "Ac:Dei:MnNqSUv",
  282. "device",
  283. "Qualcomm Atheros Powerline Device Identity",
  284. "A\tEthernet address (MAC)",
  285. "c c\tcharacter delimiter is (c)",
  286. "D\tDevice Access Key (DAK)",
  287. "e\tredirect stderr to stdout",
  288. #if defined (WINPCAP) || defined (LIBPCAP)
  289. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  290. #else
  291. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  292. #endif
  293. "M\tNetwork Membership Key (NMK)",
  294. "n\tappend newline on output",
  295. "N\tnetwork HFID",
  296. "q\tquiet mode",
  297. "S\tmanufacturer HFID",
  298. "U\tuser HFID",
  299. "v\tverbose mode",
  300. (char const *) (0)
  301. };
  302. #include "../plc/plc.c"
  303. signed newline = '\n';
  304. signed key = PLCID_DAK;
  305. signed c;
  306. if (getenv (PLCDEVICE))
  307. {
  308. #if defined (WINPCAP) || defined (LIBPCAP)
  309. channel.ifindex = atoi (getenv (PLCDEVICE));
  310. #else
  311. channel.ifname = strdup (getenv (PLCDEVICE));
  312. #endif
  313. }
  314. optind = 1;
  315. while (~ (c = getoptv (argc, argv, optv)))
  316. {
  317. switch (c)
  318. {
  319. case 'A':
  320. key = PLCID_MAC;
  321. break;
  322. case 'c':
  323. newline = * optarg;
  324. break;
  325. case 'D':
  326. key = PLCID_DAK;
  327. break;
  328. case 'e':
  329. dup2 (STDOUT_FILENO, STDERR_FILENO);
  330. break;
  331. case 'i':
  332. #if defined (WINPCAP) || defined (LIBPCAP)
  333. channel.ifindex = atoi (optarg);
  334. #else
  335. channel.ifname = optarg;
  336. #endif
  337. break;
  338. case 'M':
  339. key = PLCID_NMK;
  340. break;
  341. case 'n':
  342. _setbits (plc.flags, PLC_NEWLINE);
  343. break;
  344. case 'N':
  345. key = PLCID_NET;
  346. break;
  347. case 'q':
  348. _setbits (channel.flags, CHANNEL_SILENCE);
  349. _setbits (plc.flags, PLC_SILENCE);
  350. break;
  351. case 'S':
  352. key = PLCID_MFG;
  353. break;
  354. case 'U':
  355. key = PLCID_USR;
  356. break;
  357. case 'v':
  358. _setbits (channel.flags, CHANNEL_VERBOSE);
  359. _setbits (plc.flags, PLC_VERBOSE);
  360. break;
  361. default:
  362. break;
  363. }
  364. }
  365. argc -= optind;
  366. argv += optind;
  367. openchannel (& channel);
  368. if (! (plc.message = malloc (sizeof (* plc.message))))
  369. {
  370. error (1, errno, PLC_NOMEMORY);
  371. }
  372. if (! argc)
  373. {
  374. function (& plc, newline, key);
  375. }
  376. while ((argc) && (* argv))
  377. {
  378. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  379. {
  380. error (1, errno, PLC_BAD_MAC, * argv);
  381. }
  382. function (& plc, newline, key);
  383. argv++;
  384. argc--;
  385. }
  386. free (plc.message);
  387. closechannel (& channel);
  388. return (0);
  389. }