e_padlock.c 25.4 KB
Newer Older
1
/*-
2 3 4 5
 * Support for VIA PadLock Advanced Cryptography Engine (ACE)
 * Written by Michal Ludvig <michal@logix.cz>
 *            http://www.logix.cz/michal
 *
6 7
 * Big thanks to Andy Polyakov for a help with optimization,
 * assembler fixes, port to MS Windows and a lot of other
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
 * valuable work on this engine!
 */

/* ====================================================================
 * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    licensing@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */

#include <stdio.h>
#include <string.h>

N
Nils Larsch 已提交
68
#include <openssl/opensslconf.h>
69 70 71
#include <openssl/crypto.h>
#include <openssl/engine.h>
#include <openssl/evp.h>
M
Matt Caswell 已提交
72
#include <openssl/aes.h>
73
#include <openssl/rand.h>
N
make  
Nils Larsch 已提交
74
#include <openssl/err.h>
A
Andy Polyakov 已提交
75
#include <openssl/modes.h>
76 77

#ifndef OPENSSL_NO_HW
78
# ifndef OPENSSL_NO_HW_PADLOCK
79 80

/* Attempt to have a single source for both 0.9.7 and 0.9.8 :-) */
81 82
#  if (OPENSSL_VERSION_NUMBER >= 0x00908000L)
#   ifndef OPENSSL_NO_DYNAMIC_ENGINE
83
#    define DYNAMIC_ENGINE
84 85 86
#   endif
#  elif (OPENSSL_VERSION_NUMBER >= 0x00907000L)
#   ifdef ENGINE_DYNAMIC_SUPPORT
87
#    define DYNAMIC_ENGINE
88 89 90
#   endif
#  else
#   error "Only OpenSSL >= 0.9.7 is supported"
91 92
#  endif

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
/*
 * VIA PadLock AES is available *ONLY* on some x86 CPUs. Not only that it
 * doesn't exist elsewhere, but it even can't be compiled on other platforms!
 */

#  undef COMPILE_HW_PADLOCK
#  if !defined(I386_ONLY) && !defined(OPENSSL_NO_ASM)
#   if    defined(__i386__) || defined(__i386) ||    \
        defined(__x86_64__) || defined(__x86_64) || \
        defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || \
        defined(__INTEL__)
#    define COMPILE_HW_PADLOCK
#    ifdef OPENSSL_NO_DYNAMIC_ENGINE
static ENGINE *ENGINE_padlock(void);
#    endif
#   endif
109
#  endif
110

111
#  ifdef OPENSSL_NO_DYNAMIC_ENGINE
112 113
void engine_load_padlock_int(void);
void engine_load_padlock_int(void)
114 115
{
/* On non-x86 CPUs it just returns. */
116 117 118 119 120 121 122 123
#   ifdef COMPILE_HW_PADLOCK
    ENGINE *toadd = ENGINE_padlock();
    if (!toadd)
        return;
    ENGINE_add(toadd);
    ENGINE_free(toadd);
    ERR_clear_error();
#   endif
124 125
}

126
#  endif
127

128
#  ifdef COMPILE_HW_PADLOCK
129

130 131 132 133 134 135 136 137
/* Function for ENGINE detection and control */
static int padlock_available(void);
static int padlock_init(ENGINE *e);

/* RNG Stuff */
static RAND_METHOD padlock_rand;

/* Cipher Stuff */
138 139
static int padlock_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
                           const int **nids, int nid);
140 141 142 143 144 145

/* Engine names */
static const char *padlock_id = "padlock";
static char padlock_name[100];

/* Available features */
146 147
static int padlock_use_ace = 0; /* Advanced Cryptography Engine */
static int padlock_use_rng = 0; /* Random Number Generator */
148 149 150 151

/* ===== Engine "management" functions ===== */

