nvmmerge.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * nvmmerge.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. /*====================================================================*
  18. * system header files;
  19. *--------------------------------------------------------------------*/
  20. #include <stdio.h>
  21. #include <unistd.h>
  22. #include <string.h>
  23. #include <errno.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/flags.h"
  30. #include "../tools/files.h"
  31. #include "../tools/error.h"
  32. #include "../nvm/nvm.h"
  33. /*====================================================================*
  34. * custom source files;
  35. *--------------------------------------------------------------------*/
  36. #ifndef MAKEFILE
  37. #include "../tools/getoptv.c"
  38. #include "../tools/putoptv.c"
  39. #include "../tools/version.c"
  40. #include "../tools/checksum32.c"
  41. #include "../tools/error.c"
  42. #endif
  43. /*====================================================================*
  44. *
  45. * void copyimage (struct _file_ * file, signed extent, signed image)
  46. *
  47. * Contributor(s):
  48. * Charles Maier <cmaier@qca.qualcomm.com>
  49. *
  50. *--------------------------------------------------------------------*/
  51. static void copyimage (struct _file_ * file, signed extent, signed image)
  52. {
  53. char buffer [1024];
  54. signed length = sizeof (buffer);
  55. while (extent)
  56. {
  57. if (length > extent)
  58. {
  59. length = extent;
  60. }
  61. if (read (file->file, buffer, length) < length)
  62. {
  63. error (1, errno, NVM_IMG_CANTREAD, file->name, image);
  64. }
  65. if (write (STDOUT_FILENO, buffer, length) < length)
  66. {
  67. error (1, errno, NVM_IMG_CANTSAVE, file->name, image);
  68. }
  69. extent -= length;
  70. }
  71. return;
  72. }
  73. /*====================================================================*
  74. *
  75. * void function1 (char const * filename, signed index, flag_t flags);
  76. *
  77. * concatenate Atheros image files having the older header format;
  78. *
  79. * the major and minor header version must be 0x6000 and 0x0000
  80. * and both header links must be 0x00000000;
  81. *
  82. * Contributor(s):
  83. * Charles Maier <cmaier@qca.qualcomm.com>
  84. *
  85. *--------------------------------------------------------------------*/
  86. static void function1 (struct _file_ * file, signed index, flag_t flags)
  87. {
  88. static signed image = 0;
  89. static uint32_t offset = 0;
  90. struct lightning_nvm_header nvm_header;
  91. if (read (file->file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  92. {
  93. error (1, errno, NVM_HDR_CANTREAD, file->name, image);
  94. }
  95. if (LE32TOH (nvm_header.HEADERVERSION) != 0x60000000)
  96. {
  97. error (1, 0, NVM_HDR_VERSION, file->name, image);
  98. }
  99. if (checksum32 (& nvm_header, sizeof (nvm_header), 0))
  100. {
  101. error (1, 0, NVM_HDR_CHECKSUM, file->name, image);
  102. }
  103. if (nvm_header.NEXTHEADER)
  104. {
  105. error (1, 0, NVM_HDR_LINK, file->name, image);
  106. }
  107. if (index)
  108. {
  109. offset += sizeof (nvm_header);
  110. offset += LE32TOH (nvm_header.IMAGELENGTH);
  111. nvm_header.NEXTHEADER = HTOLE32 (offset);
  112. }
  113. nvm_header.HEADERCHECKSUM = 0;
  114. nvm_header.HEADERCHECKSUM = checksum32 (& nvm_header, sizeof (nvm_header), 0);
  115. if (write (STDOUT_FILENO, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  116. {
  117. error (1, errno, NVM_HDR_CANTSAVE, file->name, image);
  118. }
  119. copyimage (file, LE32TOH (nvm_header.IMAGELENGTH), image);
  120. return;
  121. }
  122. /*====================================================================*
  123. *
  124. * void function2 (char const * filename, signed index, flag_t flags);
  125. *
  126. * concatenate Atheros image files having the newer header format;
  127. *
  128. * the manor and minor header version must be 0x0001 and 0x0001
  129. * and both header links must be 0xFFFFFFFF;
  130. *
  131. * Contributor(s):
  132. * Charles Maier <cmaier@qca.qualcomm.com>
  133. *
  134. *--------------------------------------------------------------------*/
  135. static void function2 (struct _file_ * file, signed index, flag_t flags)
  136. {
  137. static signed image = 0;
  138. static uint32_t origin = ~ 0;
  139. static uint32_t offset = 0;
  140. struct panther_nvm_header nvm_header;
  141. if (read (file->file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  142. {
  143. error (1, errno, NVM_HDR_CANTREAD, file->name, image);
  144. }
  145. if (LE16TOH (nvm_header.MajorVersion) != 1)
  146. {
  147. error (1, 0, NVM_HDR_VERSION, file->name, image);
  148. }
  149. if (LE16TOH (nvm_header.MinorVersion) != 1)
  150. {
  151. error (1, 0, NVM_HDR_VERSION, file->name, image);
  152. }
  153. if (checksum32 (& nvm_header, sizeof (nvm_header), 0))
  154. {
  155. error (1, 0, NVM_HDR_CHECKSUM, file->name, image);
  156. }
  157. if (~ nvm_header.PrevHeader)
  158. {
  159. error (1, 0, NVM_HDR_LINK, file->name, image);
  160. }
  161. if (~ nvm_header.NextHeader)
  162. {
  163. error (1, 0, NVM_HDR_LINK, file->name, image);
  164. }
  165. nvm_header.PrevHeader = HTOLE32 (origin);
  166. origin = offset;
  167. if (index)
  168. {
  169. offset += sizeof (nvm_header);
  170. offset += LE32TOH (nvm_header.ImageLength);
  171. nvm_header.NextHeader = HTOLE32 (offset);
  172. }
  173. nvm_header.HeaderChecksum = 0;
  174. nvm_header.HeaderChecksum = checksum32 (& nvm_header, sizeof (nvm_header), 0);
  175. if (write (STDOUT_FILENO, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  176. {
  177. error (1, errno, NVM_HDR_CANTSAVE, file->name, image);
  178. }
  179. copyimage (file, LE32TOH (nvm_header.ImageLength), image);
  180. image++;
  181. return;
  182. }
  183. /*====================================================================*
  184. *
  185. * void function (char const * filename, signed count, flag_t flags);
  186. *
  187. * Contributor(s):
  188. * Charles Maier <cmaier@qca.qualcomm.com>
  189. *
  190. *--------------------------------------------------------------------*/
  191. static void function (char const * filename, signed index, flag_t flags)
  192. {
  193. uint32_t version;
  194. struct _file_ file =
  195. {
  196. - 1,
  197. filename
  198. };
  199. if (_anyset (flags, NVM_VERBOSE))
  200. {
  201. error (0, 0, "%s", file.name);
  202. }
  203. if ((file.file = open (file.name, O_BINARY | O_RDONLY)) == - 1)
  204. {
  205. error (1, errno, FILE_CANTOPEN, file.name);
  206. }
  207. if (read (file.file, & version, sizeof (version)) != sizeof (version))
  208. {
  209. error (1, errno, FILE_CANTREAD, file.name);
  210. }
  211. if (lseek (file.file, 0, SEEK_SET))
  212. {
  213. error (1, errno, FILE_CANTHOME, file.name);
  214. }
  215. if (LE32TOH (version) == 0x60000000)
  216. {
  217. function1 (& file, index, flags);
  218. }
  219. else
  220. {
  221. function2 (& file, index, flags);
  222. }
  223. close (file.file);
  224. return;
  225. }
  226. /*====================================================================*
  227. *
  228. * int main (int argc, char const * argv []);
  229. *
  230. * Contributor(s):
  231. * Charles Maier <cmaier@qca.qualcomm.com>
  232. *
  233. *--------------------------------------------------------------------*/
  234. int main (int argc, char const * argv [])
  235. {
  236. static char const * optv [] =
  237. {
  238. "qv",
  239. "file [file] [...] [> file]",
  240. "Qualcomm Atheros PLC Firmware Image File Splicer",
  241. "q\tsuppress messages",
  242. "v\tverbose messages",
  243. (char const *) (0)
  244. };
  245. flag_t flags = (flag_t) (0);
  246. signed c;
  247. optind = 1;
  248. while (~ (c = getoptv (argc, argv, optv)))
  249. {
  250. switch ((char) (c))
  251. {
  252. case 'q':
  253. _setbits (flags, NVM_SILENCE);
  254. break;
  255. case 'v':
  256. _setbits (flags, NVM_VERBOSE);
  257. break;
  258. default:
  259. break;
  260. }
  261. }
  262. argc -= optind;
  263. argv += optind;
  264. #ifdef WIN32
  265. setmode (fileno (stdin), O_BINARY);
  266. setmode (fileno (stdout), O_BINARY);
  267. #endif
  268. while ((argc) && (* argv))
  269. {
  270. function (* argv, argc - 1, flags);
  271. argv++;
  272. argc--;
  273. }
  274. return (0);
  275. }