dumpimage: add 'T' option to explicitly set the image type

Some image types, like "KeyStone GP", do not have magic numbers to
distinguish them from other image types. Thus, the automatic image
type discovery does not work correctly.

This patch also fix some integer type mismatches.

Signed-off-by: Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
master
Guilherme Maciel Ferreira 10 years ago committed by Tom Rini
parent a93648d197
commit f41f5b7c05
  1. 7
      README
  2. 48
      test/image/test-imagetools.sh
  3. 70
      tools/dumpimage.c
  4. 3
      tools/gpimage-common.c
  5. 3
      tools/mkimage.c

@ -5899,9 +5899,10 @@ option performs the converse operation of the mkimage's second form (the "-d"
option). Given an image built by mkimage, the dumpimage extracts a "data file" option). Given an image built by mkimage, the dumpimage extracts a "data file"
from the image: from the image:
tools/dumpimage -i image -p position data_file tools/dumpimage -i image -T type -p position data_file
-i ==> extract from the 'image' a specific 'data_file', \ -i ==> extract from the 'image' a specific 'data_file'
indexed by 'position' -T ==> set image type to 'type'
-p ==> 'position' (starting at 0) of the 'data_file' inside the 'image'
Installing a Linux Image: Installing a Linux Image:

@ -13,9 +13,9 @@
# ./test/image/test-imagetools.sh # ./test/image/test-imagetools.sh
BASEDIR=sandbox BASEDIR=sandbox
SRCDIR=sandbox/boot SRCDIR=${BASEDIR}/boot
IMAGE_NAME="v1.0-test" IMAGE_NAME="v1.0-test"
IMAGE=linux.img IMAGE_MULTI=linux.img
DATAFILE0=vmlinuz DATAFILE0=vmlinuz
DATAFILE1=initrd.img DATAFILE1=initrd.img
DATAFILE2=System.map DATAFILE2=System.map
@ -34,14 +34,14 @@ cleanup()
for file in ${DATAFILES}; do for file in ${DATAFILES}; do
rm -f ${file} ${SRCDIR}/${file} rm -f ${file} ${SRCDIR}/${file}
done done
rm -f ${IMAGE} ${DUMPIMAGE_LIST} ${MKIMAGE_LIST} ${TEST_OUT} rm -f ${IMAGE_MULTI} ${DUMPIMAGE_LIST} ${MKIMAGE_LIST} ${TEST_OUT}
rmdir ${SRCDIR} rmdir ${SRCDIR}
} }
# Check that two files are the same # Check that two files are the same
assert_equal() assert_equal()
{ {
if ! diff $1 $2; then if ! diff -u $1 $2; then
echo "Failed." echo "Failed."
cleanup cleanup
exit 1 exit 1
@ -82,35 +82,39 @@ do_cmd_redir()
${cmd} >${redir} ${cmd} >${redir}
} }
# Write files into an image # Write files into an multi-file image
create_image() create_multi_image()
{ {
local files="${SRCDIR}/${DATAFILE0}:${SRCDIR}/${DATAFILE1}" local files="${SRCDIR}/${DATAFILE0}:${SRCDIR}/${DATAFILE1}"
files+=":${SRCDIR}/${DATAFILE2}" files+=":${SRCDIR}/${DATAFILE2}"
echo -e "\nBuilding image..." echo -e "\nBuilding multi-file image..."
do_cmd ${MKIMAGE} -A x86 -O linux -T multi -n \"${IMAGE_NAME}\" \ do_cmd ${MKIMAGE} -A x86 -O linux -T multi -n \"${IMAGE_NAME}\" \
-d ${files} ${IMAGE} -d ${files} ${IMAGE_MULTI}
echo "done." echo "done."
} }
# Extract files from an image # Extract files from an multi-file image
extract_image() extract_multi_image()
{ {
echo -e "\nExtracting image contents..." echo -e "\nExtracting multi-file image contents..."
do_cmd ${DUMPIMAGE} -i ${IMAGE} -p 0 ${DATAFILE0} do_cmd ${DUMPIMAGE} -T multi -i ${IMAGE_MULTI} -p 0 ${DATAFILE0}
do_cmd ${DUMPIMAGE} -i ${IMAGE} -p 1 ${DATAFILE1} do_cmd ${DUMPIMAGE} -T multi -i ${IMAGE_MULTI} -p 1 ${DATAFILE1}
do_cmd ${DUMPIMAGE} -i ${IMAGE} -p 2 ${DATAFILE2} do_cmd ${DUMPIMAGE} -T multi -i ${IMAGE_MULTI} -p 2 ${DATAFILE2}
do_cmd ${DUMPIMAGE} -i ${IMAGE} -p 2 ${DATAFILE2} -o ${TEST_OUT} do_cmd ${DUMPIMAGE} -T multi -i ${IMAGE_MULTI} -p 2 ${DATAFILE2} -o ${TEST_OUT}
echo "done." echo "done."
} }
# List the contents of a file # List the contents of a file
# Args:
# image filename
list_image() list_image()
{ {
local image="$1"
echo -e "\nListing image contents..." echo -e "\nListing image contents..."
do_cmd_redir ${MKIMAGE_LIST} ${MKIMAGE} -l ${IMAGE} do_cmd_redir ${MKIMAGE_LIST} ${MKIMAGE} -l ${image}
do_cmd_redir ${DUMPIMAGE_LIST} ${DUMPIMAGE} -l ${IMAGE} do_cmd_redir ${DUMPIMAGE_LIST} ${DUMPIMAGE} -l ${image}
echo "done." echo "done."
} }
@ -120,16 +124,16 @@ main()
create_files create_files
# Compress and extract multifile images, compare the result # Compress and extract multi-file images, compare the result
create_image create_multi_image
extract_image extract_multi_image
for file in ${DATAFILES}; do for file in ${DATAFILES}; do
assert_equal ${file} ${SRCDIR}/${file} assert_equal ${file} ${SRCDIR}/${file}
done done
assert_equal ${TEST_OUT} ${DATAFILE2} assert_equal ${TEST_OUT} ${DATAFILE2}
# List contents and compares output fro tools # List contents of multi-file image and compares output from tools
list_image list_image ${IMAGE_MULTI}
assert_equal ${DUMPIMAGE_LIST} ${MKIMAGE_LIST} assert_equal ${DUMPIMAGE_LIST} ${MKIMAGE_LIST}
# Remove files created # Remove files created

