Skip to content

Commit

Permalink
[image] Use image_asn1() to extract data from CMS signature images
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Jul 29, 2016
1 parent 84add97 commit 829feda
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
1 change: 1 addition & 0 deletions src/hci/commands/image_trust_cmd.c
Expand Up @@ -181,3 +181,4 @@ REQUIRE_OBJECT ( rsa );
REQUIRE_OBJECT ( md5 );
REQUIRE_OBJECT ( sha1 );
REQUIRE_OBJECT ( sha256 );
REQUIRE_OBJECT ( der );
22 changes: 10 additions & 12 deletions src/usr/imgtrust.c
Expand Up @@ -50,30 +50,28 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
*/
int imgverify ( struct image *image, struct image *signature,
const char *name ) {
size_t len;
void *data;
struct asn1_cursor *data;
struct cms_signature *sig;
struct cms_signer_info *info;
time_t now;
int next;
int rc;

/* Mark image as untrusted */
image_untrust ( image );

/* Copy signature to internal memory */
len = signature->len;
data = malloc ( len );
if ( ! data ) {
rc = -ENOMEM;
goto err_alloc;
/* Get raw signature data */
next = image_asn1 ( signature, 0, &data );
if ( next < 0 ) {
rc = next;
goto err_asn1;
}
copy_from_user ( data, signature->data, 0, len );

/* Parse signature */
if ( ( rc = cms_signature ( data, len, &sig ) ) != 0 )
if ( ( rc = cms_signature ( data->data, data->len, &sig ) ) != 0 )
goto err_parse;

/* Free internal copy of signature */
/* Free raw signature data */
free ( data );
data = NULL;

Expand Down Expand Up @@ -107,7 +105,7 @@ int imgverify ( struct image *image, struct image *signature,
cms_put ( sig );
err_parse:
free ( data );
err_alloc:
err_asn1:
syslog ( LOG_ERR, "Image \"%s\" signature bad: %s\n",
image->name, strerror ( rc ) );
return rc;
Expand Down

0 comments on commit 829feda

Please sign in to comment.