RemoteDeviceList1.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed RemoteDeviceList1 (struct plc * plc, char const * space, char const * comma);
  11. *
  12. * print the 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 REMOTEDEVICELIST1_SOURCE
  20. #define REMOTEDEVICELIST1_SOURCE
  21. #include <stdio.h>
  22. #include "../tools/number.h"
  23. #include "../tools/flags.h"
  24. #include "../plc/plc.h"
  25. signed RemoteDeviceList1 (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_hdr 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_hdr qualcomm;
  43. uint8_t content [1];
  44. }
  45. * confirm = (struct vs_nw_info_confirm *) (message);
  46. struct __packed station
  47. {
  48. uint8_t MAC [ETHER_ADDR_LEN];
  49. uint8_t TEI;
  50. uint8_t BDA [ETHER_ADDR_LEN];
  51. uint8_t AVGTX;
  52. uint8_t AVGRX;
  53. }
  54. * station;
  55. struct __packed network
  56. {
  57. uint8_t NID [7];
  58. uint8_t SNID;
  59. uint8_t TEI;
  60. uint8_t ROLE;
  61. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  62. uint8_t CCO_TEI;
  63. uint8_t NUMSTAS;
  64. struct station stations [1];
  65. }
  66. * network;
  67. struct __packed networks
  68. {
  69. uint8_t NUMAVLNS;
  70. struct network networks [1];
  71. }
  72. * networks = (struct networks *) (confirm->content);
  73. #ifndef __GNUC__
  74. #pragma pack (pop)
  75. #endif
  76. memset (message, 0, sizeof (& message));
  77. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  78. QualcommHeader (& request->qualcomm, 0, (VS_NW_INFO | MMTYPE_REQ));
  79. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  80. {
  81. return (-1);
  82. }
  83. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  84. {
  85. if (UnwantedMessage (message, packetsize, 0, (VS_NW_INFO | MMTYPE_CNF)))
  86. {
  87. continue;
  88. }
  89. if (_anyset (plc->flags, PLC_BRIDGE_LIST))
  90. {
  91. hexout (request->ethernet.OSA, sizeof (request->ethernet.OSA), HEX_EXTENDER, 0, stdout);
  92. if ((space) && (* space))
  93. {
  94. printf ("%s", space);
  95. }
  96. }
  97. network = (struct network *) (& networks->networks);
  98. while (networks->NUMAVLNS--)
  99. {
  100. station = (struct station *) (& network->stations);
  101. while (network->NUMSTAS--)
  102. {
  103. if (_anyset (plc->flags, PLC_REMOTE_LIST))
  104. {
  105. hexout (station->MAC, sizeof (station->MAC), HEX_EXTENDER, 0, stdout);
  106. if ((space) && (* space))
  107. {
  108. printf ("%s", space);
  109. }
  110. }
  111. station++;
  112. }
  113. network = (struct network *) (station);
  114. }
  115. if ((comma) && (* comma))
  116. {
  117. printf ("%s", comma);
  118. }
  119. }
  120. return (0);
  121. }
  122. #endif