ModuleSpec.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleSpec (struct _file_ * module, struct vs_module_spec * vs_module_spec);
  11. *
  12. * plc.h
  13. *
  14. * compute file length and checksum for module operation functions;
  15. * struct vs_module_spec is defined in plc.h;
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef MODULESPEC_SOURCE
  19. #define MODULESPEC_SOURCE
  20. #include "../tools/error.h"
  21. #include "../tools/files.h"
  22. #include "../plc/plc.h"
  23. signed ModuleSpec (struct _file_ * file, struct vs_module_spec * spec)
  24. {
  25. off_t length;
  26. if ((length = lseek (file->file, 0, SEEK_END)) == -1)
  27. {
  28. error (1, errno, FILE_CANTSIZE, file->name);
  29. }
  30. #if 1
  31. if (length % sizeof (uint32_t))
  32. {
  33. error (1, ENOTSUP, "%s not multiple of " SIZE_T_SPEC " bytes", file->name, sizeof (uint32_t));
  34. }
  35. #endif
  36. if (lseek (file->file, 0, SEEK_SET))
  37. {
  38. error (1, errno, FILE_CANTHOME, file->name);
  39. }
  40. spec->MODULE_LENGTH = length;
  41. spec->MODULE_CHKSUM = fdchecksum32 (file->file, length, 0);
  42. if (lseek (file->file, 0, SEEK_SET))
  43. {
  44. error (1, errno, FILE_CANTHOME, file->name);
  45. }
  46. return (0);
  47. }
  48. #endif