NetworkDevices2.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NetworkDevices2 (struct plc * plc, void * memory, size_t extent);
  11. *
  12. * plc.h
  13. *
  14. * return a list powerline network device addresses on a powerline
  15. * network; the list consists of a known device plus all others on
  16. * the same powerline network; the device is defined by the channel
  17. * peer address and appears first in the list;
  18. *
  19. * the device address must be explicit; it cannot be the broadcast
  20. * or localcast address;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. * Matthieu Poullet <m.poullet@avm.de>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef NETWORKDEVICES2_SOURCE
  28. #define NETWORKDEVICES2_SOURCE
  29. #include <stdint.h>
  30. #include <memory.h>
  31. #include "../tools/memory.h"
  32. #include "../tools/number.h"
  33. #include "../tools/types.h"
  34. #include "../tools/error.h"
  35. #include "../plc/plc.h"
  36. signed NetworkDevices2 (struct plc * plc, void * memory, size_t extent)
  37. {
  38. extern const byte broadcast [ETHER_ADDR_LEN];
  39. extern const byte localcast [ETHER_ADDR_LEN];
  40. struct channel * channel = (struct channel *) (plc->channel);
  41. struct message * message = (struct message *) (plc->message);
  42. uint8_t * origin = (byte *) (memory);
  43. uint8_t * offset = (byte *) (memory);
  44. #ifndef __GNUC__
  45. #pragma pack (push,1)
  46. #endif
  47. struct __packed vs_nw_info_request
  48. {
  49. struct ethernet_hdr ethernet;
  50. struct qualcomm_fmi qualcomm;
  51. }
  52. * request = (struct vs_nw_info_request *) (message);
  53. struct __packed vs_nw_info_confirm
  54. {
  55. struct ethernet_hdr ethernet;
  56. struct qualcomm_fmi qualcomm;
  57. uint8_t SUB_VERSION;
  58. uint8_t Reserved;
  59. uint16_t DATA_LEN;
  60. uint8_t DATA [1];
  61. }
  62. * confirm = (struct vs_nw_info_confirm *) (message);
  63. struct __packed station
  64. {
  65. uint8_t MAC [ETHER_ADDR_LEN];
  66. uint8_t TEI;
  67. uint8_t Reserved [3];
  68. uint8_t BDA [ETHER_ADDR_LEN];
  69. uint16_t AVGTX;
  70. uint8_t COUPLING;
  71. uint8_t Reserved3;
  72. uint16_t AVGRX;
  73. uint16_t Reserved4;
  74. }
  75. * station;
  76. struct __packed network
  77. {
  78. uint8_t NID [7];
  79. uint8_t Reserved1 [2];
  80. uint8_t SNID;
  81. uint8_t TEI;
  82. uint8_t Reserved2 [4];
  83. uint8_t ROLE;
  84. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  85. uint8_t CCO_TEI;
  86. uint8_t Reserved3 [3];
  87. uint8_t NUMSTAS;
  88. uint8_t Reserved4 [5];
  89. struct station stations [1];
  90. }
  91. * network;
  92. struct __packed networks
  93. {
  94. uint8_t Reserved;
  95. uint8_t NUMAVLNS;
  96. struct network networks [1];
  97. }
  98. * networks = (struct networks *) (confirm->DATA);
  99. #ifndef __GNUC__
  100. #pragma pack (pop)
  101. #endif
  102. ssize_t packetsize;
  103. if (! memcmp (channel->peer, broadcast, sizeof (channel->peer)))
  104. {
  105. error (1, EINVAL, "Can't use broadcast address");
  106. }
  107. if (! memcmp (channel->peer, localcast, sizeof (channel->peer)))
  108. {
  109. error (1, EINVAL, "Can't use localcast address");
  110. }
  111. memset (memory, 0, extent);
  112. memset (message, 0, sizeof (* message));
  113. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  114. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  115. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  116. {
  117. error (1, errno, CHANNEL_CANTSEND);
  118. }
  119. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  120. {
  121. if (UnwantedMessage (message, packetsize, 0, (VS_NW_INFO | MMTYPE_CNF)))
  122. {
  123. continue;
  124. }
  125. network = (struct network *) (& networks->networks);
  126. while (networks->NUMAVLNS--)
  127. {
  128. if (extent < sizeof (request->ethernet.OSA))
  129. {
  130. break;
  131. }
  132. memcpy (offset, request->ethernet.OSA, sizeof (request->ethernet.OSA));
  133. offset += sizeof (request->ethernet.OSA);
  134. extent -= sizeof (request->ethernet.OSA);
  135. station = (struct station *) (& network->stations);
  136. while (network->NUMSTAS--)
  137. {
  138. if (extent < sizeof (station->MAC))
  139. {
  140. break;
  141. }
  142. memcpy (offset, station->MAC, sizeof (station->MAC));
  143. offset += sizeof (station->MAC);
  144. extent -= sizeof (station->MAC);
  145. station++;
  146. }
  147. network = (struct network *) (station);
  148. }
  149. }
  150. return ((offset - origin) / ETHER_ADDR_LEN);
  151. }
  152. #endif