lightning_nvm_seek.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed lightning_nvm_seek (signed fd, char const * filename, struct lightning_nvm_header * nvm_header, uint32_t imagetype);
  11. *
  12. * nvm.h
  13. *
  14. * search a thunderbolt/lightning PIB file for the next image of a
  15. * given type; return 0 on success or -1 on failure to find another
  16. * image of the given type;
  17. *
  18. * the call must provide an image header strucuture for use while
  19. * searching; on success, that structure will contain information
  20. * about the image and file will be positioned to the start of
  21. * the image;
  22. *
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef LIGHTNING_NVM_SEEK_SOURCE
  26. #define LIGHTNING_NVM_SEEK_SOURCE
  27. #include <unistd.h>
  28. #include "../tools/endian.h"
  29. #include "../tools/error.h"
  30. #include "../pib/pib.h"
  31. #include "../nvm/nvm.h"
  32. signed lightning_nvm_seek (signed fd, char const * filename, struct lightning_nvm_header * header, uint32_t imagetype)
  33. {
  34. unsigned module = 0;
  35. do
  36. {
  37. if (read (fd, header, sizeof (* header)) != sizeof (* header))
  38. {
  39. error (1, errno, NVM_HDR_CANTREAD, filename, module);
  40. }
  41. if (LE32TOH (header->HEADERVERSION) != 0x60000000)
  42. {
  43. error (1, errno, NVM_HDR_VERSION, filename, module);
  44. }
  45. if (checksum32 (header, sizeof (* header), 0))
  46. {
  47. error (1, 0, NVM_HDR_CHECKSUM, filename, module);
  48. }
  49. if (header->IMAGETYPE == imagetype)
  50. {
  51. return (0);
  52. }
  53. if (fdchecksum32 (fd, LE32TOH (header->IMAGELENGTH), header->IMAGECHECKSUM))
  54. {
  55. error (1, ECANCELED, NVM_IMG_CHECKSUM, filename, module);
  56. }
  57. module++;
  58. }
  59. while (~ header->NEXTHEADER);
  60. if (lseek (fd, 0, SEEK_CUR) != lseek (fd, 0, SEEK_END))
  61. {
  62. error (1, errno, NVM_HDR_LINK, filename, module);
  63. }
  64. return (- 1);
  65. }
  66. #endif