2019-05-27 08:55:05 +02:00
// SPDX-License-Identifier: GPL-2.0-or-later
2011-09-02 01:45:22 +03:00
/*
* Glue Code for assembler optimized version of Blowfish
*
2013-06-08 12:17:42 +03:00
* Copyright ( c ) 2011 Jussi Kivilinna < jussi . kivilinna @ mbnet . fi >
2011-09-02 01:45:22 +03:00
*
2011-09-23 19:51:00 +03:00
* CBC & ECB parts based on code ( crypto / cbc . c , ecb . c ) by :
* Copyright ( c ) 2006 Herbert Xu < herbert @ gondor . apana . org . au >
2011-09-02 01:45:22 +03:00
*/
2018-02-19 23:48:16 -08:00
# include <crypto/algapi.h>
2011-09-02 01:45:22 +03:00
# include <crypto/blowfish.h>
2018-02-19 23:48:16 -08:00
# include <crypto/internal/skcipher.h>
2011-09-02 01:45:22 +03:00
# include <linux/crypto.h>
# include <linux/init.h>
# include <linux/module.h>
# include <linux/types.h>
2023-01-30 20:27:57 -05:00
# include "ecb_cbc_helpers.h"
2011-09-02 01:45:22 +03:00
/* regular block cipher functions */
2023-01-30 20:27:14 -05:00
asmlinkage void blowfish_enc_blk ( struct bf_ctx * ctx , u8 * dst , const u8 * src ) ;
2011-09-02 01:45:22 +03:00
asmlinkage void blowfish_dec_blk ( struct bf_ctx * ctx , u8 * dst , const u8 * src ) ;
/* 4-way parallel cipher functions */
2023-01-30 20:27:14 -05:00
asmlinkage void blowfish_enc_blk_4way ( struct bf_ctx * ctx , u8 * dst ,
const u8 * src ) ;
2023-01-30 20:27:57 -05:00
asmlinkage void __blowfish_dec_blk_4way ( struct bf_ctx * ctx , u8 * dst ,
const u8 * src , bool cbc ) ;
static inline void blowfish_dec_ecb_4way ( struct bf_ctx * ctx , u8 * dst ,
const u8 * src )
{
return __blowfish_dec_blk_4way ( ctx , dst , src , false ) ;
}
static inline void blowfish_dec_cbc_4way ( struct bf_ctx * ctx , u8 * dst ,
const u8 * src )
{
return __blowfish_dec_blk_4way ( ctx , dst , src , true ) ;
}
2013-06-08 12:17:42 +03:00
2011-09-02 01:45:22 +03:00
static void blowfish_encrypt ( struct crypto_tfm * tfm , u8 * dst , const u8 * src )
{
blowfish_enc_blk ( crypto_tfm_ctx ( tfm ) , dst , src ) ;
}
static void blowfish_decrypt ( struct crypto_tfm * tfm , u8 * dst , const u8 * src )
{
blowfish_dec_blk ( crypto_tfm_ctx ( tfm ) , dst , src ) ;
}
2018-02-19 23:48:16 -08:00
static int blowfish_setkey_skcipher ( struct crypto_skcipher * tfm ,
const u8 * key , unsigned int keylen )
{
return blowfish_setkey ( & tfm - > base , key , keylen ) ;
}
static int ecb_encrypt ( struct skcipher_request * req )
2011-09-02 01:45:22 +03:00
{
2023-01-30 20:27:57 -05:00
ECB_WALK_START ( req , BF_BLOCK_SIZE , - 1 ) ;
ECB_BLOCK ( 4 , blowfish_enc_blk_4way ) ;
ECB_BLOCK ( 1 , blowfish_enc_blk ) ;
ECB_WALK_END ( ) ;
2011-09-02 01:45:22 +03:00
}
2018-02-19 23:48:16 -08:00
static int ecb_decrypt ( struct skcipher_request * req )
2011-09-02 01:45:22 +03:00
{
2023-01-30 20:27:57 -05:00
ECB_WALK_START ( req , BF_BLOCK_SIZE , - 1 ) ;
ECB_BLOCK ( 4 , blowfish_dec_ecb_4way ) ;
ECB_BLOCK ( 1 , blowfish_dec_blk ) ;
ECB_WALK_END ( ) ;
2011-09-02 01:45:22 +03:00
}
2018-02-19 23:48:16 -08:00
static int cbc_encrypt ( struct skcipher_request * req )
2011-09-02 01:45:22 +03:00
{
2023-01-30 20:27:57 -05:00
CBC_WALK_START ( req , BF_BLOCK_SIZE , - 1 ) ;
CBC_ENC_BLOCK ( blowfish_enc_blk ) ;
CBC_WALK_END ( ) ;
2011-09-02 01:45:22 +03:00
}
2018-02-19 23:48:16 -08:00
static int cbc_decrypt ( struct skcipher_request * req )
2011-09-02 01:45:22 +03:00
{
2023-01-30 20:27:57 -05:00
CBC_WALK_START ( req , BF_BLOCK_SIZE , - 1 ) ;
CBC_DEC_BLOCK ( 4 , blowfish_dec_cbc_4way ) ;
CBC_DEC_BLOCK ( 1 , blowfish_dec_blk ) ;
CBC_WALK_END ( ) ;
2011-09-02 01:45:22 +03:00
}
2018-02-19 23:48:16 -08:00
static struct crypto_alg bf_cipher_alg = {
2012-02-17 22:48:48 +02:00
. cra_name = " blowfish " ,
. cra_driver_name = " blowfish-asm " ,
. cra_priority = 200 ,
. cra_flags = CRYPTO_ALG_TYPE_CIPHER ,
. cra_blocksize = BF_BLOCK_SIZE ,
. cra_ctxsize = sizeof ( struct bf_ctx ) ,
2012-02-17 22:48:58 +02:00
. cra_alignmask = 0 ,
2012-02-17 22:48:48 +02:00
. cra_module = THIS_MODULE ,
. cra_u = {
. cipher = {
. cia_min_keysize = BF_MIN_KEY_SIZE ,
. cia_max_keysize = BF_MAX_KEY_SIZE ,
. cia_setkey = blowfish_setkey ,
. cia_encrypt = blowfish_encrypt ,
. cia_decrypt = blowfish_decrypt ,
}
}
2018-02-19 23:48:16 -08:00
} ;
static struct skcipher_alg bf_skcipher_algs [ ] = {
{
. base . cra_name = " ecb(blowfish) " ,
. base . cra_driver_name = " ecb-blowfish-asm " ,
. base . cra_priority = 300 ,
. base . cra_blocksize = BF_BLOCK_SIZE ,
. base . cra_ctxsize = sizeof ( struct bf_ctx ) ,
. base . cra_module = THIS_MODULE ,
. min_keysize = BF_MIN_KEY_SIZE ,
. max_keysize = BF_MAX_KEY_SIZE ,
. setkey = blowfish_setkey_skcipher ,
. encrypt = ecb_encrypt ,
. decrypt = ecb_decrypt ,
} , {
. base . cra_name = " cbc(blowfish) " ,
. base . cra_driver_name = " cbc-blowfish-asm " ,
. base . cra_priority = 300 ,
. base . cra_blocksize = BF_BLOCK_SIZE ,
. base . cra_ctxsize = sizeof ( struct bf_ctx ) ,
. base . cra_module = THIS_MODULE ,
. min_keysize = BF_MIN_KEY_SIZE ,
. max_keysize = BF_MAX_KEY_SIZE ,
. ivsize = BF_BLOCK_SIZE ,
. setkey = blowfish_setkey_skcipher ,
. encrypt = cbc_encrypt ,
. decrypt = cbc_decrypt ,
2012-02-17 22:48:48 +02:00
} ,
2018-02-19 23:48:16 -08:00
} ;
2011-09-02 01:45:22 +03:00
2011-12-20 12:20:21 +02:00
static bool is_blacklisted_cpu ( void )
{
if ( boot_cpu_data . x86_vendor ! = X86_VENDOR_INTEL )
return false ;
if ( boot_cpu_data . x86 = = 0x0f ) {
/*
* On Pentium 4 , blowfish - x86_64 is slower than generic C
* implementation because use of 64 bit rotates ( which are really
* slow on P4 ) . Therefore blacklist P4s .
*/
return true ;
}
return false ;
}
static int force ;
module_param ( force , int , 0 ) ;
MODULE_PARM_DESC ( force , " Force module load, ignore CPU blacklist " ) ;
2022-03-16 12:20:09 -07:00
static int __init blowfish_init ( void )
2011-09-02 01:45:22 +03:00
{
2018-02-19 23:48:16 -08:00
int err ;
2011-12-20 12:20:21 +02:00
if ( ! force & & is_blacklisted_cpu ( ) ) {
printk ( KERN_INFO
" blowfish-x86_64: performance on this CPU "
" would be suboptimal: disabling "
" blowfish-x86_64. \n " ) ;
return - ENODEV ;
}
2018-02-19 23:48:16 -08:00
err = crypto_register_alg ( & bf_cipher_alg ) ;
if ( err )
return err ;
err = crypto_register_skciphers ( bf_skcipher_algs ,
ARRAY_SIZE ( bf_skcipher_algs ) ) ;
if ( err )
crypto_unregister_alg ( & bf_cipher_alg ) ;
return err ;
2011-09-02 01:45:22 +03:00
}
2022-03-16 12:20:09 -07:00
static void __exit blowfish_fini ( void )
2011-09-02 01:45:22 +03:00
{
2018-02-19 23:48:16 -08:00
crypto_unregister_alg ( & bf_cipher_alg ) ;
crypto_unregister_skciphers ( bf_skcipher_algs ,
ARRAY_SIZE ( bf_skcipher_algs ) ) ;
2011-09-02 01:45:22 +03:00
}
2022-03-16 12:20:09 -07:00
module_init ( blowfish_init ) ;
module_exit ( blowfish_fini ) ;
2011-09-02 01:45:22 +03:00
MODULE_LICENSE ( " GPL " ) ;
MODULE_DESCRIPTION ( " Blowfish Cipher Algorithm, asm optimized " ) ;
2014-11-20 17:05:53 -08:00
MODULE_ALIAS_CRYPTO ( " blowfish " ) ;
MODULE_ALIAS_CRYPTO ( " blowfish-asm " ) ;