No implementation of fpu_kern_enter() can fail, and it was causing needless error checking boilerplate and confusion. Change the return code to void to match reality. (This trivial change took nine days to land because of the commit hook on sys/dev/random. Please consider removing the hook or otherwise lowering the bar -- secteam never seems to have free time to review patches.) Reported by: Lachlan McIlroy <Lachlan.McIlroy AT isilon.com> Reviewed by: delphij Approved by: secteam (delphij) Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D14380
427 lines
11 KiB
C
427 lines
11 KiB
C
/*-
|
|
* Copyright (c) 2005-2008 Pawel Jakub Dawidek <pjd@FreeBSD.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/module.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/rwlock.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/libkern.h>
|
|
#if defined(__amd64__) || defined(__i386__)
|
|
#include <machine/cpufunc.h>
|
|
#include <machine/cputypes.h>
|
|
#include <machine/md_var.h>
|
|
#include <machine/specialreg.h>
|
|
#endif
|
|
|
|
#include <opencrypto/cryptodev.h>
|
|
|
|
#include <crypto/via/padlock.h>
|
|
|
|
#include <sys/kobj.h>
|
|
#include <sys/bus.h>
|
|
#include "cryptodev_if.h"
|
|
|
|
/*
|
|
* Technical documentation about the PadLock engine can be found here:
|
|
*
|
|
* http://www.via.com.tw/en/downloads/whitepapers/initiatives/padlock/programming_guide.pdf
|
|
*/
|
|
|
|
struct padlock_softc {
|
|
int32_t sc_cid;
|
|
uint32_t sc_sid;
|
|
TAILQ_HEAD(padlock_sessions_head, padlock_session) sc_sessions;
|
|
struct rwlock sc_sessions_lock;
|
|
};
|
|
|
|
static int padlock_newsession(device_t, uint32_t *sidp, struct cryptoini *cri);
|
|
static int padlock_freesession(device_t, uint64_t tid);
|
|
static void padlock_freesession_one(struct padlock_softc *sc,
|
|
struct padlock_session *ses, int locked);
|
|
static int padlock_process(device_t, struct cryptop *crp, int hint __unused);
|
|
|
|
MALLOC_DEFINE(M_PADLOCK, "padlock_data", "PadLock Data");
|
|
|
|
static void
|
|
padlock_identify(driver_t *drv, device_t parent)
|
|
{
|
|
/* NB: order 10 is so we get attached after h/w devices */
|
|
if (device_find_child(parent, "padlock", -1) == NULL &&
|
|
BUS_ADD_CHILD(parent, 10, "padlock", -1) == 0)
|
|
panic("padlock: could not attach");
|
|
}
|
|
|
|
static int
|
|
padlock_probe(device_t dev)
|
|
{
|
|
char capp[256];
|
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
|
/* If there is no AES support, we has nothing to do here. */
|
|
if (!(via_feature_xcrypt & VIA_HAS_AES)) {
|
|
device_printf(dev, "No ACE support.\n");
|
|
return (EINVAL);
|
|
}
|
|
strlcpy(capp, "AES-CBC", sizeof(capp));
|
|
#if 0
|
|
strlcat(capp, ",AES-EBC", sizeof(capp));
|
|
strlcat(capp, ",AES-CFB", sizeof(capp));
|
|
strlcat(capp, ",AES-OFB", sizeof(capp));
|
|
#endif
|
|
if (via_feature_xcrypt & VIA_HAS_SHA) {
|
|
strlcat(capp, ",SHA1", sizeof(capp));
|
|
strlcat(capp, ",SHA256", sizeof(capp));
|
|
}
|
|
#if 0
|
|
if (via_feature_xcrypt & VIA_HAS_AESCTR)
|
|
strlcat(capp, ",AES-CTR", sizeof(capp));
|
|
if (via_feature_xcrypt & VIA_HAS_MM)
|
|
strlcat(capp, ",RSA", sizeof(capp));
|
|
#endif
|
|
device_set_desc_copy(dev, capp);
|
|
return (0);
|
|
#else
|
|
return (EINVAL);
|
|
#endif
|
|
}
|
|
|
|
static int
|
|
padlock_attach(device_t dev)
|
|
{
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
|
|
|
TAILQ_INIT(&sc->sc_sessions);
|
|
sc->sc_sid = 1;
|
|
|
|
sc->sc_cid = crypto_get_driverid(dev, CRYPTOCAP_F_HARDWARE);
|
|
if (sc->sc_cid < 0) {
|
|
device_printf(dev, "Could not get crypto driver id.\n");
|
|
return (ENOMEM);
|
|
}
|
|
|
|
rw_init(&sc->sc_sessions_lock, "padlock_lock");
|
|
crypto_register(sc->sc_cid, CRYPTO_AES_CBC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_MD5_HMAC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_SHA1_HMAC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_RIPEMD160_HMAC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_SHA2_256_HMAC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_SHA2_384_HMAC, 0, 0);
|
|
crypto_register(sc->sc_cid, CRYPTO_SHA2_512_HMAC, 0, 0);
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
padlock_detach(device_t dev)
|
|
{
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
|
struct padlock_session *ses;
|
|
|
|
rw_wlock(&sc->sc_sessions_lock);
|
|
TAILQ_FOREACH(ses, &sc->sc_sessions, ses_next) {
|
|
if (ses->ses_used) {
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
device_printf(dev,
|
|
"Cannot detach, sessions still active.\n");
|
|
return (EBUSY);
|
|
}
|
|
}
|
|
while ((ses = TAILQ_FIRST(&sc->sc_sessions)) != NULL) {
|
|
TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next);
|
|
fpu_kern_free_ctx(ses->ses_fpu_ctx);
|
|
free(ses, M_PADLOCK);
|
|
}
|
|
rw_destroy(&sc->sc_sessions_lock);
|
|
crypto_unregister_all(sc->sc_cid);
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
padlock_newsession(device_t dev, uint32_t *sidp, struct cryptoini *cri)
|
|
{
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
|
struct padlock_session *ses = NULL;
|
|
struct cryptoini *encini, *macini;
|
|
struct thread *td;
|
|
int error;
|
|
|
|
if (sidp == NULL || cri == NULL)
|
|
return (EINVAL);
|
|
|
|
encini = macini = NULL;
|
|
for (; cri != NULL; cri = cri->cri_next) {
|
|
switch (cri->cri_alg) {
|
|
case CRYPTO_NULL_HMAC:
|
|
case CRYPTO_MD5_HMAC:
|
|
case CRYPTO_SHA1_HMAC:
|
|
case CRYPTO_RIPEMD160_HMAC:
|
|
case CRYPTO_SHA2_256_HMAC:
|
|
case CRYPTO_SHA2_384_HMAC:
|
|
case CRYPTO_SHA2_512_HMAC:
|
|
if (macini != NULL)
|
|
return (EINVAL);
|
|
macini = cri;
|
|
break;
|
|
case CRYPTO_AES_CBC:
|
|
if (encini != NULL)
|
|
return (EINVAL);
|
|
encini = cri;
|
|
break;
|
|
default:
|
|
return (EINVAL);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* We only support HMAC algorithms to be able to work with
|
|
* ipsec(4), so if we are asked only for authentication without
|
|
* encryption, don't pretend we can accellerate it.
|
|
*/
|
|
if (encini == NULL)
|
|
return (EINVAL);
|
|
|
|
/*
|
|
* Let's look for a free session structure.
|
|
*/
|
|
rw_wlock(&sc->sc_sessions_lock);
|
|
/*
|
|
* Free sessions goes first, so if first session is used, we need to
|
|
* allocate one.
|
|
*/
|
|
ses = TAILQ_FIRST(&sc->sc_sessions);
|
|
if (ses == NULL || ses->ses_used) {
|
|
ses = malloc(sizeof(*ses), M_PADLOCK, M_NOWAIT | M_ZERO);
|
|
if (ses == NULL) {
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
return (ENOMEM);
|
|
}
|
|
ses->ses_fpu_ctx = fpu_kern_alloc_ctx(FPU_KERN_NORMAL |
|
|
FPU_KERN_NOWAIT);
|
|
if (ses->ses_fpu_ctx == NULL) {
|
|
free(ses, M_PADLOCK);
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
return (ENOMEM);
|
|
}
|
|
ses->ses_id = sc->sc_sid++;
|
|
} else {
|
|
TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next);
|
|
}
|
|
ses->ses_used = 1;
|
|
TAILQ_INSERT_TAIL(&sc->sc_sessions, ses, ses_next);
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
|
|
error = padlock_cipher_setup(ses, encini);
|
|
if (error != 0) {
|
|
padlock_freesession_one(sc, ses, 0);
|
|
return (error);
|
|
}
|
|
|
|
if (macini != NULL) {
|
|
td = curthread;
|
|
fpu_kern_enter(td, ses->ses_fpu_ctx, FPU_KERN_NORMAL |
|
|
FPU_KERN_KTHR);
|
|
error = padlock_hash_setup(ses, macini);
|
|
fpu_kern_leave(td, ses->ses_fpu_ctx);
|
|
if (error != 0) {
|
|
padlock_freesession_one(sc, ses, 0);
|
|
return (error);
|
|
}
|
|
}
|
|
|
|
*sidp = ses->ses_id;
|
|
return (0);
|
|
}
|
|
|
|
static void
|
|
padlock_freesession_one(struct padlock_softc *sc, struct padlock_session *ses,
|
|
int locked)
|
|
{
|
|
struct fpu_kern_ctx *ctx;
|
|
uint32_t sid = ses->ses_id;
|
|
|
|
if (!locked)
|
|
rw_wlock(&sc->sc_sessions_lock);
|
|
TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next);
|
|
padlock_hash_free(ses);
|
|
ctx = ses->ses_fpu_ctx;
|
|
bzero(ses, sizeof(*ses));
|
|
ses->ses_used = 0;
|
|
ses->ses_id = sid;
|
|
ses->ses_fpu_ctx = ctx;
|
|
TAILQ_INSERT_HEAD(&sc->sc_sessions, ses, ses_next);
|
|
if (!locked)
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
}
|
|
|
|
static int
|
|
padlock_freesession(device_t dev, uint64_t tid)
|
|
{
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
|
struct padlock_session *ses;
|
|
uint32_t sid = ((uint32_t)tid) & 0xffffffff;
|
|
|
|
rw_wlock(&sc->sc_sessions_lock);
|
|
TAILQ_FOREACH_REVERSE(ses, &sc->sc_sessions, padlock_sessions_head,
|
|
ses_next) {
|
|
if (ses->ses_id == sid)
|
|
break;
|
|
}
|
|
if (ses == NULL) {
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
return (EINVAL);
|
|
}
|
|
padlock_freesession_one(sc, ses, 1);
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
padlock_process(device_t dev, struct cryptop *crp, int hint __unused)
|
|
{
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
|
struct padlock_session *ses = NULL;
|
|
struct cryptodesc *crd, *enccrd, *maccrd;
|
|
int error = 0;
|
|
|
|
enccrd = maccrd = NULL;
|
|
|
|
/* Sanity check. */
|
|
if (crp == NULL)
|
|
return (EINVAL);
|
|
|
|
if (crp->crp_callback == NULL || crp->crp_desc == NULL) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
for (crd = crp->crp_desc; crd != NULL; crd = crd->crd_next) {
|
|
switch (crd->crd_alg) {
|
|
case CRYPTO_NULL_HMAC:
|
|
case CRYPTO_MD5_HMAC:
|
|
case CRYPTO_SHA1_HMAC:
|
|
case CRYPTO_RIPEMD160_HMAC:
|
|
case CRYPTO_SHA2_256_HMAC:
|
|
case CRYPTO_SHA2_384_HMAC:
|
|
case CRYPTO_SHA2_512_HMAC:
|
|
if (maccrd != NULL) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
maccrd = crd;
|
|
break;
|
|
case CRYPTO_AES_CBC:
|
|
if (enccrd != NULL) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
enccrd = crd;
|
|
break;
|
|
default:
|
|
return (EINVAL);
|
|
}
|
|
}
|
|
if (enccrd == NULL || (enccrd->crd_len % AES_BLOCK_LEN) != 0) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
rw_rlock(&sc->sc_sessions_lock);
|
|
TAILQ_FOREACH_REVERSE(ses, &sc->sc_sessions, padlock_sessions_head,
|
|
ses_next) {
|
|
if (ses->ses_id == (crp->crp_sid & 0xffffffff))
|
|
break;
|
|
}
|
|
rw_runlock(&sc->sc_sessions_lock);
|
|
if (ses == NULL) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
/* Perform data authentication if requested before encryption. */
|
|
if (maccrd != NULL && maccrd->crd_next == enccrd) {
|
|
error = padlock_hash_process(ses, maccrd, crp);
|
|
if (error != 0)
|
|
goto out;
|
|
}
|
|
|
|
error = padlock_cipher_process(ses, enccrd, crp);
|
|
if (error != 0)
|
|
goto out;
|
|
|
|
/* Perform data authentication if requested after encryption. */
|
|
if (maccrd != NULL && enccrd->crd_next == maccrd) {
|
|
error = padlock_hash_process(ses, maccrd, crp);
|
|
if (error != 0)
|
|
goto out;
|
|
}
|
|
|
|
out:
|
|
#if 0
|
|
/*
|
|
* This code is not necessary, because contexts will be freed on next
|
|
* padlock_setup_mackey() call or at padlock_freesession() call.
|
|
*/
|
|
if (ses != NULL && maccrd != NULL &&
|
|
(maccrd->crd_flags & CRD_F_KEY_EXPLICIT) != 0) {
|
|
padlock_free_ctx(ses->ses_axf, ses->ses_ictx);
|
|
padlock_free_ctx(ses->ses_axf, ses->ses_octx);
|
|
}
|
|
#endif
|
|
crp->crp_etype = error;
|
|
crypto_done(crp);
|
|
return (error);
|
|
}
|
|
|
|
static device_method_t padlock_methods[] = {
|
|
DEVMETHOD(device_identify, padlock_identify),
|
|
DEVMETHOD(device_probe, padlock_probe),
|
|
DEVMETHOD(device_attach, padlock_attach),
|
|
DEVMETHOD(device_detach, padlock_detach),
|
|
|
|
DEVMETHOD(cryptodev_newsession, padlock_newsession),
|
|
DEVMETHOD(cryptodev_freesession,padlock_freesession),
|
|
DEVMETHOD(cryptodev_process, padlock_process),
|
|
|
|
{0, 0},
|
|
};
|
|
|
|
static driver_t padlock_driver = {
|
|
"padlock",
|
|
padlock_methods,
|
|
sizeof(struct padlock_softc),
|
|
};
|
|
static devclass_t padlock_devclass;
|
|
|
|
/* XXX where to attach */
|
|
DRIVER_MODULE(padlock, nexus, padlock_driver, padlock_devclass, 0, 0);
|
|
MODULE_VERSION(padlock, 1);
|
|
MODULE_DEPEND(padlock, crypto, 1, 1, 1);
|