aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto
Commit message (Collapse)AuthorAgeFilesLines
* aesni(4): Initialize error before useConrad Meyer2016-04-201-0/+1
| | | | | | | | | Reported by: Coverity CID: 1331554 Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=298332
* Break up opencrypto/xform.c so it can be reused piecemealAllan Jude2015-12-301-1/+1
| | | | | | | | | | | | | | | | | Keep xform.c as a meta-file including the broken out bits existing code that includes xform.c continues to work as normal Individual algorithms can now be reused elsewhere, including outside of the kernel Reviewed by: bapt (previous version), gnn, delphij Approved by: secteam MFC after: 1 week Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D4674 Notes: svn path=/head/; revision=292963
* Replace sys/crypto/sha2/sha2.c with lib/libmd/sha512c.cAllan Jude2015-12-276-800/+581
| | | | | | | | | | | | | | | | | | | | | cperciva's libmd implementation is 5-30% faster The same was done for SHA256 previously in r263218 cperciva's implementation was lacking SHA-384 which I implemented, validated against OpenSSL and the NIST documentation Extend sbin/md5 to create sha384(1) Chase dependancies on sys/crypto/sha2/sha2.{c,h} and replace them with sha512{c.c,.h} Reviewed by: cperciva, des, delphij Approved by: secteam, bapt (mentor) MFC after: 2 weeks Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D3929 Notes: svn path=/head/; revision=292782
* const'ify an arg that we don't update...John-Mark Gurney2015-07-292-3/+3
| | | | Notes: svn path=/head/; revision=286049
* Complete the move that was started w/ r263218.. For some reason IJohn-Mark Gurney2015-07-112-0/+47
| | | | | | | | | | didn't delete the files, so that means we need to bring the changes in r282726 to the correct files.. make tinderbox completed with this patch... Notes: svn path=/head/; revision=285366
* upon further examination, it turns out that _unregister_all alreadyJohn-Mark Gurney2015-07-081-3/+0
| | | | | | | | | provides the guarantee that no threads will be in the _newsession code.. This is provided by the CRYPTODRIVER lock... This makes the pause unneeded... Notes: svn path=/head/; revision=285297
* address an issue where consumers, like IPsec, can reuse the sameJohn-Mark Gurney2015-07-082-26/+102
| | | | | | | | | | | | | | | | | | | | | | session in multiple threads w/o locking.. There was a single fpu context shared per session, if multiple threads were using the session, and both migrated away, they could corrupt each other's fpu context... This patch adds a per cpu context and a lock to protect it... It also tries to better address unloading of the aesni module... The pause will be removed once the OpenCrypto Framework provides a better method for draining callers into _newsession... I first discovered the fpu context sharing issue w/ a flood ping over an IPsec tunnel between two bhyve machines... The patch in D3015 was used to verify that this fix does fix the issue... Reviewed by: gnn, kib (both earlier versions) Differential Revision: https://reviews.freebsd.org/D3016 Notes: svn path=/head/; revision=285289
* unroll the loop slightly... This improves performance enough toJohn-Mark Gurney2015-07-071-5/+17
| | | | | | | | | | justify, especially for CBC performance where we can't pipeline.. I don't happen to have my measurements handy though... Sponsored by: Netflix, Inc. Notes: svn path=/head/; revision=285254
* Fix for non-random IV's when CRD_F_IV_PRESENT and CRD_F_IV_EXPLICITJohn-Mark Gurney2015-07-062-24/+25
| | | | | | | | | | | | flags are not specified... This bug was introduced in r275732... This only affects IPsec ESP only policies w/ the aesni module loaded, other subsystems specify one or both of the flags... Reviewed by: gnn, delphij, eri Notes: svn path=/head/; revision=285216
* remove _NORMAL flag which isn't suppose to be used w/ _alloc_ctx...John-Mark Gurney2015-07-061-2/+1
| | | | | | | Reviewed by: kib (a while ago) Notes: svn path=/head/; revision=285215
* In the version of gcc in the FreeBSD tree, this modification was made toCraig Rodrigues2015-04-163-0/+36
| | | | | | | | | | | | | | | | | | | | | | | the compiler in svn r242182: #if STDC_HOSTED #include <mm_malloc.h> #endif A similar change was done to clang in the FreeBSD tree in svn r218893: However, for external gcc toolchains, this patch is not in the compiler's header file. This patch to FreeBSD's aesni code allows compilation with an external gcc toolchain. Differential Revision: https://reviews.freebsd.org/D2285 Reviewed by: jmg, dim Approved by: dim Notes: svn path=/head/; revision=281606
* Add some new modes to OpenCrypto. These modes are AES-ICM (can be usedJohn-Mark Gurney2014-12-125-56/+1128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for counter mode), and AES-GCM. Both of these modes have been added to the aesni module. Included is a set of tests to validate that the software and aesni module calculate the correct values. These use the NIST KAT test vectors. To run the test, you will need to install a soon to be committed port, nist-kat that will install the vectors. Using a port is necessary as the test vectors are around 25MB. All the man pages were updated. I have added a new man page, crypto.7, which includes a description of how to use each mode. All the new modes and some other AES modes are present. It would be good for someone else to go through and document the other modes. A new ioctl was added to support AEAD modes which AES-GCM is one of them. Without this ioctl, it is not possible to test AEAD modes from userland. Add a timing safe bcmp for use to compare MACs. Previously we were using bcmp which could leak timing info and result in the ability to forge messages. Add a minor optimization to the aesni module so that single segment mbufs don't get copied and instead are updated in place. The aesni module needs to be updated to support blocked IO so segmented mbufs don't have to be copied. We require that the IV be specified for all calls for both GCM and ICM. This is to ensure proper use of these functions. Obtained from: p4: //depot/projects/opencrypto Relnotes: yes Sponsored by: FreeBSD Foundation Sponsored by: NetGate Notes: svn path=/head/; revision=275732
* Fix gcc build: preserve const qualifier when casting input values.Dag-Erling Smørgrav2014-11-111-4/+4
| | | | | | | | Noticed by: bz@ Submitted by: dim@ Notes: svn path=/head/; revision=274380
* Constify the AES code and propagate to consumers. This allows us toDag-Erling Smørgrav2014-11-102-14/+15
| | | | | | | | | update the Fortuna code to use SHAd-256 as defined in FS&K. Approved by: so (self) Notes: svn path=/head/; revision=274340
* Put the aesni_cipher_setup() and aesni_cipher_process() functions intoKonstantin Belousov2014-06-243-94/+95
| | | | | | | | | | | | | | the file which is compiled with SSE disabled. The functions set up the FPU context for kernel, and compiler optimizations which could lead to use of XMM registers before the fpu_kern_enter(9) is called or after fpu_kern_leave(9), panic the machine. Discussed with: jmg Sponsored by: The FreeBSD Foundation MFC after: 1 week Notes: svn path=/head/; revision=267815
* Add FPU_KERN_KTHR flag to fpu_kern_enter(9), which avoids saving FPUKonstantin Belousov2014-06-234-60/+28
| | | | | | | | | | | | | | | context into memory for the kernel threads which called fpu_kern_thread(9). This allows the fpu_kern_enter() callers to not check for is_fpu_kern_thread() to get the optimization. Apply the flag to padlock(4) and aesni(4). In aesni_cipher_process(), do not leak FPU context state on error. Sponsored by: The FreeBSD Foundation MFC after: 1 week Notes: svn path=/head/; revision=267767
* NO_MAN= has been deprecated in favor of MAN= for some time, go aheadWarner Losh2014-04-131-1/+1
| | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. Notes: svn path=/head/; revision=264400
* replace the kernel's version w/ cperciva's implementation... In allJohn-Mark Gurney2014-03-164-404/+15
| | | | | | | | | | | | | | | | | | | | my tests, it is faster ~20%, even on an old IXP425 533MHz it is ~45% faster... This is partly due to loop unrolling, so the code size does significantly increase... I do plan on committing a version that rolls up the loops again for smaller code size for embedded systems where size is more important than absolute performance (it'll save ~6k code)... The kernel implementation is now shared w/ userland's libcrypt and libmd... We drop support for sha256 from sha2.c, so now sha2.c only contains sha384 and sha512... Reviewed by: secteam@ Notes: svn path=/head/; revision=263218
* copy these files from lib/libmd in preperation for moving these filesJohn-Mark Gurney2014-03-162-0/+347
| | | | | | | into the kernel... Notes: svn path=/head/; revision=263215
* fix broken style(9) in r258399John-Mark Gurney2013-11-231-2/+2
| | | | | | | Pointed out by: brd Notes: svn path=/head/; revision=258492
* flag that the aesni driver is sync... This means we don't waste aJohn-Mark Gurney2013-11-201-1/+2
| | | | | | | | | | | context switch just to call the done callback... On my machine, this improves geli/gzero decrypt performance by ~27% from 550MB/sec to ~700MB/sec... MFC after: 3 days Notes: svn path=/head/; revision=258399
* make it so that from/to can be missaligned as it can happen (the geliJohn-Mark Gurney2013-11-063-67/+95
| | | | | | | | | | | | | | | | | | | | | | | | | regression manages to do it)... We use a packed struct to coerce gcc/clang into producing unaligned loads (there is not packed pointer attribute, otherwise this would be easier)... use _storeu_ and _loadu_ when using the structure is overkill... be better at using types properly... Since we allocate our own key schedule and make sure it's aligned, use the __m128i type in various arguments to functions... clang ignores __aligned on prototypes and gcc errors on them, leave them in comments to document that these function arguments are require to be aligned... about all that changes is movdqa -> movdqu from reading the diff of the disassembly output... Noticed by: symbolics at gmx.com MFC after: 3 days Notes: svn path=/head/; revision=257757
* Use the fact that the AES-NI instructions can be pipelined to improveJohn-Mark Gurney2013-09-037-422/+359
| | | | | | | | | | | | | | | | | | | | | | performance... Use SSE2 instructions for calculating the XTS tweek factor... Let the compiler do more work and handle register allocation by using intrinsics, now only the key schedule is in assembly... Replace .byte hard coded instructions w/ the proper instructions now that both clang and gcc support them... On my machine, pulling the code to userland I saw performance go from ~150MB/sec to 2GB/sec in XTS mode. GELI on GNOP saw a more modest increase of about 3x due to other system overhead (geom and opencrypto)... These changes allow almost full disk io rate w/ geli... Reviewed by: -current, -security Thanks to: Mike Hamburg for the XTS tweek algorithm Notes: svn path=/head/; revision=255187
* Fix const propagation issues to make GCC happy.Andre Oppermann2013-07-111-3/+4
| | | | | | | Submitted by: Michael Butler <imb@protected-networks.net> Notes: svn path=/head/; revision=253214
* SipHash is a cryptographically strong pseudo-random function (a.k.a. keyedAndre Oppermann2013-07-113-0/+464
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hash function) optimized for speed on short messages returning a 64bit hash/ digest value. SipHash is simpler and much faster than other secure MACs and competitive in speed with popular non-cryptographic hash functions. It uses a 128-bit key without the hidden cost of a key expansion step. SipHash iterates a simple round function consisting of four additions, four xors, and six rotations, interleaved with xors of message blocks for a pre-defined number of compression and finalization rounds. The absence of secret load/store addresses or secret branch conditions avoid timing attacks. No state is shared between messages. Hashing is deterministic and doesn't use nonces. It is not susceptible to length extension attacks. Target applications include network traffic authentication, message authentication (MAC) and hash-tables protection against hash-flooding denial-of-service attacks. The number of update/finalization rounds is defined during initialization: SipHash24_Init() for the fast and reasonable strong version. SipHash48_Init() for the strong version (half as fast). SipHash usage is similar to other hash functions: struct SIPHASH_CTX ctx; char *k = "16bytes long key" char *s = "string"; uint64_t h = 0; SipHash24_Init(&ctx); SipHash_SetKey(&ctx, k); SipHash_Update(&ctx, s, strlen(s)); SipHash_Final(&h, &ctx); /* or */ h = SipHash_End(&ctx); /* or */ h = SipHash24(&ctx, k, s, strlen(s)); It was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in the paper "SipHash: a fast short-input PRF", 2012.09.18: https://131002.net/siphash/siphash.pdf Permanent ID: b9a943a805fbfc6fde808af9fc0ecdfa Implemented by: andre (based on the paper) Reviewed by: cperciva Notes: svn path=/head/; revision=253208
* Sync with KAME.Xin LI2013-07-092-5/+4
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=253119
* Allow assert() to operate correctly when building userland code.Robert Millan2013-07-091-1/+3
| | | | Notes: svn path=/head/; revision=253090
* When porting XTS-related code from OpenBSD I forgot to update copyright (onlyPawel Jakub Dawidek2013-02-201-0/+1
| | | | | | | | | | OpenBSD was credited in one of two commits). Fix it. Reported by: Theo de Raadt <deraadt@cvs.openbsd.org> Reviewed by: Damien Miller <djm@mindrot.org> Notes: svn path=/head/; revision=247061
* Revert previous commit...Kevin Lo2012-10-101-1/+1
| | | | | | | Pointyhat to: kevlo (myself) Notes: svn path=/head/; revision=241394
* Prefer NULL over 0 for pointersKevin Lo2012-10-091-1/+1
| | | | Notes: svn path=/head/; revision=241370
* Add support for the extended FPU states on amd64, both for nativeKonstantin Belousov2012-01-217-14/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=230426
* Update Copyright.Pawel Jakub Dawidek2011-10-271-1/+1
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=226839
* Improve AES-NI performance for AES-XTS:Pawel Jakub Dawidek2011-10-271-26/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Operate on uint64_t types when doing XORing, etc. instead of uint8_t. - Don't bzero() temporary block for every AES block. Do it once for entire data block. - AES-NI is available only on little endian architectures. Simplify code that takes block number from IV. Benchmarks: Memory-backed md(4) device, software AES-XTS, 4kB sector: # dd if=/dev/md0.eli bs=1m 59.61MB/s Memory-backed md(4) device, old AES-NI AES-XTS, 4kB sector: # dd if=/dev/md0.eli bs=1m 97.29MB/s Memory-backed md(4) device, new AES-NI AES-XTS, 4kB sector: # dd if=/dev/md0.eli bs=1m 221.26MB/s 127% performance improvement between old and new code. Harddisk, raw speed: # dd if=/dev/ada0 bs=1m 137.63MB/s Harddisk, software AES-XTS, 4kB sector: # dd if=/dev/ada0.eli bs=1m 47.83MB/s (34% of raw disk speed) Harddisk, old AES-NI AES-XTS, 4kB sector: # dd if=/dev/ada0.eli bs=1m 68.33MB/s (49% of raw disk speed) Harddisk, new AES-NI AES-XTS, 4kB sector: # dd if=/dev/ada0.eli bs=1m 108.35MB/s (78% of raw disk speed) 58% performance improvement between old and new code. As a side-note, GELI with AES-NI using AES-CBC can achive native disk speed. MFC after: 3 days Notes: svn path=/head/; revision=226837
* Fix a bug in the result of manual assembly.Konstantin Belousov2011-03-022-2/+2
| | | | | | | | | Reported by: Stefan Grundmann <sg2342 googlemail com> PR: kern/155118 MFC after: 3 days Notes: svn path=/head/; revision=219178
* Make private functions static.Rebecca Cran2011-02-211-8/+8
| | | | | | | | | | PR: kern/43611 Submitted by: Matt Emmerton <matt at gsicomp.on.ca> Reviewed by: kib MFC after: 3 days Notes: svn path=/head/; revision=218918
* Remove DEBUG sections.Konstantin Belousov2010-11-271-24/+0
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=215942
* MFaesni r215427:Konstantin Belousov2010-11-263-9/+31
| | | | | | | | | | | Only save FPU context when not executing in the context of the crypto thread. Tested by: Mike Tancsa MFC after: 1 week Notes: svn path=/head/; revision=215864
* Only save FPU context when not executing in the context of the cryptoKonstantin Belousov2010-11-171-8/+22
| | | | | | | | | thread. Tested by: Mike Tancsa Notes: svn path=/head/; revision=215427
* Change two missed instances of 'retq' in aeskeys_i386.S to 'retl', whichDimitry Andric2010-10-131-2/+2
| | | | | | | | | makes it possible to assemble this file with gas from newer binutils. Reviewed by: kib Notes: svn path=/head/; revision=213797
* Fix two copy&paste bugs.Pawel Jakub Dawidek2010-09-251-2/+2
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=213166
* Add support for CRYPTO_AES_XTS.Pawel Jakub Dawidek2010-09-233-24/+151
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=213069
* Add support for CRD_F_KEY_EXPLICIT flag.Pawel Jakub Dawidek2010-09-231-16/+32
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=213066
* Simplify code a bit.Pawel Jakub Dawidek2010-09-232-10/+5
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=213064
* Crypto(4) driver for AESNI.Konstantin Belousov2010-07-237-0/+1464
| | | | | | | | | | | | The aeskeys_{amd64,i386}.S content was mostly obtained from OpenBSD, no objections to the license from core. Hardware provided by: Sentex Communications Tested by: fabient, pho (previous versions) MFC after: 1 month Notes: svn path=/head/; revision=210409
* Use the fpu_kern_enter() interface to properly separate usermode FPUKonstantin Belousov2010-06-054-3/+34
| | | | | | | | | | | | | | | | | context from in-kernel execution of padlock instructions and to handle spurious FPUDNA exceptions that sometime are raised when doing padlock calculations. Globally mark crypto(9) kthread as using FPU. Reviewed by: pjd Hardware provided by: Sentex Communications Tested by: pho PR: amd64/135014 MFC after: 1 month Notes: svn path=/head/; revision=208834
* Changed to M_NOWAIT when reallocing psc_buf in padlock_sha_update(),VANHULLEBUS Yvan2009-05-271-1/+3
| | | | | | | | | | | as we already hold the non sleepable crypto_driver_mutex. Approved by: gnn(mentor) Obtained from: NETASQ MFC after: 2 weeks Notes: svn path=/head/; revision=192883
* identify routine takes driver_t *, not device_t *.Warner Losh2009-02-051-1/+1
| | | | Notes: svn path=/head/; revision=188171
* Connect padlock(4) to amd64 build for VIA Nano processors.Jung-uk Kim2009-01-122-3/+3
| | | | Notes: svn path=/head/; revision=187112
* Avoid 256 integer divisions per rc4_init() call. Replace it with usingAlexander Motin2008-12-161-3/+5
| | | | | | | | | | | separate index variable. It gives more then double rc4_init() performance increase on tested i386 P4. It also gives about 15% speedup to PPTP VPN with stateless MPPE encryption (by ng_mppc) which calls rc4_init() for every packet. Notes: svn path=/head/; revision=186179
* Fix a potential NULL-pointer dereference in padlock(4).Philip Paeps2008-11-171-1/+5
| | | | | | | | Spotted by: Coverity (via pjd) MFC after: 1 week Notes: svn path=/head/; revision=185026