default_image.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * (C) Copyright 2008 Semihalf
  3. *
  4. * (C) Copyright 2000-2004
  5. * DENX Software Engineering
  6. * Wolfgang Denk, wd@denx.de
  7. *
  8. * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
  9. * default_image specific code abstracted from mkimage.c
  10. * some functions added to address abstraction
  11. *
  12. * All rights reserved.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  27. * MA 02111-1307 USA
  28. */
  29. #include "mkimage.h"
  30. #include <image.h>
  31. #include <u-boot/crc.h>
  32. static image_header_t header;
  33. static int image_check_image_types (uint8_t type)
  34. {
  35. if ((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT))
  36. return EXIT_SUCCESS;
  37. else
  38. return EXIT_FAILURE;
  39. }
  40. static int image_check_params (struct mkimage_params *params)
  41. {
  42. return ((params->dflag && (params->fflag || params->lflag)) ||
  43. (params->fflag && (params->dflag || params->lflag)) ||
  44. (params->lflag && (params->dflag || params->fflag)));
  45. }
  46. static int image_verify_header (unsigned char *ptr, int image_size,
  47. struct mkimage_params *params)
  48. {
  49. uint32_t len;
  50. const unsigned char *data;
  51. uint32_t checksum;
  52. image_header_t header;
  53. image_header_t *hdr = &header;
  54. /*
  55. * create copy of header so that we can blank out the
  56. * checksum field for checking - this can't be done
  57. * on the PROT_READ mapped data.
  58. */
  59. memcpy (hdr, ptr, sizeof(image_header_t));
  60. if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
  61. fprintf (stderr,
  62. "%s: Bad Magic Number: \"%s\" is no valid image\n",
  63. params->cmdname, params->imagefile);
  64. return -FDT_ERR_BADMAGIC;
  65. }
  66. data = (const unsigned char *)hdr;
  67. len = sizeof(image_header_t);
  68. checksum = be32_to_cpu(hdr->ih_hcrc);
  69. hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
  70. if (crc32 (0, data, len) != checksum) {
  71. fprintf (stderr,
  72. "%s: ERROR: \"%s\" has bad header checksum!\n",
  73. params->cmdname, params->imagefile);
  74. return -FDT_ERR_BADSTATE;
  75. }
  76. data = (const unsigned char *)ptr + sizeof(image_header_t);
  77. len = image_size - sizeof(image_header_t) ;
  78. checksum = be32_to_cpu(hdr->ih_dcrc);
  79. if (crc32 (0, data, len) != checksum) {
  80. fprintf (stderr,
  81. "%s: ERROR: \"%s\" has corrupted data!\n",
  82. params->cmdname, params->imagefile);
  83. return -FDT_ERR_BADSTRUCTURE;
  84. }
  85. return 0;
  86. }
  87. static void image_set_header (void *ptr, struct stat *sbuf, int ifd,
  88. struct mkimage_params *params)
  89. {
  90. uint32_t checksum;
  91. image_header_t * hdr = (image_header_t *)ptr;
  92. checksum = crc32 (0,
  93. (const unsigned char *)(ptr +
  94. sizeof(image_header_t)),
  95. sbuf->st_size - sizeof(image_header_t));
  96. /* Build new header */
  97. image_set_magic (hdr, IH_MAGIC);
  98. image_set_time (hdr, sbuf->st_mtime);
  99. image_set_size (hdr, sbuf->st_size - sizeof(image_header_t));
  100. image_set_load (hdr, params->addr);
  101. image_set_ep (hdr, params->ep);
  102. image_set_dcrc (hdr, checksum);
  103. image_set_os (hdr, params->os);
  104. image_set_arch (hdr, params->arch);
  105. image_set_type (hdr, params->type);
  106. image_set_comp (hdr, params->comp);
  107. image_set_name (hdr, params->imagename);
  108. checksum = crc32 (0, (const unsigned char *)hdr,
  109. sizeof(image_header_t));
  110. image_set_hcrc (hdr, checksum);
  111. }
  112. /*
  113. * Default image type parameters definition
  114. */
  115. static struct image_type_params defimage_params = {
  116. .name = "Default Image support",
  117. .header_size = sizeof(image_header_t),
  118. .hdr = (void*)&header,
  119. .check_image_type = image_check_image_types,
  120. .verify_header = image_verify_header,
  121. .print_header = image_print_contents,
  122. .set_header = image_set_header,
  123. .check_params = image_check_params,
  124. };
  125. void init_default_image_type (void)
  126. {
  127. mkimage_register (&defimage_params);
  128. }