RouteInfo.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*====================================================================*
  2. * Copyright (c) 2019-2020 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * signed RouteInfo (struct plc * plc);
  9. *
  10. *
  11. * displays the routing table using VS_ROUTE_INFO message;
  12. *
  13. * Contributor(s):
  14. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef ROUTEINFO_SOURCE
  18. #define ROUTEINFO_SOURCE
  19. #include <stdint.h>
  20. #include "../plc/plc.h"
  21. #include "../tools/error.h"
  22. signed RouteInfo (struct plc * plc)
  23. {
  24. struct channel * channel = (struct channel *) (plc->channel);
  25. struct message * message = (struct message *) (plc->message);
  26. #ifndef __GNUC__
  27. #pragma pack (push,1)
  28. #endif
  29. struct __packed local_routing_entry
  30. {
  31. uint8_t mUDTEI;
  32. uint8_t mNTEI;
  33. uint8_t mRDR;
  34. uint8_t mRNH;
  35. uint8_t mUDTEIMac [ETHER_ADDR_LEN];
  36. uint8_t mNTEIMAC [ETHER_ADDR_LEN];
  37. }
  38. * local_routing_entry;
  39. struct __packed vs_route_info_request
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_hdr qualcomm;
  43. }
  44. * request = (struct vs_route_info_request *) (message);
  45. struct __packed vs_route_info_confirm
  46. {
  47. struct ethernet_hdr ethernet;
  48. struct qualcomm_hdr qualcomm;
  49. uint8_t num_of_entry;
  50. struct local_routing_entry local_routing_table [1];
  51. }
  52. * confirm = (struct vs_route_info_confirm *) (message);
  53. #ifndef __GNUC__
  54. #pragma pack (pop)
  55. #endif
  56. Request (plc, "Route Info");
  57. memset (message, 0, sizeof (* message));
  58. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  59. QualcommHeader (& request->qualcomm, 0, (VS_ROUTE_INFO | MMTYPE_REQ));
  60. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  61. if (SendMME (plc) <= 0)
  62. {
  63. error (PLC_EXIT (plc), ECANCELED, CHANNEL_CANTSEND);
  64. return (-1);
  65. }
  66. while (ReadMME (plc, 0, (VS_ROUTE_INFO | MMTYPE_CNF)) > 0)
  67. {
  68. Confirm (plc, "Found %d entry(ies)\n", confirm->num_of_entry);
  69. local_routing_entry = (struct local_routing_entry *) (confirm->local_routing_table);
  70. if(confirm->num_of_entry > 0)
  71. {
  72. printf ("TEI \t");
  73. printf ("MacAddress \t\t");
  74. printf ("RoutingMacAddress \t");
  75. printf ("Number of Hops \t");
  76. printf ("Routing Data Rate \n");
  77. while (confirm->num_of_entry-- > 0)
  78. {
  79. char string [24];
  80. printf ("%d\t", local_routing_entry->mUDTEI);
  81. printf ("%s\t", hexstring (string, sizeof (string), local_routing_entry->mUDTEIMac, sizeof (local_routing_entry->mUDTEIMac)));
  82. printf ("%s\t\t", hexstring (string, sizeof (string), local_routing_entry->mNTEIMAC, sizeof (local_routing_entry->mNTEIMAC)));
  83. printf ("%d\t\t", local_routing_entry->mRNH);
  84. printf ("%d\n", local_routing_entry->mRDR);
  85. local_routing_entry++;
  86. }
  87. }
  88. }
  89. return (0);
  90. }
  91. signed RouteInfo_7500(struct plc* plc)
  92. {
  93. struct channel* channel = (struct channel*) (plc->channel);
  94. struct message* message = (struct message*) (plc->message);
  95. #ifndef __GNUC__
  96. #pragma pack (push,1)
  97. #endif
  98. struct __packed local_routing_entry
  99. {
  100. uint8_t mUDTEI;
  101. uint8_t mNTEI;
  102. uint16_t mRDR;
  103. uint8_t mRNH;
  104. uint8_t mUDTEIMac[ETHER_ADDR_LEN];
  105. uint8_t mNTEIMAC[ETHER_ADDR_LEN];
  106. }
  107. *local_routing_entry;
  108. struct __packed vs_route_info_request
  109. {
  110. struct ethernet_hdr ethernet;
  111. struct qualcomm_hdr qualcomm;
  112. }
  113. *request = (struct vs_route_info_request*) (message);
  114. struct __packed vs_route_info_confirm
  115. {
  116. struct ethernet_hdr ethernet;
  117. struct qualcomm_hdr qualcomm;
  118. uint8_t num_of_entry;
  119. struct local_routing_entry local_routing_table[1];
  120. }
  121. *confirm = (struct vs_route_info_confirm*) (message);
  122. #ifndef __GNUC__
  123. #pragma pack (pop)
  124. #endif
  125. Request(plc, "Route Info");
  126. memset(message, 0, sizeof(*message));
  127. EthernetHeader(&request->ethernet, channel->peer, channel->host, channel->type);
  128. QualcommHeader(&request->qualcomm, 0, (VS_ROUTE_INFO | MMTYPE_REQ));
  129. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  130. if (SendMME(plc) <= 0)
  131. {
  132. error(PLC_EXIT(plc), ECANCELED, CHANNEL_CANTSEND);
  133. return (-1);
  134. }
  135. while (ReadMME(plc, 0, (VS_ROUTE_INFO | MMTYPE_CNF)) > 0)
  136. {
  137. Confirm(plc, "Found %d entry(ies)\n", confirm->num_of_entry);
  138. local_routing_entry = (struct local_routing_entry*) (confirm->local_routing_table);
  139. if (confirm->num_of_entry > 0)
  140. {
  141. printf("TEI \t");
  142. printf("MacAddress \t\t");
  143. printf("RoutingMacAddress \t");
  144. printf("Number of Hops \t");
  145. printf("Routing Data Rate \n");
  146. while (confirm->num_of_entry-- > 0)
  147. {
  148. char string[24];
  149. printf("%d\t", local_routing_entry->mUDTEI);
  150. printf("%s\t", hexstring(string, sizeof(string), local_routing_entry->mUDTEIMac, sizeof(local_routing_entry->mUDTEIMac)));
  151. printf("%s\t\t", hexstring(string, sizeof(string), local_routing_entry->mNTEIMAC, sizeof(local_routing_entry->mNTEIMAC)));
  152. printf("%d\t\t", local_routing_entry->mRNH);
  153. printf("%d\n", local_routing_entry->mRDR);
  154. local_routing_entry++;
  155. }
  156. }
  157. }
  158. return (0);
  159. }
  160. #endif