2005-08-18 00:30:22 +00:00
|
|
|
/*-
|
2008-08-09 19:48:59 +00:00
|
|
|
* Copyright (c) 2005-2008 Pawel Jakub Dawidek <pjd@FreeBSD.org>
|
2005-08-18 00:30:22 +00:00
|
|
|
* 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.
|
2006-07-25 19:04:26 +00:00
|
|
|
*
|
2005-08-18 00:30:22 +00:00
|
|
|
* 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>
|
2008-07-20 07:34:00 +00:00
|
|
|
#include <sys/rwlock.h>
|
2005-08-18 00:30:22 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/libkern.h>
|
2017-01-28 02:22:15 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2005-08-18 00:30:22 +00:00
|
|
|
#include <machine/cpufunc.h>
|
|
|
|
#include <machine/cputypes.h>
|
2006-07-13 09:15:14 +00:00
|
|
|
#include <machine/md_var.h>
|
|
|
|
#include <machine/specialreg.h>
|
2005-08-18 00:30:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <opencrypto/cryptodev.h>
|
2006-07-22 16:18:47 +00:00
|
|
|
|
|
|
|
#include <crypto/via/padlock.h>
|
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
#include <sys/kobj.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include "cryptodev_if.h"
|
|
|
|
|
2006-07-22 16:18:47 +00:00
|
|
|
/*
|
|
|
|
* Technical documentation about the PadLock engine can be found here:
|
|
|
|
*
|
|
|
|
* http://www.via.com.tw/en/downloads/whitepapers/initiatives/padlock/programming_guide.pdf
|
|
|
|
*/
|
2005-08-18 00:30:22 +00:00
|
|
|
|
|
|
|
struct padlock_softc {
|
|
|
|
int32_t sc_cid;
|
|
|
|
};
|
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
static int padlock_newsession(device_t, crypto_session_t cses, struct cryptoini *cri);
|
|
|
|
static void padlock_freesession(device_t, crypto_session_t cses);
|
2008-08-09 19:48:59 +00:00
|
|
|
static void padlock_freesession_one(struct padlock_softc *sc,
|
2018-07-18 00:56:25 +00:00
|
|
|
struct padlock_session *ses);
|
2007-03-21 03:42:51 +00:00
|
|
|
static int padlock_process(device_t, struct cryptop *crp, int hint __unused);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2006-07-22 16:18:47 +00:00
|
|
|
MALLOC_DEFINE(M_PADLOCK, "padlock_data", "PadLock Data");
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
static void
|
2009-02-05 19:30:28 +00:00
|
|
|
padlock_identify(driver_t *drv, device_t parent)
|
2007-03-21 03:42:51 +00:00
|
|
|
{
|
|
|
|
/* 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");
|
|
|
|
}
|
|
|
|
|
2005-08-18 00:30:22 +00:00
|
|
|
static int
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_probe(device_t dev)
|
2005-08-18 00:30:22 +00:00
|
|
|
{
|
2006-07-22 16:18:47 +00:00
|
|
|
char capp[256];
|
|
|
|
|
2017-01-28 02:22:15 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2006-07-22 16:18:47 +00:00
|
|
|
/* If there is no AES support, we has nothing to do here. */
|
2006-07-13 09:15:14 +00:00
|
|
|
if (!(via_feature_xcrypt & VIA_HAS_AES)) {
|
2007-03-21 03:42:51 +00:00
|
|
|
device_printf(dev, "No ACE support.\n");
|
2005-08-18 00:30:22 +00:00
|
|
|
return (EINVAL);
|
2006-07-22 16:18:47 +00:00
|
|
|
}
|
|
|
|
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
|
2007-03-21 03:42:51 +00:00
|
|
|
device_set_desc_copy(dev, capp);
|
|
|
|
return (0);
|
2005-08-18 00:30:22 +00:00
|
|
|
#else
|
|
|
|
return (EINVAL);
|
|
|
|
#endif
|
2007-03-21 03:42:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
padlock_attach(device_t dev)
|
|
|
|
{
|
|
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
sc->sc_cid = crypto_get_driverid(dev, sizeof(struct padlock_session),
|
|
|
|
CRYPTOCAP_F_HARDWARE);
|
2005-08-18 00:30:22 +00:00
|
|
|
if (sc->sc_cid < 0) {
|
2007-03-21 03:42:51 +00:00
|
|
|
device_printf(dev, "Could not get crypto driver id.\n");
|
2005-08-18 00:30:22 +00:00
|
|
|
return (ENOMEM);
|
2006-07-28 14:48:30 +00:00
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
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);
|
2005-08-18 00:30:22 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_detach(device_t dev)
|
2005-08-18 00:30:22 +00:00
|
|
|
{
|
2007-03-21 03:42:51 +00:00
|
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
|
|
|
crypto_unregister_all(sc->sc_cid);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-07-18 00:56:25 +00:00
|
|
|
padlock_newsession(device_t dev, crypto_session_t cses, struct cryptoini *cri)
|
2005-08-18 00:30:22 +00:00
|
|
|
{
|
2007-03-21 03:42:51 +00:00
|
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
2005-08-18 00:30:22 +00:00
|
|
|
struct padlock_session *ses = NULL;
|
2006-06-05 16:22:04 +00:00
|
|
|
struct cryptoini *encini, *macini;
|
2010-06-05 16:00:53 +00:00
|
|
|
struct thread *td;
|
2014-06-23 07:37:54 +00:00
|
|
|
int error;
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
if (cri == NULL)
|
2005-08-18 00:30:22 +00:00
|
|
|
return (EINVAL);
|
2006-06-05 16:22:04 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2006-06-05 16:22:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We only support HMAC algorithms to be able to work with
|
2007-07-03 12:13:45 +00:00
|
|
|
* ipsec(4), so if we are asked only for authentication without
|
2006-06-05 16:22:04 +00:00
|
|
|
* encryption, don't pretend we can accellerate it.
|
|
|
|
*/
|
|
|
|
if (encini == NULL)
|
|
|
|
return (EINVAL);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
ses = crypto_get_driver_session(cses);
|
|
|
|
ses->ses_fpu_ctx = fpu_kern_alloc_ctx(FPU_KERN_NORMAL);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2006-07-22 16:18:47 +00:00
|
|
|
error = padlock_cipher_setup(ses, encini);
|
|
|
|
if (error != 0) {
|
2018-07-18 00:56:25 +00:00
|
|
|
padlock_freesession_one(sc, ses);
|
2006-07-22 16:18:47 +00:00
|
|
|
return (error);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
|
2006-06-05 16:22:04 +00:00
|
|
|
if (macini != NULL) {
|
2010-06-05 16:00:53 +00:00
|
|
|
td = curthread;
|
2018-02-23 20:15:19 +00:00
|
|
|
fpu_kern_enter(td, ses->ses_fpu_ctx, FPU_KERN_NORMAL |
|
2014-06-23 07:37:54 +00:00
|
|
|
FPU_KERN_KTHR);
|
2018-02-23 20:15:19 +00:00
|
|
|
error = padlock_hash_setup(ses, macini);
|
|
|
|
fpu_kern_leave(td, ses->ses_fpu_ctx);
|
2006-07-22 16:18:47 +00:00
|
|
|
if (error != 0) {
|
2018-07-18 00:56:25 +00:00
|
|
|
padlock_freesession_one(sc, ses);
|
2006-07-22 16:18:47 +00:00
|
|
|
return (error);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2008-08-09 19:48:59 +00:00
|
|
|
static void
|
2018-07-18 00:56:25 +00:00
|
|
|
padlock_freesession_one(struct padlock_softc *sc, struct padlock_session *ses)
|
2008-08-09 19:48:59 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
padlock_hash_free(ses);
|
2018-07-18 00:56:25 +00:00
|
|
|
fpu_kern_free_ctx(ses->ses_fpu_ctx);
|
2008-08-09 19:48:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
static void
|
|
|
|
padlock_freesession(device_t dev, crypto_session_t cses)
|
2005-08-18 00:30:22 +00:00
|
|
|
{
|
2007-03-21 03:42:51 +00:00
|
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
2005-08-18 00:30:22 +00:00
|
|
|
struct padlock_session *ses;
|
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
ses = crypto_get_driver_session(cses);
|
|
|
|
padlock_freesession_one(sc, ses);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_process(device_t dev, struct cryptop *crp, int hint __unused)
|
2005-08-18 00:30:22 +00:00
|
|
|
{
|
2006-07-22 16:18:47 +00:00
|
|
|
struct padlock_session *ses = NULL;
|
2006-06-05 16:22:04 +00:00
|
|
|
struct cryptodesc *crd, *enccrd, *maccrd;
|
|
|
|
int error = 0;
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2006-06-08 17:40:02 +00:00
|
|
|
enccrd = maccrd = NULL;
|
|
|
|
|
2008-11-17 19:00:36 +00:00
|
|
|
/* Sanity check. */
|
|
|
|
if (crp == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (crp->crp_callback == NULL || crp->crp_desc == NULL) {
|
2006-06-05 16:22:04 +00:00
|
|
|
error = EINVAL;
|
2005-08-18 00:30:22 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2006-06-05 16:22:04 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2006-06-05 16:22:04 +00:00
|
|
|
if (enccrd == NULL || (enccrd->crd_len % AES_BLOCK_LEN) != 0) {
|
|
|
|
error = EINVAL;
|
2006-04-20 06:31:44 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2018-07-18 00:56:25 +00:00
|
|
|
ses = crypto_get_driver_session(crp->crp_session);
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2006-06-05 16:22:04 +00:00
|
|
|
/* Perform data authentication if requested before encryption. */
|
|
|
|
if (maccrd != NULL && maccrd->crd_next == enccrd) {
|
2006-07-22 16:18:47 +00:00
|
|
|
error = padlock_hash_process(ses, maccrd, crp);
|
2006-06-05 16:22:04 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
|
2006-07-22 16:18:47 +00:00
|
|
|
error = padlock_cipher_process(ses, enccrd, crp);
|
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
2006-06-05 16:22:04 +00:00
|
|
|
|
|
|
|
/* Perform data authentication if requested after encryption. */
|
|
|
|
if (maccrd != NULL && enccrd->crd_next == maccrd) {
|
2006-07-22 16:18:47 +00:00
|
|
|
error = padlock_hash_process(ses, maccrd, crp);
|
2006-06-05 16:22:04 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2006-07-22 16:18:47 +00:00
|
|
|
#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);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2006-07-22 16:18:47 +00:00
|
|
|
#endif
|
2006-06-05 16:22:04 +00:00
|
|
|
crp->crp_etype = error;
|
2005-08-18 00:30:22 +00:00
|
|
|
crypto_done(crp);
|
2006-06-05 16:22:04 +00:00
|
|
|
return (error);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
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),
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
DEVMETHOD(cryptodev_newsession, padlock_newsession),
|
|
|
|
DEVMETHOD(cryptodev_freesession,padlock_freesession),
|
|
|
|
DEVMETHOD(cryptodev_process, padlock_process),
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
{0, 0},
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t padlock_driver = {
|
2005-08-18 00:30:22 +00:00
|
|
|
"padlock",
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_methods,
|
|
|
|
sizeof(struct padlock_softc),
|
2005-08-18 00:30:22 +00:00
|
|
|
};
|
2007-03-21 03:42:51 +00:00
|
|
|
static devclass_t padlock_devclass;
|
|
|
|
|
|
|
|
/* XXX where to attach */
|
|
|
|
DRIVER_MODULE(padlock, nexus, padlock_driver, padlock_devclass, 0, 0);
|
2005-08-18 00:30:22 +00:00
|
|
|
MODULE_VERSION(padlock, 1);
|
|
|
|
MODULE_DEPEND(padlock, crypto, 1, 1, 1);
|