LinkStatistics.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed LinkStatistics (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * this plugin for plcstat reads device link statistics using a
  15. * VS_LNK_STATS message and displays information on stdout; since
  16. * the output may not suite all requirements, users are encouraged
  17. * to modify as needed; there is way too much data displayed here;
  18. *
  19. * some code is duplicated for the sake of modularity;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef LINKSTATISTICS_SOURCE
  26. #define LINKSTATISTICS_SOURCE
  27. #include <stdint.h>
  28. #include <inttypes.h>
  29. #include <memory.h>
  30. #include "../plc/plc.h"
  31. #include "../tools/memory.h"
  32. #include "../tools/number.h"
  33. #include "../tools/error.h"
  34. /*====================================================================*
  35. * constants;
  36. *--------------------------------------------------------------------*/
  37. #define PAD ' '
  38. #define DIGITS 16
  39. /*====================================================================*
  40. * variables;
  41. *--------------------------------------------------------------------*/
  42. #ifndef __GNUC__
  43. #pragma pack (push,1)
  44. #endif
  45. typedef struct __packed transmit
  46. {
  47. uint64_t NUMTXMPDU_ACKD;
  48. uint64_t NUMTXMPDU_COLL;
  49. uint64_t NUMTXMPDU_FAIL;
  50. uint64_t NUMTXPBS_PASS;
  51. uint64_t NUMTXPBS_FAIL;
  52. }
  53. transmit;
  54. typedef struct __packed receive
  55. {
  56. uint64_t NUMRXMPDU_ACKD;
  57. uint64_t NUMRXMPDU_FAIL;
  58. uint64_t NUMRXPBS_PASS;
  59. uint64_t NUMRXPBS_FAIL;
  60. uint64_t SUMTURBOBER_PASS;
  61. uint64_t SUMTURBOBER_FAIL;
  62. uint8_t NUMRXINTERVALS;
  63. uint8_t RXINTERVALSTATS [1];
  64. }
  65. receive;
  66. typedef struct __packed interval
  67. {
  68. uint8_t RXPHYRATE_MBPS_0;
  69. uint64_t NUMRXPBS_PASS;
  70. uint64_t NUMRXPBS_FAIL;
  71. uint64_t SUMTURBOBER_PASS;
  72. uint64_t SUMTURBOBER_FAIL;
  73. }
  74. interval;
  75. #ifndef __GNUC__
  76. #pragma pack (pop)
  77. #endif
  78. /*====================================================================*
  79. *
  80. * unsigned error_rate (uint64_t passed, uint64_t failed);
  81. *
  82. * compute error rate for a given quantity; the error rate is the
  83. * ratio of failures to attempts;
  84. *
  85. *--------------------------------------------------------------------*/
  86. static float error_rate (uint64_t passed, uint64_t failed)
  87. {
  88. if ((passed) || (failed))
  89. {
  90. return ((float) (failed * 100) / (float) (passed + failed));
  91. }
  92. return (0);
  93. }
  94. /*====================================================================*
  95. *
  96. * float fec_bit_error_rate (struct receive * receive);
  97. *
  98. * compute the FEC-BER from the VS_LINK_STATS when DIRECTION=1 and
  99. * LID=0xF8;
  100. *
  101. *--------------------------------------------------------------------*/
  102. static float fec_bit_error_rate (struct receive * receive)
  103. {
  104. float FECBitErrorRate = 0;
  105. if (receive->SUMTURBOBER_PASS || receive->SUMTURBOBER_FAIL)
  106. {
  107. float TotalSumOfBitError = 100 * (float) (receive->SUMTURBOBER_PASS + receive->SUMTURBOBER_FAIL);
  108. float TotalSumOfBits = 8 * 520 * (float) (receive->NUMRXPBS_PASS + receive->NUMRXPBS_FAIL);
  109. FECBitErrorRate = TotalSumOfBitError / TotalSumOfBits;
  110. }
  111. return (FECBitErrorRate);
  112. }
  113. /*====================================================================*
  114. *
  115. * void transmit (struct transmit * transmit);
  116. *
  117. * display transmit statistics in fixed field format;
  118. *
  119. *--------------------------------------------------------------------*/
  120. static void TransmitStatistics (struct transmit * transmit)
  121. {
  122. printf (" TX");
  123. printf (" %20" PRId64, transmit->NUMTXPBS_PASS);
  124. printf (" %20" PRId64, transmit->NUMTXPBS_FAIL);
  125. printf (" %6.2f%%", error_rate (transmit->NUMTXPBS_PASS, transmit->NUMTXPBS_FAIL));
  126. printf (" %20" PRId64, transmit->NUMTXMPDU_ACKD);
  127. printf (" %20" PRId64, transmit->NUMTXMPDU_FAIL);
  128. printf (" %20" PRId64, transmit->NUMTXMPDU_COLL);
  129. printf (" %6.2f%%", error_rate (transmit->NUMTXMPDU_ACKD, transmit->NUMTXMPDU_FAIL));
  130. printf ("\n");
  131. return;
  132. }
  133. /*====================================================================*
  134. *
  135. * void Receive (struct receive * receive);
  136. *
  137. * display receive statistics in fixed field format;
  138. *
  139. *--------------------------------------------------------------------*/
  140. static void ReceiveStatistics (struct receive * receive)
  141. {
  142. printf (" RX");
  143. printf (" %20" PRId64, receive->NUMRXPBS_PASS);
  144. printf (" %20" PRId64, receive->NUMRXPBS_FAIL);
  145. printf (" %6.2f%%", error_rate (receive->NUMRXPBS_PASS, receive->NUMRXPBS_FAIL));
  146. printf (" %20" PRId64, receive->NUMRXMPDU_ACKD);
  147. printf (" %20" PRId64, receive->NUMRXMPDU_FAIL);
  148. printf (" %6.2f%%", error_rate (receive->NUMRXMPDU_ACKD, receive->NUMRXMPDU_FAIL));
  149. printf ("\n");
  150. return;
  151. }
  152. /*====================================================================*
  153. *
  154. * void Receive (struct receive * receive);
  155. *
  156. * display receive statistics in fixed field format for each slot;
  157. * the last line sumarizes results for all slots;
  158. *
  159. *--------------------------------------------------------------------*/
  160. static void Receive2 (struct receive * receive)
  161. {
  162. struct interval * interval = (struct interval *) (receive->RXINTERVALSTATS);
  163. uint8_t slot = 0;
  164. while (slot < receive->NUMRXINTERVALS)
  165. {
  166. printf (" %1d", slot);
  167. printf (" %3d", interval->RXPHYRATE_MBPS_0);
  168. printf (" %20" PRId64, interval->NUMRXPBS_PASS);
  169. printf (" %20" PRId64, interval->NUMRXPBS_FAIL);
  170. printf (" %6.2f%%", error_rate (interval->NUMRXPBS_PASS, interval->NUMRXPBS_FAIL));
  171. printf (" %20" PRId64, interval->SUMTURBOBER_PASS);
  172. printf (" %20" PRId64, interval->SUMTURBOBER_FAIL);
  173. printf (" %6.2f%%", error_rate (interval->SUMTURBOBER_PASS, interval->SUMTURBOBER_FAIL));
  174. printf ("\n");
  175. interval++;
  176. slot++;
  177. }
  178. printf (" ALL");
  179. printf (" %20" PRId64, receive->NUMRXPBS_PASS);
  180. printf (" %20" PRId64, receive->NUMRXPBS_FAIL);
  181. printf (" %6.2f%%", error_rate (receive->NUMRXPBS_PASS, receive->NUMRXPBS_FAIL));
  182. printf (" %20" PRId64, receive->SUMTURBOBER_PASS);
  183. printf (" %20" PRId64, receive->SUMTURBOBER_FAIL);
  184. printf (" %6.2f%%", error_rate (receive->SUMTURBOBER_PASS, receive->SUMTURBOBER_FAIL));
  185. printf (" %6.2f%%", fec_bit_error_rate (receive));
  186. printf ("\n");
  187. return;
  188. }
  189. /*====================================================================*
  190. *
  191. * signed LinkStatistics (struct plc * plc);
  192. *
  193. *--------------------------------------------------------------------*/
  194. signed LinkStatistics (struct plc * plc)
  195. {
  196. struct channel * channel = (struct channel *) (plc->channel);
  197. struct message * message = (struct message *) (plc->message);
  198. #ifndef __GNUC__
  199. #pragma pack (push,1)
  200. #endif
  201. struct __packed vs_lnk_stats_request
  202. {
  203. struct ethernet_hdr ethernet;
  204. struct qualcomm_hdr qualcomm;
  205. uint8_t MCONTROL;
  206. uint8_t DIRECTION;
  207. uint8_t LID;
  208. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  209. }
  210. * request = (struct vs_lnk_stats_request *) (message);
  211. struct __packed vs_lnk_stats_confirm
  212. {
  213. struct ethernet_hdr ethernet;
  214. struct qualcomm_hdr qualcomm;
  215. uint8_t MSTATUS;
  216. uint8_t DIRECTION;
  217. uint8_t LID;
  218. uint8_t TEI;
  219. uint8_t LSTATS [1];
  220. }
  221. * confirm = (struct vs_lnk_stats_confirm *) (message);
  222. #ifndef __GNUC__
  223. #pragma pack (pop)
  224. #endif
  225. memset (message, 0, sizeof (* message));
  226. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  227. QualcommHeader (& request->qualcomm, 0, (VS_LNK_STATS | MMTYPE_REQ));
  228. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  229. request->MCONTROL = plc->pushbutton;
  230. request->DIRECTION = plc->module;
  231. request->LID = plc->action;
  232. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  233. if (SendMME (plc) <= 0)
  234. {
  235. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  236. return (-1);
  237. }
  238. if (ReadMME (plc, 0, (VS_LNK_STATS | MMTYPE_CNF)) <= 0)
  239. {
  240. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  241. return (-1);
  242. }
  243. if (confirm->MSTATUS)
  244. {
  245. Failure (plc, PLC_WONTDOIT);
  246. return (-1);
  247. }
  248. if (confirm->DIRECTION == 0)
  249. {
  250. printf (" DIR");
  251. printf (" ----------- PBs PASS");
  252. printf (" ----------- PBs FAIL");
  253. printf (" PBs ERR");
  254. printf (" ---------- MPDU ACKD");
  255. printf (" ---------- MPDU FAIL");
  256. printf ("\n");
  257. TransmitStatistics ((struct transmit *) (confirm->LSTATS));
  258. printf ("\n");
  259. }
  260. if (confirm->DIRECTION == 1)
  261. {
  262. printf (" DIR");
  263. printf (" ----------- PBs PASS");
  264. printf (" ----------- PBs FAIL");
  265. printf (" PBs ERR");
  266. printf (" ---------- MPDU ACKD");
  267. printf (" ---------- MPDU FAIL");
  268. printf ("\n");
  269. ReceiveStatistics ((struct receive *) (confirm->LSTATS));
  270. printf ("\n");
  271. printf (" PHY");
  272. printf (" ----------- PBs PASS");
  273. printf (" ----------- PBs FAIL");
  274. printf (" PBs ERR");
  275. printf (" ----------- BER PASS");
  276. printf (" ----------- BER FAIL");
  277. printf (" BER ERR");
  278. printf ("\n");
  279. Receive2 ((struct receive *) (confirm->LSTATS));
  280. printf ("\n");
  281. }
  282. if (confirm->DIRECTION == 2)
  283. {
  284. printf (" DIR");
  285. printf (" ----------- PBs PASS");
  286. printf (" ----------- PBs FAIL");
  287. printf (" PBs ERR");
  288. printf (" ---------- MPDU ACKD");
  289. printf (" ---------- MPDU FAIL");
  290. printf ("\n");
  291. TransmitStatistics ((struct transmit *) (confirm->LSTATS));
  292. ReceiveStatistics ((struct receive *) (confirm->LSTATS + sizeof (struct transmit)));
  293. printf ("\n");
  294. printf (" PHY");
  295. printf (" ----------- PBs PASS");
  296. printf (" ----------- PBs FAIL");
  297. printf (" PBs ERR");
  298. printf (" ----------- BER PASS");
  299. printf (" ----------- BER FAIL");
  300. printf (" BER ERR");
  301. printf ("\n");
  302. Receive2 ((struct receive *) (confirm->LSTATS + sizeof (struct transmit)));
  303. printf ("\n");
  304. }
  305. return (0);
  306. }
  307. #endif