NetworkDevices1.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NetworkDevices1 (struct plc * plc, void * memory, size_t extent);
  11. *
  12. * plc.h
  13. *
  14. * return a list of device addresses on a powerline network; the
  15. * list consists of a known device plus all others on the same
  16. * powerline network; the device is defined by the channel peer
  17. * 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. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef NETWORKDEVICES1_SOURCE
  27. #define NETWORKDEVICES1_SOURCE
  28. #include <stdint.h>
  29. #include <memory.h>
  30. #include "../tools/memory.h"
  31. #include "../tools/number.h"
  32. #include "../tools/types.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. signed NetworkDevices1 (struct plc * plc, void * memory, size_t extent)
  36. {
  37. extern const byte broadcast [ETHER_ADDR_LEN];
  38. extern const byte localcast [ETHER_ADDR_LEN];
  39. struct channel * channel = (struct channel *) (plc->channel);
  40. struct message * message = (struct message *) (plc->message);
  41. uint8_t * origin = (byte *) (memory);
  42. uint8_t * offset = (byte *) (memory);
  43. #ifndef __GNUC__
  44. #pragma pack (push,1)
  45. #endif
  46. struct __packed vs_nw_info_request
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_hdr qualcomm;
  50. }
  51. * request = (struct vs_nw_info_request *) (message);
  52. struct __packed vs_nw_info_confirm
  53. {
  54. struct ethernet_hdr ethernet;
  55. struct qualcomm_hdr qualcomm;
  56. uint8_t data [1];
  57. }
  58. * confirm = (struct vs_nw_info_confirm *) (message);
  59. struct __packed station
  60. {
  61. uint8_t MAC [ETHER_ADDR_LEN];
  62. uint8_t TEI;
  63. uint8_t BDA [ETHER_ADDR_LEN];
  64. uint8_t AVGTX;
  65. uint8_t AVGRX;
  66. }
  67. * station;
  68. struct __packed network
  69. {
  70. uint8_t NID [7];
  71. uint8_t SNID;
  72. uint8_t TEI;
  73. uint8_t ROLE;
  74. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  75. uint8_t CCO_TEI;
  76. uint8_t NUMSTAS;
  77. struct station stations [1];
  78. }
  79. * network;
  80. struct __packed networks
  81. {
  82. uint8_t NUMAVLNS;
  83. struct network networks [1];
  84. }
  85. * networks = (struct networks *) (confirm->data);
  86. #ifndef __GNUC__
  87. #pragma pack (pop)
  88. #endif
  89. ssize_t packetsize;
  90. if (! memcmp (channel->peer, broadcast, sizeof (channel->peer)))
  91. {
  92. error (1, EINVAL, "Can't use broadcast address");
  93. }
  94. if (! memcmp (channel->peer, localcast, sizeof (channel->peer)))
  95. {
  96. error (1, EINVAL, "Can't use localcast address");
  97. }
  98. memset (memory, 0, extent);
  99. memset (message, 0, sizeof (* message));
  100. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  101. QualcommHeader (& request->qualcomm, 0, (VS_NW_INFO | MMTYPE_REQ));
  102. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  103. {
  104. error (1, errno, CHANNEL_CANTSEND);
  105. }
  106. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  107. {
  108. if (UnwantedMessage (message, packetsize, 0, (VS_NW_INFO | MMTYPE_CNF)))
  109. {
  110. continue;
  111. }
  112. network = (struct network *) (& networks->networks);
  113. while (networks->NUMAVLNS--)
  114. {
  115. if (extent < sizeof (request->ethernet.OSA))
  116. {
  117. break;
  118. }
  119. memcpy (offset, request->ethernet.OSA, sizeof (request->ethernet.OSA));
  120. offset += sizeof (request->ethernet.OSA);
  121. extent -= sizeof (request->ethernet.OSA);
  122. station = (struct station *) (& network->stations);
  123. while (network->NUMSTAS--)
  124. {
  125. if (extent < sizeof (station->MAC))
  126. {
  127. break;
  128. }
  129. memcpy (offset, station->MAC, sizeof (station->MAC));
  130. offset += sizeof (station->MAC);
  131. extent -= sizeof (station->MAC);
  132. station++;
  133. }
  134. network = (struct network *) (station);
  135. }
  136. }
  137. return ((offset - origin) / ETHER_ADDR_LEN);
  138. }
  139. #endif