iPXE
cipher_test.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2012 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 * Cipher self-tests
29 *
30 */
31
32/* Forcibly enable assertions */
33#undef NDEBUG
34
35#include <stdint.h>
36#include <stdlib.h>
37#include <string.h>
38#include <assert.h>
39#include <ipxe/crypto.h>
40#include <ipxe/profile.h>
41#include <ipxe/test.h>
42#include "cipher_test.h"
43
44/** Number of sample iterations for profiling */
45#define PROFILE_COUNT 16
46
47/**
48 * Report a cipher encryption test result
49 *
50 * @v test Cipher test
51 * @v file Test code file
52 * @v line Test code line
53 */
54void cipher_encrypt_okx ( struct cipher_test *test, const char *file,
55 unsigned int line ) {
56 struct cipher_algorithm *cipher = test->cipher;
57 size_t len = test->len;
58 uint8_t ctx[cipher->ctxsize];
59 uint8_t ciphertext[len];
60 uint8_t auth[cipher->authsize];
61
62 /* Initialise cipher */
63 okx ( cipher_setkey ( cipher, ctx, test->key, test->key_len ) == 0,
64 file, line );
65 okx ( cipher_setiv ( cipher, ctx, test->iv, test->iv_len ) == 0,
66 file, line );
67
68 /* Process additional data, if applicable */
69 if ( test->additional_len ) {
70 okx ( is_auth_cipher ( cipher ), file, line );
71 cipher_encrypt ( cipher, ctx, test->additional, NULL,
72 test->additional_len );
73 }
74
75 /* Perform encryption */
76 cipher_encrypt ( cipher, ctx, test->plaintext, ciphertext, len );
77
78 /* Compare against expected ciphertext */
79 okx ( memcmp ( ciphertext, test->ciphertext, len ) == 0, file, line );
80
81 /* Check authentication tag */
82 okx ( cipher->authsize == test->auth_len, file, line );
83 cipher_auth ( cipher, ctx, auth );
84 okx ( memcmp ( auth, test->auth, test->auth_len ) == 0, file, line );
85
86 /* Reset initialisation vector */
87 okx ( cipher_setiv ( cipher, ctx, test->iv, test->iv_len ) == 0,
88 file, line );
89
90 /* Process additional data, if applicable */
91 if ( test->additional_len ) {
92 cipher_encrypt ( cipher, ctx, test->additional, NULL,
93 test->additional_len );
94 }
95
96 /* Perform in-place encryption */
97 memcpy ( ciphertext, test->plaintext, len );
98 cipher_encrypt ( cipher, ctx, ciphertext, ciphertext, len );
99
100 /* Compare against expected ciphertext */
101 okx ( memcmp ( ciphertext, test->ciphertext, len ) == 0, file, line );
102
103 /* Check authentication tag */
104 cipher_auth ( cipher, ctx, auth );
105 okx ( memcmp ( auth, test->auth, test->auth_len ) == 0, file, line );
106}
107
108/**
109 * Report a cipher decryption test result
110 *
111 * @v test Cipher test
112 * @v file Test code file
113 * @v line Test code line
114 */
115void cipher_decrypt_okx ( struct cipher_test *test, const char *file,
116 unsigned int line ) {
117 struct cipher_algorithm *cipher = test->cipher;
118 size_t len = test->len;
119 uint8_t ctx[cipher->ctxsize];
120 uint8_t plaintext[len];
121 uint8_t auth[cipher->authsize];
122
123 /* Initialise cipher */
124 okx ( cipher_setkey ( cipher, ctx, test->key, test->key_len ) == 0,
125 file, line );
126 okx ( cipher_setiv ( cipher, ctx, test->iv, test->iv_len ) == 0,
127 file, line );
128
129 /* Process additional data, if applicable */
130 if ( test->additional_len ) {
131 okx ( is_auth_cipher ( cipher ), file, line );
132 cipher_decrypt ( cipher, ctx, test->additional, NULL,
133 test->additional_len );
134 }
135
136 /* Perform decryption */
137 cipher_decrypt ( cipher, ctx, test->ciphertext, plaintext, len );
138
139 /* Compare against expected plaintext */
140 okx ( memcmp ( plaintext, test->plaintext, len ) == 0, file, line );
141
142 /* Check authentication tag */
143 okx ( cipher->authsize == test->auth_len, file, line );
144 cipher_auth ( cipher, ctx, auth );
145 okx ( memcmp ( auth, test->auth, test->auth_len ) == 0, file, line );
146
147 /* Reset initialisation vector */
148 okx ( cipher_setiv ( cipher, ctx, test->iv, test->iv_len ) == 0,
149 file, line );
150
151 /* Process additional data, if applicable */
152 if ( test->additional_len ) {
153 cipher_decrypt ( cipher, ctx, test->additional, NULL,
154 test->additional_len );
155 }
156
157 /* Perform in-place decryption */
158 memcpy ( plaintext, test->ciphertext, len );
159 cipher_decrypt ( cipher, ctx, plaintext, plaintext, len );
160
161 /* Compare against expected plaintext */
162 okx ( memcmp ( plaintext, test->plaintext, len ) == 0, file, line );
163
164 /* Check authentication tag */
165 cipher_auth ( cipher, ctx, auth );
166 okx ( memcmp ( auth, test->auth, test->auth_len ) == 0, file, line );
167}
168
169/**
170 * Report a cipher encryption and decryption test result
171 *
172 * @v test Cipher test
173 * @v file Test code file
174 * @v line Test code line
175 */
176void cipher_okx ( struct cipher_test *test, const char *file,
177 unsigned int line ) {
178 struct cipher_algorithm *cipher = test->cipher;
179 size_t len = test->len;
180
181 /* Sanity checks */
182 okx ( cipher->blocksize != 0, file, line );
183 okx ( ( len % cipher->blocksize ) == 0, file, line );
184 okx ( ( cipher->alignsize % cipher->blocksize ) == 0, file, line );
185 okx ( cipher->confidential, file, line );
186
187 /* Report encryption test result */
188 cipher_encrypt_okx ( test, file, line );
189
190 /* Report decryption test result */
191 cipher_decrypt_okx ( test, file, line );
192}
193
194/**
195 * Calculate cipher encryption or decryption cost
196 *
197 * @v cipher Cipher algorithm
198 * @v key_len Length of key
199 * @v op Encryption or decryption operation
200 * @ret cost Cost (in cycles per byte)
201 */
202static unsigned long
203cipher_cost ( struct cipher_algorithm *cipher, size_t key_len,
204 void ( * op ) ( struct cipher_algorithm *cipher, void *ctx,
205 const void *src, void *dst, size_t len ) ) {
206 static uint8_t random[8192]; /* Too large for stack */
207 uint8_t key[key_len];
208 uint8_t iv[cipher->blocksize];
209 uint8_t ctx[cipher->ctxsize];
210 struct profiler profiler;
211 unsigned long cost;
212 unsigned int i;
213 int rc;
214
215 /* Fill buffer with pseudo-random data */
216 srand ( 0x1234568 );
217 for ( i = 0 ; i < sizeof ( random ) ; i++ )
218 random[i] = rand();
219 for ( i = 0 ; i < sizeof ( key ) ; i++ )
220 key[i] = rand();
221 for ( i = 0 ; i < sizeof ( iv ) ; i++ )
222 iv[i] = rand();
223
224 /* Initialise cipher */
225 rc = cipher_setkey ( cipher, ctx, key, key_len );
226 assert ( rc == 0 );
227 rc = cipher_setiv ( cipher, ctx, iv, sizeof ( iv ) );
228 assert ( rc == 0 );
229
230 /* Profile cipher operation */
231 memset ( &profiler, 0, sizeof ( profiler ) );
232 for ( i = 0 ; i < PROFILE_COUNT ; i++ ) {
234 op ( cipher, ctx, random, random, sizeof ( random ) );
236 }
237
238 /* Round to nearest whole number of cycles per byte */
239 cost = ( ( profile_mean ( &profiler ) + ( sizeof ( random ) / 2 ) ) /
240 sizeof ( random ) );
241
242 return cost;
243}
244
245/**
246 * Calculate cipher encryption cost
247 *
248 * @v cipher Cipher algorithm
249 * @v key_len Length of key
250 * @ret cost Cost (in cycles per byte)
251 */
252unsigned long cipher_cost_encrypt ( struct cipher_algorithm *cipher,
253 size_t key_len ) {
254 return cipher_cost ( cipher, key_len, cipher_encrypt );
255}
256
257/**
258 * Calculate cipher decryption cost
259 *
260 * @v cipher Cipher algorithm
261 * @v key_len Length of key
262 * @ret cost Cost (in cycles per byte)
263 */
264unsigned long cipher_cost_decrypt ( struct cipher_algorithm *cipher,
265 size_t key_len ) {
266 return cipher_cost ( cipher, key_len, cipher_decrypt );
267}
#define NULL
NULL pointer (VOID *).
Definition Base.h:321
struct golan_eq_context ctx
Definition CIB_PRM.h:0
union @162305117151260234136356364136041353210355154177 key
struct arbelprm_rc_send_wqe rc
Definition arbel.h:3
unsigned char uint8_t
Definition stdint.h:10
static const void * src
Definition string.h:48
Assertions.
#define assert(condition)
Assert a condition at run-time.
Definition assert.h:61
unsigned long cipher_cost_decrypt(struct cipher_algorithm *cipher, size_t key_len)
Calculate cipher decryption cost.
static unsigned long cipher_cost(struct cipher_algorithm *cipher, size_t key_len, void(*op)(struct cipher_algorithm *cipher, void *ctx, const void *src, void *dst, size_t len))
Calculate cipher encryption or decryption cost.
unsigned long cipher_cost_encrypt(struct cipher_algorithm *cipher, size_t key_len)
Calculate cipher encryption cost.
void cipher_decrypt_okx(struct cipher_test *test, const char *file, unsigned int line)
Report a cipher decryption test result.
#define PROFILE_COUNT
Number of sample iterations for profiling.
Definition cipher_test.c:45
void cipher_encrypt_okx(struct cipher_test *test, const char *file, unsigned int line)
Report a cipher encryption test result.
Definition cipher_test.c:54
void cipher_okx(struct cipher_test *test, const char *file, unsigned int line)
Report a cipher encryption and decryption test result.
Cipher self-tests.
ring len
Length.
Definition dwmac.h:226
static int test
Definition epic100.c:73
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:921
Cryptographic API.
static int cipher_setkey(struct cipher_algorithm *cipher, void *ctx, const void *key, size_t keylen)
Definition crypto.h:310
static int cipher_setiv(struct cipher_algorithm *cipher, void *ctx, const void *iv, size_t ivlen)
Definition crypto.h:316
#define cipher_decrypt(cipher, ctx, src, dst, len)
Definition crypto.h:336
static int is_auth_cipher(struct cipher_algorithm *cipher)
Definition crypto.h:357
#define cipher_encrypt(cipher, ctx, src, dst, len)
Definition crypto.h:326
static void cipher_auth(struct cipher_algorithm *cipher, void *ctx, void *auth)
Definition crypto.h:342
Profiling.
static void profile_stop(struct profiler *profiler)
Stop profiling.
Definition profile.h:174
static void profile_start(struct profiler *profiler)
Start profiling.
Definition profile.h:161
String functions.
void * memcpy(void *dest, const void *src, size_t len) __nonnull
void * memset(void *dest, int character, size_t len) __nonnull
static uint16_t struct vmbus_xfer_pages_operations * op
Definition netvsc.h:327
unsigned long profile_mean(struct profiler *profiler)
Get mean sample value.
Definition profile.c:242
long int random(void)
Generate a pseudo-random number between 0 and 2147483647L or 2147483562?
Definition random.c:32
static void srand(unsigned int seed)
Definition stdlib.h:65
static int rand(void)
Definition stdlib.h:61
uint32_t cost
Root path cost.
Definition stp.h:17
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition string.c:115
A cipher algorithm.
Definition crypto.h:58
size_t blocksize
Block size.
Definition crypto.h:68
int confidential
Cipher is capable of providing confidentiality.
Definition crypto.h:84
size_t ctxsize
Context size.
Definition crypto.h:62
size_t authsize
Authentication tag size.
Definition crypto.h:82
void(* auth)(struct cipher_algorithm *cipher, void *ctx, void *auth)
Generate authentication tag.
Definition crypto.h:135
size_t alignsize
Alignment size.
Definition crypto.h:80
A cipher test.
Definition cipher_test.h:17
A data structure for storing profiling information.
Definition profile.h:27
Self-test infrastructure.
#define okx(success, file, line)
Report test result.
Definition test.h:44
u8 iv[16]
Initialization vector.
Definition wpa.h:33