/* Prepare the ENGINE structure for registration */
152
static int padlock_bind_helper(ENGINE *e)
153
{
154 155 156
    /* Check available features */
    padlock_available();

157 158 159 160
    /*
     * RNG is currently disabled for reasons discussed in commentary just
     * before padlock_rand_bytes function.
     */
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
    padlock_use_rng = 0;

    /* Generate a nice engine name with available features */
    BIO_snprintf(padlock_name, sizeof(padlock_name),
                 "VIA PadLock (%s, %s)",
                 padlock_use_rng ? "RNG" : "no-RNG",
                 padlock_use_ace ? "ACE" : "no-ACE");

    /* Register everything or return with an error */
    if (!ENGINE_set_id(e, padlock_id) ||
        !ENGINE_set_name(e, padlock_name) ||
        !ENGINE_set_init_function(e, padlock_init) ||
        (padlock_use_ace && !ENGINE_set_ciphers(e, padlock_ciphers)) ||
        (padlock_use_rng && !ENGINE_set_RAND(e, &padlock_rand))) {
        return 0;
    }

    /* Everything looks good */
    return 1;
180 181
}

182
#   ifdef OPENSSL_NO_DYNAMIC_ENGINE
183
/* Constructor */
184
static ENGINE *ENGINE_padlock(void)
185
{
186
    ENGINE *eng = ENGINE_new();
187

188
    if (eng == NULL) {
189 190
        return NULL;
    }
191

192 193 194 195
    if (!padlock_bind_helper(eng)) {
        ENGINE_free(eng);
        return NULL;
    }
196

197
    return eng;
198
}
199
#   endif
200 201

/* Check availability of the engine */
202
static int padlock_init(ENGINE *e)
203
{
204
    return (padlock_use_rng || padlock_use_ace);
205 206
}

207 208 209
/*
 * This stuff is needed if this ENGINE is being compiled into a
 * self-contained shared-library.
210
 */
211 212
#   ifdef DYNAMIC_ENGINE
static int padlock_bind_fn(ENGINE *e, const char *id)
213
{
214 215 216
    if (id && (strcmp(id, padlock_id) != 0)) {
        return 0;
    }
217

218 219 220
    if (!padlock_bind_helper(e)) {
        return 0;
    }
221

222
    return 1;
223 224
}

D
Dr. Stephen Henson 已提交
225
IMPLEMENT_DYNAMIC_CHECK_FN()
226
IMPLEMENT_DYNAMIC_BIND_FN(padlock_bind_fn)
227
#   endif                       /* DYNAMIC_ENGINE */
228
/* ===== Here comes the "real" engine ===== */
M
Matt Caswell 已提交
229

230
/* Some AES-related constants */
M
Matt Caswell 已提交
231 232 233 234
#   define AES_BLOCK_SIZE          16
#   define AES_KEY_SIZE_128        16
#   define AES_KEY_SIZE_192        24
#   define AES_KEY_SIZE_256        32
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    /*
     * Here we store the status information relevant to the current context.
     */
    /*
     * BIG FAT WARNING: Inline assembler in PADLOCK_XCRYPT_ASM() depends on
     * the order of items in this structure.  Don't blindly modify, reorder,
     * etc!
     */
struct padlock_cipher_data {
    unsigned char iv[AES_BLOCK_SIZE]; /* Initialization vector */
    union {
        unsigned int pad[4];
        struct {
            int rounds:4;
            int dgst:1;         /* n/a in C3 */
            int align:1;        /* n/a in C3 */
            int ciphr:1;        /* n/a in C3 */
            unsigned int keygen:1;
            int interm:1;
            unsigned int encdec:1;
            int ksize:2;
        } b;
    } cword;                    /* Control word */
    AES_KEY ks;                 /* Encryption key */
259
};
260

261 262 263 264 265 266
/* Interface to assembler module */
unsigned int padlock_capability();
void padlock_key_bswap(AES_KEY *key);
void padlock_verify_context(struct padlock_cipher_data *ctx);
void padlock_reload_key();
void padlock_aes_block(void *out, const void *inp,
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
                       struct padlock_cipher_data *ctx);
int padlock_ecb_encrypt(void *out, const void *inp,
                        struct padlock_cipher_data *ctx, size_t len);
int padlock_cbc_encrypt(void *out, const void *inp,
                        struct padlock_cipher_data *ctx, size_t len);
int padlock_cfb_encrypt(void *out, const void *inp,
                        struct padlock_cipher_data *ctx, size_t len);
int padlock_ofb_encrypt(void *out, const void *inp,
                        struct padlock_cipher_data *ctx, size_t len);
int padlock_ctr32_encrypt(void *out, const void *inp,
                          struct padlock_cipher_data *ctx, size_t len);
int padlock_xstore(void *out, int edx);
void padlock_sha1_oneshot(void *ctx, const void *inp, size_t len);
void padlock_sha1(void *ctx, const void *inp, size_t len);
void padlock_sha256_oneshot(void *ctx, const void *inp, size_t len);
void padlock_sha256(void *ctx, const void *inp, size_t len);

