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>
|
2009-01-12 19:23:46 +00:00
|
|
|
#if defined(__amd64__) || (defined(__i386__) && !defined(PC98))
|
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;
|
|
|
|
uint32_t sc_sid;
|
2008-08-09 19:42:37 +00:00
|
|
|
TAILQ_HEAD(padlock_sessions_head, padlock_session) sc_sessions;
|
2008-07-20 07:34:00 +00:00
|
|
|
struct rwlock sc_sessions_lock;
|
2005-08-18 00:30:22 +00:00
|
|
|
};
|
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
static int padlock_newsession(device_t, uint32_t *sidp, struct cryptoini *cri);
|
|
|
|
static int padlock_freesession(device_t, uint64_t tid);
|
2008-08-09 19:48:59 +00:00
|
|
|
static void padlock_freesession_one(struct padlock_softc *sc,
|
|
|
|
struct padlock_session *ses, int locked);
|
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];
|
|
|
|
|
2009-01-12 19:23:46 +00:00
|
|
|
#if defined(__amd64__) || (defined(__i386__) && !defined(PC98))
|
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
|
|
|
|
|
|
|
TAILQ_INIT(&sc->sc_sessions);
|
|
|
|
sc->sc_sid = 1;
|
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
sc->sc_cid = crypto_get_driverid(dev, 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
|
|
|
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_init(&sc->sc_sessions_lock, "padlock_lock");
|
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
|
|
|
struct padlock_session *ses;
|
|
|
|
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
TAILQ_FOREACH(ses, &sc->sc_sessions, ses_next) {
|
2007-03-21 03:42:51 +00:00
|
|
|
if (ses->ses_used) {
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
2007-03-21 03:42:51 +00:00
|
|
|
device_printf(dev,
|
|
|
|
"Cannot detach, sessions still active.\n");
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2008-08-09 19:47:19 +00:00
|
|
|
while ((ses = TAILQ_FIRST(&sc->sc_sessions)) != NULL) {
|
2005-08-18 00:30:22 +00:00
|
|
|
TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next);
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
fpu_kern_free_ctx(ses->ses_fpu_ctx);
|
2006-07-22 16:18:47 +00:00
|
|
|
free(ses, M_PADLOCK);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_destroy(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
crypto_unregister_all(sc->sc_cid);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_newsession(device_t dev, uint32_t *sidp, 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;
|
2010-11-26 14:35:20 +00:00
|
|
|
int error, saved_ctx;
|
2005-08-18 00:30:22 +00:00
|
|
|
|
2007-03-21 03:42:51 +00:00
|
|
|
if (sidp == NULL || 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
|
|
|
|
|
|
|
/*
|
|
|
|
* Let's look for a free session structure.
|
|
|
|
*/
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
/*
|
|
|
|
* Free sessions goes first, so if first session is used, we need to
|
|
|
|
* allocate one.
|
|
|
|
*/
|
|
|
|
ses = TAILQ_FIRST(&sc->sc_sessions);
|
2008-08-09 20:01:01 +00:00
|
|
|
if (ses == NULL || ses->ses_used) {
|
2006-07-22 16:18:47 +00:00
|
|
|
ses = malloc(sizeof(*ses), M_PADLOCK, M_NOWAIT | M_ZERO);
|
2008-08-09 19:45:43 +00:00
|
|
|
if (ses == NULL) {
|
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
return (ENOMEM);
|
2008-08-09 19:45:43 +00:00
|
|
|
}
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
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);
|
|
|
|
}
|
2005-08-18 00:30:22 +00:00
|
|
|
ses->ses_id = sc->sc_sid++;
|
2008-08-09 20:01:01 +00:00
|
|
|
} else {
|
|
|
|
TAILQ_REMOVE(&sc->sc_sessions, ses, ses_next);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
2008-08-09 20:01:01 +00:00
|
|
|
ses->ses_used = 1;
|
|
|
|
TAILQ_INSERT_TAIL(&sc->sc_sessions, ses, ses_next);
|
2008-08-09 19:45:43 +00:00
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
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) {
|
2008-08-09 19:48:59 +00:00
|
|
|
padlock_freesession_one(sc, ses, 0);
|
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;
|
2010-11-26 14:35:20 +00:00
|
|
|
if (!is_fpu_kern_thread(0)) {
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
error = fpu_kern_enter(td, ses->ses_fpu_ctx,
|
2010-11-26 14:35:20 +00:00
|
|
|
FPU_KERN_NORMAL);
|
|
|
|
saved_ctx = 1;
|
|
|
|
} else {
|
|
|
|
error = 0;
|
|
|
|
saved_ctx = 0;
|
|
|
|
}
|
2010-06-05 16:00:53 +00:00
|
|
|
if (error == 0) {
|
|
|
|
error = padlock_hash_setup(ses, macini);
|
2010-11-26 14:35:20 +00:00
|
|
|
if (saved_ctx)
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
fpu_kern_leave(td, ses->ses_fpu_ctx);
|
2010-06-05 16:00:53 +00:00
|
|
|
}
|
2006-07-22 16:18:47 +00:00
|
|
|
if (error != 0) {
|
2008-08-09 19:48:59 +00:00
|
|
|
padlock_freesession_one(sc, ses, 0);
|
2006-07-22 16:18:47 +00:00
|
|
|
return (error);
|
2005-08-18 00:30:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*sidp = ses->ses_id;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2008-08-09 19:48:59 +00:00
|
|
|
static void
|
|
|
|
padlock_freesession_one(struct padlock_softc *sc, struct padlock_session *ses,
|
|
|
|
int locked)
|
|
|
|
{
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
struct fpu_kern_ctx *ctx;
|
2008-08-09 19:48:59 +00:00
|
|
|
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);
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
ctx = ses->ses_fpu_ctx;
|
2008-08-09 19:48:59 +00:00
|
|
|
bzero(ses, sizeof(*ses));
|
|
|
|
ses->ses_used = 0;
|
|
|
|
ses->ses_id = sid;
|
Add support for the extended FPU states on amd64, both for native
64bit and 32bit ABIs. As a side-effect, it enables AVX on capable
CPUs.
In particular:
- Query the CPU support for XSAVE, list of the supported extensions
and the required size of FPU save area. The hw.use_xsave tunable is
provided for disabling XSAVE, and hw.xsave_mask may be used to
select the enabled extensions.
- Remove the FPU save area from PCB and dynamically allocate the
(run-time sized) user save area on the top of the kernel stack,
right above the PCB. Reorganize the thread0 PCB initialization to
postpone it after BSP is queried for save area size.
- The dumppcb, stoppcbs and susppcbs now do not carry the FPU state as
well. FPU state is only useful for suspend, where it is saved in
dynamically allocated suspfpusave area.
- Use XSAVE and XRSTOR to save/restore FPU state, if supported and
enabled.
- Define new mcontext_t flag _MC_HASFPXSTATE, indicating that
mcontext_t has a valid pointer to out-of-struct extended FPU
state. Signal handlers are supplied with stack-allocated fpu
state. The sigreturn(2) and setcontext(2) syscall honour the flag,
allowing the signal handlers to inspect and manipilate extended
state in the interrupted context.
- The getcontext(2) never returns extended state, since there is no
place in the fixed-sized mcontext_t to place variable-sized save
area. And, since mcontext_t is embedded into ucontext_t, makes it
impossible to fix in a reasonable way. Instead of extending
getcontext(2) syscall, provide a sysarch(2) facility to query
extended FPU state.
- Add ptrace(2) support for getting and setting extended state; while
there, implement missed PT_I386_{GET,SET}XMMREGS for 32bit binaries.
- Change fpu_kern KPI to not expose struct fpu_kern_ctx layout to
consumers, making it opaque. Internally, struct fpu_kern_ctx now
contains a space for the extended state. Convert in-kernel consumers
of fpu_kern KPI both on i386 and amd64.
First version of the support for AVX was submitted by Tim Bird
<tim.bird am sony com> on behalf of Sony. This version was written
from scratch.
Tested by: pho (previous version), Yamagi Burmeister <lists yamagi org>
MFC after: 1 month
2012-01-21 17:45:27 +00:00
|
|
|
ses->ses_fpu_ctx = ctx;
|
2008-08-09 19:48:59 +00:00
|
|
|
TAILQ_INSERT_HEAD(&sc->sc_sessions, ses, ses_next);
|
|
|
|
if (!locked)
|
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
|
|
|
}
|
|
|
|
|
2005-08-18 00:30:22 +00:00
|
|
|
static int
|
2007-03-21 03:42:51 +00:00
|
|
|
padlock_freesession(device_t dev, uint64_t tid)
|
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;
|
|
|
|
uint32_t sid = ((uint32_t)tid) & 0xffffffff;
|
|
|
|
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wlock(&sc->sc_sessions_lock);
|
2008-08-09 19:42:37 +00:00
|
|
|
TAILQ_FOREACH_REVERSE(ses, &sc->sc_sessions, padlock_sessions_head,
|
|
|
|
ses_next) {
|
2005-08-18 00:30:22 +00:00
|
|
|
if (ses->ses_id == sid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ses == NULL) {
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
return (EINVAL);
|
|
|
|
}
|
2008-08-09 19:48:59 +00:00
|
|
|
padlock_freesession_one(sc, ses, 1);
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_wunlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2007-03-21 03:42:51 +00:00
|
|
|
struct padlock_softc *sc = device_get_softc(dev);
|
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
|
|
|
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_rlock(&sc->sc_sessions_lock);
|
2008-08-09 19:42:37 +00:00
|
|
|
TAILQ_FOREACH_REVERSE(ses, &sc->sc_sessions, padlock_sessions_head,
|
|
|
|
ses_next) {
|
2005-08-18 00:30:22 +00:00
|
|
|
if (ses->ses_id == (crp->crp_sid & 0xffffffff))
|
|
|
|
break;
|
|
|
|
}
|
2008-07-20 07:34:00 +00:00
|
|
|
rw_runlock(&sc->sc_sessions_lock);
|
2005-08-18 00:30:22 +00:00
|
|
|
if (ses == 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
|
|
|
/* 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);
|