2005-04-17 02:20:36 +04:00
/*
* Scatterlist Cryptographic API .
*
* Copyright ( c ) 2002 James Morris < jmorris @ intercode . com . au >
* Copyright ( c ) 2002 David S . Miller ( davem @ redhat . com )
2005-11-05 08:58:14 +03:00
* Copyright ( c ) 2005 Herbert Xu < herbert @ gondor . apana . org . au >
2005-04-17 02:20:36 +04:00
*
* Portions derived from Cryptoapi , by Alexander Kjeldaas < astor @ fast . no >
2007-10-20 01:06:17 +04:00
* and Nettle , by Niels Möller .
2005-04-17 02:20:36 +04:00
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation ; either version 2 of the License , or ( at your option )
* any later version .
*
*/
2005-07-07 00:54:31 +04:00
2006-09-21 05:39:29 +04:00
# include <linux/err.h>
2005-04-17 02:20:36 +04:00
# include <linux/errno.h>
2005-11-05 08:58:14 +03:00
# include <linux/kernel.h>
2005-07-07 00:53:09 +04:00
# include <linux/kmod.h>
2006-09-21 05:31:44 +04:00
# include <linux/module.h>
2006-08-06 15:23:26 +04:00
# include <linux/param.h>
2006-09-21 05:39:29 +04:00
# include <linux/sched.h>
2005-04-17 02:20:36 +04:00
# include <linux/slab.h>
2005-11-05 08:58:14 +03:00
# include <linux/string.h>
2005-04-17 02:20:36 +04:00
# include "internal.h"
LIST_HEAD ( crypto_alg_list ) ;
2006-08-21 15:08:13 +04:00
EXPORT_SYMBOL_GPL ( crypto_alg_list ) ;
2005-04-17 02:20:36 +04:00
DECLARE_RWSEM ( crypto_alg_sem ) ;
2006-08-21 15:08:13 +04:00
EXPORT_SYMBOL_GPL ( crypto_alg_sem ) ;
2005-04-17 02:20:36 +04:00
2006-08-06 15:23:26 +04:00
BLOCKING_NOTIFIER_HEAD ( crypto_chain ) ;
EXPORT_SYMBOL_GPL ( crypto_chain ) ;
2006-08-06 14:28:44 +04:00
static inline struct crypto_alg * crypto_alg_get ( struct crypto_alg * alg )
2005-04-17 02:20:36 +04:00
{
2006-08-06 14:28:44 +04:00
atomic_inc ( & alg - > cra_refcnt ) ;
return alg ;
}
2006-08-06 15:23:26 +04:00
struct crypto_alg * crypto_mod_get ( struct crypto_alg * alg )
2006-08-06 14:28:44 +04:00
{
return try_module_get ( alg - > cra_module ) ? crypto_alg_get ( alg ) : NULL ;
2005-04-17 02:20:36 +04:00
}
2006-08-06 15:23:26 +04:00
EXPORT_SYMBOL_GPL ( crypto_mod_get ) ;
2005-04-17 02:20:36 +04:00
2006-08-06 15:23:26 +04:00
void crypto_mod_put ( struct crypto_alg * alg )
2005-04-17 02:20:36 +04:00
{
2007-05-19 08:51:00 +04:00
struct module * module = alg - > cra_module ;
2006-08-06 14:28:44 +04:00
crypto_alg_put ( alg ) ;
2007-05-19 08:51:00 +04:00
module_put ( module ) ;
2005-04-17 02:20:36 +04:00
}
2006-08-06 15:23:26 +04:00
EXPORT_SYMBOL_GPL ( crypto_mod_put ) ;
2005-04-17 02:20:36 +04:00
2006-09-21 05:35:17 +04:00
struct crypto_alg * __crypto_alg_lookup ( const char * name , u32 type , u32 mask )
2005-04-17 02:20:36 +04:00
{
struct crypto_alg * q , * alg = NULL ;
2006-08-06 15:23:26 +04:00
int best = - 2 ;
2005-04-17 02:20:36 +04:00
list_for_each_entry ( q , & crypto_alg_list , cra_list ) {
2005-11-05 08:58:14 +03:00
int exact , fuzzy ;
2006-09-21 05:39:29 +04:00
if ( crypto_is_moribund ( q ) )
continue ;
2006-09-21 05:35:17 +04:00
if ( ( q - > cra_flags ^ type ) & mask )
continue ;
if ( crypto_is_larval ( q ) & &
( ( struct crypto_larval * ) q ) - > mask ! = mask )
continue ;
2005-11-05 08:58:14 +03:00
exact = ! strcmp ( q - > cra_driver_name , name ) ;
fuzzy = ! strcmp ( q - > cra_name , name ) ;
if ( ! exact & & ! ( fuzzy & & q - > cra_priority > best ) )
continue ;
2006-05-28 03:05:24 +04:00
if ( unlikely ( ! crypto_mod_get ( q ) ) )
2005-11-05 08:58:14 +03:00
continue ;
best = q - > cra_priority ;
if ( alg )
2006-05-28 03:05:24 +04:00
crypto_mod_put ( alg ) ;
2005-11-05 08:58:14 +03:00
alg = q ;
if ( exact )
2005-04-17 02:20:36 +04:00
break ;
}
2006-08-06 15:23:26 +04:00
return alg ;
}
EXPORT_SYMBOL_GPL ( __crypto_alg_lookup ) ;
static void crypto_larval_destroy ( struct crypto_alg * alg )
{
struct crypto_larval * larval = ( void * ) alg ;
BUG_ON ( ! crypto_is_larval ( alg ) ) ;
if ( larval - > adult )
crypto_mod_put ( larval - > adult ) ;
kfree ( larval ) ;
}
2006-09-21 05:35:17 +04:00
static struct crypto_alg * crypto_larval_alloc ( const char * name , u32 type ,
u32 mask )
2006-08-06 15:23:26 +04:00
{
struct crypto_alg * alg ;
struct crypto_larval * larval ;
larval = kzalloc ( sizeof ( * larval ) , GFP_KERNEL ) ;
if ( ! larval )
2006-09-21 05:39:29 +04:00
return ERR_PTR ( - ENOMEM ) ;
2006-08-06 15:23:26 +04:00
2006-09-21 05:35:17 +04:00
larval - > mask = mask ;
larval - > alg . cra_flags = CRYPTO_ALG_LARVAL | type ;
2006-08-06 15:23:26 +04:00
larval - > alg . cra_priority = - 1 ;
larval - > alg . cra_destroy = crypto_larval_destroy ;
atomic_set ( & larval - > alg . cra_refcnt , 2 ) ;
strlcpy ( larval - > alg . cra_name , name , CRYPTO_MAX_ALG_NAME ) ;
init_completion ( & larval - > completion ) ;
down_write ( & crypto_alg_sem ) ;
2006-09-21 05:35:17 +04:00
alg = __crypto_alg_lookup ( name , type , mask ) ;
2006-08-06 15:23:26 +04:00
if ( ! alg ) {
alg = & larval - > alg ;
list_add ( & alg - > cra_list , & crypto_alg_list ) ;
}
up_write ( & crypto_alg_sem ) ;
if ( alg ! = & larval - > alg )
kfree ( larval ) ;
return alg ;
}
2007-12-04 04:46:48 +03:00
void crypto_larval_kill ( struct crypto_alg * alg )
2006-08-06 15:23:26 +04:00
{
struct crypto_larval * larval = ( void * ) alg ;
down_write ( & crypto_alg_sem ) ;
list_del ( & alg - > cra_list ) ;
up_write ( & crypto_alg_sem ) ;
2007-05-19 11:51:40 +04:00
complete_all ( & larval - > completion ) ;
2006-08-06 15:23:26 +04:00
crypto_alg_put ( alg ) ;
}
2007-12-04 04:46:48 +03:00
EXPORT_SYMBOL_GPL ( crypto_larval_kill ) ;
2006-08-06 15:23:26 +04:00
static struct crypto_alg * crypto_larval_wait ( struct crypto_alg * alg )
{
struct crypto_larval * larval = ( void * ) alg ;
wait_for_completion_interruptible_timeout ( & larval - > completion , 60 * HZ ) ;
alg = larval - > adult ;
2006-09-21 05:39:29 +04:00
if ( alg ) {
if ( ! crypto_mod_get ( alg ) )
alg = ERR_PTR ( - EAGAIN ) ;
} else
alg = ERR_PTR ( - ENOENT ) ;
2006-08-06 15:23:26 +04:00
crypto_mod_put ( & larval - > alg ) ;
return alg ;
}
2006-09-21 05:35:17 +04:00
static struct crypto_alg * crypto_alg_lookup ( const char * name , u32 type ,
u32 mask )
2006-08-06 15:23:26 +04:00
{
struct crypto_alg * alg ;
down_read ( & crypto_alg_sem ) ;
2006-09-21 05:35:17 +04:00
alg = __crypto_alg_lookup ( name , type , mask ) ;
2005-04-17 02:20:36 +04:00
up_read ( & crypto_alg_sem ) ;
2006-08-06 15:23:26 +04:00
2005-04-17 02:20:36 +04:00
return alg ;
}
2007-12-04 04:46:48 +03:00
struct crypto_alg * crypto_larval_lookup ( const char * name , u32 type , u32 mask )
2005-07-07 00:53:09 +04:00
{
2006-08-06 15:23:26 +04:00
struct crypto_alg * alg ;
2006-09-21 05:39:29 +04:00
if ( ! name )
return ERR_PTR ( - ENOENT ) ;
mask & = ~ ( CRYPTO_ALG_LARVAL | CRYPTO_ALG_DEAD ) ;
2006-09-21 05:35:17 +04:00
type & = mask ;
alg = try_then_request_module ( crypto_alg_lookup ( name , type , mask ) ,
name ) ;
2006-08-06 15:23:26 +04:00
if ( alg )
return crypto_is_larval ( alg ) ? crypto_larval_wait ( alg ) : alg ;
2007-12-04 04:46:48 +03:00
return crypto_larval_alloc ( name , type , mask ) ;
}
EXPORT_SYMBOL_GPL ( crypto_larval_lookup ) ;
struct crypto_alg * crypto_alg_mod_lookup ( const char * name , u32 type , u32 mask )
{
struct crypto_alg * alg ;
struct crypto_alg * larval ;
int ok ;
larval = crypto_larval_lookup ( name , type , mask ) ;
2006-09-21 05:39:29 +04:00
if ( IS_ERR ( larval ) | | ! crypto_is_larval ( larval ) )
2006-08-06 15:23:26 +04:00
return larval ;
2006-09-21 05:31:44 +04:00
ok = crypto_notify ( CRYPTO_MSG_ALG_REQUEST , larval ) ;
if ( ok = = NOTIFY_DONE ) {
request_module ( " cryptomgr " ) ;
ok = crypto_notify ( CRYPTO_MSG_ALG_REQUEST , larval ) ;
}
if ( ok = = NOTIFY_STOP )
2006-08-06 15:23:26 +04:00
alg = crypto_larval_wait ( larval ) ;
else {
crypto_mod_put ( larval ) ;
2006-09-21 05:39:29 +04:00
alg = ERR_PTR ( - ENOENT ) ;
2006-08-06 15:23:26 +04:00
}
crypto_larval_kill ( larval ) ;
return alg ;
2005-07-07 00:53:09 +04:00
}
2006-09-21 05:35:17 +04:00
EXPORT_SYMBOL_GPL ( crypto_alg_mod_lookup ) ;
2005-07-07 00:53:09 +04:00
2007-01-24 12:50:26 +03:00
static int crypto_init_ops ( struct crypto_tfm * tfm , u32 type , u32 mask )
2005-04-17 02:20:36 +04:00
{
2007-01-24 12:50:26 +03:00
const struct crypto_type * type_obj = tfm - > __crt_alg - > cra_type ;
2006-08-21 18:06:54 +04:00
2007-01-24 12:50:26 +03:00
if ( type_obj )
return type_obj - > init ( tfm , type , mask ) ;
2006-08-21 18:06:54 +04:00
2005-04-17 02:20:36 +04:00
switch ( crypto_tfm_alg_type ( tfm ) ) {
case CRYPTO_ALG_TYPE_CIPHER :
return crypto_init_cipher_ops ( tfm ) ;
case CRYPTO_ALG_TYPE_DIGEST :
return crypto_init_digest_ops ( tfm ) ;
case CRYPTO_ALG_TYPE_COMPRESS :
return crypto_init_compress_ops ( tfm ) ;
default :
break ;
}
BUG ( ) ;
return - EINVAL ;
}
static void crypto_exit_ops ( struct crypto_tfm * tfm )
{
2006-08-21 18:06:54 +04:00
const struct crypto_type * type = tfm - > __crt_alg - > cra_type ;
if ( type ) {
if ( type - > exit )
type - > exit ( tfm ) ;
return ;
}
2005-04-17 02:20:36 +04:00
switch ( crypto_tfm_alg_type ( tfm ) ) {
case CRYPTO_ALG_TYPE_CIPHER :
crypto_exit_cipher_ops ( tfm ) ;
break ;
case CRYPTO_ALG_TYPE_DIGEST :
crypto_exit_digest_ops ( tfm ) ;
break ;
case CRYPTO_ALG_TYPE_COMPRESS :
crypto_exit_compress_ops ( tfm ) ;
break ;
default :
BUG ( ) ;
}
}
2007-01-24 12:50:26 +03:00
static unsigned int crypto_ctxsize ( struct crypto_alg * alg , u32 type , u32 mask )
2005-07-07 00:53:29 +04:00
{
2007-01-24 12:50:26 +03:00
const struct crypto_type * type_obj = alg - > cra_type ;
2005-07-07 00:53:29 +04:00
unsigned int len ;
2006-08-21 18:06:54 +04:00
len = alg - > cra_alignmask & ~ ( crypto_tfm_ctx_alignment ( ) - 1 ) ;
2007-01-24 12:50:26 +03:00
if ( type_obj )
return len + type_obj - > ctxsize ( alg , type , mask ) ;
2006-08-21 18:06:54 +04:00
2005-07-07 00:53:29 +04:00
switch ( alg - > cra_flags & CRYPTO_ALG_TYPE_MASK ) {
default :
BUG ( ) ;
case CRYPTO_ALG_TYPE_CIPHER :
2007-01-27 02:05:15 +03:00
len + = crypto_cipher_ctxsize ( alg ) ;
2005-07-07 00:53:29 +04:00
break ;
case CRYPTO_ALG_TYPE_DIGEST :
2007-01-27 02:05:15 +03:00
len + = crypto_digest_ctxsize ( alg ) ;
2005-07-07 00:53:29 +04:00
break ;
case CRYPTO_ALG_TYPE_COMPRESS :
2007-01-27 02:05:15 +03:00
len + = crypto_compress_ctxsize ( alg ) ;
2005-07-07 00:53:29 +04:00
break ;
}
2006-08-21 18:06:54 +04:00
return len ;
2005-07-07 00:53:29 +04:00
}
2006-09-21 05:39:29 +04:00
void crypto_shoot_alg ( struct crypto_alg * alg )
{
down_write ( & crypto_alg_sem ) ;
alg - > cra_flags | = CRYPTO_ALG_DYING ;
up_write ( & crypto_alg_sem ) ;
}
EXPORT_SYMBOL_GPL ( crypto_shoot_alg ) ;
2007-01-24 12:50:26 +03:00
struct crypto_tfm * __crypto_alloc_tfm ( struct crypto_alg * alg , u32 type ,
u32 mask )
2005-04-17 02:20:36 +04:00
{
struct crypto_tfm * tfm = NULL ;
2005-07-07 00:53:29 +04:00
unsigned int tfm_size ;
2006-09-21 05:39:29 +04:00
int err = - ENOMEM ;
2005-07-07 00:53:29 +04:00
2007-01-24 12:50:26 +03:00
tfm_size = sizeof ( * tfm ) + crypto_ctxsize ( alg , type , mask ) ;
2006-03-06 13:42:07 +03:00
tfm = kzalloc ( tfm_size , GFP_KERNEL ) ;
2005-04-17 02:20:36 +04:00
if ( tfm = = NULL )
2006-10-11 16:29:51 +04:00
goto out_err ;
2005-04-17 02:20:36 +04:00
tfm - > __crt_alg = alg ;
2006-09-21 05:39:29 +04:00
2007-01-24 12:50:26 +03:00
err = crypto_init_ops ( tfm , type , mask ) ;
2006-09-21 05:39:29 +04:00
if ( err )
2005-04-17 02:20:36 +04:00
goto out_free_tfm ;
2006-05-24 07:02:26 +04:00
2006-09-21 05:39:29 +04:00
if ( alg - > cra_init & & ( err = alg - > cra_init ( tfm ) ) ) {
if ( err = = - EAGAIN )
crypto_shoot_alg ( alg ) ;
2006-05-24 07:02:26 +04:00
goto cra_init_failed ;
2006-09-21 05:39:29 +04:00
}
2005-04-17 02:20:36 +04:00
goto out ;
2006-05-24 07:02:26 +04:00
cra_init_failed :
crypto_exit_ops ( tfm ) ;
2005-04-17 02:20:36 +04:00
out_free_tfm :
kfree ( tfm ) ;
2006-10-11 16:29:51 +04:00
out_err :
2006-09-21 05:39:29 +04:00
tfm = ERR_PTR ( err ) ;
2005-04-17 02:20:36 +04:00
out :
return tfm ;
}
2006-09-21 05:39:29 +04:00
EXPORT_SYMBOL_GPL ( __crypto_alloc_tfm ) ;
2006-07-30 05:53:01 +04:00
/*
* crypto_alloc_base - Locate algorithm and allocate transform
* @ alg_name : Name of algorithm
* @ type : Type of algorithm
* @ mask : Mask for type comparison
*
* crypto_alloc_base ( ) will first attempt to locate an already loaded
* algorithm . If that fails and the kernel supports dynamically loadable
* modules , it will then attempt to load a module of the same name or
* alias . If that fails it will send a query to any loaded crypto manager
* to construct an algorithm on the fly . A refcount is grabbed on the
* algorithm which is then associated with the new transform .
*
* The returned transform is of a non - determinate type . Most people
* should use one of the more specific allocation functions such as
* crypto_alloc_blkcipher .
*
* In case of error the return value is an error pointer .
*/
struct crypto_tfm * crypto_alloc_base ( const char * alg_name , u32 type , u32 mask )
{
struct crypto_tfm * tfm ;
int err ;
for ( ; ; ) {
struct crypto_alg * alg ;
alg = crypto_alg_mod_lookup ( alg_name , type , mask ) ;
2006-10-11 16:29:51 +04:00
if ( IS_ERR ( alg ) ) {
err = PTR_ERR ( alg ) ;
2006-07-30 05:53:01 +04:00
goto err ;
2006-10-11 16:29:51 +04:00
}
2006-07-30 05:53:01 +04:00
2007-01-24 12:50:26 +03:00
tfm = __crypto_alloc_tfm ( alg , type , mask ) ;
2006-07-30 05:53:01 +04:00
if ( ! IS_ERR ( tfm ) )
2006-10-11 16:29:51 +04:00
return tfm ;
2006-07-30 05:53:01 +04:00
crypto_mod_put ( alg ) ;
err = PTR_ERR ( tfm ) ;
err :
if ( err ! = - EAGAIN )
break ;
if ( signal_pending ( current ) ) {
err = - EINTR ;
break ;
}
2006-10-11 16:29:51 +04:00
}
2006-07-30 05:53:01 +04:00
2006-10-11 16:29:51 +04:00
return ERR_PTR ( err ) ;
2006-07-30 05:53:01 +04:00
}
EXPORT_SYMBOL_GPL ( crypto_alloc_base ) ;
/*
* crypto_free_tfm - Free crypto transform
* @ tfm : Transform to free
*
* crypto_free_tfm ( ) frees up the transform and any associated resources ,
* then drops the refcount on the associated algorithm .
*/
2005-04-17 02:20:36 +04:00
void crypto_free_tfm ( struct crypto_tfm * tfm )
{
2005-07-07 00:54:31 +04:00
struct crypto_alg * alg ;
int size ;
if ( unlikely ( ! tfm ) )
return ;
alg = tfm - > __crt_alg ;
size = sizeof ( * tfm ) + alg - > cra_ctxsize ;
2005-04-17 02:20:36 +04:00
2006-05-24 07:02:26 +04:00
if ( alg - > cra_exit )
alg - > cra_exit ( tfm ) ;
2005-04-17 02:20:36 +04:00
crypto_exit_ops ( tfm ) ;
2006-05-28 03:05:24 +04:00
crypto_mod_put ( alg ) ;
2005-04-17 02:20:36 +04:00
memset ( tfm , 0 , size ) ;
kfree ( tfm ) ;
}
EXPORT_SYMBOL_GPL ( crypto_free_tfm ) ;
2006-08-26 11:35:45 +04:00
int crypto_has_alg ( const char * name , u32 type , u32 mask )
{
int ret = 0 ;
struct crypto_alg * alg = crypto_alg_mod_lookup ( name , type , mask ) ;
if ( ! IS_ERR ( alg ) ) {
crypto_mod_put ( alg ) ;
ret = 1 ;
}
return ret ;
}
EXPORT_SYMBOL_GPL ( crypto_has_alg ) ;
2008-03-30 12:36:09 +04:00
MODULE_DESCRIPTION ( " Cryptographic core API " ) ;
MODULE_LICENSE ( " GPL " ) ;