/*
 * Load supported features of the CPU to see if the PadLock is available.
 */
static int padlock_available(void)
288
{
289
    unsigned int edx = padlock_capability();
290

291 292 293
    /* Fill up some flags */
    padlock_use_ace = ((edx & (0x3 << 6)) == (0x3 << 6));
    padlock_use_rng = ((edx & (0x3 << 2)) == (0x3 << 2));
294

295
    return padlock_use_ace + padlock_use_rng;
296 297
}

298 299
/* ===== AES encryption/decryption ===== */

M
Matt Caswell 已提交
300 301 302
#   if defined(NID_aes_128_cfb128) && ! defined (NID_aes_128_cfb)
#    define NID_aes_128_cfb NID_aes_128_cfb128
#   endif
303

M
Matt Caswell 已提交
304 305 306
#   if defined(NID_aes_128_ofb128) && ! defined (NID_aes_128_ofb)
#    define NID_aes_128_ofb NID_aes_128_ofb128
#   endif
307

M
Matt Caswell 已提交
308 309 310
#   if defined(NID_aes_192_cfb128) && ! defined (NID_aes_192_cfb)
#    define NID_aes_192_cfb NID_aes_192_cfb128
#   endif
311

M
Matt Caswell 已提交
312 313 314
#   if defined(NID_aes_192_ofb128) && ! defined (NID_aes_192_ofb)
#    define NID_aes_192_ofb NID_aes_192_ofb128
#   endif
315

M
Matt Caswell 已提交
316 317 318
#   if defined(NID_aes_256_cfb128) && ! defined (NID_aes_256_cfb)
#    define NID_aes_256_cfb NID_aes_256_cfb128
#   endif
319

M
Matt Caswell 已提交
320 321 322
#   if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb)
#    define NID_aes_256_ofb NID_aes_256_ofb128
#   endif
323 324

/* List of supported ciphers. */
325
static const int padlock_cipher_nids[] = {
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
    NID_aes_128_ecb,
    NID_aes_128_cbc,
    NID_aes_128_cfb,
    NID_aes_128_ofb,
    NID_aes_128_ctr,

    NID_aes_192_ecb,
    NID_aes_192_cbc,
    NID_aes_192_cfb,
    NID_aes_192_ofb,
    NID_aes_192_ctr,

    NID_aes_256_ecb,
    NID_aes_256_cbc,
    NID_aes_256_cfb,
    NID_aes_256_ofb,
    NID_aes_256_ctr
343
};
344 345 346

static int padlock_cipher_nids_num = (sizeof(padlock_cipher_nids) /
                                      sizeof(padlock_cipher_nids[0]));
347 348 349

/* Function prototypes ... */
static int padlock_aes_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
350
                                const unsigned char *iv, int enc);
351

M
Matt Caswell 已提交
352
#   define NEAREST_ALIGNED(ptr) ( (unsigned char *)(ptr) +         \
353
        ( (0x10 - ((size_t)(ptr) & 0x0F)) & 0x0F )      )
M
Matt Caswell 已提交
354
#   define ALIGNED_CIPHER_DATA(ctx) ((struct padlock_cipher_data *)\
355
        NEAREST_ALIGNED(EVP_CIPHER_CTX_get_cipher_data(ctx)))
356

357 358
static int
padlock_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg,
359
                   const unsigned char *in_arg, size_t nbytes)
360
{
361 362
    return padlock_ecb_encrypt(out_arg, in_arg,
                               ALIGNED_CIPHER_DATA(ctx), nbytes);
363
}
364

365 366
static int
padlock_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg,
367
                   const unsigned char *in_arg, size_t nbytes)
368
{
369 370
    struct padlock_cipher_data *cdata = ALIGNED_CIPHER_DATA(ctx);
    int ret;
371

372
    memcpy(cdata->iv, EVP_CIPHER_CTX_iv(ctx), AES_BLOCK_SIZE);
373
    if ((ret = padlock_cbc_encrypt(out_arg, in_arg, cdata, nbytes)))
374
        memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), cdata->iv, AES_BLOCK_SIZE);
375
    return ret;
376 377 378 379
}

static int
padlock_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg,
380
                   const unsigned char *in_arg, size_t nbytes)
