1 | /*
|
---|
2 | * Copyright (C) 2007 Michael Brown <[email protected]>.
|
---|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
17 | */
|
---|
18 |
|
---|
19 | FILE_LICENCE ( GPL2_OR_LATER );
|
---|
20 |
|
---|
21 | #include <string.h>
|
---|
22 | #include <errno.h>
|
---|
23 | #include <assert.h>
|
---|
24 | #include <byteswap.h>
|
---|
25 | #include <ipxe/crypto.h>
|
---|
26 | #include <ipxe/cbc.h>
|
---|
27 | #include <ipxe/aes.h>
|
---|
28 | #include "crypto/axtls/crypto.h"
|
---|
29 |
|
---|
30 | /** @file
|
---|
31 | *
|
---|
32 | * AES algorithm
|
---|
33 | *
|
---|
34 | */
|
---|
35 |
|
---|
36 | /**
|
---|
37 | * Set key
|
---|
38 | *
|
---|
39 | * @v ctx Context
|
---|
40 | * @v key Key
|
---|
41 | * @v keylen Key length
|
---|
42 | * @ret rc Return status code
|
---|
43 | */
|
---|
44 | static int aes_setkey ( void *ctx, const void *key, size_t keylen ) {
|
---|
45 | struct aes_context *aes_ctx = ctx;
|
---|
46 | AES_MODE mode;
|
---|
47 | void *iv;
|
---|
48 |
|
---|
49 | switch ( keylen ) {
|
---|
50 | case ( 128 / 8 ):
|
---|
51 | mode = AES_MODE_128;
|
---|
52 | break;
|
---|
53 | case ( 256 / 8 ):
|
---|
54 | mode = AES_MODE_256;
|
---|
55 | break;
|
---|
56 | default:
|
---|
57 | return -EINVAL;
|
---|
58 | }
|
---|
59 |
|
---|
60 | /* IV is not a relevant concept at this stage; use a dummy
|
---|
61 | * value that will have no side-effects.
|
---|
62 | */
|
---|
63 | iv = &aes_ctx->axtls_ctx.iv;
|
---|
64 |
|
---|
65 | AES_set_key ( &aes_ctx->axtls_ctx, key, iv, mode );
|
---|
66 |
|
---|
67 | aes_ctx->decrypting = 0;
|
---|
68 |
|
---|
69 | return 0;
|
---|
70 | }
|
---|
71 |
|
---|
72 | /**
|
---|
73 | * Set initialisation vector
|
---|
74 | *
|
---|
75 | * @v ctx Context
|
---|
76 | * @v iv Initialisation vector
|
---|
77 | */
|
---|
78 | static void aes_setiv ( void *ctx __unused, const void *iv __unused ) {
|
---|
79 | /* Nothing to do */
|
---|
80 | }
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Call AXTLS' AES_encrypt() or AES_decrypt() functions
|
---|
84 | *
|
---|
85 | * @v axtls_ctx AXTLS AES context
|
---|
86 | * @v src Data to process
|
---|
87 | * @v dst Buffer for output
|
---|
88 | * @v func AXTLS AES function to call
|
---|
89 | */
|
---|
90 | static void aes_call_axtls ( AES_CTX *axtls_ctx, const void *src, void *dst,
|
---|
91 | void ( * func ) ( const AES_CTX *axtls_ctx,
|
---|
92 | uint32_t *data ) ){
|
---|
93 | const uint32_t *srcl = src;
|
---|
94 | uint32_t *dstl = dst;
|
---|
95 | unsigned int i;
|
---|
96 |
|
---|
97 | /* AXTLS' AES_encrypt() and AES_decrypt() functions both
|
---|
98 | * expect to deal with an array of four dwords in host-endian
|
---|
99 | * order.
|
---|
100 | */
|
---|
101 | for ( i = 0 ; i < 4 ; i++ )
|
---|
102 | dstl[i] = ntohl ( srcl[i] );
|
---|
103 | func ( axtls_ctx, dstl );
|
---|
104 | for ( i = 0 ; i < 4 ; i++ )
|
---|
105 | dstl[i] = htonl ( dstl[i] );
|
---|
106 | }
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Encrypt data
|
---|
110 | *
|
---|
111 | * @v ctx Context
|
---|
112 | * @v src Data to encrypt
|
---|
113 | * @v dst Buffer for encrypted data
|
---|
114 | * @v len Length of data
|
---|
115 | */
|
---|
116 | static void aes_encrypt ( void *ctx, const void *src, void *dst,
|
---|
117 | size_t len ) {
|
---|
118 | struct aes_context *aes_ctx = ctx;
|
---|
119 |
|
---|
120 | assert ( len == AES_BLOCKSIZE );
|
---|
121 | if ( aes_ctx->decrypting )
|
---|
122 | assert ( 0 );
|
---|
123 | aes_call_axtls ( &aes_ctx->axtls_ctx, src, dst, axtls_aes_encrypt );
|
---|
124 | }
|
---|
125 |
|
---|
126 | /**
|
---|
127 | * Decrypt data
|
---|
128 | *
|
---|
129 | * @v ctx Context
|
---|
130 | * @v src Data to decrypt
|
---|
131 | * @v dst Buffer for decrypted data
|
---|
132 | * @v len Length of data
|
---|
133 | */
|
---|
134 | static void aes_decrypt ( void *ctx, const void *src, void *dst,
|
---|
135 | size_t len ) {
|
---|
136 | struct aes_context *aes_ctx = ctx;
|
---|
137 |
|
---|
138 | assert ( len == AES_BLOCKSIZE );
|
---|
139 | if ( ! aes_ctx->decrypting ) {
|
---|
140 | AES_convert_key ( &aes_ctx->axtls_ctx );
|
---|
141 | aes_ctx->decrypting = 1;
|
---|
142 | }
|
---|
143 | aes_call_axtls ( &aes_ctx->axtls_ctx, src, dst, axtls_aes_decrypt );
|
---|
144 | }
|
---|
145 |
|
---|
146 | /** Basic AES algorithm */
|
---|
147 | struct cipher_algorithm aes_algorithm = {
|
---|
148 | .name = "aes",
|
---|
149 | .ctxsize = sizeof ( struct aes_context ),
|
---|
150 | .blocksize = AES_BLOCKSIZE,
|
---|
151 | .setkey = aes_setkey,
|
---|
152 | .setiv = aes_setiv,
|
---|
153 | .encrypt = aes_encrypt,
|
---|
154 | .decrypt = aes_decrypt,
|
---|
155 | };
|
---|
156 |
|
---|
157 | /* AES with cipher-block chaining */
|
---|
158 | CBC_CIPHER ( aes_cbc, aes_cbc_algorithm,
|
---|
159 | aes_algorithm, struct aes_context, AES_BLOCKSIZE );
|
---|