ampID.c 7.9 KB

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