SetNMK.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed SetNMK (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * set NMK on a local or remote device using a VS_SET_KEY message;
  15. *
  16. * using this message to set the NMK on a remote device requires
  17. * both the remote device address (RDA) and the remote device
  18. * access key (DAK);
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef SETNMK_SOURCE
  25. #define SETNMK_SOURCE
  26. #include <string.h>
  27. #include "../plc/plc.h"
  28. #include "../tools/error.h"
  29. #include "../tools/flags.h"
  30. #include "../tools/memory.h"
  31. #include "../key/HPAVKey.h"
  32. signed SetNMK (struct plc * plc)
  33. {
  34. struct channel * channel = (struct channel *) (plc->channel);
  35. struct message * message = (struct message *) (plc->message);
  36. #ifndef __GNUC__
  37. #pragma pack (push,1)
  38. #endif
  39. struct __packed vs_set_key_request
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_hdr qualcomm;
  43. uint8_t EKS;
  44. uint8_t NMK [HPAVKEY_NMK_LEN];
  45. uint8_t PEKS;
  46. uint8_t RDA [ETHER_ADDR_LEN];
  47. uint8_t DAK [HPAVKEY_DAK_LEN];
  48. }
  49. * request = (struct vs_set_key_request *) (message);
  50. struct __packed vs_set_key_confirm
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_hdr qualcomm;
  54. uint8_t MSTATUS;
  55. }
  56. * confirm = (struct vs_set_key_confirm *) (message);
  57. #ifndef __GNUC__
  58. #pragma pack (pop)
  59. #endif
  60. memset (message, 0, sizeof (* message));
  61. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  62. QualcommHeader (& request->qualcomm, 0, (VS_SET_KEY | MMTYPE_REQ));
  63. plc->packetsize = sizeof (struct vs_set_key_request);
  64. request->EKS = 0x01;
  65. memcpy (request->NMK, plc->NMK, sizeof (request->NMK));
  66. if (_anyset (plc->flags, PLC_SETREMOTEKEY))
  67. {
  68. Request (plc, "Set Remote Network Membership Key");
  69. memcpy (request->RDA, plc->RDA, sizeof (request->RDA));
  70. memcpy (request->DAK, plc->DAK, sizeof (request->DAK));
  71. request->PEKS = 0x00;
  72. }
  73. else
  74. {
  75. Request (plc, "Set Local Network Membership Key");
  76. memset (request->RDA, 0, sizeof (request->RDA));
  77. memset (request->DAK, 0, sizeof (request->DAK));
  78. request->PEKS = 0x0F;
  79. }
  80. if (SendMME (plc) <= 0)
  81. {
  82. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  83. return (-1);
  84. }
  85. if (ReadMME (plc, 0, (VS_SET_KEY | MMTYPE_CNF)) <= 0)
  86. {
  87. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  88. return (-1);
  89. }
  90. if (confirm->MSTATUS)
  91. {
  92. Failure (plc, PLC_WONTDOIT);
  93. return (-1);
  94. }
  95. Confirm (plc, "Setting ...");
  96. return (0);
  97. }
  98. #endif