TopologyTableInfo.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*====================================================================*
  2. * Copyright (c) 2021-2022 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * signed TopologyTableInfo (struct plc * plc);
  9. *
  10. *
  11. * Send a query to STA to display/reset the Topology table from the device
  12. *
  13. * Contributor(s):
  14. * Abirama Sundari Sivakumar <asivakum@qti.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef TOPOLOGYTABLEINFO_SOURCE
  18. #define TOPOLOGYTABLEINFO_SOURCE
  19. #include <stdint.h>
  20. #include <stdlib.h>
  21. #include "../plc/plc.h"
  22. #include "../tools/error.h"
  23. #define MAX_TOPOTABLE_ENTRIES 64
  24. #define TEIWORDARRAY_SIZE 8 //(256/32)
  25. #define WORDSIZE_BITS 32
  26. #define STATUS_FAILURE 0
  27. #define STATUS_SUCCESS 1
  28. bool IsTEIPresent(uint8_t tei, uint32_t *array)
  29. {
  30. uint8_t byte = (tei/WORDSIZE_BITS) ;
  31. uint8_t nbit = (tei % WORDSIZE_BITS) ;
  32. return (((array[byte] & (1<< nbit))==0) ? false : true);
  33. }
  34. signed TopologyTableInfo (struct plc * plc)
  35. {
  36. struct channel * channel = (struct channel *) (plc->channel);
  37. struct message * message = (struct message *) (plc->message);
  38. #ifndef __GNUC__
  39. #pragma pack (push,1)
  40. #endif
  41. struct __packed CCTEIMACEntry
  42. {
  43. uint8_t mTEI;
  44. uint16_t mMACAddrLast16Bits;
  45. }
  46. *vTEIMACEntry;
  47. struct __packed TopoTableEntry
  48. {
  49. uint8_t STAMACAddr[ETHER_ADDR_LEN];
  50. uint8_t STATEI;
  51. uint8_t TopoAttributes;
  52. uint8_t SNID;
  53. uint8_t mNumDiscTEIs;
  54. struct CCTEIMACEntry mTEIMACEntry[1];
  55. }
  56. * vTopoTableEntry;
  57. struct __packed DiscNeighborSTAInfo
  58. {
  59. uint8_t STAMACAddr[ETHER_ADDR_LEN];
  60. uint8_t STAAttributes;
  61. }
  62. * vDiscNeighborNode;
  63. struct __packed NeighborCCoInfo
  64. {
  65. uint8_t CCoMACAddr[ETHER_ADDR_LEN];
  66. uint8_t SNID;
  67. uint8_t IsSameNID;
  68. }
  69. *vNeighborCCo;
  70. struct __packed vs_topology_table_request
  71. {
  72. struct ethernet_hdr ethernet;
  73. struct qualcomm_hdr qualcomm;
  74. uint8_t ReqType;
  75. }
  76. * request = (struct vs_topology_table_request *) (message);
  77. struct __packed vs_topology_table_confirm
  78. {
  79. struct ethernet_hdr ethernet;
  80. struct qualcomm_fmi qualcomm;
  81. uint8_t Status;
  82. uint8_t LocalSNID;
  83. uint8_t NumEntries;
  84. struct TopoTableEntry TopoTableEntries [1];
  85. uint8_t NumNeighborNodes;
  86. struct DiscNeighborSTAInfo DiscNeighborSTAInfos[1];
  87. uint8_t NumNeighborCCos;
  88. struct NeighborCCoInfo NeighborCCoInfos[1];
  89. }
  90. *confirm = (struct vs_topology_table_confirm*)(message);
  91. uint8_t vCounter;
  92. #ifndef __GNUC__
  93. #pragma pack (pop)
  94. #endif
  95. if (plc->topotable_action == 0)
  96. {
  97. Request (plc, "TopologyTable-Query");
  98. }
  99. else if (plc->topotable_action == 1)
  100. {
  101. Request (plc, "TopologyTable-QueryNeighborListWithTopoTable");
  102. }
  103. else if (plc->topotable_action == 2)
  104. {
  105. Request (plc, "TopologyTable-Reset");
  106. }
  107. memset (message, 0, sizeof (* message));
  108. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  109. QualcommHeader (& request->qualcomm, 0, (VS_TOPOLOGY_TABLE | MMTYPE_REQ));
  110. request->ReqType = plc->topotable_action;
  111. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  112. if (SendMME (plc) <= 0)
  113. {
  114. error (PLC_EXIT (plc), ECANCELED, CHANNEL_CANTSEND);
  115. return (-1);
  116. }
  117. if (ReadFMI(plc, 1, (VS_TOPOLOGY_TABLE | MMTYPE_CNF)) <= 0)
  118. {
  119. error(1, ECANCELED, CHANNEL_CANTREAD);
  120. }
  121. confirm = (struct vs_topology_table_confirm*)(plc->content);
  122. if (confirm->Status == 0)
  123. {
  124. Failure(plc, PLC_WONTDOIT);
  125. }
  126. Confirm (plc, "LocalSNID = %d NumTopoEntries = %d \n", confirm->LocalSNID, confirm->NumEntries);
  127. vTopoTableEntry = (struct TopoTableEntry *) (confirm->TopoTableEntries);
  128. uint8_t* vTopoTableEntryPtr;
  129. vCounter = 0;
  130. char string[24];
  131. if (plc->topotable_action == 2)
  132. {
  133. printf("\nDeletion of Topology Table success\n");
  134. }
  135. while (confirm->NumEntries-- > 0)
  136. {
  137. vCounter++;
  138. bool IsSameNID = ((vTopoTableEntry->TopoAttributes & 0x1)? true: false);
  139. bool IsAssociated = ((vTopoTableEntry->TopoAttributes & 0x2) ? true : false);
  140. bool IsCCo = ((vTopoTableEntry->TopoAttributes & 0x4) ? true : false);
  141. printf ("Entry:%d Mac= %s TEI=%d", vCounter, hexstring (string, sizeof (string), vTopoTableEntry->STAMACAddr, sizeof (vTopoTableEntry->STAMACAddr)), vTopoTableEntry->STATEI);
  142. printf(" SNID=%d SameNID=%d IsAssociated=%d IsCCo=%d ", vTopoTableEntry->SNID, IsSameNID, IsAssociated, IsCCo);
  143. uint8_t vNumDiscTEIs = vTopoTableEntry->mNumDiscTEIs;
  144. vTEIMACEntry = (struct CCTEIMACEntry*)(vTopoTableEntry->mTEIMACEntry);
  145. printf("NumDiscTEIs=%d\n", vNumDiscTEIs);
  146. if (vNumDiscTEIs > 0)
  147. {
  148. printf(" TEIList --- ");
  149. while (vNumDiscTEIs-- > 0)
  150. {
  151. printf("%d-%04X ,", vTEIMACEntry->mTEI, vTEIMACEntry->mMACAddrLast16Bits);
  152. vTEIMACEntry++;
  153. }
  154. }
  155. printf ("\n\n");
  156. memset(string, 0, sizeof(string));
  157. vTopoTableEntryPtr = (uint8_t*)(vTEIMACEntry);
  158. vTopoTableEntry = (struct TopoTableEntry*)vTopoTableEntryPtr;
  159. }
  160. if (plc->topotable_action == 1) //Query neighbor List with Topo Table
  161. {
  162. vCounter = 0;
  163. uint8_t* vNeighborNodesPtr = (uint8_t*)(vTopoTableEntry );
  164. uint8_t vNumNeighborNodes = *vNeighborNodesPtr;
  165. vNeighborNodesPtr++; //increment pointer to move to required offset
  166. vDiscNeighborNode = (struct DiscNeighborSTAInfo*)(vNeighborNodesPtr);
  167. if (vNumNeighborNodes > 0)
  168. {
  169. printf("\n ----------------------List of Discovered Neighbor STAs----------------\n");
  170. }
  171. while (vNumNeighborNodes-- > 0)
  172. {
  173. vCounter++;
  174. bool IsSameNID = ((vDiscNeighborNode->STAAttributes & 0x1) ? true : false);
  175. bool IsAssociated = ((vDiscNeighborNode->STAAttributes & 0x2) ? true : false);
  176. bool IsExpired = ((vDiscNeighborNode->STAAttributes & 0x4) ? true : false);
  177. uint8_t SNID = ((vDiscNeighborNode->STAAttributes >> 3)& 0x1F);
  178. if (SNID == 0x1F)
  179. SNID = 0xFF;
  180. printf("Node:%d Mac= %s ", vCounter, hexstring(string, sizeof(string), vDiscNeighborNode->STAMACAddr, sizeof(vDiscNeighborNode->STAMACAddr)));
  181. printf(" SNID=%d SameNID=%d IsAssociated=%d IsExpired=%d \n", SNID, IsSameNID, IsAssociated, IsExpired);
  182. vDiscNeighborNode++;
  183. }
  184. vCounter = 0;
  185. uint8_t* vNeighborCCosPtr = (uint8_t*)(vDiscNeighborNode);
  186. uint8_t vNumNeighborCCos = *vNeighborCCosPtr;
  187. if (vNumNeighborCCos > 0)
  188. {
  189. vNeighborCCosPtr++;
  190. printf("\n ----------------------List of Discovered Neighbor CCos----------------\n");
  191. vNeighborCCo = (struct NeighborCCoInfo*)(vNeighborCCosPtr);
  192. }
  193. while (vNumNeighborCCos-- > 0)
  194. {
  195. vCounter++;
  196. printf("Node:%d Mac= %s ", vCounter, hexstring(string, sizeof(string), vNeighborCCo->CCoMACAddr, sizeof(vNeighborCCo->CCoMACAddr)));
  197. printf(" SNID=%d SameNID=%d \n", vNeighborCCo->SNID, vNeighborCCo->IsSameNID);
  198. vNeighborCCo++;
  199. }
  200. }
  201. free(plc->content);
  202. plc->content = NULL;
  203. return (0);
  204. }
  205. #endif //TOPOLOGYTABLEINFO_SOURCE