iPXE
asn1_test.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 /** @file
27  *
28  * ASN.1 self-tests
29  *
30  */
31 
32 /* Forcibly enable assertions */
33 #undef NDEBUG
34 
35 #include <stdlib.h>
36 #include <string.h>
37 #include <assert.h>
38 #include <ipxe/image.h>
39 #include <ipxe/asn1.h>
40 #include <ipxe/test.h>
41 #include "asn1_test.h"
42 
43 /**
44  * Report ASN.1 test result
45  *
46  * @v test ASN.1 test
47  * @v file Test code file
48  * @v line Test code line
49  */
50 void asn1_okx ( struct asn1_test *test, const char *file, unsigned int line ) {
52  struct asn1_cursor *cursor;
53  uint8_t ctx[digest->ctxsize];
55  unsigned int i;
56  size_t offset;
57  int next;
58 
59  /* Sanity check */
60  assert ( sizeof ( out ) == digest->digestsize );
61 
62  /* Check that image is detected as correct type */
63  okx ( register_image ( test->image ) == 0, file, line );
64  okx ( test->image->type == test->type, file, line );
65 
66  /* Check that all ASN.1 objects can be extracted */
67  for ( offset = 0, i = 0 ; i < test->count ; offset = next, i++ ) {
68 
69  /* Extract ASN.1 object */
70  next = image_asn1 ( test->image, offset, &cursor );
71  okx ( next >= 0, file, line );
72  okx ( ( ( size_t ) next ) > offset, file, line );
73  if ( next > 0 ) {
74 
75  /* Calculate digest of ASN.1 object */
76  digest_init ( digest, ctx );
77  digest_update ( digest, ctx, cursor->data,
78  cursor->len );
79  digest_final ( digest, ctx, out );
80 
81  /* Compare against expected digest */
82  okx ( memcmp ( out, test->expected[i].digest,
83  sizeof ( out ) ) == 0, file, line );
84 
85  /* Free ASN.1 object */
86  free ( cursor );
87  }
88  }
89 
90  /* Check that we have reached the end of the image */
91  okx ( offset == test->image->len, file, line );
92 
93  /* Unregister image */
94  unregister_image ( test->image );
95 }
static void digest_update(struct digest_algorithm *digest, void *ctx, const void *data, size_t len)
Definition: crypto.h:201
void asn1_okx(struct asn1_test *test, const char *file, unsigned int line)
Report ASN.1 test result.
Definition: asn1_test.c:50
static void digest_final(struct digest_algorithm *digest, void *ctx, void *out)
Definition: crypto.h:207
const void * data
Start of data.
Definition: asn1.h:22
Self-test infrastructure.
int image_asn1(struct image *image, size_t offset, struct asn1_cursor **cursor)
Extract ASN.1 object from image.
Definition: asn1.c:1015
struct golan_eq_context ctx
Definition: CIB_PRM.h:28
__be32 out[4]
Definition: CIB_PRM.h:36
size_t len
Length of data.
Definition: asn1.h:24
#define ASN1_TEST_DIGEST_SIZE
Digest size used for ASN.1 tests.
Definition: asn1_test.h:15
#define okx(success, file, line)
Report test result.
Definition: test.h:44
Assertions.
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
Executable images.
ASN.1 encoding.
static void digest_init(struct digest_algorithm *digest, void *ctx)
Definition: crypto.h:196
int register_image(struct image *image)
Register executable image.
Definition: image.c:314
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
#define asn1_test_digest_algorithm
Digest algorithm used for ASN.1 tests.
Definition: asn1_test.h:12
An ASN.1 test.
Definition: asn1_test.h:24
unsigned char uint8_t
Definition: stdint.h:10
uint32_t next
Next descriptor address.
Definition: dwmac.h:22
void unregister_image(struct image *image)
Unregister executable image.
Definition: image.c:357
size_t ctxsize
Context size.
Definition: crypto.h:22
size_t digestsize
Digest size.
Definition: crypto.h:26
A message digest algorithm.
Definition: crypto.h:18
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
uint16_t offset
Offset to command line.
Definition: bzimage.h:8
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition: string.c:114
String functions.
An ASN.1 object cursor.
Definition: asn1.h:20
static int test
Definition: epic100.c:73