ReadFirmware1.c 4.4 KB

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