ListRemoteDevices2.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ListRemoteDevices2 (struct plc * plc, char const * space, char const * comma);
  11. *
  12. * print neighbor device list on stdout;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. * Matthieu Poullet <m.poullet@avm.de>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef LISTREMOTEDEVICES2_SOURCE
  20. #define LISTREMOTEDEVICES2_SOURCE
  21. #include <stdio.h>
  22. #include "../tools/number.h"
  23. #include "../tools/flags.h"
  24. #include "../plc/plc.h"
  25. signed ListRemoteDevices2 (struct plc * plc, char const * space, char const * comma)
  26. {
  27. struct channel * channel = (struct channel *) (plc->channel);
  28. struct message * message = (struct message *) (plc->message);
  29. ssize_t packetsize;
  30. #ifndef __GNUC__
  31. #pragma pack (push,1)
  32. #endif
  33. struct __packed vs_nw_info_request
  34. {
  35. struct ethernet_hdr ethernet;
  36. struct qualcomm_fmi qualcomm;
  37. }
  38. * request = (struct vs_nw_info_request *) (message);
  39. struct __packed vs_nw_info_confirm
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_fmi qualcomm;
  43. uint8_t SUB_VERSION;
  44. uint8_t Reserved;
  45. uint16_t DATA_LEN;
  46. uint8_t DATA [1];
  47. }
  48. * confirm = (struct vs_nw_info_confirm *) (message);
  49. struct __packed station
  50. {
  51. uint8_t MAC [ETHER_ADDR_LEN];
  52. uint8_t TEI;
  53. uint8_t Reserved [3];
  54. uint8_t BDA [ETHER_ADDR_LEN];
  55. uint16_t AVGTX;
  56. uint8_t COUPLING;
  57. uint8_t Reserved3;
  58. uint16_t AVGRX;
  59. uint16_t Reserved4;
  60. }
  61. * station;
  62. struct __packed network
  63. {
  64. uint8_t NID [7];
  65. uint8_t Reserved1 [2];
  66. uint8_t SNID;
  67. uint8_t TEI;
  68. uint8_t Reserved2 [4];
  69. uint8_t ROLE;
  70. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  71. uint8_t CCO_TEI;
  72. uint8_t Reserved3 [3];
  73. uint8_t NUMSTAS;
  74. uint8_t Reserved4 [5];
  75. struct station stations [1];
  76. }
  77. * network;
  78. struct __packed networks
  79. {
  80. uint8_t Reserved;
  81. uint8_t NUMAVLNS;
  82. struct network networks [1];
  83. }
  84. * networks = (struct networks *) (confirm->DATA);
  85. #ifndef __GNUC__
  86. #pragma pack (pop)
  87. #endif
  88. memset (message, 0, sizeof (* message));
  89. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  90. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  91. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  92. {
  93. return (-1);
  94. }
  95. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  96. {
  97. if (UnwantedMessage (message, packetsize, 1, (VS_NW_INFO | MMTYPE_CNF)))
  98. {
  99. continue;
  100. }
  101. if (_anyset (plc->flags, PLC_BRIDGE_LIST))
  102. {
  103. hexout (request->ethernet.OSA, sizeof (request->ethernet.OSA), HEX_EXTENDER, 0, stdout);
  104. if ((space) && (* space))
  105. {
  106. printf ("%s", space);
  107. }
  108. }
  109. network = (struct network *) (& networks->networks);
  110. while (networks->NUMAVLNS--)
  111. {
  112. station = (struct station *) (& network->stations);
  113. while (network->NUMSTAS-- > 0)
  114. {
  115. if (_anyset (plc->flags, PLC_REMOTE_LIST))
  116. {
  117. hexout (station->MAC, sizeof (station->MAC), HEX_EXTENDER, 0, stdout);
  118. if ((space) && (* space))
  119. {
  120. printf ("%s", space);
  121. }
  122. }
  123. station++;
  124. }
  125. network = (struct network *) (station);
  126. }
  127. if ((comma) && (* comma))
  128. {
  129. printf ("%s", comma);
  130. }
  131. }
  132. return (0);
  133. }
  134. #endif