NetInfo1.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NetInfo1 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Request network membership information from the peer device using
  15. * the VS_NW_INFO message;
  16. *
  17. * This function is similar to function NetInfo1rmation() but the
  18. * output format is different;
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef NETWORKINFO1_SOURCE
  25. #define NETWORKINFO1_SOURCE
  26. #include <stdint.h>
  27. #include <memory.h>
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed NetInfo1 (struct plc * plc)
  33. {
  34. extern char const * StationRole [];
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. #ifndef __GNUC__
  38. #pragma pack (push,1)
  39. #endif
  40. struct __packed vs_nw_info_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_hdr qualcomm;
  44. }
  45. * request = (struct vs_nw_info_request *) (message);
  46. struct __packed vs_nw_info_confirm
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_hdr qualcomm;
  50. uint8_t data [1];
  51. }
  52. * confirm = (struct vs_nw_info_confirm *) (message);
  53. struct __packed station
  54. {
  55. uint8_t MAC [ETHER_ADDR_LEN];
  56. uint8_t TEI;
  57. uint8_t BDA [ETHER_ADDR_LEN];
  58. uint8_t AVGTX;
  59. uint8_t AVGRX;
  60. }
  61. * station;
  62. struct __packed network
  63. {
  64. uint8_t NID [7];
  65. uint8_t SNID;
  66. uint8_t TEI;
  67. uint8_t ROLE;
  68. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  69. uint8_t CCO_TEI;
  70. uint8_t NUMSTAS;
  71. struct station stations [1];
  72. }
  73. * network;
  74. struct __packed networks
  75. {
  76. uint8_t NUMAVLNS;
  77. struct network networks [1];
  78. }
  79. * networks = (struct networks *) (confirm->data);
  80. #ifndef __GNUC__
  81. #pragma pack (pop)
  82. #endif
  83. Request (plc, "Fetch Network Information");
  84. memset (message, 0, sizeof (* message));
  85. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  86. QualcommHeader (& request->qualcomm, 0, (VS_NW_INFO | MMTYPE_REQ));
  87. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  88. if (SendMME (plc) <= 0)
  89. {
  90. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  91. return (-1);
  92. }
  93. while (ReadMME (plc, 0, (VS_NW_INFO | MMTYPE_CNF)) > 0)
  94. {
  95. char string [24];
  96. Confirm (plc, "Found %d Network(s)\n", networks->NUMAVLNS);
  97. network = (struct network *) (& networks->networks);
  98. while (networks->NUMAVLNS--)
  99. {
  100. printf ("\tnetwork->NID = %s\n", hexstring (string, sizeof (string), network->NID, sizeof (network->NID)));
  101. printf ("\tnetwork->SNID = %d\n", network->SNID);
  102. printf ("\tnetwork->TEI = %d\n", network->TEI);
  103. printf ("\tnetwork->ROLE = 0x%02X (%s)\n", network->ROLE, StationRole [network->ROLE]);
  104. printf ("\tnetwork->CCO_DA = %s\n", hexstring (string, sizeof (string), network->CCO_MAC, sizeof (network->CCO_MAC)));
  105. printf ("\tnetwork->CCO_TEI = %d\n", network->CCO_TEI);
  106. printf ("\tnetwork->STATIONS = %d\n", network->NUMSTAS);
  107. printf ("\n");
  108. station = (struct station *) (& network->stations);
  109. while (network->NUMSTAS--)
  110. {
  111. printf ("\t\tstation->MAC = %s\n", hexstring (string, sizeof (string), station->MAC, sizeof (station->MAC)));
  112. printf ("\t\tstation->TEI = %d\n", station->TEI);
  113. printf ("\t\tstation->BDA = %s\n", hexstring (string, sizeof (string), station->BDA, sizeof (station->BDA)));
  114. printf ("\t\tstation->AvgPHYDR_TX = %03d mbps\n", station->AVGTX);
  115. printf ("\t\tstation->AvgPHYDR_RX = %03d mbps\n", station->AVGRX);
  116. printf ("\n");
  117. station++;
  118. }
  119. network = (struct network *) (station);
  120. }
  121. }
  122. return (0);
  123. }
  124. #endif