LocalDevices.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * unsigned LocalDevices (struct channel * channel, struct message * message, void * memory, size_t extent);
  11. *
  12. * plc.h
  13. *
  14. * populate a memory region with consecutive Ethernet addresses;
  15. * the addresses belong to Atheros powerline devices connected to
  16. * the host interface specified in struct channel; each bridge may
  17. * be connected to one or more HomePlug AV devices via powerline;
  18. *
  19. * each powerline bridge normally belongs to a different powerline
  20. * network but is is possible for multiple bridges to belong to the
  21. * same powerline network thus leading to confusing configurations;
  22. *
  23. * use function NetworkDevices() to discover all devices on each
  24. * powerline network;
  25. *
  26. * although this function accepts a channel structure, it ignores
  27. * the channel peer address and sends a VS_SW_VER request message
  28. * to the Local Management Address; this causes all local devices
  29. * to respond; the list is a collection of source addresses taken
  30. * from all responses;
  31. *
  32. * Contributor(s):
  33. * Charles Maier <cmaier@qca.qualcomm.com>
  34. * Matthieu Poullet <m.poullet@avm.de>
  35. *
  36. *--------------------------------------------------------------------*/
  37. #ifndef NETWORKBRIDGES_SOURCE
  38. #define NETWORKBRIDGES_SOURCE
  39. #include <memory.h>
  40. #include <errno.h>
  41. #include "../plc/plc.h"
  42. #include "../ether/channel.h"
  43. #include "../tools/types.h"
  44. #include "../tools/error.h"
  45. unsigned LocalDevices (struct channel const * channel, struct message * message, void * memory, size_t extent)
  46. {
  47. extern const byte localcast [ETHER_ADDR_LEN];
  48. struct vs_sw_ver_request
  49. {
  50. struct ethernet_hdr ethernet;
  51. struct qualcomm_hdr qualcomm;
  52. }
  53. * request = (struct vs_sw_ver_request *) (message);
  54. uint8_t * origin = (uint8_t *) (memory);
  55. uint8_t * offset = (uint8_t *) (memory);
  56. ssize_t packetsize;
  57. memset (memory, 0, extent);
  58. memset (message, 0, sizeof (* message));
  59. EthernetHeader (& request->ethernet, localcast, channel->host, channel->type);
  60. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  61. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  62. {
  63. return (0);
  64. }
  65. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  66. {
  67. if (UnwantedMessage (message, packetsize, 0, (VS_SW_VER | MMTYPE_CNF)))
  68. {
  69. continue;
  70. }
  71. if (extent >= sizeof (message->ethernet.OSA))
  72. {
  73. memcpy (offset, message->ethernet.OSA, sizeof (message->ethernet.OSA));
  74. offset += sizeof (message->ethernet.OSA);
  75. extent -= sizeof (message->ethernet.OSA);
  76. }
  77. }
  78. return ((unsigned) (offset - origin) / ETHER_ADDR_LEN);
  79. }
  80. #endif