fdmanifest.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed fdmanifest (signed fd, char const * filename, struct panther_nvm_header * nvm_header);
  11. *
  12. * given the manifest image header and a file positioned to the
  13. * start of the manifest image, extract the manifest and print
  14. * it on stdout in human readable form;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef FDMANIFEST_SOURCE
  21. #define FDMANIFEST_SOURCE
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <stdint.h>
  25. #include <errno.h>
  26. #include "../tools/endian.h"
  27. #include "../tools/files.h"
  28. #include "../tools/error.h"
  29. #include "../nvm/nvm.h"
  30. signed fdmanifest (signed fd, char const * filename, struct panther_nvm_header * nvm_header)
  31. {
  32. off_t extent = LE32TOH (nvm_header->ImageLength);
  33. void * memory = malloc (extent);
  34. if (! memory)
  35. {
  36. error (1, 0, FILE_CANTLOAD, filename);
  37. }
  38. if (read (fd, memory, extent) != (signed) (extent))
  39. {
  40. error (1, errno, FILE_CANTREAD, filename);
  41. }
  42. if (lseek (fd, (off_t) (0) - extent, SEEK_CUR) == - 1)
  43. {
  44. error (1, errno, FILE_CANTSEEK, filename);
  45. }
  46. if (panther_nvm_manifest (memory, extent))
  47. {
  48. error (1, 0, "Bad manifest: %s", filename);
  49. }
  50. free (memory);
  51. return (0);
  52. }
  53. #endif