381
{
382 383 384
    struct padlock_cipher_data *cdata = ALIGNED_CIPHER_DATA(ctx);
    size_t chunk;

385 386
    if ((chunk = EVP_CIPHER_CTX_num(ctx))) {   /* borrow chunk variable */
        unsigned char *ivp = EVP_CIPHER_CTX_iv_noconst(ctx);
387 388 389 390

        if (chunk >= AES_BLOCK_SIZE)
            return 0;           /* bogus value */

391
        if (EVP_CIPHER_CTX_encrypting(ctx))
392 393 394 395 396 397 398 399 400 401
            while (chunk < AES_BLOCK_SIZE && nbytes != 0) {
                ivp[chunk] = *(out_arg++) = *(in_arg++) ^ ivp[chunk];
                chunk++, nbytes--;
        } else
            while (chunk < AES_BLOCK_SIZE && nbytes != 0) {
                unsigned char c = *(in_arg++);
                *(out_arg++) = c ^ ivp[chunk];
                ivp[chunk++] = c, nbytes--;
            }

402
        EVP_CIPHER_CTX_set_num(ctx, chunk % AES_BLOCK_SIZE);
403 404 405 406 407
    }

    if (nbytes == 0)
        return 1;

408
    memcpy(cdata->iv, EVP_CIPHER_CTX_iv(ctx), AES_BLOCK_SIZE);
409 410 411 412 413 414 415 416 417 418 419 420

    if ((chunk = nbytes & ~(AES_BLOCK_SIZE - 1))) {
        if (!padlock_cfb_encrypt(out_arg, in_arg, cdata, chunk))
            return 0;
        nbytes -= chunk;
    }

    if (nbytes) {
        unsigned char *ivp = cdata->iv;

        out_arg += chunk;
        in_arg += chunk;
421
        EVP_CIPHER_CTX_set_num(ctx, nbytes);
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
        if (cdata->cword.b.encdec) {
            cdata->cword.b.encdec = 0;
            padlock_reload_key();
            padlock_aes_block(ivp, ivp, cdata);
            cdata->cword.b.encdec = 1;
            padlock_reload_key();
            while (nbytes) {
                unsigned char c = *(in_arg++);
                *(out_arg++) = c ^ *ivp;
                *(ivp++) = c, nbytes--;
            }
        } else {
            padlock_reload_key();
            padlock_aes_block(ivp, ivp, cdata);
            padlock_reload_key();
            while (nbytes) {
                *ivp = *(out_arg++) = *(in_arg++) ^ *ivp;
                ivp++, nbytes--;
            }
        }
    }

444
    memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), cdata->iv, AES_BLOCK_SIZE);
445 446

    return 1;
447 448 449 450
}

static int
padlock_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg,
451
                   const unsigned char *in_arg, size_t nbytes)
452
{
453 454 455 456 457 458
    struct padlock_cipher_data *cdata = ALIGNED_CIPHER_DATA(ctx);
    size_t chunk;

    /*
     * ctx->num is maintained in byte-oriented modes, such as CFB and OFB...
     */
459 460
    if ((chunk = EVP_CIPHER_CTX_num(ctx))) {   /* borrow chunk variable */
        unsigned char *ivp = EVP_CIPHER_CTX_iv_noconst(ctx);
461 462 463 464 465 466 467 468 469

        if (chunk >= AES_BLOCK_SIZE)
            return 0;           /* bogus value */

        while (chunk < AES_BLOCK_SIZE && nbytes != 0) {
            *(out_arg++) = *(in_arg++) ^ ivp[chunk];
            chunk++, nbytes--;
        }

470
        EVP_CIPHER_CTX_set_num(ctx, chunk % AES_BLOCK_SIZE);
471 472 473 474 475
    }

    if (nbytes == 0)
        return 1;

476
    memcpy(cdata->iv, EVP_CIPHER_CTX_iv(ctx), AES_BLOCK_SIZE);
477 478 479 480 481 482 483 484 485 486 487 488

    if ((chunk = nbytes & ~(AES_BLOCK_SIZE - 1))) {
        if (!padlock_ofb_encrypt(out_arg, in_arg, cdata, chunk))
            return 0;
        nbytes -= chunk;
    }

    if (nbytes) {
        unsigned char *ivp = cdata->iv;

        out_arg += chunk;
        in_arg += chunk;
489
        EVP_CIPHER_CTX_set_num(ctx, nbytes);
490 491 492 493 494 495 496 497 498
        padlock_reload_key();   /* empirically found */
        padlock_aes_block(ivp, ivp, cdata);
        padlock_reload_key();   /* empirically found */
        while (nbytes) {
            *(out_arg++) = *(in_arg++) ^ *ivp;
            ivp++, nbytes--;
        }
    }

499
    memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), cdata->iv, AES_BLOCK_SIZE);
