1 // SPDX-License-Identifier: GPL-2.0 OR MIT 2 /* 3 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. 4 */ 5 6 #include <crypto/algapi.h> 7 #include <crypto/internal/hash.h> 8 #include <crypto/internal/poly1305.h> 9 #include <crypto/internal/simd.h> 10 #include <linux/crypto.h> 11 #include <linux/jump_label.h> 12 #include <linux/kernel.h> 13 #include <linux/module.h> 14 #include <asm/intel-family.h> 15 #include <asm/simd.h> 16 17 asmlinkage void poly1305_init_x86_64(void *ctx, 18 const u8 key[POLY1305_KEY_SIZE]); 19 asmlinkage void poly1305_blocks_x86_64(void *ctx, const u8 *inp, 20 const size_t len, const u32 padbit); 21 asmlinkage void poly1305_emit_x86_64(void *ctx, u8 mac[POLY1305_DIGEST_SIZE], 22 const u32 nonce[4]); 23 asmlinkage void poly1305_emit_avx(void *ctx, u8 mac[POLY1305_DIGEST_SIZE], 24 const u32 nonce[4]); 25 asmlinkage void poly1305_blocks_avx(void *ctx, const u8 *inp, const size_t len, 26 const u32 padbit); 27 asmlinkage void poly1305_blocks_avx2(void *ctx, const u8 *inp, const size_t len, 28 const u32 padbit); 29 asmlinkage void poly1305_blocks_avx512(void *ctx, const u8 *inp, 30 const size_t len, const u32 padbit); 31 32 static __ro_after_init DEFINE_STATIC_KEY_FALSE(poly1305_use_avx); 33 static __ro_after_init DEFINE_STATIC_KEY_FALSE(poly1305_use_avx2); 34 static __ro_after_init DEFINE_STATIC_KEY_FALSE(poly1305_use_avx512); 35 36 struct poly1305_arch_internal { 37 union { 38 struct { 39 u32 h[5]; 40 u32 is_base2_26; 41 }; 42 u64 hs[3]; 43 }; 44 u64 r[2]; 45 u64 pad; 46 struct { u32 r2, r1, r4, r3; } rn[9]; 47 }; 48 49 /* The AVX code uses base 2^26, while the scalar code uses base 2^64. If we hit 50 * the unfortunate situation of using AVX and then having to go back to scalar 51 * -- because the user is silly and has called the update function from two 52 * separate contexts -- then we need to convert back to the original base before 53 * proceeding. It is possible to reason that the initial reduction below is 54 * sufficient given the implementation invariants. However, for an avoidance of 55 * doubt and because this is not performance critical, we do the full reduction 56 * anyway. Z3 proof of below function: https://xn--4db.cc/ltPtHCKN/py 57 */ 58 static void convert_to_base2_64(void *ctx) 59 { 60 struct poly1305_arch_internal *state = ctx; 61 u32 cy; 62 63 if (!state->is_base2_26) 64 return; 65 66 cy = state->h[0] >> 26; state->h[0] &= 0x3ffffff; state->h[1] += cy; 67 cy = state->h[1] >> 26; state->h[1] &= 0x3ffffff; state->h[2] += cy; 68 cy = state->h[2] >> 26; state->h[2] &= 0x3ffffff; state->h[3] += cy; 69 cy = state->h[3] >> 26; state->h[3] &= 0x3ffffff; state->h[4] += cy; 70 state->hs[0] = ((u64)state->h[2] << 52) | ((u64)state->h[1] << 26) | state->h[0]; 71 state->hs[1] = ((u64)state->h[4] << 40) | ((u64)state->h[3] << 14) | (state->h[2] >> 12); 72 state->hs[2] = state->h[4] >> 24; 73 #define ULT(a, b) ((a ^ ((a ^ b) | ((a - b) ^ b))) >> (sizeof(a) * 8 - 1)) 74 cy = (state->hs[2] >> 2) + (state->hs[2] & ~3ULL); 75 state->hs[2] &= 3; 76 state->hs[0] += cy; 77 state->hs[1] += (cy = ULT(state->hs[0], cy)); 78 state->hs[2] += ULT(state->hs[1], cy); 79 #undef ULT 80 state->is_base2_26 = 0; 81 } 82 83 static void poly1305_simd_init(void *ctx, const u8 key[POLY1305_KEY_SIZE]) 84 { 85 poly1305_init_x86_64(ctx, key); 86 } 87 88 static void poly1305_simd_blocks(void *ctx, const u8 *inp, size_t len, 89 const u32 padbit) 90 { 91 struct poly1305_arch_internal *state = ctx; 92 93 /* SIMD disables preemption, so relax after processing each page. */ 94 BUILD_BUG_ON(PAGE_SIZE < POLY1305_BLOCK_SIZE || 95 PAGE_SIZE % POLY1305_BLOCK_SIZE); 96 97 if (!IS_ENABLED(CONFIG_AS_AVX) || !static_branch_likely(&poly1305_use_avx) || 98 (len < (POLY1305_BLOCK_SIZE * 18) && !state->is_base2_26) || 99 !crypto_simd_usable()) { 100 convert_to_base2_64(ctx); 101 poly1305_blocks_x86_64(ctx, inp, len, padbit); 102 return; 103 } 104 105 for (;;) { 106 const size_t bytes = min_t(size_t, len, PAGE_SIZE); 107 108 kernel_fpu_begin(); 109 if (IS_ENABLED(CONFIG_AS_AVX512) && static_branch_likely(&poly1305_use_avx512)) 110 poly1305_blocks_avx512(ctx, inp, bytes, padbit); 111 else if (IS_ENABLED(CONFIG_AS_AVX2) && static_branch_likely(&poly1305_use_avx2)) 112 poly1305_blocks_avx2(ctx, inp, bytes, padbit); 113 else 114 poly1305_blocks_avx(ctx, inp, bytes, padbit); 115 kernel_fpu_end(); 116 len -= bytes; 117 if (!len) 118 break; 119 inp += bytes; 120 } 121 } 122 123 static void poly1305_simd_emit(void *ctx, u8 mac[POLY1305_DIGEST_SIZE], 124 const u32 nonce[4]) 125 { 126 struct poly1305_arch_internal *state = ctx; 127 128 if (!IS_ENABLED(CONFIG_AS_AVX) || !static_branch_likely(&poly1305_use_avx) || 129 !state->is_base2_26 || !crypto_simd_usable()) { 130 convert_to_base2_64(ctx); 131 poly1305_emit_x86_64(ctx, mac, nonce); 132 } else 133 poly1305_emit_avx(ctx, mac, nonce); 134 } 135 136 void poly1305_init_arch(struct poly1305_desc_ctx *dctx, const u8 *key) 137 { 138 poly1305_simd_init(&dctx->h, key); 139 dctx->s[0] = get_unaligned_le32(&key[16]); 140 dctx->s[1] = get_unaligned_le32(&key[20]); 141 dctx->s[2] = get_unaligned_le32(&key[24]); 142 dctx->s[3] = get_unaligned_le32(&key[28]); 143 dctx->buflen = 0; 144 dctx->sset = true; 145 } 146 EXPORT_SYMBOL(poly1305_init_arch); 147 148 static unsigned int crypto_poly1305_setdctxkey(struct poly1305_desc_ctx *dctx, 149 const u8 *inp, unsigned int len) 150 { 151 unsigned int acc = 0; 152 if (unlikely(!dctx->sset)) { 153 if (!dctx->rset && len >= POLY1305_BLOCK_SIZE) { 154 poly1305_simd_init(&dctx->h, inp); 155 inp += POLY1305_BLOCK_SIZE; 156 len -= POLY1305_BLOCK_SIZE; 157 acc += POLY1305_BLOCK_SIZE; 158 dctx->rset = 1; 159 } 160 if (len >= POLY1305_BLOCK_SIZE) { 161 dctx->s[0] = get_unaligned_le32(&inp[0]); 162 dctx->s[1] = get_unaligned_le32(&inp[4]); 163 dctx->s[2] = get_unaligned_le32(&inp[8]); 164 dctx->s[3] = get_unaligned_le32(&inp[12]); 165 inp += POLY1305_BLOCK_SIZE; 166 len -= POLY1305_BLOCK_SIZE; 167 acc += POLY1305_BLOCK_SIZE; 168 dctx->sset = true; 169 } 170 } 171 return acc; 172 } 173 174 void poly1305_update_arch(struct poly1305_desc_ctx *dctx, const u8 *src, 175 unsigned int srclen) 176 { 177 unsigned int bytes, used; 178 179 if (unlikely(dctx->buflen)) { 180 bytes = min(srclen, POLY1305_BLOCK_SIZE - dctx->buflen); 181 memcpy(dctx->buf + dctx->buflen, src, bytes); 182 src += bytes; 183 srclen -= bytes; 184 dctx->buflen += bytes; 185 186 if (dctx->buflen == POLY1305_BLOCK_SIZE) { 187 if (likely(!crypto_poly1305_setdctxkey(dctx, dctx->buf, POLY1305_BLOCK_SIZE))) 188 poly1305_simd_blocks(&dctx->h, dctx->buf, POLY1305_BLOCK_SIZE, 1); 189 dctx->buflen = 0; 190 } 191 } 192 193 if (likely(srclen >= POLY1305_BLOCK_SIZE)) { 194 bytes = round_down(srclen, POLY1305_BLOCK_SIZE); 195 srclen -= bytes; 196 used = crypto_poly1305_setdctxkey(dctx, src, bytes); 197 if (likely(bytes - used)) 198 poly1305_simd_blocks(&dctx->h, src + used, bytes - used, 1); 199 src += bytes; 200 } 201 202 if (unlikely(srclen)) { 203 dctx->buflen = srclen; 204 memcpy(dctx->buf, src, srclen); 205 } 206 } 207 EXPORT_SYMBOL(poly1305_update_arch); 208 209 void poly1305_final_arch(struct poly1305_desc_ctx *dctx, u8 *dst) 210 { 211 if (unlikely(dctx->buflen)) { 212 dctx->buf[dctx->buflen++] = 1; 213 memset(dctx->buf + dctx->buflen, 0, 214 POLY1305_BLOCK_SIZE - dctx->buflen); 215 poly1305_simd_blocks(&dctx->h, dctx->buf, POLY1305_BLOCK_SIZE, 0); 216 } 217 218 poly1305_simd_emit(&dctx->h, dst, dctx->s); 219 *dctx = (struct poly1305_desc_ctx){}; 220 } 221 EXPORT_SYMBOL(poly1305_final_arch); 222 223 static int crypto_poly1305_init(struct shash_desc *desc) 224 { 225 struct poly1305_desc_ctx *dctx = shash_desc_ctx(desc); 226 227 *dctx = (struct poly1305_desc_ctx){}; 228 return 0; 229 } 230 231 static int crypto_poly1305_update(struct shash_desc *desc, 232 const u8 *src, unsigned int srclen) 233 { 234 struct poly1305_desc_ctx *dctx = shash_desc_ctx(desc); 235 236 poly1305_update_arch(dctx, src, srclen); 237 return 0; 238 } 239 240 static int crypto_poly1305_final(struct shash_desc *desc, u8 *dst) 241 { 242 struct poly1305_desc_ctx *dctx = shash_desc_ctx(desc); 243 244 if (unlikely(!dctx->sset)) 245 return -ENOKEY; 246 247 poly1305_final_arch(dctx, dst); 248 return 0; 249 } 250 251 static struct shash_alg alg = { 252 .digestsize = POLY1305_DIGEST_SIZE, 253 .init = crypto_poly1305_init, 254 .update = crypto_poly1305_update, 255 .final = crypto_poly1305_final, 256 .descsize = sizeof(struct poly1305_desc_ctx), 257 .base = { 258 .cra_name = "poly1305", 259 .cra_driver_name = "poly1305-simd", 260 .cra_priority = 300, 261 .cra_blocksize = POLY1305_BLOCK_SIZE, 262 .cra_module = THIS_MODULE, 263 }, 264 }; 265 266 static int __init poly1305_simd_mod_init(void) 267 { 268 if (IS_ENABLED(CONFIG_AS_AVX) && boot_cpu_has(X86_FEATURE_AVX) && 269 cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM, NULL)) 270 static_branch_enable(&poly1305_use_avx); 271 if (IS_ENABLED(CONFIG_AS_AVX2) && boot_cpu_has(X86_FEATURE_AVX) && 272 boot_cpu_has(X86_FEATURE_AVX2) && 273 cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM, NULL)) 274 static_branch_enable(&poly1305_use_avx2); 275 if (IS_ENABLED(CONFIG_AS_AVX512) && boot_cpu_has(X86_FEATURE_AVX) && 276 boot_cpu_has(X86_FEATURE_AVX2) && boot_cpu_has(X86_FEATURE_AVX512F) && 277 cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM | XFEATURE_MASK_AVX512, NULL) && 278 /* Skylake downclocks unacceptably much when using zmm, but later generations are fast. */ 279 boot_cpu_data.x86_model != INTEL_FAM6_SKYLAKE_X) 280 static_branch_enable(&poly1305_use_avx512); 281 return IS_REACHABLE(CONFIG_CRYPTO_HASH) ? crypto_register_shash(&alg) : 0; 282 } 283 284 static void __exit poly1305_simd_mod_exit(void) 285 { 286 if (IS_REACHABLE(CONFIG_CRYPTO_HASH)) 287 crypto_unregister_shash(&alg); 288 } 289 290 module_init(poly1305_simd_mod_init); 291 module_exit(poly1305_simd_mod_exit); 292 293 MODULE_LICENSE("GPL"); 294 MODULE_AUTHOR("Jason A. Donenfeld <Jason@zx2c4.com>"); 295 MODULE_DESCRIPTION("Poly1305 authenticator"); 296 MODULE_ALIAS_CRYPTO("poly1305"); 297 MODULE_ALIAS_CRYPTO("poly1305-simd"); 298