mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 01:44:52 +00:00
65c4c93caa
Commit 6cb8815f41a9 ("crypto: sig - Add interface for sign/verify") began a transition of asymmetric sign/verify operations from crypto_akcipher to a new crypto_sig frontend. Internally, the crypto_sig frontend still uses akcipher_alg as backend, however: "The link between sig and akcipher is meant to be temporary. The plan is to create a new low-level API for sig and then migrate the signature code over to that from akcipher." https://lore.kernel.org/r/ZrG6w9wsb-iiLZIF@gondor.apana.org.au/ "having a separate alg for sig is definitely where we want to be since there is very little that the two types actually share." https://lore.kernel.org/r/ZrHlpz4qnre0zWJO@gondor.apana.org.au/ Take the next step of that migration and augment the crypto_sig frontend with a sig_alg backend to which all algorithms can be moved. During the migration, there will briefly be signature algorithms that are still based on crypto_akcipher, whilst others are already based on crypto_sig. Allow for that by building a fork into crypto_sig_*() API calls (i.e. crypto_sig_maxsize() and friends) such that one of the two backends is selected based on the transform's cra_type. Signed-off-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
279 lines
6.5 KiB
C
279 lines
6.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Public Key Signature Algorithm
|
|
*
|
|
* Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
|
|
*/
|
|
|
|
#include <crypto/akcipher.h>
|
|
#include <crypto/internal/sig.h>
|
|
#include <linux/cryptouser.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/scatterlist.h>
|
|
#include <linux/seq_file.h>
|
|
#include <linux/string.h>
|
|
#include <net/netlink.h>
|
|
|
|
#include "internal.h"
|
|
|
|
#define CRYPTO_ALG_TYPE_SIG_MASK 0x0000000e
|
|
|
|
static const struct crypto_type crypto_sig_type;
|
|
|
|
static void crypto_sig_exit_tfm(struct crypto_tfm *tfm)
|
|
{
|
|
struct crypto_sig *sig = __crypto_sig_tfm(tfm);
|
|
struct sig_alg *alg = crypto_sig_alg(sig);
|
|
|
|
alg->exit(sig);
|
|
}
|
|
|
|
static int crypto_sig_init_tfm(struct crypto_tfm *tfm)
|
|
{
|
|
if (tfm->__crt_alg->cra_type != &crypto_sig_type)
|
|
return crypto_init_akcipher_ops_sig(tfm);
|
|
|
|
struct crypto_sig *sig = __crypto_sig_tfm(tfm);
|
|
struct sig_alg *alg = crypto_sig_alg(sig);
|
|
|
|
if (alg->exit)
|
|
sig->base.exit = crypto_sig_exit_tfm;
|
|
|
|
if (alg->init)
|
|
return alg->init(sig);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void crypto_sig_free_instance(struct crypto_instance *inst)
|
|
{
|
|
struct sig_instance *sig = sig_instance(inst);
|
|
|
|
sig->free(sig);
|
|
}
|
|
|
|
static void __maybe_unused crypto_sig_show(struct seq_file *m,
|
|
struct crypto_alg *alg)
|
|
{
|
|
seq_puts(m, "type : sig\n");
|
|
}
|
|
|
|
static int __maybe_unused crypto_sig_report(struct sk_buff *skb,
|
|
struct crypto_alg *alg)
|
|
{
|
|
struct crypto_report_sig rsig = {};
|
|
|
|
strscpy(rsig.type, "sig", sizeof(rsig.type));
|
|
|
|
return nla_put(skb, CRYPTOCFGA_REPORT_SIG, sizeof(rsig), &rsig);
|
|
}
|
|
|
|
static const struct crypto_type crypto_sig_type = {
|
|
.extsize = crypto_alg_extsize,
|
|
.init_tfm = crypto_sig_init_tfm,
|
|
.free = crypto_sig_free_instance,
|
|
#ifdef CONFIG_PROC_FS
|
|
.show = crypto_sig_show,
|
|
#endif
|
|
#if IS_ENABLED(CONFIG_CRYPTO_USER)
|
|
.report = crypto_sig_report,
|
|
#endif
|
|
.maskclear = ~CRYPTO_ALG_TYPE_MASK,
|
|
.maskset = CRYPTO_ALG_TYPE_SIG_MASK,
|
|
.type = CRYPTO_ALG_TYPE_SIG,
|
|
.tfmsize = offsetof(struct crypto_sig, base),
|
|
};
|
|
|
|
struct crypto_sig *crypto_alloc_sig(const char *alg_name, u32 type, u32 mask)
|
|
{
|
|
return crypto_alloc_tfm(alg_name, &crypto_sig_type, type, mask);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_alloc_sig);
|
|
|
|
int crypto_sig_maxsize(struct crypto_sig *tfm)
|
|
{
|
|
if (crypto_sig_tfm(tfm)->__crt_alg->cra_type != &crypto_sig_type)
|
|
goto akcipher;
|
|
|
|
struct sig_alg *alg = crypto_sig_alg(tfm);
|
|
|
|
return alg->max_size(tfm);
|
|
|
|
akcipher:
|
|
struct crypto_akcipher **ctx = crypto_sig_ctx(tfm);
|
|
|
|
return crypto_akcipher_maxsize(*ctx);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_sig_maxsize);
|
|
|
|
int crypto_sig_sign(struct crypto_sig *tfm,
|
|
const void *src, unsigned int slen,
|
|
void *dst, unsigned int dlen)
|
|
{
|
|
if (crypto_sig_tfm(tfm)->__crt_alg->cra_type != &crypto_sig_type)
|
|
goto akcipher;
|
|
|
|
struct sig_alg *alg = crypto_sig_alg(tfm);
|
|
|
|
return alg->sign(tfm, src, slen, dst, dlen);
|
|
|
|
akcipher:
|
|
struct crypto_akcipher **ctx = crypto_sig_ctx(tfm);
|
|
struct crypto_akcipher_sync_data data = {
|
|
.tfm = *ctx,
|
|
.src = src,
|
|
.dst = dst,
|
|
.slen = slen,
|
|
.dlen = dlen,
|
|
};
|
|
|
|
return crypto_akcipher_sync_prep(&data) ?:
|
|
crypto_akcipher_sync_post(&data,
|
|
crypto_akcipher_sign(data.req));
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_sig_sign);
|
|
|
|
int crypto_sig_verify(struct crypto_sig *tfm,
|
|
const void *src, unsigned int slen,
|
|
const void *digest, unsigned int dlen)
|
|
{
|
|
if (crypto_sig_tfm(tfm)->__crt_alg->cra_type != &crypto_sig_type)
|
|
goto akcipher;
|
|
|
|
struct sig_alg *alg = crypto_sig_alg(tfm);
|
|
|
|
return alg->verify(tfm, src, slen, digest, dlen);
|
|
|
|
akcipher:
|
|
struct crypto_akcipher **ctx = crypto_sig_ctx(tfm);
|
|
struct crypto_akcipher_sync_data data = {
|
|
.tfm = *ctx,
|
|
.src = src,
|
|
.slen = slen,
|
|
.dlen = dlen,
|
|
};
|
|
int err;
|
|
|
|
err = crypto_akcipher_sync_prep(&data);
|
|
if (err)
|
|
return err;
|
|
|
|
memcpy(data.buf + slen, digest, dlen);
|
|
|
|
return crypto_akcipher_sync_post(&data,
|
|
crypto_akcipher_verify(data.req));
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_sig_verify);
|
|
|
|
int crypto_sig_set_pubkey(struct crypto_sig *tfm,
|
|
const void *key, unsigned int keylen)
|
|
{
|
|
if (crypto_sig_tfm(tfm)->__crt_alg->cra_type != &crypto_sig_type)
|
|
goto akcipher;
|
|
|
|
struct sig_alg *alg = crypto_sig_alg(tfm);
|
|
|
|
return alg->set_pub_key(tfm, key, keylen);
|
|
|
|
akcipher:
|
|
struct crypto_akcipher **ctx = crypto_sig_ctx(tfm);
|
|
|
|
return crypto_akcipher_set_pub_key(*ctx, key, keylen);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_sig_set_pubkey);
|
|
|
|
int crypto_sig_set_privkey(struct crypto_sig *tfm,
|
|
const void *key, unsigned int keylen)
|
|
{
|
|
if (crypto_sig_tfm(tfm)->__crt_alg->cra_type != &crypto_sig_type)
|
|
goto akcipher;
|
|
|
|
struct sig_alg *alg = crypto_sig_alg(tfm);
|
|
|
|
return alg->set_priv_key(tfm, key, keylen);
|
|
|
|
akcipher:
|
|
struct crypto_akcipher **ctx = crypto_sig_ctx(tfm);
|
|
|
|
return crypto_akcipher_set_priv_key(*ctx, key, keylen);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_sig_set_privkey);
|
|
|
|
static void sig_prepare_alg(struct sig_alg *alg)
|
|
{
|
|
struct crypto_alg *base = &alg->base;
|
|
|
|
base->cra_type = &crypto_sig_type;
|
|
base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
|
|
base->cra_flags |= CRYPTO_ALG_TYPE_SIG;
|
|
}
|
|
|
|
static int sig_default_sign(struct crypto_sig *tfm,
|
|
const void *src, unsigned int slen,
|
|
void *dst, unsigned int dlen)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
static int sig_default_verify(struct crypto_sig *tfm,
|
|
const void *src, unsigned int slen,
|
|
const void *dst, unsigned int dlen)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
static int sig_default_set_key(struct crypto_sig *tfm,
|
|
const void *key, unsigned int keylen)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
int crypto_register_sig(struct sig_alg *alg)
|
|
{
|
|
struct crypto_alg *base = &alg->base;
|
|
|
|
if (!alg->sign)
|
|
alg->sign = sig_default_sign;
|
|
if (!alg->verify)
|
|
alg->verify = sig_default_verify;
|
|
if (!alg->set_priv_key)
|
|
alg->set_priv_key = sig_default_set_key;
|
|
if (!alg->set_pub_key)
|
|
return -EINVAL;
|
|
if (!alg->max_size)
|
|
return -EINVAL;
|
|
|
|
sig_prepare_alg(alg);
|
|
return crypto_register_alg(base);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_register_sig);
|
|
|
|
void crypto_unregister_sig(struct sig_alg *alg)
|
|
{
|
|
crypto_unregister_alg(&alg->base);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_unregister_sig);
|
|
|
|
int sig_register_instance(struct crypto_template *tmpl,
|
|
struct sig_instance *inst)
|
|
{
|
|
if (WARN_ON(!inst->free))
|
|
return -EINVAL;
|
|
sig_prepare_alg(&inst->alg);
|
|
return crypto_register_instance(tmpl, sig_crypto_instance(inst));
|
|
}
|
|
EXPORT_SYMBOL_GPL(sig_register_instance);
|
|
|
|
int crypto_grab_sig(struct crypto_sig_spawn *spawn,
|
|
struct crypto_instance *inst,
|
|
const char *name, u32 type, u32 mask)
|
|
{
|
|
spawn->base.frontend = &crypto_sig_type;
|
|
return crypto_grab_spawn(&spawn->base, inst, name, type, mask);
|
|
}
|
|
EXPORT_SYMBOL_GPL(crypto_grab_sig);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Public Key Signature Algorithms");
|