46bc885eb34bd7ccac530360fcd2173ab79b3fd3
[openssl.git] / crypto / evp / openbsd_hw.c
1 /* Written by Ben Laurie, 2001 */
2 /*
3  * Copyright (c) 2001 The OpenSSL Project.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer. 
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * 3. All advertising materials mentioning features or use of this
18  *    software must display the following acknowledgment:
19  *    "This product includes software developed by the OpenSSL Project
20  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
21  *
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23  *    endorse or promote products derived from this software without
24  *    prior written permission. For written permission, please contact
25  *    openssl-core@openssl.org.
26  *
27  * 5. Products derived from this software may not be called "OpenSSL"
28  *    nor may "OpenSSL" appear in their names without prior written
29  *    permission of the OpenSSL Project.
30  *
31  * 6. Redistributions of any form whatsoever must retain the following
32  *    acknowledgment:
33  *    "This product includes software developed by the OpenSSL Project
34  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47  * OF THE POSSIBILITY OF SUCH DAMAGE.
48  */
49
50 #ifdef OPENSSL_OPENBSD_DEV_CRYPTO
51
52 #include <fcntl.h>
53 #include <stdio.h>
54 #include <errno.h>
55 #include <sys/ioctl.h>
56 #include <crypto/cryptodev.h>
57 #include <unistd.h>
58 #include <openssl/evp.h>
59 #include <openssl/objects.h>
60 #include <openssl/rsa.h>
61 #include "evp_locl.h"
62 #include <assert.h>
63
64 /* longest key supported in hardware */
65 #define MAX_HW_KEY      24
66 #define MAX_HW_IV       8
67
68 #define MD5_DIGEST_LENGTH       16
69 #define MD5_CBLOCK              64
70
71 static int fd;
72 static int dev_failed;
73
74 typedef struct session_op session_op;
75
76 #define data(ctx) EVP_C_DATA(session_op,ctx)
77
78 static void err(const char *str)
79     {
80     fprintf(stderr,"%s: errno %d\n",str,errno);
81     }
82
83 static int dev_crypto_init(session_op *ses)
84     {
85     if(dev_failed)
86         return 0;
87     if(!fd)
88         {
89         int cryptodev_fd;
90
91         if ((cryptodev_fd=open("/dev/crypto",O_RDWR,0)) < 0)
92             {
93             err("/dev/crypto");
94             dev_failed=1;
95             return 0;
96             }
97         if (ioctl(cryptodev_fd,CRIOGET,&fd) == -1)
98             {
99             err("CRIOGET failed");
100             close(cryptodev_fd);
101             dev_failed=1;
102             return 0;
103             }
104         close(cryptodev_fd);
105         }
106     assert(ses);
107     memset(ses,'\0',sizeof *ses);
108
109     return 1;
110     }
111
112 static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
113     {
114     printf("Cleanup %d\n",data(ctx)->ses);
115     if(ioctl(fd,CIOCFSESSION,&data(ctx)->ses) == -1)
116         err("CIOCFSESSION failed");
117
118     OPENSSL_free(data(ctx)->key);
119
120     return 1;
121     }
122
123 static int dev_crypto_init_key(EVP_CIPHER_CTX *ctx,int cipher,
124                                const unsigned char *key,int klen)
125     {
126     if(!dev_crypto_init(data(ctx)))
127         return 0;
128
129     data(ctx)->key=OPENSSL_malloc(MAX_HW_KEY);
130
131     assert(ctx->cipher->iv_len <= MAX_HW_IV);
132
133     memcpy(data(ctx)->key,key,klen);
134     
135     data(ctx)->cipher=cipher;
136     data(ctx)->keylen=klen;
137
138     if (ioctl(fd,CIOCGSESSION,data(ctx)) == -1)
139         {
140         err("CIOCGSESSION failed");
141         return 0;
142         }
143     printf("Init %d\n",data(ctx)->ses);
144     return 1;
145     }
146
147 static int dev_crypto_init_digest(session_op *ses,int mac)
148     {
149     if(!dev_crypto_init(ses))
150         return 0;
151
152     ses->mac=mac;
153
154     if (ioctl(fd,CIOCGSESSION,ses) == -1)
155         {
156         err("CIOCGSESSION failed");
157         return 0;
158         }
159     printf("Init MAC %d\n",ses->ses);
160     return 1;
161     }
162
163 static int dev_crypto_cipher(EVP_CIPHER_CTX *ctx,unsigned char *out,
164                              const unsigned char *in,unsigned int inl)
165     {
166     struct crypt_op cryp;
167     unsigned char lb[MAX_HW_IV];
168
169     if(!inl)
170         return 1;
171
172     assert(data(ctx));
173     assert(!dev_failed);
174
175     memset(&cryp,'\0',sizeof cryp);
176     cryp.ses=data(ctx)->ses;
177     cryp.op=ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT;
178     cryp.flags=0;
179     cryp.len=inl;
180     assert((inl&(ctx->cipher->block_size-1)) == 0);
181     cryp.src=(caddr_t)in;
182     cryp.dst=(caddr_t)out;
183     cryp.mac=0;
184     if(ctx->cipher->iv_len)
185         cryp.iv=(caddr_t)ctx->iv;
186
187     if(!ctx->encrypt)
188         memcpy(lb,&in[cryp.len-ctx->cipher->iv_len],ctx->cipher->iv_len);
189
190     if(ioctl(fd, CIOCCRYPT, &cryp) == -1)
191         {
192         if(errno == EINVAL) /* buffers are misaligned */
193             {
194             unsigned int cinl=0;
195             char *cin=NULL;
196             char *cout=NULL;
197
198             /* NB: this can only make cinl != inl with stream ciphers */
199             cinl=(inl+3)/4*4;
200
201             if(((unsigned long)in&3) || cinl != inl)
202                 {
203                 cin=OPENSSL_malloc(cinl);
204                 memcpy(cin,in,inl);
205                 cryp.src=cin;
206                 }
207
208             if(((unsigned long)out&3) || cinl != inl)
209                 {
210                 cout=OPENSSL_malloc(cinl);
211                 cryp.dst=cout;
212                 }
213
214             cryp.len=cinl;
215
216             if(ioctl(fd, CIOCCRYPT, &cryp) == -1)
217                 {
218                 err("CIOCCRYPT(2) failed");
219                 printf("src=%p dst=%p\n",cryp.src,cryp.dst);
220                 abort();
221                 return 0;
222                 }
223                 
224             if(cout)
225                 {
226                 memcpy(out,cout,inl);
227                 OPENSSL_free(cout);
228                 }
229             if(cin)
230                 OPENSSL_free(cin);
231             }
232         else 
233             {       
234             err("CIOCCRYPT failed");
235             abort();
236             return 0;
237             }
238         }
239
240     if(ctx->encrypt)
241         memcpy(ctx->iv,&out[cryp.len-ctx->cipher->iv_len],ctx->cipher->iv_len);
242     else
243         memcpy(ctx->iv,lb,ctx->cipher->iv_len);
244
245     return 1;
246     }
247
248 static int dev_crypto_des_ede3_init_key(EVP_CIPHER_CTX *ctx,
249                                         const unsigned char *key,
250                                         const unsigned char *iv, int enc)
251     { return dev_crypto_init_key(ctx,CRYPTO_3DES_CBC,key,24); }
252
253 #define dev_crypto_des_ede3_cbc_cipher dev_crypto_cipher
254
255 BLOCK_CIPHER_def_cbc(dev_crypto_des_ede3, session_op, NID_des_ede3, 8, 24, 8,
256                      0, dev_crypto_des_ede3_init_key,
257                      dev_crypto_cleanup, 
258                      EVP_CIPHER_set_asn1_iv,
259                      EVP_CIPHER_get_asn1_iv,
260                      NULL)
261
262 static int dev_crypto_rc4_init_key(EVP_CIPHER_CTX *ctx,
263                                         const unsigned char *key,
264                                         const unsigned char *iv, int enc)
265     { return dev_crypto_init_key(ctx,CRYPTO_ARC4,key,16); }
266
267 static const EVP_CIPHER r4_cipher=
268     {
269     NID_rc4,
270     1,16,0,     /* FIXME: key should be up to 256 bytes */
271     EVP_CIPH_VARIABLE_LENGTH,
272     dev_crypto_rc4_init_key,
273     dev_crypto_cipher,
274     dev_crypto_cleanup,
275     sizeof(session_op),
276     NULL,
277     NULL,
278     NULL
279     };
280
281 const EVP_CIPHER *EVP_dev_crypto_rc4(void)
282     { return &r4_cipher; }
283
284 static int dev_crypto_md5_init(void *md_data)
285     { return dev_crypto_init_digest(md_data,CRYPTO_MD5); }
286
287 static int dev_crypto_md5_update(void *md_data,const void *data,
288                                  unsigned long len)
289     {
290     struct crypt_op cryp;
291     session_op *ses=md_data;
292     char buf[MD5_DIGEST_LENGTH];
293
294     printf("update\n");
295     memset(&cryp,'\0',sizeof cryp);
296     cryp.ses=ses->ses;
297     cryp.len=len;
298     cryp.src=(caddr_t)data;
299     cryp.dst=buf;
300
301     if(ioctl(fd, CIOCCRYPT, &cryp) == -1)
302         {
303         err("CIOCCRYPT(MAC) failed");
304         abort();
305         return 0;
306         }
307     printf("update done\n");
308     return 1;
309     }
310
311 static int dev_crypto_md5_final(unsigned char *md,void *md_data)
312     {
313     struct crypt_op cryp;
314     session_op *ses=md_data;
315
316     printf("final\n");
317     memset(&cryp,'\0',sizeof cryp);
318     cryp.ses=ses->ses;
319     cryp.len=0;
320     cryp.op=COP_ENCRYPT;/* required to do the MAC rather than check it */
321     cryp.src=(caddr_t)md;
322     cryp.dst=(caddr_t)md;
323
324     if(ioctl(fd, CIOCCRYPT, &cryp) == -1)
325         {
326         err("CIOCCRYPT(MAC,final) failed");
327         abort();
328         return 0;
329         }
330
331     printf("final done\n");
332     return 1;
333     }
334
335 static const EVP_MD md5_md=
336     {
337     NID_md5,
338     NID_md5WithRSAEncryption,
339     MD5_DIGEST_LENGTH,
340     dev_crypto_md5_init,
341     dev_crypto_md5_update,
342     dev_crypto_md5_final,
343     EVP_PKEY_RSA_method,
344     MD5_CBLOCK,
345     sizeof(session_op),
346     };
347
348 const EVP_MD *EVP_dev_crypto_md5(void)
349     { return &md5_md; }
350
351 #else
352 static void *dummy=&dummy;
353 #endif