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
24FILE_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 */
50void 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}
struct golan_eq_context ctx
Definition CIB_PRM.h:0
__be32 out[4]
Definition CIB_PRM.h:8
unsigned char uint8_t
Definition stdint.h:10
int image_asn1(struct image *image, size_t offset, struct asn1_cursor **cursor)
Extract ASN.1 object from image.
Definition asn1.c:1028
ASN.1 encoding.
void asn1_okx(struct asn1_test *test, const char *file, unsigned int line)
Report ASN.1 test result.
Definition asn1_test.c:50
#define asn1_test_digest_algorithm
Digest algorithm used for ASN.1 tests.
Definition asn1_test.h:12
#define ASN1_TEST_DIGEST_SIZE
Digest size used for ASN.1 tests.
Definition asn1_test.h:15
Assertions.
#define assert(condition)
Assert a condition at run-time.
Definition assert.h:50
uint16_t offset
Offset to command line.
Definition bzimage.h:3
uint32_t next
Next descriptor address.
Definition dwmac.h:11
static int test
Definition epic100.c:73
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
void unregister_image(struct image *image)
Unregister executable image.
Definition image.c:358
int register_image(struct image *image)
Register executable image.
Definition image.c:315
Executable images.
static void digest_init(struct digest_algorithm *digest, void *ctx)
Definition crypto.h:219
static void digest_final(struct digest_algorithm *digest, void *ctx, void *out)
Definition crypto.h:230
static void digest_update(struct digest_algorithm *digest, void *ctx, const void *data, size_t len)
Definition crypto.h:224
String functions.
static void(* free)(struct refcnt *refcnt))
Definition refcnt.h:55
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition string.c:115
An ASN.1 object cursor.
Definition asn1.h:21
const void * data
Start of data.
Definition asn1.h:23
size_t len
Length of data.
Definition asn1.h:25
An ASN.1 test.
Definition asn1_test.h:24
A message digest algorithm.
Definition crypto.h:19
size_t digestsize
Digest size.
Definition crypto.h:27
size_t ctxsize
Context size.
Definition crypto.h:23
Self-test infrastructure.
#define okx(success, file, line)
Report test result.
Definition test.h:44