1 1.1 riastrad /* $NetBSD: chacha_sse2_impl.c,v 1.1 2020/07/25 22:49:20 riastradh Exp $ */ 2 1.1 riastrad 3 1.1 riastrad /*- 4 1.1 riastrad * Copyright (c) 2020 The NetBSD Foundation, Inc. 5 1.1 riastrad * All rights reserved. 6 1.1 riastrad * 7 1.1 riastrad * Redistribution and use in source and binary forms, with or without 8 1.1 riastrad * modification, are permitted provided that the following conditions 9 1.1 riastrad * are met: 10 1.1 riastrad * 1. Redistributions of source code must retain the above copyright 11 1.1 riastrad * notice, this list of conditions and the following disclaimer. 12 1.1 riastrad * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 riastrad * notice, this list of conditions and the following disclaimer in the 14 1.1 riastrad * documentation and/or other materials provided with the distribution. 15 1.1 riastrad * 16 1.1 riastrad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 17 1.1 riastrad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18 1.1 riastrad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 1.1 riastrad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 20 1.1 riastrad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 1.1 riastrad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 1.1 riastrad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 1.1 riastrad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 1.1 riastrad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 1.1 riastrad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 1.1 riastrad * POSSIBILITY OF SUCH DAMAGE. 27 1.1 riastrad */ 28 1.1 riastrad 29 1.1 riastrad #include <sys/cdefs.h> 30 1.1 riastrad __KERNEL_RCSID(1, "$NetBSD: chacha_sse2_impl.c,v 1.1 2020/07/25 22:49:20 riastradh Exp $"); 31 1.1 riastrad 32 1.1 riastrad #include "chacha_sse2.h" 33 1.1 riastrad 34 1.1 riastrad #ifdef _KERNEL 35 1.1 riastrad #include <x86/cpu.h> 36 1.1 riastrad #include <x86/fpu.h> 37 1.1 riastrad #else 38 1.1 riastrad #include <sys/sysctl.h> 39 1.1 riastrad #include <cpuid.h> 40 1.1 riastrad #include <stddef.h> 41 1.1 riastrad #define fpu_kern_enter() ((void)0) 42 1.1 riastrad #define fpu_kern_leave() ((void)0) 43 1.1 riastrad #endif 44 1.1 riastrad 45 1.1 riastrad static void 46 1.1 riastrad chacha_core_sse2_impl(uint8_t out[restrict static 64], 47 1.1 riastrad const uint8_t in[static 16], 48 1.1 riastrad const uint8_t k[static 32], 49 1.1 riastrad const uint8_t c[static 16], 50 1.1 riastrad unsigned nr) 51 1.1 riastrad { 52 1.1 riastrad 53 1.1 riastrad fpu_kern_enter(); 54 1.1 riastrad chacha_core_sse2(out, in, k, c, nr); 55 1.1 riastrad fpu_kern_leave(); 56 1.1 riastrad } 57 1.1 riastrad 58 1.1 riastrad static void 59 1.1 riastrad hchacha_sse2_impl(uint8_t out[restrict static 32], 60 1.1 riastrad const uint8_t in[static 16], 61 1.1 riastrad const uint8_t k[static 32], 62 1.1 riastrad const uint8_t c[static 16], 63 1.1 riastrad unsigned nr) 64 1.1 riastrad { 65 1.1 riastrad 66 1.1 riastrad fpu_kern_enter(); 67 1.1 riastrad hchacha_sse2(out, in, k, c, nr); 68 1.1 riastrad fpu_kern_leave(); 69 1.1 riastrad } 70 1.1 riastrad 71 1.1 riastrad static void 72 1.1 riastrad chacha_stream_sse2_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, 73 1.1 riastrad const uint8_t nonce[static 12], 74 1.1 riastrad const uint8_t key[static 32], 75 1.1 riastrad unsigned nr) 76 1.1 riastrad { 77 1.1 riastrad 78 1.1 riastrad fpu_kern_enter(); 79 1.1 riastrad chacha_stream_sse2(s, nbytes, blkno, nonce, key, nr); 80 1.1 riastrad fpu_kern_leave(); 81 1.1 riastrad } 82 1.1 riastrad 83 1.1 riastrad static void 84 1.1 riastrad chacha_stream_xor_sse2_impl(uint8_t *c, const uint8_t *p, size_t nbytes, 85 1.1 riastrad uint32_t blkno, 86 1.1 riastrad const uint8_t nonce[static 12], 87 1.1 riastrad const uint8_t key[static 32], 88 1.1 riastrad unsigned nr) 89 1.1 riastrad { 90 1.1 riastrad 91 1.1 riastrad fpu_kern_enter(); 92 1.1 riastrad chacha_stream_xor_sse2(c, p, nbytes, blkno, nonce, key, nr); 93 1.1 riastrad fpu_kern_leave(); 94 1.1 riastrad } 95 1.1 riastrad 96 1.1 riastrad static void 97 1.1 riastrad xchacha_stream_sse2_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, 98 1.1 riastrad const uint8_t nonce[static 24], 99 1.1 riastrad const uint8_t key[static 32], 100 1.1 riastrad unsigned nr) 101 1.1 riastrad { 102 1.1 riastrad 103 1.1 riastrad fpu_kern_enter(); 104 1.1 riastrad xchacha_stream_sse2(s, nbytes, blkno, nonce, key, nr); 105 1.1 riastrad fpu_kern_leave(); 106 1.1 riastrad } 107 1.1 riastrad 108 1.1 riastrad static void 109 1.1 riastrad xchacha_stream_xor_sse2_impl(uint8_t *c, const uint8_t *p, size_t nbytes, 110 1.1 riastrad uint32_t blkno, 111 1.1 riastrad const uint8_t nonce[static 24], 112 1.1 riastrad const uint8_t key[static 32], 113 1.1 riastrad unsigned nr) 114 1.1 riastrad { 115 1.1 riastrad 116 1.1 riastrad fpu_kern_enter(); 117 1.1 riastrad xchacha_stream_xor_sse2(c, p, nbytes, blkno, nonce, key, nr); 118 1.1 riastrad fpu_kern_leave(); 119 1.1 riastrad } 120 1.1 riastrad 121 1.1 riastrad static int 122 1.1 riastrad chacha_probe_sse2(void) 123 1.1 riastrad { 124 1.1 riastrad 125 1.1 riastrad /* Verify that the CPU supports SSE and SSE2. */ 126 1.1 riastrad #ifdef _KERNEL 127 1.1 riastrad if (!i386_has_sse) 128 1.1 riastrad return -1; 129 1.1 riastrad if (!i386_has_sse2) 130 1.1 riastrad return -1; 131 1.1 riastrad #else 132 1.1 riastrad unsigned eax, ebx, ecx, edx; 133 1.1 riastrad if (!__get_cpuid(1, &eax, &ebx, &ecx, &edx)) 134 1.1 riastrad return -1; 135 1.1 riastrad if ((edx & bit_SSE) == 0) 136 1.1 riastrad return -1; 137 1.1 riastrad if ((edx & bit_SSE2) == 0) 138 1.1 riastrad return -1; 139 1.1 riastrad #endif 140 1.1 riastrad 141 1.1 riastrad return 0; 142 1.1 riastrad } 143 1.1 riastrad 144 1.1 riastrad const struct chacha_impl chacha_sse2_impl = { 145 1.1 riastrad .ci_name = "x86 SSE2 ChaCha", 146 1.1 riastrad .ci_probe = chacha_probe_sse2, 147 1.1 riastrad .ci_chacha_core = chacha_core_sse2_impl, 148 1.1 riastrad .ci_hchacha = hchacha_sse2_impl, 149 1.1 riastrad .ci_chacha_stream = chacha_stream_sse2_impl, 150 1.1 riastrad .ci_chacha_stream_xor = chacha_stream_xor_sse2_impl, 151 1.1 riastrad .ci_xchacha_stream = xchacha_stream_sse2_impl, 152 1.1 riastrad .ci_xchacha_stream_xor = xchacha_stream_xor_sse2_impl, 153 1.1 riastrad }; 154