RemoteHosts.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed RemoteHosts (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read hardware and software version information from an INT6000
  15. * using a VS_SW_VER Request Message;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef REMOTEHOSTS_SOURCE
  22. #define REMOTEHOSTS_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../tools/error.h"
  26. #include "../tools/memory.h"
  27. #include "../tools/symbol.h"
  28. #include "../plc/plc.h"
  29. signed RemoteHosts (struct plc * plc)
  30. {
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_sw_ver_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. }
  41. * request = (struct vs_sw_ver_request *) (message);
  42. struct __packed vs_sw_ver_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MSTATUS;
  47. uint32_t NUMDEVICES;
  48. struct __packed
  49. {
  50. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  51. uint8_t ENUMID;
  52. }
  53. DEVICE [1];
  54. }
  55. * confirm = (struct vs_sw_ver_confirm *) (message);
  56. #ifndef __GNUC__
  57. #pragma pack (pop)
  58. #endif
  59. Request (plc, "Request Enumeration ID Table");
  60. memset (message, 0, sizeof (* message));
  61. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  62. QualcommHeader (& request->qualcomm, 0, (VS_EM_ID_TABLE | MMTYPE_REQ));
  63. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  64. if (SendMME (plc) <= 0)
  65. {
  66. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  67. return (-1);
  68. }
  69. while (ReadMME (plc, 0, (VS_EM_ID_TABLE | MMTYPE_CNF)) > 0)
  70. {
  71. unsigned count = LE32TOH (confirm->NUMDEVICES);
  72. if (confirm->MSTATUS)
  73. {
  74. Failure (plc, PLC_WONTDOIT);
  75. continue;
  76. }
  77. while (count--)
  78. {
  79. hexout (confirm->DEVICE [count].MACADDRESS, ETHER_ADDR_LEN, ':', count? ' ': '\n', stdout);
  80. }
  81. }
  82. return (0);
  83. }
  84. #endif