@ -12,9 +12,6 @@
static void usage(void); static void usage(void);
/* image_type_params linked list to maintain registered image types supports */
static struct image_type_params *dumpimage_tparams;
/* parameters initialized by core will be used by the image type code */ /* parameters initialized by core will be used by the image type code */
static struct image_tool_params params = { static struct image_tool_params params = {
.type = IH_TYPE_KERNEL, .type = IH_TYPE_KERNEL,
@ -31,33 +28,27 @@ static struct image_tool_params params = {
* returns negative if input image format does not match with any of * returns negative if input image format does not match with any of
* supported image types * supported image types
*/ */
static int dumpimage_extract_datafile(void *ptr, struct stat *sbuf) static int dumpimage_extract_datafile(struct image_type_params *tparams,
void *ptr, struct stat *sbuf)
{ {
int retval = -1; int retval = -1;
struct image_type_params *curr;
struct image_type_params *start = ll_entry_start( if (tparams->verify_header) {
struct image_type_params, image_type); retval = tparams->verify_header((unsigned char *)ptr,
struct image_type_params *end = ll_entry_end( sbuf->st_size, &params);
struct image_type_params, image_type); if (retval != 0)
return -1;
for (curr = start; curr != end; curr++) { /*
if (curr->verify_header) { * Extract the file from the image
retval = curr->verify_header((unsigned char *)ptr, * if verify is successful
sbuf->st_size, &params); */
if (retval != 0) if (tparams->extract_datafile) {
continue; retval = tparams->extract_datafile(ptr, &params);
/* } else {
* Extract the file from the image fprintf(stderr,
* if verify is successful "%s: extract_datafile undefined for %s\n",
*/ params.cmdname, tparams->name);
if (curr->extract_datafile) { return -2;
curr->extract_datafile(ptr, &params);
} else {
fprintf(stderr,
"%s: extract_datafile undefined for %s\n",
params.cmdname, curr->name);
break;
}
} }
} }
@ -75,7 +66,7 @@ int main(int argc, char **argv)
params.cmdname = *argv; params.cmdname = *argv;
while ((opt = getopt(argc, argv, "li:o:p:V")) != -1) { while ((opt = getopt(argc, argv, "li:o:T:p:V")) != -1) {
switch (opt) { switch (opt) {
case 'l': case 'l':
params.lflag = 1; params.lflag = 1;
@ -87,6 +78,12 @@ int main(int argc, char **argv)
case 'o': case 'o':
params.outfile = optarg; params.outfile = optarg;
break; break;
case 'T':
params.type = genimg_get_type_id(optarg);
if (params.type < 0) {
usage();
}
break;
case 'p': case 'p':
params.pflag = strtoul(optarg, &ptr, 10); params.pflag = strtoul(optarg, &ptr, 10);
if (*ptr) { if (*ptr) {
@ -101,6 +98,7 @@ int main(int argc, char **argv)
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
default: default:
usage(); usage();
break;
} }
} }
@ -110,7 +108,7 @@ int main(int argc, char **argv)
/* set tparams as per input type_id */ /* set tparams as per input type_id */
tparams = imagetool_get_type(params.type); tparams = imagetool_get_type(params.type);
if (tparams == NULL) { if (tparams == NULL) {
fprintf(stderr, "%s: unsupported type %s\n", fprintf(stderr, "%s: unsupported type: %s\n",
params.cmdname, genimg_get_type_name(params.type)); params.cmdname, genimg_get_type_name(params.type));
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
@ -147,7 +145,7 @@ int main(int argc, char **argv)
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
if ((unsigned)sbuf.st_size < tparams->header_size) { if ((uint32_t)sbuf.st_size < tparams->header_size) {
fprintf(stderr, fprintf(stderr,
"%s: Bad size: \"%s\" is not valid image\n", "%s: Bad size: \"%s\" is not valid image\n",
params.cmdname, params.imagefile); params.cmdname, params.imagefile);
@ -172,7 +170,8 @@ int main(int argc, char **argv)
* Extract the data files from within the matched * Extract the data files from within the matched
* image type. Returns the error code if not matched * image type. Returns the error code if not matched
*/ */
retval = dumpimage_extract_datafile(ptr, &sbuf); retval = dumpimage_extract_datafile(tparams, ptr,
&sbuf);
} else { } else {
/* /*
* Print the image information for matched image type * Print the image information for matched image type
@ -199,9 +198,10 @@ static void usage(void)
" -l ==> list image header information\n", " -l ==> list image header information\n",
params.cmdname); params.cmdname);
fprintf(stderr, fprintf(stderr,
" %s -i image [-p position] [-o outfile] data_file\n" " %s -i image -T type [-p position] [-o outfile] data_file\n"
" -i ==> extract from the 'image' a specific 'data_file'" " -i ==> extract from the 'image' a specific 'data_file'\n"
", indexed by 'position' (starting at 0)\n", " -T ==> set image type to 'type'\n"
" -p ==> 'position' (starting at 0) of the 'data_file' inside the 'image'\n",
params.cmdname); params.cmdname);
fprintf(stderr, fprintf(stderr,
" %s -V ==> print version information and exit\n", " %s -V ==> print version information and exit\n",

@ -32,7 +32,8 @@ void to_be32(uint32_t *gph_size, uint32_t *gph_load_addr)
int gph_verify_header(struct gp_header *gph, int be) int gph_verify_header(struct gp_header *gph, int be)
{ {
uint32_t gph_size = gph->size, gph_load_addr = gph->load_addr; uint32_t gph_size = gph->size;
uint32_t gph_load_addr = gph->load_addr;
if (be) if (be)
to_be32(&gph_size, &gph_load_addr); to_be32(&gph_size, &gph_load_addr);

@ -15,9 +15,6 @@
static void copy_file(int, const char *, int); static void copy_file(int, const char *, int);
static void usage(void); static void usage(void);
/* image_type_params link list to maintain registered image type supports */
struct image_type_params *mkimage_tparams = NULL;
/* parameters initialized by core will be used by the image type code */ /* parameters initialized by core will be used by the image type code */
struct image_tool_params params = { struct image_tool_params params = {
.os = IH_OS_LINUX, .os = IH_OS_LINUX,

Loading…
Cancel
Save