int6kid.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6kid.c - Qualcomm Atheros Powerline Device Identity
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Matthieu Poullet <m.poullet@avm.de>
  15. *
  16. *--------------------------------------------------------------------*/
  17. /*====================================================================*
  18. * system header files;
  19. *--------------------------------------------------------------------*/
  20. #include <unistd.h>
  21. #include <stdlib.h>
  22. #include <limits.h>
  23. #include <string.h>
  24. #include <ctype.h>
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../tools/getoptv.h"
  29. #include "../tools/putoptv.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/number.h"
  32. #include "../tools/symbol.h"
  33. #include "../tools/types.h"
  34. #include "../tools/flags.h"
  35. #include "../tools/files.h"
  36. #include "../tools/error.h"
  37. #include "../plc/plc.h"
  38. #include "../ram/nvram.h"
  39. #include "../ram/sdram.h"
  40. #include "../nvm/nvm.h"
  41. #include "../pib/pib.h"
  42. #include "../mme/mme.h"
  43. /*====================================================================*
  44. * custom source files;
  45. *--------------------------------------------------------------------*/
  46. #ifndef MAKEFILE
  47. #include "../tools/getoptv.c"
  48. #include "../tools/putoptv.c"
  49. #include "../tools/version.c"
  50. #include "../tools/uintspec.c"
  51. #include "../tools/hexencode.c"
  52. #include "../tools/hexdecode.c"
  53. #include "../tools/todigit.c"
  54. #include "../tools/hexdump.c"
  55. #include "../tools/hexout.c"
  56. #include "../tools/error.c"
  57. #include "../tools/synonym.c"
  58. #endif
  59. #ifndef MAKEFILE
  60. #include "../mme/EthernetHeader.c"
  61. #include "../mme/QualcommHeader.c"
  62. #include "../mme/UnwantedMessage.c"
  63. #include "../plc/Display.c"
  64. #include "../plc/Devices.c"
  65. #endif
  66. #ifndef MAKEFILE
  67. #include "../ether/openchannel.c"
  68. #include "../ether/closechannel.c"
  69. #include "../ether/readpacket.c"
  70. #include "../ether/sendpacket.c"
  71. #include "../ether/channel.c"
  72. #endif
  73. #ifndef MAKEFILE
  74. #include "../mme/MMECode.c"
  75. #endif
  76. /*====================================================================*
  77. * program constants;
  78. *--------------------------------------------------------------------*/
  79. #define INT6KID_VERBOSE (1 << 0)
  80. #define INT6KID_SILENCE (1 << 1)
  81. #define INT6KID_NEWLINE (1 << 2)
  82. #define INT6KID_DAK 0
  83. #define INT6KID_NMK 1
  84. #define INT6KID_MAC 2
  85. #define INT6KID_MFG 3
  86. #define INT6KID_USR 4
  87. #define INT6KID_NET 5
  88. /*====================================================================*
  89. *
  90. * void ReadKey1 (struct channel * channel, unsigned c, int key);
  91. *
  92. * read the first block of the PIB from a device then echo one of
  93. * several parameters on stdout as a string; program output can be
  94. * used in scripts to define variables or compare strings;
  95. *
  96. * this function is an abridged version of ReadParameters(); it reads only
  97. * the first 1024 bytes of the PIB then stops; most parameters of
  98. * general interest occur in that block;
  99. *
  100. *--------------------------------------------------------------------*/
  101. static void ReadKey1 (struct channel * channel, unsigned c, int key)
  102. {
  103. struct message message;
  104. static signed count = 0;
  105. signed packetsize;
  106. #ifndef __GNUC__
  107. #pragma pack (push,1)
  108. #endif
  109. struct __packed vs_rd_mod_request
  110. {
  111. struct ethernet_hdr ethernet;
  112. struct qualcomm_hdr qualcomm;
  113. uint8_t MODULEID;
  114. uint8_t RESERVED;
  115. uint16_t MLENGTH;
  116. uint32_t MOFFSET;
  117. uint8_t DAK [16];
  118. }
  119. * request = (struct vs_rd_mod_request *) (& message);
  120. struct __packed vs_rd_mod_confirm
  121. {
  122. struct ethernet_hdr ethernet;
  123. struct qualcomm_hdr qualcomm;
  124. uint8_t MSTATUS;
  125. uint8_t RESERVED1 [3];
  126. uint8_t MODULEID;
  127. uint8_t RESERVED2;
  128. uint16_t MLENGTH;
  129. uint32_t MOFFSET;
  130. uint32_t MCHKSUM;
  131. struct simple_pib pib;
  132. }
  133. * confirm = (struct vs_rd_mod_confirm *) (& message);
  134. #ifndef __GNUC__
  135. #pragma pack (pop)
  136. #endif
  137. memset (& message, 0, sizeof (message));
  138. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  139. QualcommHeader (& request->qualcomm, 0, (VS_RD_MOD | MMTYPE_REQ));
  140. request->MODULEID = VS_MODULE_PIB;
  141. request->MLENGTH = HTOLE16 (PLC_RECORD_SIZE);
  142. request->MOFFSET = HTOLE32 (0);
  143. if (sendpacket (channel, & message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) < 0)
  144. {
  145. error (1, errno, CHANNEL_CANTSEND);
  146. }
  147. while ((packetsize = readpacket (channel, & message, sizeof (message))) > 0)
  148. {
  149. if (UnwantedMessage (& message, packetsize, 0, (VS_RD_MOD | MMTYPE_CNF)))
  150. {
  151. continue;
  152. }
  153. if (confirm->MSTATUS)
  154. {
  155. error (0, 0, "%s (%0X): ", MMECode (confirm->qualcomm.MMTYPE, confirm->MSTATUS), confirm->MSTATUS);
  156. continue;
  157. }
  158. if (count++ > 0)
  159. {
  160. putc (c, stdout);
  161. }
  162. if (key == INT6KID_MAC)
  163. {
  164. hexout (confirm->pib.MAC, sizeof (confirm->pib.MAC), HEX_EXTENDER, 0, stdout);
  165. continue;
  166. }
  167. if (key == INT6KID_DAK)
  168. {
  169. hexout (confirm->pib.DAK, sizeof (confirm->pib.DAK), HEX_EXTENDER, 0, stdout);
  170. continue;
  171. }
  172. if (key == INT6KID_NMK)
  173. {
  174. hexout (confirm->pib.NMK, sizeof (confirm->pib.NMK), HEX_EXTENDER, 0, stdout);
  175. continue;
  176. }
  177. if (key == INT6KID_MFG)
  178. {
  179. confirm->pib.MFG [PIB_HFID_LEN -1] = (char) (0);
  180. printf ("%s", confirm->pib.MFG);
  181. continue;
  182. }
  183. if (key == INT6KID_USR)
  184. {
  185. confirm->pib.USR [PIB_HFID_LEN -1] = (char) (0);
  186. printf ("%s", confirm->pib.USR);
  187. continue;
  188. }
  189. if (key == INT6KID_NET)
  190. {
  191. confirm->pib.NET [PIB_HFID_LEN -1] = (char) (0);
  192. printf ("%s", confirm->pib.NET);
  193. continue;
  194. }
  195. }
  196. if (packetsize < 0)
  197. {
  198. error (1, errno, CHANNEL_CANTREAD);
  199. }
  200. return;
  201. }
  202. /*====================================================================*
  203. *
  204. * int main (int argc, char const * argv []);
  205. *
  206. *--------------------------------------------------------------------*/
  207. int main (int argc, char const * argv [])
  208. {
  209. extern struct channel channel;
  210. static char const * optv [] =
  211. {
  212. "Ac:Dei:MnNqSUv",
  213. "device",
  214. "Qualcomm Atheros Powerline Device Identity",
  215. "A\tEthernet address (MAC)",
  216. "c c\tcharacter delimiter is (c)",
  217. "D\tDevice Access Key (DAK)",
  218. "e\tredirect stderr to stdout",
  219. #if defined (WINPCAP) || defined (LIBPCAP)
  220. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  221. #else
  222. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  223. #endif
  224. "M\tNetwork Membership Key (NMK)",
  225. "n\tappend newline on output",
  226. "N\tnetwork HFID",
  227. "q\tquiet mode",
  228. "S\tmanufacturer HFID",
  229. "U\tuser HFID",
  230. "v\tverbose mode",
  231. (char const *) (0)
  232. };
  233. signed newline = '\n';
  234. signed key = INT6KID_DAK;
  235. flag_t flags = (flag_t) (0);
  236. signed c;
  237. if (getenv (PLCDEVICE))
  238. {
  239. #if defined (WINPCAP) || defined (LIBPCAP)
  240. channel.ifindex = atoi (getenv (PLCDEVICE));
  241. #else
  242. channel.ifname = strdup (getenv (PLCDEVICE));
  243. #endif
  244. }
  245. optind = 1;
  246. while (~ (c = getoptv (argc, argv, optv)))
  247. {
  248. switch (c)
  249. {
  250. case 'A':
  251. key = INT6KID_MAC;
  252. break;
  253. case 'c':
  254. newline = * optarg;
  255. break;
  256. case 'D':
  257. key = INT6KID_DAK;
  258. break;
  259. case 'e':
  260. dup2 (STDOUT_FILENO, STDERR_FILENO);
  261. break;
  262. case 'i':
  263. #if defined (WINPCAP) || defined (LIBPCAP)
  264. channel.ifindex = atoi (optarg);
  265. #else
  266. channel.ifname = optarg;
  267. #endif
  268. break;
  269. case 'M':
  270. key = INT6KID_NMK;
  271. break;
  272. case 'n':
  273. _setbits (flags, INT6KID_NEWLINE);
  274. break;
  275. case 'N':
  276. key = INT6KID_NET;
  277. break;
  278. case 'q':
  279. _setbits (channel.flags, CHANNEL_SILENCE);
  280. _setbits (flags, PLC_SILENCE);
  281. break;
  282. case 'S':
  283. key = INT6KID_MFG;
  284. break;
  285. case 'U':
  286. key = INT6KID_USR;
  287. break;
  288. case 'v':
  289. _setbits (channel.flags, CHANNEL_VERBOSE);
  290. _setbits (flags, PLC_VERBOSE);
  291. break;
  292. default:
  293. break;
  294. }
  295. }
  296. argc -= optind;
  297. argv += optind;
  298. openchannel (& channel);
  299. if (! argc)
  300. {
  301. ReadKey1 (& channel, newline, key);
  302. if (_anyset (flags, INT6KID_NEWLINE))
  303. {
  304. putc (newline, stdout);
  305. }
  306. }
  307. while ((argc) && (* argv))
  308. {
  309. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  310. {
  311. error (1, errno, PLC_BAD_MAC, * argv);
  312. }
  313. ReadKey1 (& channel, newline, key);
  314. if (_anyset (flags, INT6KID_NEWLINE))
  315. {
  316. putc (newline, stdout);
  317. }
  318. argv++;
  319. argc--;
  320. }
  321. closechannel (& channel);
  322. return (0);
  323. }