SlaveMembership.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed SlaveMembership (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef SLAVEMEMBERSHIP_SOURCE
  19. #define SLAVEMEMBERSHIP_SOURCE
  20. #include <stdint.h>
  21. #include <memory.h>
  22. #include "../plc/plc.h"
  23. #include "../tools/error.h"
  24. #include "../tools/memory.h"
  25. #include "../key/HPAVKey.h"
  26. #define VS_SLAVE_MEM 0xA078
  27. signed SlaveMembership (struct plc * plc)
  28. {
  29. struct channel * channel = (struct channel *) (plc->channel);
  30. struct message * message = (struct message *) (plc->message);
  31. #ifndef __GNUC__
  32. #pragma pack (push,1)
  33. #endif
  34. struct __packed vs_slave_mem_request
  35. {
  36. struct ethernet_hdr ethernet;
  37. struct qualcomm_hdr qualcomm;
  38. uint8_t SLAVE_ADDR [ETHER_ADDR_LEN];
  39. uint8_t AUTHORIZATION_MODE;
  40. uint8_t ASSOC_RETRY_TIME;
  41. }
  42. * request = (struct vs_slave_mem_request *) (message);
  43. struct __packed vs_slave_mem_confirm
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint8_t MSTATUS;
  48. }
  49. * confirm = (struct vs_slave_mem_confirm *) (message);
  50. #ifndef __GNUC__
  51. #pragma pack (pop)
  52. #endif
  53. Request (plc, "Request Slave Membership Change");
  54. memset (message, 0, sizeof (* message));
  55. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  56. QualcommHeader (& request->qualcomm, 0, (VS_SLAVE_MEM | MMTYPE_REQ));
  57. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  58. memcpy (request->SLAVE_ADDR, plc->RDA, sizeof (request->SLAVE_ADDR));
  59. request->AUTHORIZATION_MODE = plc->pushbutton;
  60. request->ASSOC_RETRY_TIME = plc->module;
  61. if (SendMME (plc) <= 0)
  62. {
  63. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  64. return (-1);
  65. }
  66. if (ReadMME (plc, 0, (VS_SLAVE_MEM | MMTYPE_CNF)) <= 0)
  67. {
  68. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  69. return (-1);
  70. }
  71. if (confirm->MSTATUS)
  72. {
  73. Failure (plc, PLC_WONTDOIT);
  74. return (-1);
  75. }
  76. Confirm (plc, "Requested ...");
  77. return (0);
  78. }
  79. #endif