500 501

    return 1;
502 503
}

A
Andy Polyakov 已提交
504
static void padlock_ctr32_encrypt_glue(const unsigned char *in,
505 506 507
                                       unsigned char *out, size_t blocks,
                                       struct padlock_cipher_data *ctx,
                                       const unsigned char *ivec)
A
Andy Polyakov 已提交
508
{
509 510
    memcpy(ctx->iv, ivec, AES_BLOCK_SIZE);
    padlock_ctr32_encrypt(out, in, ctx, AES_BLOCK_SIZE * blocks);
A
Andy Polyakov 已提交
511 512 513 514
}

static int
padlock_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg,
515
                   const unsigned char *in_arg, size_t nbytes)
A
Andy Polyakov 已提交
516
{
517
    struct padlock_cipher_data *cdata = ALIGNED_CIPHER_DATA(ctx);
518
    unsigned int num = EVP_CIPHER_CTX_num(ctx);
A
Andy Polyakov 已提交
519

520
    CRYPTO_ctr128_encrypt_ctr32(in_arg, out_arg, nbytes,
521 522
                                cdata, EVP_CIPHER_CTX_iv_noconst(ctx),
                                EVP_CIPHER_CTX_buf_noconst(ctx), &num,
523
                                (ctr128_f) padlock_ctr32_encrypt_glue);
A
Andy Polyakov 已提交
524

525
    EVP_CIPHER_CTX_set_num(ctx, (size_t)num);
526
    return 1;
A
Andy Polyakov 已提交
527 528
}

M
Matt Caswell 已提交
529 530 531 532 533
#   define EVP_CIPHER_block_size_ECB       AES_BLOCK_SIZE
#   define EVP_CIPHER_block_size_CBC       AES_BLOCK_SIZE
#   define EVP_CIPHER_block_size_OFB       1
#   define EVP_CIPHER_block_size_CFB       1
#   define EVP_CIPHER_block_size_CTR       1
534 535 536 537 538

/*
 * Declaring so many ciphers by hand would be a pain. Instead introduce a bit
 * of preprocessor magic :-)
 */
M
Matt Caswell 已提交
539
#   define DECLARE_AES_EVP(ksize,lmode,umode)      \
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
static EVP_CIPHER *_hidden_aes_##ksize##_##lmode = NULL; \
static const EVP_CIPHER *padlock_aes_##ksize##_##lmode(void) \
{                                                                       \
    if (_hidden_aes_##ksize##_##lmode == NULL                           \
        && ((_hidden_aes_##ksize##_##lmode =                            \
             EVP_CIPHER_meth_new(NID_aes_##ksize##_##lmode,             \
                                 EVP_CIPHER_block_size_##umode,         \
                                 AES_KEY_SIZE_##ksize)) == NULL         \
            || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_##ksize##_##lmode, \
                                              AES_BLOCK_SIZE)           \
            || !EVP_CIPHER_meth_set_flags(_hidden_aes_##ksize##_##lmode, \
                                          0 | EVP_CIPH_##umode##_MODE)  \
            || !EVP_CIPHER_meth_set_init(_hidden_aes_##ksize##_##lmode, \
                                         padlock_aes_init_key)          \
            || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_##ksize##_##lmode, \
                                              padlock_##lmode##_cipher) \
            || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_##ksize##_##lmode, \
                                                  sizeof(struct padlock_cipher_data) + 16) \
            || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_aes_##ksize##_##lmode, \
                                                    EVP_CIPHER_set_asn1_iv) \
            || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_aes_##ksize##_##lmode, \
                                                    EVP_CIPHER_get_asn1_iv))) { \
        EVP_CIPHER_meth_free(_hidden_aes_##ksize##_##lmode);            \
        _hidden_aes_##ksize##_##lmode = NULL;                           \
    }                                                                   \
    return _hidden_aes_##ksize##_##lmode;                               \
566 567
}

