Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/x86/crypto/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 3 kB image not shown  

Quelle  camellia_aesni_avx2_glue.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Glue Code for x86_64/AVX2/AES-NI assembler optimized version of Camellia
 *
 * Copyright © 2013 Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
 */


#include <crypto/algapi.h>
#include <linux/crypto.h>
#include <linux/err.h>
#include <linux/module.h>
#include <linux/types.h>

#include "camellia.h"
#include "ecb_cbc_helpers.h"

#define CAMELLIA_AESNI_PARALLEL_BLOCKS 16
#define CAMELLIA_AESNI_AVX2_PARALLEL_BLOCKS 32

/* 32-way AVX2/AES-NI parallel cipher functions */
asmlinkage void camellia_ecb_enc_32way(const void *ctx, u8 *dst, const u8 *src);
asmlinkage void camellia_ecb_dec_32way(const void *ctx, u8 *dst, const u8 *src);

asmlinkage void camellia_cbc_dec_32way(const void *ctx, u8 *dst, const u8 *src);

static int camellia_setkey(struct crypto_skcipher *tfm, const u8 *key,
      unsigned int keylen)
{
 return __camellia_setkey(crypto_skcipher_ctx(tfm), key, keylen);
}

static int ecb_encrypt(struct skcipher_request *req)
{
 ECB_WALK_START(req, CAMELLIA_BLOCK_SIZE, CAMELLIA_AESNI_PARALLEL_BLOCKS);
 ECB_BLOCK(CAMELLIA_AESNI_AVX2_PARALLEL_BLOCKS, camellia_ecb_enc_32way);
 ECB_BLOCK(CAMELLIA_AESNI_PARALLEL_BLOCKS, camellia_ecb_enc_16way);
 ECB_BLOCK(2, camellia_enc_blk_2way);
 ECB_BLOCK(1, camellia_enc_blk);
 ECB_WALK_END();
}

static int ecb_decrypt(struct skcipher_request *req)
{
 ECB_WALK_START(req, CAMELLIA_BLOCK_SIZE, CAMELLIA_AESNI_PARALLEL_BLOCKS);
 ECB_BLOCK(CAMELLIA_AESNI_AVX2_PARALLEL_BLOCKS, camellia_ecb_dec_32way);
 ECB_BLOCK(CAMELLIA_AESNI_PARALLEL_BLOCKS, camellia_ecb_dec_16way);
 ECB_BLOCK(2, camellia_dec_blk_2way);
 ECB_BLOCK(1, camellia_dec_blk);
 ECB_WALK_END();
}

static int cbc_encrypt(struct skcipher_request *req)
{
 CBC_WALK_START(req, CAMELLIA_BLOCK_SIZE, -1);
 CBC_ENC_BLOCK(camellia_enc_blk);
 CBC_WALK_END();
}

static int cbc_decrypt(struct skcipher_request *req)
{
 CBC_WALK_START(req, CAMELLIA_BLOCK_SIZE, CAMELLIA_AESNI_PARALLEL_BLOCKS);
 CBC_DEC_BLOCK(CAMELLIA_AESNI_AVX2_PARALLEL_BLOCKS, camellia_cbc_dec_32way);
 CBC_DEC_BLOCK(CAMELLIA_AESNI_PARALLEL_BLOCKS, camellia_cbc_dec_16way);
 CBC_DEC_BLOCK(2, camellia_decrypt_cbc_2way);
 CBC_DEC_BLOCK(1, camellia_dec_blk);
 CBC_WALK_END();
}

static struct skcipher_alg camellia_algs[] = {
 {
  .base.cra_name  = "ecb(camellia)",
  .base.cra_driver_name = "ecb-camellia-aesni-avx2",
  .base.cra_priority = 500,
  .base.cra_blocksize = CAMELLIA_BLOCK_SIZE,
  .base.cra_ctxsize = sizeof(struct camellia_ctx),
  .base.cra_module = THIS_MODULE,
  .min_keysize  = CAMELLIA_MIN_KEY_SIZE,
  .max_keysize  = CAMELLIA_MAX_KEY_SIZE,
  .setkey   = camellia_setkey,
  .encrypt  = ecb_encrypt,
  .decrypt  = ecb_decrypt,
 }, {
  .base.cra_name  = "cbc(camellia)",
  .base.cra_driver_name = "cbc-camellia-aesni-avx2",
  .base.cra_priority = 500,
  .base.cra_blocksize = CAMELLIA_BLOCK_SIZE,
  .base.cra_ctxsize = sizeof(struct camellia_ctx),
  .base.cra_module = THIS_MODULE,
  .min_keysize  = CAMELLIA_MIN_KEY_SIZE,
  .max_keysize  = CAMELLIA_MAX_KEY_SIZE,
  .ivsize   = CAMELLIA_BLOCK_SIZE,
  .setkey   = camellia_setkey,
  .encrypt  = cbc_encrypt,
  .decrypt  = cbc_decrypt,
 },
};

static int __init camellia_aesni_init(void)
{
 const char *feature_name;

 if (!boot_cpu_has(X86_FEATURE_AVX) ||
     !boot_cpu_has(X86_FEATURE_AVX2) ||
     !boot_cpu_has(X86_FEATURE_AES) ||
     !boot_cpu_has(X86_FEATURE_OSXSAVE)) {
  pr_info("AVX2 or AES-NI instructions are not detected.\n");
  return -ENODEV;
 }

 if (!cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM,
    &feature_name)) {
  pr_info("CPU feature '%s' is not supported.\n", feature_name);
  return -ENODEV;
 }

 return crypto_register_skciphers(camellia_algs,
      ARRAY_SIZE(camellia_algs));
}

static void __exit camellia_aesni_fini(void)
{
 crypto_unregister_skciphers(camellia_algs, ARRAY_SIZE(camellia_algs));
}

module_init(camellia_aesni_init);
module_exit(camellia_aesni_fini);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Camellia Cipher Algorithm, AES-NI/AVX2 optimized");
MODULE_ALIAS_CRYPTO("camellia");
MODULE_ALIAS_CRYPTO("camellia-asm");

Messung V0.5
C=98 H=100 G=98

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.