ReadNVM.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ReadNVM (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Read MAC Software Image from the device using as many VS_RD_MOD
  15. * messages as needed; Write image blocks to file as as they are
  16. * read;
  17. *
  18. * the object here here is to read NVM from RAM in 1024 byte blocks
  19. * until MOFFSET exceeds the image length;
  20. *
  21. * MOFFSET and MLENGTH fields occupy different offsets in REQ and
  22. * CNF messages; we exploit that by initializing CNF message and
  23. * copying them into the REQ message before each read;
  24. *
  25. * Contributor(s):
  26. * Charles Maier <cmaier@qca.qualcomm.com>
  27. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  28. *
  29. *--------------------------------------------------------------------*/
  30. #ifndef READNVM_SOURCE
  31. #define READNVM_SOURCE
  32. #include <stdint.h>
  33. #include <unistd.h>
  34. #include <memory.h>
  35. #include "../plc/plc.h"
  36. #include "../tools/error.h"
  37. #include "../tools/files.h"
  38. #include "../tools/endian.h"
  39. #include "../tools/memory.h"
  40. #include "../nvm/nvm.h"
  41. signed ReadNVM (struct plc * plc)
  42. {
  43. struct channel * channel = (struct channel *) (plc->channel);
  44. struct message * message = (struct message *) (plc->message);
  45. #ifndef __GNUC__
  46. #pragma pack (push,1)
  47. #endif
  48. struct __packed vs_rd_mod_request
  49. {
  50. struct ethernet_hdr ethernet;
  51. struct qualcomm_hdr qualcomm;
  52. uint8_t MODULEID;
  53. uint8_t MACCESS;
  54. uint16_t MLENGTH;
  55. uint32_t MOFFSET;
  56. uint8_t MSECRET [16];
  57. }
  58. * request = (struct vs_rd_mod_request *) (message);
  59. struct __packed vs_rd_mod_confirm
  60. {
  61. struct ethernet_hdr ethernet;
  62. struct qualcomm_hdr qualcomm;
  63. uint8_t MSTATUS;
  64. uint8_t RES [3];
  65. uint8_t MODULEID;
  66. uint8_t RESERVED;
  67. uint16_t MLENGTH;
  68. uint32_t MOFFSET;
  69. uint32_t CHKSUM;
  70. uint8_t BUFFER [PLC_RECORD_SIZE];
  71. }
  72. * confirm = (struct vs_rd_mod_confirm *) (message);
  73. #ifndef __GNUC__
  74. #pragma pack (pop)
  75. #endif
  76. uint32_t header = 0;
  77. uint32_t extent = 0;
  78. uint32_t offset = 0;
  79. uint16_t length = PLC_RECORD_SIZE;
  80. Request (plc, "Read Firmware from Device");
  81. if (lseek (plc->nvm.file, 0, SEEK_SET))
  82. {
  83. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->nvm.name);
  84. return (1);
  85. }
  86. do
  87. {
  88. memset (message, 0, sizeof (* message));
  89. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  90. QualcommHeader (& request->qualcomm, 0, (VS_RD_MOD | MMTYPE_REQ));
  91. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  92. request->MODULEID = VS_MODULE_MAC;
  93. request->MLENGTH = HTOLE16 (length);
  94. request->MOFFSET = HTOLE32 (offset);
  95. if (SendMME (plc) <= 0)
  96. {
  97. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  98. return (-1);
  99. }
  100. if (ReadMME (plc, 0, (VS_RD_MOD | MMTYPE_CNF)) <= 0)
  101. {
  102. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  103. return (-1);
  104. }
  105. if (confirm->MSTATUS)
  106. {
  107. Failure (plc, PLC_WONTDOIT);
  108. return (-1);
  109. }
  110. if (LE16TOH (confirm->MLENGTH) != length)
  111. {
  112. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  113. return (-1);
  114. }
  115. if (LE32TOH (confirm->MOFFSET) != offset)
  116. {
  117. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  118. return (-1);
  119. }
  120. length = LE16TOH (confirm->MLENGTH);
  121. offset = LE32TOH (confirm->MOFFSET);
  122. if (checksum32 (confirm->BUFFER, length, confirm->CHKSUM))
  123. {
  124. error (PLC_EXIT (plc), ECANCELED, "Bad Packet Checksum");
  125. return (-1);
  126. }
  127. if (offset == extent)
  128. {
  129. struct lightning_nvm_header * nvm_header = (struct lightning_nvm_header *) (confirm->BUFFER);
  130. if (checksum32 (nvm_header, sizeof (* nvm_header), 0))
  131. {
  132. error (PLC_EXIT (plc), ECANCELED, "Bad Header Checksum");
  133. return (-1);
  134. }
  135. if (LE32TOH (nvm_header->HEADERVERSION) != 0x60000000)
  136. {
  137. error (PLC_EXIT (plc), ECANCELED, "Bad Header Version");
  138. return (-1);
  139. }
  140. extent += sizeof (* nvm_header);
  141. extent += LE32TOH (nvm_header->IMAGELENGTH);
  142. header = LE32TOH (nvm_header->NEXTHEADER);
  143. }
  144. if ((offset + length) > extent)
  145. {
  146. length = extent - offset;
  147. }
  148. if (lseek (plc->nvm.file, offset, SEEK_SET) != (off_t) (offset))
  149. {
  150. error (PLC_EXIT (plc), errno, FILE_CANTSEEK, plc->nvm.name);
  151. return (-1);
  152. }
  153. if (write (plc->nvm.file, confirm->BUFFER, length) != (signed) (length))
  154. {
  155. error (PLC_EXIT (plc), errno, FILE_CANTSAVE, plc->nvm.name);
  156. return (-1);
  157. }
  158. offset += length;
  159. length = 1024;
  160. }
  161. while ((header) || (offset < extent));
  162. Confirm (plc, "Read %s", plc->nvm.name);
  163. return (0);
  164. }
  165. #endif