568 569 570 571 572
DECLARE_AES_EVP(128, ecb, ECB)
DECLARE_AES_EVP(128, cbc, CBC)
DECLARE_AES_EVP(128, cfb, CFB)
DECLARE_AES_EVP(128, ofb, OFB)
DECLARE_AES_EVP(128, ctr, CTR)
573

574 575 576 577 578
DECLARE_AES_EVP(192, ecb, ECB)
DECLARE_AES_EVP(192, cbc, CBC)
DECLARE_AES_EVP(192, cfb, CFB)
DECLARE_AES_EVP(192, ofb, OFB)
DECLARE_AES_EVP(192, ctr, CTR)
579

580 581 582 583 584
DECLARE_AES_EVP(256, ecb, ECB)
DECLARE_AES_EVP(256, cbc, CBC)
DECLARE_AES_EVP(256, cfb, CFB)
DECLARE_AES_EVP(256, ofb, OFB)
DECLARE_AES_EVP(256, ctr, CTR)
585 586

static int
587 588
padlock_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids,
                int nid)
589
{
590 591 592 593 594 595 596 597 598
    /* No specific cipher => return a list of supported nids ... */
    if (!cipher) {
        *nids = padlock_cipher_nids;
        return padlock_cipher_nids_num;
    }

    /* ... or the requested "cipher" otherwise */
    switch (nid) {
    case NID_aes_128_ecb:
599
        *cipher = padlock_aes_128_ecb();
600 601
        break;
    case NID_aes_128_cbc:
602
        *cipher = padlock_aes_128_cbc();
603 604
        break;
    case NID_aes_128_cfb:
605
        *cipher = padlock_aes_128_cfb();
606 607
        break;
    case NID_aes_128_ofb:
608
        *cipher = padlock_aes_128_ofb();
609 610
        break;
    case NID_aes_128_ctr:
611
        *cipher = padlock_aes_128_ctr();
612 613 614
        break;

    case NID_aes_192_ecb:
615
        *cipher = padlock_aes_192_ecb();
616 617
        break;
    case NID_aes_192_cbc:
618
        *cipher = padlock_aes_192_cbc();
619 620
        break;
    case NID_aes_192_cfb:
621
        *cipher = padlock_aes_192_cfb();
622 623
        break;
    case NID_aes_192_ofb:
624
        *cipher = padlock_aes_192_ofb();
625 626
        break;
    case NID_aes_192_ctr:
627
        *cipher = padlock_aes_192_ctr();
628 629 630
        break;

    case NID_aes_256_ecb:
631
        *cipher = padlock_aes_256_ecb();
632 633
        break;
    case NID_aes_256_cbc:
634
        *cipher = padlock_aes_256_cbc();
635 636
        break;
    case NID_aes_256_cfb:
637
        *cipher = padlock_aes_256_cfb();
638 639
        break;
    case NID_aes_256_ofb:
640
        *cipher = padlock_aes_256_ofb();
641 642
        break;
    case NID_aes_256_ctr:
643
        *cipher = padlock_aes_256_ctr();
644 645 646 647 648 649 650 651 652
        break;

    default:
        /* Sorry, we don't support this NID */
        *cipher = NULL;
        return 0;
    }

    return 1;
653 654 655 656
}

/* Prepare the encryption key for PadLock usage */
static int
657 658
padlock_aes_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
                     const unsigned char *iv, int enc)
