image.c

来自「uboot详细解读可用启动引导LINUX2.6内核」· C语言 代码 · 共 2,365 行 · 第 1/5 页

C
2,365
字号
 * calculate_hash() computes input data hash according to the requested algorithm. * Resulting hash value is placed in caller provided 'value' buffer, length * of the calculated hash is returned via value_len pointer argument. * * returns: *     0, on success *    -1, when algo is unsupported */static int calculate_hash (const void *data, int data_len, const char *algo,			uint8_t *value, int *value_len){	if (strcmp (algo, "crc32") == 0 ) {		*((uint32_t *)value) = crc32_wd (0, data, data_len,							CHUNKSZ_CRC32);		*((uint32_t *)value) = cpu_to_uimage (*((uint32_t *)value));		*value_len = 4;	} else if (strcmp (algo, "sha1") == 0 ) {		sha1_csum_wd ((unsigned char *) data, data_len,				(unsigned char *) value, CHUNKSZ_SHA1);		*value_len = 20;	} else if (strcmp (algo, "md5") == 0 ) {		md5_wd ((unsigned char *)data, data_len, value, CHUNKSZ_MD5);		*value_len = 16;	} else {		debug ("Unsupported hash alogrithm\n");		return -1;	}	return 0;}#ifdef USE_HOSTCC/** * fit_set_hashes - process FIT component image nodes and calculate hashes * @fit: pointer to the FIT format image header * * fit_set_hashes() adds hash values for all component images in the FIT blob. * Hashes are calculated for all component images which have hash subnodes * with algorithm property set to one of the supported hash algorithms. * * returns *     0, on success *     libfdt error code, on failure */int fit_set_hashes (void *fit){	int images_noffset;	int noffset;	int ndepth;	int ret;	/* Find images parent node offset */	images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);	if (images_noffset < 0) {		printf ("Can't find images parent node '%s' (%s)\n",			FIT_IMAGES_PATH, fdt_strerror (images_noffset));		return images_noffset;	}	/* Process its subnodes, print out component images details */	for (ndepth = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);	     (noffset >= 0) && (ndepth > 0);	     noffset = fdt_next_node (fit, noffset, &ndepth)) {		if (ndepth == 1) {			/*			 * Direct child node of the images parent node,			 * i.e. component image node.			 */			ret = fit_image_set_hashes (fit, noffset);			if (ret)				return ret;		}	}	return 0;}/** * fit_image_set_hashes - calculate/set hashes for given component image node * @fit: pointer to the FIT format image header * @image_noffset: requested component image node * * fit_image_set_hashes() adds hash values for an component image node. All * existing hash subnodes are checked, if algorithm property is set to one of * the supported hash algorithms, hash value is computed and corresponding * hash node property is set, for example: * * Input component image node structure: * * o image@1 (at image_noffset) *   | - data = [binary data] *   o hash@1 *     |- algo = "sha1" * * Output component image node structure: * * o image@1 (at image_noffset) *   | - data = [binary data] *   o hash@1 *     |- algo = "sha1" *     |- value = sha1(data) * * returns: *     0 on sucess *    <0 on failure */int fit_image_set_hashes (void *fit, int image_noffset){	const void *data;	size_t size;	char *algo;	uint8_t value[FIT_MAX_HASH_LEN];	int value_len;	int noffset;	int ndepth;	/* Get image data and data length */	if (fit_image_get_data (fit, image_noffset, &data, &size)) {		printf ("Can't get image data/size\n");		return -1;	}	/* Process all hash subnodes of the component image node */	for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);	     (noffset >= 0) && (ndepth > 0);	     noffset = fdt_next_node (fit, noffset, &ndepth)) {		if (ndepth == 1) {			/* Direct child node of the component image node */			/*			 * Check subnode name, must be equal to "hash".			 * Multiple hash nodes require unique unit node			 * names, e.g. hash@1, hash@2, etc.			 */			if (strncmp (fit_get_name(fit, noffset, NULL),						FIT_HASH_NODENAME,						strlen(FIT_HASH_NODENAME)) != 0) {				/* Not a hash subnode, skip it */				continue;			}			if (fit_image_hash_get_algo (fit, noffset, &algo)) {				printf ("Can't get hash algo property for "					"'%s' hash node in '%s' image node\n",					fit_get_name (fit, noffset, NULL),					fit_get_name (fit, image_noffset, NULL));				return -1;			}			if (calculate_hash (data, size, algo, value, &value_len)) {				printf ("Unsupported hash algorithm (%s) for "					"'%s' hash node in '%s' image node\n",					algo, fit_get_name (fit, noffset, NULL),					fit_get_name (fit, image_noffset, NULL));				return -1;			}			if (fit_image_hash_set_value (fit, noffset, value,							value_len)) {				printf ("Can't set hash value for "					"'%s' hash node in '%s' image node\n",					fit_get_name (fit, noffset, NULL),					fit_get_name (fit, image_noffset, NULL));				return -1;			}		}	}	return 0;}/** * fit_image_hash_set_value - set hash value in requested has node * @fit: pointer to the FIT format image header * @noffset: hash node offset * @value: hash value to be set * @value_len: hash value length * * fit_image_hash_set_value() attempts to set hash value in a node at offset * given and returns operation status to the caller. * * returns *     0, on success *     -1, on failure */int fit_image_hash_set_value (void *fit, int noffset, uint8_t *value,				int value_len){	int ret;	ret = fdt_setprop (fit, noffset, FIT_VALUE_PROP, value, value_len);	if (ret) {		printf ("Can't set hash '%s' property for '%s' node (%s)\n",			FIT_VALUE_PROP, fit_get_name (fit, noffset, NULL),			fdt_strerror (ret));		return -1;	}	return 0;}#endif /* USE_HOSTCC *//** * fit_image_check_hashes - verify data intergity * @fit: pointer to the FIT format image header * @image_noffset: component image node offset * * fit_image_check_hashes() goes over component image hash nodes, * re-calculates each data hash and compares with the value stored in hash * node. * * returns: *     1, if all hashes are valid *     0, otherwise (or on error) */int fit_image_check_hashes (const void *fit, int image_noffset){	const void	*data;	size_t		size;	char		*algo;	uint8_t		*fit_value;	int		fit_value_len;	uint8_t		value[FIT_MAX_HASH_LEN];	int		value_len;	int		noffset;	int		ndepth;	char		*err_msg = "";	/* Get image data and data length */	if (fit_image_get_data (fit, image_noffset, &data, &size)) {		printf ("Can't get image data/size\n");		return 0;	}	/* Process all hash subnodes of the component image node */	for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);	     (noffset >= 0) && (ndepth > 0);	     noffset = fdt_next_node (fit, noffset, &ndepth)) {		if (ndepth == 1) {			/* Direct child node of the component image node */			/*			 * Check subnode name, must be equal to "hash".			 * Multiple hash nodes require unique unit node			 * names, e.g. hash@1, hash@2, etc.			 */			if (strncmp (fit_get_name(fit, noffset, NULL),					FIT_HASH_NODENAME,					strlen(FIT_HASH_NODENAME)) != 0)				continue;			if (fit_image_hash_get_algo (fit, noffset, &algo)) {				err_msg = "Can't get hash algo property";				goto error;			}			printf ("%s", algo);			if (fit_image_hash_get_value (fit, noffset, &fit_value,							&fit_value_len)) {				err_msg = "Can't get hash value property";				goto error;			}			if (calculate_hash (data, size, algo, value, &value_len)) {				err_msg = "Unsupported hash algorithm";				goto error;			}			if (value_len != fit_value_len) {				err_msg = "Bad hash value len";				goto error;			} else if (memcmp (value, fit_value, value_len) != 0) {				err_msg = "Bad hash value";				goto error;			}			printf ("+ ");		}	}	return 1;error:	printf ("%s for '%s' hash node in '%s' image node\n",			err_msg, fit_get_name (fit, noffset, NULL),			fit_get_name (fit, image_noffset, NULL));	return 0;}/** * fit_image_check_os - check whether image node is of a given os type * @fit: pointer to the FIT format image header * @noffset: component image node offset * @os: requested image os * * fit_image_check_os() reads image os property and compares its numeric * id with the requested os. Comparison result is returned to the caller. * * returns: *     1 if image is of given os type *     0 otherwise (or on error) */int fit_image_check_os (const void *fit, int noffset, uint8_t os){	uint8_t image_os;	if (fit_image_get_os (fit, noffset, &image_os))		return 0;	return (os == image_os);}/** * fit_image_check_arch - check whether image node is of a given arch * @fit: pointer to the FIT format image header * @noffset: component image node offset * @arch: requested imagearch * * fit_image_check_arch() reads image arch property and compares its numeric * id with the requested arch. Comparison result is returned to the caller. * * returns: *     1 if image is of given arch *     0 otherwise (or on error) */int fit_image_check_arch (const void *fit, int noffset, uint8_t arch){	uint8_t image_arch;	if (fit_image_get_arch (fit, noffset, &image_arch))		return 0;	return (arch == image_arch);}/** * fit_image_check_type - check whether image node is of a given type * @fit: pointer to the FIT format image header * @noffset: component image node offset * @type: requested image type * * fit_image_check_type() reads image type property and compares its numeric * id with the requested type. Comparison result is returned to the caller. * * returns: *     1 if image is of given type *     0 otherwise (or on error) */int fit_image_check_type (const void *fit, int noffset, uint8_t type){	uint8_t image_type;	if (fit_image_get_type (fit, noffset, &image_type))		return 0;	return (type == image_type);}/** * fit_image_check_comp - check whether image node uses given compression * @fit: pointer to the FIT format image header * @noffset: component image node offset * @comp: requested image compression type * * fit_image_check_comp() reads image compression property and compares its * numeric id with the requested compression type. Comparison result is * returned to the caller. * * returns: *     1 if image uses requested compression *     0 otherwise (or on error) */int fit_image_check_comp (const void *fit, int noffset, uint8_t comp){	uint8_t image_comp;	if (fit_image_get_comp (fit, noffset, &image_comp))		return 0;	return (comp == image_comp);}/** * fit_check_format - sanity check FIT image format * @fit: pointer to the FIT format image header * * fit_check_format() runs a basic sanity FIT image verification. * Routine checks for mandatory properties, nodes, etc. * * returns: *     1, on success *     0, on failure */int fit_check_format (const void *fit){	/* mandatory / node 'description' property */	if (fdt_getprop (fit, 0, FIT_DESC_PROP, NULL) == NULL) {		debug ("Wrong FIT format: no description\n");		return 0;	}#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)	/* mandatory / node 'timestamp' property */	if (fdt_getprop (fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {		debug ("Wrong FIT format: no description\n");		return 0;	}#endif	/* mandatory subimages parent '/images' node */	if (fdt_path_offset (fit, FIT_IMAGES_PATH) < 0) {		debug ("Wrong FIT format: no images parent node\n");		return 0;	}	return 1;}/** * fit_conf_get_node - get node offset for configuration of a given unit name * @fit: pointer to the FIT format image header * @conf_uname: configuration node unit name * * fit_conf_get_node() finds a configuration (withing the '/configurations' * parant node) of a provided unit name. If configuration is found its node offset * is returned to the caller. * * When NULL is provided in second argument fit_conf_get_node() will search * for a default configuration node instead. Default configuration node unit name * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node. * * returns: *     configuration node offset when found (>=0) *     negative number on failure (FDT_ERR_* code) */int fit_conf_get_node (const void *fit, const char *conf_uname){	int noffset, confs_noffset;	int len;	confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);	if (confs_noffset < 0) {		debug ("Can't find configurations parent node '%s' (%s)\n",			FIT_CONFS_PATH, fdt_strerror (confs_noffset));		return confs_noffset;	}	if (conf_uname == NULL) {		/* get configuration unit name from the default property */		debug ("No configuration specified, trying default...\n");		conf_uname = (char *)fdt_getprop (fit, confs_noffset, FIT_DEFAULT_PROP, &len);		if (conf_uname == NULL) {			fit_get_debug (fit, confs_noffset, FIT_DEFAULT_PROP, len);			return len;		}		debug ("Found default configuration: '%s'\n", conf_uname);	}	noffset = fdt_subnode_offset (fit, confs_noffset, conf_uname);	if (noffset < 0) {		debug ("Can't get node offset for configuration unit name: '%s' (%s)\n",			conf_uname, fdt_strerror (noffset));	}	return noffset;}static int __fit_conf_get_prop_node (const void *fit, int noffset,		const char *prop_name){	char *uname;	int len;	/* get kernel image unit name from configuration kernel property */	uname = (char *)fdt_getprop (fit, noffset, prop_name, &len);	if (uname == NULL)		return len;	return fit_image_g

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?