LldpInfo.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*====================================================================*
  2. * Copyright (c) 2020-2021 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * signed LldpInfo (struct plc * plc);
  9. *
  10. *
  11. * displays the routing table using VS_LLDP_INFO message;
  12. *
  13. * Contributor(s):
  14. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef LLDPINFO_SOURCE
  18. #define LLDPINFO_SOURCE
  19. #include <stdint.h>
  20. #include <stdlib.h>
  21. #include "../plc/plc.h"
  22. #include "../tools/error.h"
  23. #define CHASSISIDLENGTH 255
  24. #define PORTIDLENGTH 255
  25. #define PORTDESCLENGTH 256
  26. #define CHASSISID_SUBTYPE_MAC 4
  27. #define CHASSISID_SUBTYPE_NW 5
  28. #define PORTID_SUBTYPE_MAC 3
  29. #define PORTID_SUBTYPE_NW 4
  30. #define ID_NW_ADDR_IPv4 1
  31. #define ID_NW_ADDR_IPv6 2
  32. signed LldpInfo (struct plc * plc)
  33. {
  34. struct channel * channel = (struct channel *) (plc->channel);
  35. struct message * message = (struct message *) (plc->message);
  36. #ifndef __GNUC__
  37. #pragma pack (push,1)
  38. #endif
  39. struct __packed chassis_id_info
  40. {
  41. uint16_t mChassisIdLength;
  42. uint8_t mChassisIdSubtype;
  43. uint8_t mChassisId[CHASSISIDLENGTH+1];
  44. }
  45. * chassis_id_info;
  46. struct __packed port_id_info
  47. {
  48. uint16_t mPortIdLength;
  49. uint8_t mPortIdSubtype;
  50. uint8_t mPortId[PORTIDLENGTH+1];
  51. }
  52. * port_id_info;
  53. struct __packed port_desc_info
  54. {
  55. uint16_t mPortDescLength;
  56. uint8_t mPortDesc[PORTDESCLENGTH+1];
  57. }
  58. * port_desc_info;
  59. struct __packed lldp_info_rx
  60. {
  61. uint8_t mSourceMac [ETHER_ADDR_LEN];
  62. struct chassis_id_info mChassisIdInfo;
  63. struct port_id_info mPortIdInfo;
  64. struct port_desc_info mPortDescInfo;
  65. uint16_t mTTL;
  66. int64_t mTimeStamp;
  67. }
  68. * lldp_info_rx;
  69. struct __packed vs_lldp_info_request
  70. {
  71. struct ethernet_hdr ethernet;
  72. struct qualcomm_hdr qualcomm;
  73. }
  74. * request = (struct vs_lldp_info_request *) (message);
  75. struct __packed vs_lldp_info_confirm
  76. {
  77. struct ethernet_hdr ethernet;
  78. struct qualcomm_fmi qualcomm;
  79. uint8_t status;
  80. uint8_t num_of_peers;
  81. struct lldp_info_rx lldp_info_table [1];
  82. //length of lldp_info_table is variable. Actual length can be obtained from num_of_peers
  83. //Following the lldp_info_table array there will be an array of port numbers of length num_of_peers
  84. }
  85. * confirm = (struct vs_lldp_info_confirm *) (message);
  86. #ifndef __GNUC__
  87. #pragma pack (pop)
  88. #endif
  89. Request (plc, "Lldp Info");
  90. memset (message, 0, sizeof (* message));
  91. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  92. QualcommHeader (& request->qualcomm, 0, (VS_LLDP_INFO | MMTYPE_REQ));
  93. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  94. if (SendMME (plc) <= 0)
  95. {
  96. error (PLC_EXIT (plc), ECANCELED, CHANNEL_CANTSEND);
  97. return (-1);
  98. }
  99. if (ReadFMI (plc, 1, (VS_LLDP_INFO | MMTYPE_CNF)) <= 0)
  100. {
  101. error (1, ECANCELED, CHANNEL_CANTREAD);
  102. }
  103. confirm = (struct vs_lldp_info_confirm *) (plc->content);
  104. if (confirm->status)
  105. {
  106. Failure (plc, PLC_WONTDOIT);
  107. }
  108. Confirm (plc, "Found %d entry(ies)\n", confirm->num_of_peers);
  109. lldp_info_rx = (struct lldp_info_rx *) (confirm->lldp_info_table);
  110. uint16_t* PortNumFromVlanTag = (uint16_t*)(lldp_info_rx + confirm->num_of_peers); //Array of port numbers
  111. if(confirm->num_of_peers > 0)
  112. {
  113. uint8_t count;
  114. count = 0;
  115. while (confirm->num_of_peers-- > 0)
  116. {
  117. char string [257];
  118. chassis_id_info = (struct chassis_id_info *) &(lldp_info_rx->mChassisIdInfo);
  119. port_id_info = (struct port_id_info *) &(lldp_info_rx->mPortIdInfo);
  120. port_desc_info = (struct port_desc_info *) &(lldp_info_rx->mPortDescInfo);
  121. printf ("Peer %d\t\n", count);
  122. memset(string, 0, sizeof(string));
  123. printf ("\t Source Mac: %s\t\n", hexstring (string, sizeof (string), lldp_info_rx->mSourceMac, sizeof(lldp_info_rx->mSourceMac)));
  124. printf ("\t TTL: %d\t\n", lldp_info_rx->mTTL);
  125. memset(string, 0, sizeof(string));
  126. if(chassis_id_info->mChassisIdSubtype == CHASSISID_SUBTYPE_MAC) {
  127. printf ("\t Chassis Id: %s\t\n", hexstring (string, sizeof (string), chassis_id_info->mChassisId, chassis_id_info->mChassisIdLength));
  128. }
  129. else if(chassis_id_info->mChassisIdSubtype == CHASSISID_SUBTYPE_NW) {
  130. if(chassis_id_info->mChassisId[0] == ID_NW_ADDR_IPv4) {
  131. printf ("\t Chassis Id: %s\t\n", hex2IPv4 (string, sizeof (string), &chassis_id_info->mChassisId[1], chassis_id_info->mChassisIdLength-1));
  132. }
  133. else {
  134. printf ("\t Chassis Id: %s\t\n", hexstring (string, sizeof (string), chassis_id_info->mChassisId, chassis_id_info->mChassisIdLength));
  135. }
  136. }
  137. else {
  138. printf ("\t Chassis Id: %s\t\n", chassis_id_info->mChassisId);
  139. }
  140. memset(string, 0, sizeof(string));
  141. if(port_id_info->mPortIdSubtype == PORTID_SUBTYPE_MAC) {
  142. printf ("\t Port Id: %s\t\n", hexstring (string, sizeof (string), port_id_info->mPortId, port_id_info->mPortIdLength));
  143. }
  144. else if(port_id_info->mPortIdSubtype == PORTID_SUBTYPE_NW) {
  145. if(port_id_info->mPortId[0] == ID_NW_ADDR_IPv4) {
  146. printf ("\t port Id: %s\t\n", hex2IPv4 (string, sizeof (string), &port_id_info->mPortId[1], port_id_info->mPortIdLength-1));
  147. }
  148. else {
  149. printf ("\t Port Id: %s\t\n", hexstring (string, sizeof (string), port_id_info->mPortId, port_id_info->mPortIdLength));
  150. }
  151. }
  152. else {
  153. printf ("\t Port Id: %s\t\n", port_id_info->mPortId);
  154. }
  155. uint16_t vPortNo = *PortNumFromVlanTag;
  156. if (vPortNo != 0 )
  157. {
  158. if (vPortNo == 0xff)
  159. {
  160. printf("\t PortNumber: Not Available (VlanID not matching any value configured in PIB for ports:0x%x.)\t\n", vPortNo);
  161. }
  162. else if (vPortNo == 0xffff)
  163. {
  164. printf("\t PortNumber: Not Available (VlanID not found in received lldp frames:0x%x.)\t\n", vPortNo);
  165. }
  166. else
  167. {
  168. printf("\t PortNumber: 0x%x\t\n", vPortNo);
  169. }
  170. }
  171. else
  172. {
  173. printf("\t PortNumber: Not Available\t\n");
  174. }
  175. memset(string, 0, sizeof(string));
  176. printf ("\t Port Desc: %s\t\n", port_desc_info->mPortDesc);
  177. lldp_info_rx++;
  178. count++;
  179. PortNumFromVlanTag++;
  180. }
  181. }
  182. free (plc->content);
  183. plc->content = NULL;
  184. return (0);
  185. }
  186. #endif