DeviceIdent.c 2.5 KB

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