ProxyNetworkInfo.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*====================================================================*
  2. * Copyright (c) 2019 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * signed ProxyNetworkInfo (struct plc * plc);
  9. *
  10. * nda.h
  11. *
  12. * displays the list of PCos and hidden STAs in the network using
  13. * VS_PROXY_NW_INFO message;
  14. *
  15. * Contributor(s):
  16. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef PROXYNETWORKINFO_SOURCE
  20. #define PROXYNETWORKINFO_SOURCE
  21. #include <stdint.h>
  22. #include "../plc/plc.h"
  23. #include "../tools/error.h"
  24. #define MAX_HIDDEN_STA 8
  25. signed GetCCoMacAddress (struct plc * plc, uint8_t * cco_macaddr)
  26. {
  27. struct channel * channel = (struct channel *) (plc->channel);
  28. struct message * message = (struct message *) (plc->message);
  29. #ifndef __GNUC__
  30. #pragma pack (push,1)
  31. #endif
  32. struct __packed vs_nw_info_request
  33. {
  34. struct ethernet_hdr ethernet;
  35. struct qualcomm_fmi qualcomm;
  36. }
  37. * request = (struct vs_nw_info_request *) (message);
  38. struct __packed vs_nw_info_confirm
  39. {
  40. struct ethernet_hdr ethernet;
  41. struct qualcomm_fmi qualcomm;
  42. uint8_t SUB_VERSION;
  43. uint8_t Reserved;
  44. uint16_t DATA_LEN;
  45. uint8_t DATA [1];
  46. }
  47. * confirm = (struct vs_nw_info_confirm *) (message);
  48. struct __packed station
  49. {
  50. uint8_t MAC [ETHER_ADDR_LEN];
  51. uint8_t TEI;
  52. uint8_t Reserved [3];
  53. uint8_t BDA [ETHER_ADDR_LEN];
  54. uint16_t AVGTX;
  55. uint8_t COUPLING;
  56. uint8_t Reserved3;
  57. uint16_t AVGRX;
  58. uint16_t Reserved4;
  59. }
  60. * station;
  61. struct __packed network
  62. {
  63. uint8_t NID [7];
  64. uint8_t Reserved1 [2];
  65. uint8_t SNID;
  66. uint8_t TEI;
  67. uint8_t Reserved2 [4];
  68. uint8_t ROLE;
  69. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  70. uint8_t CCO_TEI;
  71. uint8_t Reserved3 [3];
  72. uint8_t NUMSTAS;
  73. uint8_t Reserved4 [5];
  74. struct station stations [1];
  75. }
  76. * network;
  77. struct __packed networks
  78. {
  79. uint8_t Reserved;
  80. uint8_t NUMAVLNS;
  81. struct network networks [1];
  82. }
  83. * networks = (struct networks *) (confirm->DATA);
  84. #ifndef __GNUC__
  85. #pragma pack (pop)
  86. #endif
  87. memset (message, 0, sizeof (* message));
  88. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  89. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  90. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  91. {
  92. error (1, errno, CHANNEL_CANTSEND);
  93. }
  94. if (readpacket (channel, message, sizeof (* message)) <= 0)
  95. {
  96. error (1, errno, CHANNEL_CANTREAD);
  97. }
  98. network = (struct network *) (& networks->networks);
  99. while (networks->NUMAVLNS--)
  100. {
  101. memcpy(cco_macaddr, network->CCO_MAC, sizeof(network->CCO_MAC));
  102. station = (struct station *) (& network->stations);
  103. while (network->NUMSTAS--)
  104. {
  105. station++;
  106. }
  107. network = (struct network *) (station);
  108. }
  109. return (0);
  110. }
  111. signed ProxyNetworkInfo (struct plc * plc)
  112. {
  113. struct channel * channel = (struct channel *) (plc->channel);
  114. struct message * message = (struct message *) (plc->message);
  115. #ifndef __GNUC__
  116. #pragma pack (push,1)
  117. #endif
  118. struct __packed hidden_sta_info
  119. {
  120. uint8_t MACAddr [ETHER_ADDR_LEN];
  121. uint8_t TEI;
  122. }
  123. * hidden_sta_info;
  124. struct __packed proxynetwork
  125. {
  126. uint8_t PCoMACAddr [ETHER_ADDR_LEN];
  127. uint8_t PCoTEI;
  128. uint8_t NumHSTAs;
  129. struct hidden_sta_info hidden_sta_info[MAX_HIDDEN_STA];
  130. }
  131. * proxynetwork;
  132. struct __packed vs_proxy_network_info_request
  133. {
  134. struct ethernet_hdr ethernet;
  135. struct qualcomm_hdr qualcomm;
  136. }
  137. * request = (struct vs_proxy_network_info_request *) (message);
  138. struct __packed vs_proxy_network_info_confirm
  139. {
  140. struct ethernet_hdr ethernet;
  141. struct qualcomm_hdr qualcomm;
  142. uint8_t NUM_PCOs;
  143. struct proxynetwork proxynetworks [1];
  144. }
  145. * confirm = (struct vs_proxy_network_info_confirm *) (message);
  146. uint8_t pco_counter;
  147. uint8_t hsta_counter;
  148. uint8_t cco_macaddr [ETHER_ADDR_LEN];
  149. char string [24];
  150. #ifndef __GNUC__
  151. #pragma pack (pop)
  152. #endif
  153. GetCCoMacAddress(plc, cco_macaddr);
  154. printf ("CCo MacAddress%20s\n", hexstring (string, sizeof (string), cco_macaddr, sizeof (cco_macaddr)));
  155. Request (plc, "Proxy Network Info");
  156. memset (message, 0, sizeof (* message));
  157. EthernetHeader (& request->ethernet, cco_macaddr, channel->host, channel->type);
  158. QualcommHeader (& request->qualcomm, 0, (VS_PROXY_NW_INFO | MMTYPE_REQ));
  159. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  160. if (SendMME (plc) <= 0)
  161. {
  162. error (PLC_EXIT (plc), ECANCELED, CHANNEL_CANTSEND);
  163. return (-1);
  164. }
  165. while (ReadMME (plc, 0, (VS_PROXY_NW_INFO | MMTYPE_CNF)) > 0)
  166. {
  167. Confirm (plc, "Found %d PCo(s)\n", confirm->NUM_PCOs);
  168. proxynetwork = (struct proxynetwork *) (confirm->proxynetworks);
  169. pco_counter = 0;
  170. while (confirm->NUM_PCOs-- > 0)
  171. {
  172. char string [24];
  173. pco_counter++;
  174. printf ("PCo[%d]\n", pco_counter);
  175. printf ("\t\tPCo MacAddress = %s\n", hexstring (string, sizeof (string), proxynetwork->PCoMACAddr, sizeof (proxynetwork->PCoMACAddr)));
  176. printf ("\t\tPCo TEI = %d\n", proxynetwork->PCoTEI);
  177. printf ("\t\tNumber of HSTAs = %d\n", proxynetwork->NumHSTAs);
  178. hidden_sta_info = (struct hidden_sta_info *) (proxynetwork->hidden_sta_info);
  179. hsta_counter = 0;
  180. while(proxynetwork->NumHSTAs-- > 0)
  181. {
  182. char string [24];
  183. hsta_counter++;
  184. printf ("\t\tHSTA[%d]\n", hsta_counter);
  185. printf ("\t\t\t\tHSTA MacAddress = %s\n", hexstring (string, sizeof (string), hidden_sta_info->MACAddr, sizeof (hidden_sta_info->MACAddr)));
  186. printf ("\t\t\t\tHSTA TEI = %d\n", hidden_sta_info->TEI);
  187. hidden_sta_info++;
  188. }
  189. printf ("\n");
  190. proxynetwork++;
  191. }
  192. }
  193. return (0);
  194. }
  195. #endif