659
{
660 661 662 663 664 665 666 667
    struct padlock_cipher_data *cdata;
    int key_len = EVP_CIPHER_CTX_key_length(ctx) * 8;
    unsigned long mode = EVP_CIPHER_CTX_mode(ctx);

    if (key == NULL)
        return 0;               /* ERROR */

    cdata = ALIGNED_CIPHER_DATA(ctx);
668
    memset(cdata, 0, sizeof(*cdata));
669 670 671 672 673

    /* Prepare Control word. */
    if (mode == EVP_CIPH_OFB_MODE || mode == EVP_CIPH_CTR_MODE)
        cdata->cword.b.encdec = 0;
    else
674
        cdata->cword.b.encdec = (EVP_CIPHER_CTX_encrypting(ctx) == 0);
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
    cdata->cword.b.rounds = 10 + (key_len - 128) / 32;
    cdata->cword.b.ksize = (key_len - 128) / 64;

    switch (key_len) {
    case 128:
        /*
         * PadLock can generate an extended key for AES128 in hardware
         */
        memcpy(cdata->ks.rd_key, key, AES_KEY_SIZE_128);
        cdata->cword.b.keygen = 0;
        break;

    case 192:
    case 256:
        /*
         * Generate an extended AES key in software. Needed for AES192/AES256
         */
        /*
         * Well, the above applies to Stepping 8 CPUs and is listed as
         * hardware errata. They most likely will fix it at some point and
         * then a check for stepping would be due here.
         */
        if ((mode == EVP_CIPH_ECB_MODE || mode == EVP_CIPH_CBC_MODE)
            && !enc)
            AES_set_decrypt_key(key, key_len, &cdata->ks);
        else
            AES_set_encrypt_key(key, key_len, &cdata->ks);
M
Matt Caswell 已提交
702
#   ifndef AES_ASM
703 704 705 706
        /*
         * OpenSSL C functions use byte-swapped extended key.
         */
        padlock_key_bswap(&cdata->ks);
M
Matt Caswell 已提交
707
#   endif
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
        cdata->cword.b.keygen = 1;
        break;

    default:
        /* ERROR */
        return 0;
    }

    /*
     * This is done to cover for cases when user reuses the
     * context for new key. The catch is that if we don't do
     * this, padlock_eas_cipher might proceed with old key...
     */
    padlock_reload_key();

    return 1;
724 725 726 727 728 729 730 731 732
}

/* ===== Random Number Generator ===== */
/*
 * This code is not engaged. The reason is that it does not comply
 * with recommendations for VIA RNG usage for secure applications
 * (posted at http://www.via.com.tw/en/viac3/c3.jsp) nor does it
 * provide meaningful error control...
 */
733 734 735 736 737
/*
 * Wrapper that provides an interface between the API and the raw PadLock
 * RNG
 */
static int padlock_rand_bytes(unsigned char *output, int count)
738
{
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
    unsigned int eax, buf;

    while (count >= 8) {
        eax = padlock_xstore(output, 0);
        if (!(eax & (1 << 6)))
            return 0;           /* RNG disabled */
        /* this ---vv--- covers DC bias, Raw Bits and String Filter */
        if (eax & (0x1F << 10))
            return 0;
        if ((eax & 0x1F) == 0)
            continue;           /* no data, retry... */
        if ((eax & 0x1F) != 8)
            return 0;           /* fatal failure...  */
        output += 8;
        count -= 8;
    }
    while (count > 0) {
        eax = padlock_xstore(&buf, 3);
        if (!(eax & (1 << 6)))
            return 0;           /* RNG disabled */
        /* this ---vv--- covers DC bias, Raw Bits and String Filter */
        if (eax & (0x1F << 10))
            return 0;
        if ((eax & 0x1F) == 0)
            continue;           /* no data, retry... */
        if ((eax & 0x1F) != 1)
            return 0;           /* fatal failure...  */
        *output++ = (unsigned char)buf;
        count--;
    }
769
    OPENSSL_cleanse(&buf, sizeof(buf));
770 771

    return 1;
772 773 774
}

/* Dummy but necessary function */
775
static int padlock_rand_status(void)
776
{
777
    return 1;
778 779 780 781
}

/* Prepare structure for registration */
static RAND_METHOD padlock_rand = {
782 783 784 785 786 787
    NULL,                       /* seed */
    padlock_rand_bytes,         /* bytes */
    NULL,                       /* cleanup */
    NULL,                       /* add */
    padlock_rand_bytes,         /* pseudorand */
    padlock_rand_status,        /* rand status */
788 789
};

790 791 792 793 794 795 796
#  endif                        /* COMPILE_HW_PADLOCK */
# endif                         /* !OPENSSL_NO_HW_PADLOCK */
#endif                          /* !OPENSSL_NO_HW */

#if defined(OPENSSL_NO_HW) || defined(OPENSSL_NO_HW_PADLOCK) \
        || !defined(COMPILE_HW_PADLOCK)
# ifndef OPENSSL_NO_DYNAMIC_ENGINE
797
OPENSSL_EXPORT
798
    int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns);
799
OPENSSL_EXPORT
800 801 802 803
    int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns)
{
    return 0;
}
804

805
IMPLEMENT_DYNAMIC_CHECK_FN()
806 807
# endif
#endif