plcotst.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plcotst.c - Qualcomm Atheros PLC One-Time Self-Test Manager;
  11. *
  12. * Use VS_SELFTEST_ONETIME_CONFIG and VS_SELFTEST_RESULTS message
  13. * type to configure the Atheros PLC One-Time Self-Test then read
  14. * and display stored selftest results;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <unistd.h>
  24. #include <stdlib.h>
  25. #include <stdint.h>
  26. #include <limits.h>
  27. /*====================================================================*
  28. * custom header files;
  29. *--------------------------------------------------------------------*/
  30. #include "../tools/getoptv.h"
  31. #include "../tools/putoptv.h"
  32. #include "../tools/memory.h"
  33. #include "../tools/number.h"
  34. #include "../tools/symbol.h"
  35. #include "../tools/types.h"
  36. #include "../tools/flags.h"
  37. #include "../tools/files.h"
  38. #include "../tools/error.h"
  39. #include "../plc/plc.h"
  40. /*====================================================================*
  41. * custom source files;
  42. *--------------------------------------------------------------------*/
  43. #ifndef MAKEFILE
  44. #include "../plc/Confirm.c"
  45. #include "../plc/Display.c"
  46. #include "../plc/Failure.c"
  47. #include "../plc/Request.c"
  48. #include "../plc/ReadMME.c"
  49. #include "../plc/SendMME.c"
  50. #include "../mme/UnwantedMessage.c"
  51. #include "../plc/Devices.c"
  52. #endif
  53. #ifndef MAKEFILE
  54. #include "../tools/getoptv.c"
  55. #include "../tools/putoptv.c"
  56. #include "../tools/version.c"
  57. #include "../tools/uintspec.c"
  58. #include "../tools/hexdump.c"
  59. #include "../tools/hexencode.c"
  60. #include "../tools/hexdecode.c"
  61. #include "../tools/todigit.c"
  62. #include "../tools/synonym.c"
  63. #include "../tools/error.c"
  64. #endif
  65. #ifndef MAKEFILE
  66. #include "../ether/openchannel.c"
  67. #include "../ether/closechannel.c"
  68. #include "../ether/readpacket.c"
  69. #include "../ether/sendpacket.c"
  70. #include "../ether/channel.c"
  71. #endif
  72. #ifndef MAKEFILE
  73. #include "../mme/MMECode.c"
  74. #include "../mme/EthernetHeader.c"
  75. #include "../mme/QualcommHeader.c"
  76. #endif
  77. /*====================================================================*
  78. * program constants;
  79. *--------------------------------------------------------------------*/
  80. #define PLCOTST_MVERSION 0
  81. #define PLCOTST_RUNAFTERRESET 1
  82. #define PLCOTST_DELAYTORUN 0
  83. #define PLCOTST_MEMRUNS 0
  84. #define PLCOTST_FLASHRUNS 0
  85. #define PLCOTST_RESETONDONE 0
  86. /*====================================================================*
  87. * program variables;
  88. *--------------------------------------------------------------------*/
  89. #ifndef __GNUC__
  90. #pragma pack (push,1)
  91. #endif
  92. typedef struct __packed selftest
  93. {
  94. uint8_t MVERSION;
  95. uint8_t RUNAFTERRESET;
  96. uint32_t DELAYTORUN;
  97. uint32_t MEMRUNS;
  98. uint32_t FLASHRUNS;
  99. uint8_t RESETONDONE;
  100. }
  101. selftest;
  102. #ifndef __GNUC__
  103. #pragma pack (pop)
  104. #endif
  105. /*====================================================================*
  106. *
  107. * signed configure (struct plc * plc, struct selftest * selftest);
  108. *
  109. *--------------------------------------------------------------------*/
  110. static signed configure (struct plc * plc, struct selftest * selftest)
  111. {
  112. struct channel * channel = (struct channel *) (plc->channel);
  113. struct message * message = (struct message *) (plc->message);
  114. #ifndef __GNUC__
  115. #pragma pack (push,1)
  116. #endif
  117. struct __packed vs_selftest_onetime_config_request
  118. {
  119. struct ethernet_hdr ethernet;
  120. struct qualcomm_hdr qualcomm;
  121. uint8_t MVERSION;
  122. uint8_t RUNAFTERRESET;
  123. uint32_t DELAYTORUN;
  124. uint32_t MEMRUNS;
  125. uint32_t FLASHRUNS;
  126. uint8_t RESETONDONE;
  127. }
  128. * request = (struct vs_selftest_onetime_config_request *) (message);
  129. struct __packed vs_selftest_onetime_config_confirm
  130. {
  131. struct ethernet_hdr ethernet;
  132. struct qualcomm_hdr qualcomm;
  133. uint8_t MSTATUS;
  134. }
  135. * confirm = (struct vs_selftest_onetime_config_confirm *) (message);
  136. #ifndef __GNUC__
  137. #pragma pack (pop)
  138. #endif
  139. Request (plc, "Configure One-Time Self-Test");
  140. memset (message, 0, sizeof (* message));
  141. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  142. QualcommHeader (& request->qualcomm, 0, (VS_SELFTEST_ONETIME_CONFIG | MMTYPE_REQ));
  143. request->MVERSION = selftest->MVERSION;
  144. request->RUNAFTERRESET = selftest->RUNAFTERRESET;
  145. request->DELAYTORUN = HTOLE32 (selftest->DELAYTORUN);
  146. request->MEMRUNS = HTOLE32 (selftest->MEMRUNS);
  147. request->FLASHRUNS = HTOLE32 (selftest->FLASHRUNS);
  148. request->RESETONDONE = selftest->RESETONDONE;
  149. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  150. if (SendMME (plc) <= 0)
  151. {
  152. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  153. return (-1);
  154. }
  155. while (ReadMME (plc, 0, (VS_SELFTEST_ONETIME_CONFIG | MMTYPE_CNF)) > 0)
  156. {
  157. if (confirm->MSTATUS)
  158. {
  159. Failure (plc, PLC_WONTDOIT);
  160. continue;
  161. }
  162. Display (plc, "%s", "Configured");
  163. }
  164. return (0);
  165. }
  166. /*====================================================================*
  167. *
  168. * signed retrieve (struct plc * plc, struct selftest * selftest);
  169. *
  170. *--------------------------------------------------------------------*/
  171. static signed retrieve (struct plc * plc, struct selftest * selftest)
  172. {
  173. struct channel * channel = (struct channel *) (plc->channel);
  174. struct message * message = (struct message *) (plc->message);
  175. #ifndef __GNUC__
  176. #pragma pack (push,1)
  177. #endif
  178. struct __packed vs_selftest_results_request
  179. {
  180. struct ethernet_hdr ethernet;
  181. struct qualcomm_hdr qualcomm;
  182. uint8_t MVERSION;
  183. uint8_t MACTION;
  184. }
  185. * request = (struct vs_selftest_results_request *) (message);
  186. struct __packed vs_selftest_results_confirm
  187. {
  188. struct ethernet_hdr ethernet;
  189. struct qualcomm_hdr qualcomm;
  190. uint8_t MVERSION;
  191. uint8_t MSTATUS;
  192. uint32_t NUMBER [6];
  193. }
  194. * confirm = (struct vs_selftest_results_confirm *) (message);
  195. #ifndef __GNUC__
  196. #pragma pack (pop)
  197. #endif
  198. Request (plc, "Retrieve Self-Test Results");
  199. memset (message, 0, sizeof (* message));
  200. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  201. QualcommHeader (& request->qualcomm, 0, (VS_SELFTEST_RESULTS | MMTYPE_REQ));
  202. request->MVERSION = selftest->MVERSION;
  203. request->MACTION = plc->action;
  204. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  205. if (SendMME (plc) <= 0)
  206. {
  207. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  208. return (-1);
  209. }
  210. while (ReadMME (plc, 0, (VS_SELFTEST_RESULTS | MMTYPE_CNF)) > 0)
  211. {
  212. if ((confirm->MSTATUS == 2) || (confirm->MSTATUS == 4) || (confirm->MSTATUS == 6))
  213. {
  214. Display (plc, "Memory test %d Passed %d Failed %d Flash test %d Passed %d Failed %d", LE32TOH (confirm->NUMBER [0]), LE32TOH (confirm->NUMBER [1]), LE32TOH (confirm->NUMBER [2]), LE32TOH (confirm->NUMBER [3]), LE32TOH (confirm->NUMBER [4]), LE32TOH (confirm->NUMBER [5]));
  215. continue;
  216. }
  217. if (confirm->MSTATUS == 3)
  218. {
  219. Failure (plc, "%d seconds remaining", LE32TOH (confirm->NUMBER [0]));
  220. continue;
  221. }
  222. if (confirm->MSTATUS)
  223. {
  224. Failure (plc, PLC_WONTDOIT);
  225. continue;
  226. }
  227. Confirm (plc, "Cleared Results");
  228. }
  229. return (0);
  230. }
  231. /*====================================================================*
  232. *
  233. * signed manager (struct plc * plc, struct selftest * selftest);
  234. *
  235. *--------------------------------------------------------------------*/
  236. static signed manager (struct plc * plc, struct selftest * selftest)
  237. {
  238. if (_anyset (plc->flags, PLC_CONFIGURE))
  239. {
  240. configure (plc, selftest);
  241. }
  242. if (_anyset (plc->flags, PLC_RESULTS))
  243. {
  244. retrieve (plc, selftest);
  245. }
  246. return (0);
  247. }
  248. /*====================================================================*
  249. *
  250. * int main (int argc, char const * argv[]);
  251. *
  252. *--------------------------------------------------------------------*/
  253. int main (int argc, char const * argv [])
  254. {
  255. extern struct channel channel;
  256. static char const * optv [] =
  257. {
  258. "c:Cd:ef:i:m:qr:R:t:vx",
  259. "device [device] [...] [> stdout]",
  260. "Qualcomm Atheros Powerline One-Time Self-Test Manager",
  261. "c n\tconfiguration version",
  262. "C\tclear selftest results",
  263. "d n\tdelay selftest start by (n) seconds [" LITERAL (PLCOTST_DELAYTORUN) "]",
  264. "e\tredirect stderr to stdout",
  265. "f n\trun flash selftest (n) times [" LITERAL (PLCOTST_FLASHRUNS) "]",
  266. #if defined (WINPCAP) || defined (LIBPCAP)
  267. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  268. #else
  269. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  270. #endif
  271. "m n\trun memory selftest (n) times [" LITERAL (PLCOTST_MEMRUNS) "]",
  272. "q\tquiet mode",
  273. "r n\trun selftest after reset [" LITERAL (PLCOTST_RUNAFTERRESET) "]",
  274. "R n\treset after selftest completes [" LITERAL (PLCOTST_RESETONDONE) "]",
  275. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  276. "v\tverbose mode",
  277. "x\texit on error",
  278. (char const *) (0)
  279. };
  280. #include "../plc/plc.c"
  281. struct selftest selftest =
  282. {
  283. PLCOTST_MVERSION,
  284. PLCOTST_RUNAFTERRESET,
  285. PLCOTST_DELAYTORUN,
  286. PLCOTST_MEMRUNS,
  287. PLCOTST_FLASHRUNS,
  288. PLCOTST_RESETONDONE
  289. };
  290. signed c;
  291. if (getenv (PLCDEVICE))
  292. {
  293. channel.ifname = strdup (getenv (PLCDEVICE));
  294. }
  295. optind = 1;
  296. while (~ (c = getoptv (argc, argv, optv)))
  297. {
  298. switch (c)
  299. {
  300. case 'c':
  301. selftest.MVERSION = (uint8_t) (uintspec (optarg, 0, UCHAR_MAX));
  302. break;
  303. case 'C':
  304. _setbits (plc.flags, PLC_RESULTS);
  305. plc.action = 1;
  306. break;
  307. case 'd':
  308. _setbits (plc.flags, PLC_CONFIGURE);
  309. selftest.DELAYTORUN = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  310. break;
  311. case 'e':
  312. dup2 (STDOUT_FILENO, STDERR_FILENO);
  313. break;
  314. case 'f':
  315. _setbits (plc.flags, PLC_CONFIGURE);
  316. selftest.FLASHRUNS = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  317. break;
  318. case 'i':
  319. #if defined (WINPCAP) || defined (LIBPCAP)
  320. channel.ifindex = atoi (optarg);
  321. #else
  322. channel.ifname = optarg;
  323. #endif
  324. break;
  325. case 'm':
  326. _setbits (plc.flags, PLC_CONFIGURE);
  327. selftest.MEMRUNS = (uint32_t) (uintspec (optarg, 0, UINT_MAX));
  328. break;
  329. case 'q':
  330. _setbits (channel.flags, CHANNEL_SILENCE);
  331. _setbits (plc.flags, PLC_SILENCE);
  332. break;
  333. case 'r':
  334. _setbits (plc.flags, PLC_CONFIGURE);
  335. selftest.RUNAFTERRESET = (uint8_t) (uintspec (optarg, false, true));
  336. break;
  337. case 'R':
  338. _setbits (plc.flags, PLC_CONFIGURE);
  339. selftest.RESETONDONE = (uint8_t) (uintspec (optarg, false, true));
  340. break;
  341. case 't':
  342. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  343. break;
  344. case 'v':
  345. _setbits (channel.flags, CHANNEL_VERBOSE);
  346. _setbits (plc.flags, PLC_VERBOSE);
  347. break;
  348. case 'x':
  349. _setbits (plc.flags, PLC_BAILOUT);
  350. break;
  351. default:
  352. break;
  353. }
  354. }
  355. argc -= optind;
  356. argv += optind;
  357. if (_allclr (plc.flags, (PLC_CONFIGURE | PLC_RESULTS)))
  358. {
  359. _setbits (plc.flags, PLC_RESULTS);
  360. }
  361. openchannel (& channel);
  362. if (! (plc.message = malloc (sizeof (* plc.message))))
  363. {
  364. error (1, errno, PLC_NOMEMORY);
  365. }
  366. if (! argc)
  367. {
  368. manager (& plc, & selftest);
  369. }
  370. while ((argc) && (* argv))
  371. {
  372. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  373. {
  374. error (1, errno, PLC_BAD_MAC, * argv);
  375. }
  376. manager (& plc, & selftest);
  377. argv++;
  378. argc--;
  379. }
  380. free (plc.message);
  381. closechannel (& channel);
  382. return (0);
  383. }