NetworkInformation2.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NetworkInformation2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Request network membership information for the peer device using
  15. * a VS_NW_INFO message;
  16. *
  17. * This function is similar to function NetworkInfo() but the output
  18. * format is different;
  19. *
  20. * See the Atheros HomePlug AV Firmware Technical Reference Manual
  21. * for more information;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef NETWORKINFORMATION2_SOURCE
  28. #define NETWORKINFORMATION2_SOURCE
  29. #include <stdint.h>
  30. #include <memory.h>
  31. #include "../tools/memory.h"
  32. #include "../tools/number.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. signed NetworkInformation2 (struct plc * plc)
  36. {
  37. struct channel * channel = (struct channel *) (plc->channel);
  38. struct message * message = (struct message *) (plc->message);
  39. #ifndef __GNUC__
  40. #pragma pack (push,1)
  41. #endif
  42. struct __packed vs_nw_info_request
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_fmi qualcomm;
  46. }
  47. * request = (struct vs_nw_info_request *) (message);
  48. struct __packed vs_nw_info_confirm
  49. {
  50. struct ethernet_hdr ethernet;
  51. struct qualcomm_fmi qualcomm;
  52. uint8_t SUB_VERSION;
  53. uint8_t Reserved;
  54. uint16_t DATA_LEN;
  55. uint8_t DATA [1];
  56. }
  57. * confirm = (struct vs_nw_info_confirm *) (message);
  58. struct __packed station
  59. {
  60. uint8_t MAC [ETHER_ADDR_LEN];
  61. uint8_t TEI;
  62. uint8_t Reserved [3];
  63. uint8_t BDA [ETHER_ADDR_LEN];
  64. uint16_t AVGTX;
  65. uint8_t COUPLING;
  66. uint8_t Reserved3;
  67. uint16_t AVGRX;
  68. uint16_t Reserved4;
  69. }
  70. * station;
  71. struct __packed network
  72. {
  73. uint8_t NID [7];
  74. uint8_t Reserved1 [2];
  75. uint8_t SNID;
  76. uint8_t TEI;
  77. uint8_t Reserved2 [4];
  78. uint8_t ROLE;
  79. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  80. uint8_t CCO_TEI;
  81. uint8_t Reserved3 [3];
  82. uint8_t NUMSTAS;
  83. uint8_t Reserved4 [5];
  84. struct station stations [1];
  85. }
  86. * network;
  87. struct __packed networks
  88. {
  89. uint8_t Reserved;
  90. uint8_t NUMAVLNS;
  91. struct network networks [1];
  92. }
  93. * networks = (struct networks *) (confirm->DATA);
  94. #ifndef __GNUC__
  95. #pragma pack (pop)
  96. #endif
  97. memset (message, 0, sizeof (* message));
  98. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  99. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  100. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  101. {
  102. error (1, errno, CHANNEL_CANTSEND);
  103. }
  104. if (readpacket (channel, message, sizeof (* message)) <= 0)
  105. {
  106. error (1, errno, CHANNEL_CANTREAD);
  107. }
  108. network = (struct network *) (& networks->networks);
  109. while (networks->NUMAVLNS--)
  110. {
  111. char string [24];
  112. printf (" NID %20s", hexstring (string, sizeof (string), network->NID, sizeof (network->NID)));
  113. printf (" SNID %03d", network->SNID);
  114. printf ("\n");
  115. printf (" %s", (network->TEI == network->CCO_TEI)? "CCO": "STA");
  116. printf (" TEI %03d", network->TEI);
  117. printf (" MAC %17s", hexstring (string, sizeof (string), request->ethernet.OSA, sizeof (request->ethernet.OSA)));
  118. printf (" BDA %17s", hexstring (string, sizeof (string), request->ethernet.ODA, sizeof (request->ethernet.ODA)));
  119. printf ("\n");
  120. station = (struct station *) (& network->stations);
  121. while (network->NUMSTAS--)
  122. {
  123. printf (" %s", (station->TEI == network->CCO_TEI)? "CCO": "STA");
  124. printf (" TEI %03d", station->TEI);
  125. printf (" MAC %17s", hexstring (string, sizeof (string), station->MAC, sizeof (station->MAC)));
  126. printf (" BDA %17s", hexstring (string, sizeof (string), station->BDA, sizeof (station->BDA)));
  127. printf (" TX %03d", station->AVGTX);
  128. printf (" RX %03d", station->AVGRX);
  129. printf ("\n");
  130. station++;
  131. }
  132. network = (struct network *) (station);
  133. }
  134. return (0);
  135. }
  136. #endif