linux/drivers/crypto/vmx/aes_ctr.c
<<
>>
Prefs
   1/**
   2 * AES CTR routines supporting VMX instructions on the Power 8
   3 *
   4 * Copyright (C) 2015 International Business Machines Inc.
   5 *
   6 * This program is free software; you can redistribute it and/or modify
   7 * it under the terms of the GNU General Public License as published by
   8 * the Free Software Foundation; version 2 only.
   9 *
  10 * This program is distributed in the hope that it will be useful,
  11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13 * GNU General Public License for more details.
  14 *
  15 * You should have received a copy of the GNU General Public License
  16 * along with this program; if not, write to the Free Software
  17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18 *
  19 * Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
  20 */
  21
  22#include <linux/types.h>
  23#include <linux/err.h>
  24#include <linux/crypto.h>
  25#include <linux/delay.h>
  26#include <linux/hardirq.h>
  27#include <asm/switch_to.h>
  28#include <crypto/aes.h>
  29#include <crypto/scatterwalk.h>
  30#include "aesp8-ppc.h"
  31
  32struct p8_aes_ctr_ctx {
  33        struct crypto_blkcipher *fallback;
  34        struct aes_key enc_key;
  35};
  36
  37static int p8_aes_ctr_init(struct crypto_tfm *tfm)
  38{
  39        const char *alg;
  40        struct crypto_blkcipher *fallback;
  41        struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  42
  43        if (!(alg = crypto_tfm_alg_name(tfm))) {
  44                printk(KERN_ERR "Failed to get algorithm name.\n");
  45                return -ENOENT;
  46        }
  47
  48        fallback =
  49            crypto_alloc_blkcipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
  50        if (IS_ERR(fallback)) {
  51                printk(KERN_ERR
  52                       "Failed to allocate transformation for '%s': %ld\n",
  53                       alg, PTR_ERR(fallback));
  54                return PTR_ERR(fallback);
  55        }
  56        printk(KERN_INFO "Using '%s' as fallback implementation.\n",
  57               crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback));
  58
  59        crypto_blkcipher_set_flags(
  60                fallback,
  61                crypto_blkcipher_get_flags((struct crypto_blkcipher *)tfm));
  62        ctx->fallback = fallback;
  63
  64        return 0;
  65}
  66
  67static void p8_aes_ctr_exit(struct crypto_tfm *tfm)
  68{
  69        struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  70
  71        if (ctx->fallback) {
  72                crypto_free_blkcipher(ctx->fallback);
  73                ctx->fallback = NULL;
  74        }
  75}
  76
  77static int p8_aes_ctr_setkey(struct crypto_tfm *tfm, const u8 *key,
  78                             unsigned int keylen)
  79{
  80        int ret;
  81        struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  82
  83        pagefault_disable();
  84        enable_kernel_vsx();
  85        ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
  86        pagefault_enable();
  87
  88        ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen);
  89        return ret;
  90}
  91
  92static void p8_aes_ctr_final(struct p8_aes_ctr_ctx *ctx,
  93                             struct blkcipher_walk *walk)
  94{
  95        u8 *ctrblk = walk->iv;
  96        u8 keystream[AES_BLOCK_SIZE];
  97        u8 *src = walk->src.virt.addr;
  98        u8 *dst = walk->dst.virt.addr;
  99        unsigned int nbytes = walk->nbytes;
 100
 101        pagefault_disable();
 102        enable_kernel_vsx();
 103        aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key);
 104        pagefault_enable();
 105
 106        crypto_xor(keystream, src, nbytes);
 107        memcpy(dst, keystream, nbytes);
 108        crypto_inc(ctrblk, AES_BLOCK_SIZE);
 109}
 110
 111static int p8_aes_ctr_crypt(struct blkcipher_desc *desc,
 112                            struct scatterlist *dst,
 113                            struct scatterlist *src, unsigned int nbytes)
 114{
 115        int ret;
 116        u64 inc;
 117        struct blkcipher_walk walk;
 118        struct p8_aes_ctr_ctx *ctx =
 119                crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
 120        struct blkcipher_desc fallback_desc = {
 121                .tfm = ctx->fallback,
 122                .info = desc->info,
 123                .flags = desc->flags
 124        };
 125
 126        if (in_interrupt()) {
 127                ret = crypto_blkcipher_encrypt(&fallback_desc, dst, src,
 128                                               nbytes);
 129        } else {
 130                blkcipher_walk_init(&walk, dst, src, nbytes);
 131                ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE);
 132                while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
 133                        pagefault_disable();
 134                        enable_kernel_vsx();
 135                        aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr,
 136                                                    walk.dst.virt.addr,
 137                                                    (nbytes &
 138                                                     AES_BLOCK_MASK) /
 139                                                    AES_BLOCK_SIZE,
 140                                                    &ctx->enc_key,
 141                                                    walk.iv);
 142                        pagefault_enable();
 143
 144                        /* We need to update IV mostly for last bytes/round */
 145                        inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE;
 146                        if (inc > 0)
 147                                while (inc--)
 148                                        crypto_inc(walk.iv, AES_BLOCK_SIZE);
 149
 150                        nbytes &= AES_BLOCK_SIZE - 1;
 151                        ret = blkcipher_walk_done(desc, &walk, nbytes);
 152                }
 153                if (walk.nbytes) {
 154                        p8_aes_ctr_final(ctx, &walk);
 155                        ret = blkcipher_walk_done(desc, &walk, 0);
 156                }
 157        }
 158
 159        return ret;
 160}
 161
 162struct crypto_alg p8_aes_ctr_alg = {
 163        .cra_name = "ctr(aes)",
 164        .cra_driver_name = "p8_aes_ctr",
 165        .cra_module = THIS_MODULE,
 166        .cra_priority = 2000,
 167        .cra_type = &crypto_blkcipher_type,
 168        .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
 169        .cra_alignmask = 0,
 170        .cra_blocksize = 1,
 171        .cra_ctxsize = sizeof(struct p8_aes_ctr_ctx),
 172        .cra_init = p8_aes_ctr_init,
 173        .cra_exit = p8_aes_ctr_exit,
 174        .cra_blkcipher = {
 175                          .ivsize = AES_BLOCK_SIZE,
 176                          .min_keysize = AES_MIN_KEY_SIZE,
 177                          .max_keysize = AES_MAX_KEY_SIZE,
 178                          .setkey = p8_aes_ctr_setkey,
 179                          .encrypt = p8_aes_ctr_crypt,
 180                          .decrypt = p8_aes_ctr_crypt,
 181        },
 182};
 183