Identity1.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Identity1 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Read the first block of the PIB image from a powerline device
  15. * using VA_RD_MOD; print identity information on stdout;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef IDENTITY1_SOURCE
  22. #define IDENTITY1_SOURCE
  23. #include <string.h>
  24. #include "../plc/plc.h"
  25. #include "../tools/error.h"
  26. #include "../tools/memory.h"
  27. #include "../pib/pib.h"
  28. signed Identity1 (struct plc * plc)
  29. {
  30. struct channel * channel = (struct channel *) (plc->channel);
  31. struct message * message = (struct message *) (plc->message);
  32. #ifndef __GNUC__
  33. #pragma pack (push,1)
  34. #endif
  35. struct __packed vs_rd_mod_request
  36. {
  37. struct ethernet_hdr ethernet;
  38. struct qualcomm_hdr qualcomm;
  39. uint8_t MODULEID;
  40. uint8_t MACCESS;
  41. uint16_t MLENGTH;
  42. uint32_t MOFFSET;
  43. uint8_t MSECRET [16];
  44. }
  45. * request = (struct vs_rd_mod_request *) (message);
  46. struct __packed vs_rd_mod_confirm
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_hdr qualcomm;
  50. uint8_t MSTATUS;
  51. uint8_t RES [3];
  52. uint8_t MODULEID;
  53. uint8_t RESERVED;
  54. uint16_t MLENGTH;
  55. uint32_t MOFFSET;
  56. uint32_t MCHKSUM;
  57. uint8_t BUFFER [PLC_RECORD_SIZE];
  58. }
  59. * confirm = (struct vs_rd_mod_confirm *) (message);
  60. #ifndef __GNUC__
  61. #pragma pack (pop)
  62. #endif
  63. Request (plc, "Device Identity");
  64. memset (message, 0, sizeof (* message));
  65. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  66. QualcommHeader (& request->qualcomm, 0, (VS_RD_MOD | MMTYPE_REQ));
  67. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  68. request->MODULEID = VS_MODULE_PIB;
  69. request->MLENGTH = HTOLE16 (sizeof (confirm->BUFFER));
  70. request->MOFFSET = HTOLE32 (0);
  71. if (SendMME (plc) <= 0)
  72. {
  73. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  74. return (-1);
  75. }
  76. while (ReadMME (plc, 0, (VS_RD_MOD | MMTYPE_CNF)) > 0)
  77. {
  78. if (confirm->MSTATUS)
  79. {
  80. Failure (plc, PLC_WONTDOIT);
  81. continue;
  82. }
  83. Confirm (plc, "-------");
  84. lightning_pib_peek (confirm->BUFFER);
  85. }
  86. return (0);
  87. }
  88. #endif