ChangeIdent.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ChangeIdent (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read PIB file header; replace MAC, DAK and NMK; update preferred
  15. * NID; re-write PIB file header and PIB file checksum; use the MAC,
  16. * DAK and NMK values stored in struct plc;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef CHANGEIDENT_SOURCE
  23. #define CHANGEIDENT_SOURCE
  24. #include <unistd.h>
  25. #include <stdint.h>
  26. #include "../plc/plc.h"
  27. #include "../tools/error.h"
  28. #include "../tools/files.h"
  29. #include "../key/HPAVKey.h"
  30. #include "../pib/pib.h"
  31. signed ChangeIdent (struct plc * plc)
  32. {
  33. struct simple_pib simple_pib;
  34. memset (& simple_pib, 0, sizeof (simple_pib));
  35. if (lseek (plc->PIB.file, 0, SEEK_SET))
  36. {
  37. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  38. }
  39. if (read (plc->PIB.file, & simple_pib, sizeof (simple_pib)) != sizeof (simple_pib))
  40. {
  41. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  42. }
  43. memcpy (simple_pib.MAC, plc->MAC, sizeof (simple_pib.MAC));
  44. memcpy (simple_pib.DAK, plc->DAK, sizeof (simple_pib.DAK));
  45. memcpy (simple_pib.NMK, plc->NMK, sizeof (simple_pib.NMK));
  46. {
  47. uint8_t level = simple_pib.PreferredNID [HPAVKEY_NID_LEN -1] >> 4;
  48. HPAVKeyNID (simple_pib.PreferredNID, simple_pib.NMK, level & 1);
  49. }
  50. simple_pib.CHECKSUM = 0;
  51. if (lseek (plc->PIB.file, 0, SEEK_SET))
  52. {
  53. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  54. }
  55. if (write (plc->PIB.file, & simple_pib, sizeof (simple_pib)) != sizeof (simple_pib))
  56. {
  57. error (1, errno, FILE_CANTSAVE, plc->PIB.name);
  58. }
  59. if (lseek (plc->PIB.file, 0, SEEK_SET))
  60. {
  61. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  62. }
  63. simple_pib.CHECKSUM = fdchecksum32 (plc->PIB.file, LE16TOH (simple_pib.PIBLENGTH), 0);
  64. if (lseek (plc->PIB.file, 0, SEEK_SET))
  65. {
  66. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  67. }
  68. if (write (plc->PIB.file, & simple_pib, sizeof (simple_pib)) != sizeof (simple_pib))
  69. {
  70. error (1, errno, FILE_CANTSAVE, plc->PIB.name);
  71. }
  72. return (0);
  73. }
  74. #endif