########################################################################1# Implement fast SHA-512 with AVX instructions. (x86_64)2#3# Copyright (C) 2013 Intel Corporation.4#5# Authors:6# James Guilford <[email protected]>7# Kirk Yap <[email protected]>8# David Cote <[email protected]>9# Tim Chen <[email protected]>10#11# This software is available to you under a choice of one of two12# licenses. You may choose to be licensed under the terms of the GNU13# General Public License (GPL) Version 2, available from the file14# COPYING in the main directory of this source tree, or the15# OpenIB.org BSD license below:16#17# Redistribution and use in source and binary forms, with or18# without modification, are permitted provided that the following19# conditions are met:20#21# - Redistributions of source code must retain the above22# copyright notice, this list of conditions and the following23# disclaimer.24#25# - Redistributions in binary form must reproduce the above26# copyright notice, this list of conditions and the following27# disclaimer in the documentation and/or other materials28# provided with the distribution.29#30# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,31# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF32# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND33# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS34# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN35# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN36# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE37# SOFTWARE.38#39########################################################################40#41# This code is described in an Intel White-Paper:42# "Fast SHA-512 Implementations on Intel Architecture Processors"43#44# To find it, surf to http://www.intel.com/p/en_US/embedded45# and search for that title.46#47########################################################################4849#include <linux/linkage.h>5051.text5253# Virtual Registers54# ARG155digest = %rdi56# ARG257msg = %rsi58# ARG359msglen = %rdx60T1 = %rcx61T2 = %r862a_64 = %r963b_64 = %r1064c_64 = %r1165d_64 = %r1266e_64 = %r1367f_64 = %r1468g_64 = %r1569h_64 = %rbx70tmp0 = %rax7172# Local variables (stack frame)7374# Message Schedule75W_SIZE = 80*876# W[t] + K[t] | W[t+1] + K[t+1]77WK_SIZE = 2*87879frame_W = 080frame_WK = frame_W + W_SIZE81frame_size = frame_WK + WK_SIZE8283# Useful QWORD "arrays" for simpler memory references84# MSG, DIGEST, K_t, W_t are arrays85# WK_2(t) points to 1 of 2 qwords at frame.WK depending on t being odd/even8687# Input message (arg1)88#define MSG(i) 8*i(msg)8990# Output Digest (arg2)91#define DIGEST(i) 8*i(digest)9293# SHA Constants (static mem)94#define K_t(i) 8*i+K512(%rip)9596# Message Schedule (stack frame)97#define W_t(i) 8*i+frame_W(%rsp)9899# W[t]+K[t] (stack frame)100#define WK_2(i) 8*((i%2))+frame_WK(%rsp)101102.macro RotateState103# Rotate symbols a..h right104TMP = h_64105h_64 = g_64106g_64 = f_64107f_64 = e_64108e_64 = d_64109d_64 = c_64110c_64 = b_64111b_64 = a_64112a_64 = TMP113.endm114115.macro RORQ p1 p2116# shld is faster than ror on Sandybridge117shld $(64-\p2), \p1, \p1118.endm119120.macro SHA512_Round rnd121# Compute Round %%t122mov f_64, T1 # T1 = f123mov e_64, tmp0 # tmp = e124xor g_64, T1 # T1 = f ^ g125RORQ tmp0, 23 # 41 # tmp = e ror 23126and e_64, T1 # T1 = (f ^ g) & e127xor e_64, tmp0 # tmp = (e ror 23) ^ e128xor g_64, T1 # T1 = ((f ^ g) & e) ^ g = CH(e,f,g)129idx = \rnd130add WK_2(idx), T1 # W[t] + K[t] from message scheduler131RORQ tmp0, 4 # 18 # tmp = ((e ror 23) ^ e) ror 4132xor e_64, tmp0 # tmp = (((e ror 23) ^ e) ror 4) ^ e133mov a_64, T2 # T2 = a134add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h135RORQ tmp0, 14 # 14 # tmp = ((((e ror23)^e)ror4)^e)ror14 = S1(e)136add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)137mov a_64, tmp0 # tmp = a138xor c_64, T2 # T2 = a ^ c139and c_64, tmp0 # tmp = a & c140and b_64, T2 # T2 = (a ^ c) & b141xor tmp0, T2 # T2 = ((a ^ c) & b) ^ (a & c) = Maj(a,b,c)142mov a_64, tmp0 # tmp = a143RORQ tmp0, 5 # 39 # tmp = a ror 5144xor a_64, tmp0 # tmp = (a ror 5) ^ a145add T1, d_64 # e(next_state) = d + T1146RORQ tmp0, 6 # 34 # tmp = ((a ror 5) ^ a) ror 6147xor a_64, tmp0 # tmp = (((a ror 5) ^ a) ror 6) ^ a148lea (T1, T2), h_64 # a(next_state) = T1 + Maj(a,b,c)149RORQ tmp0, 28 # 28 # tmp = ((((a ror5)^a)ror6)^a)ror28 = S0(a)150add tmp0, h_64 # a(next_state) = T1 + Maj(a,b,c) S0(a)151RotateState152.endm153154.macro SHA512_2Sched_2Round_avx rnd155# Compute rounds t-2 and t-1156# Compute message schedule QWORDS t and t+1157158# Two rounds are computed based on the values for K[t-2]+W[t-2] and159# K[t-1]+W[t-1] which were previously stored at WK_2 by the message160# scheduler.161# The two new schedule QWORDS are stored at [W_t(t)] and [W_t(t+1)].162# They are then added to their respective SHA512 constants at163# [K_t(t)] and [K_t(t+1)] and stored at dqword [WK_2(t)]164# For brievity, the comments following vectored instructions only refer to165# the first of a pair of QWORDS.166# Eg. XMM4=W[t-2] really means XMM4={W[t-2]|W[t-1]}167# The computation of the message schedule and the rounds are tightly168# stitched to take advantage of instruction-level parallelism.169170idx = \rnd - 2171vmovdqa W_t(idx), %xmm4 # XMM4 = W[t-2]172idx = \rnd - 15173vmovdqu W_t(idx), %xmm5 # XMM5 = W[t-15]174mov f_64, T1175vpsrlq $61, %xmm4, %xmm0 # XMM0 = W[t-2]>>61176mov e_64, tmp0177vpsrlq $1, %xmm5, %xmm6 # XMM6 = W[t-15]>>1178xor g_64, T1179RORQ tmp0, 23 # 41180vpsrlq $19, %xmm4, %xmm1 # XMM1 = W[t-2]>>19181and e_64, T1182xor e_64, tmp0183vpxor %xmm1, %xmm0, %xmm0 # XMM0 = W[t-2]>>61 ^ W[t-2]>>19184xor g_64, T1185idx = \rnd186add WK_2(idx), T1#187vpsrlq $8, %xmm5, %xmm7 # XMM7 = W[t-15]>>8188RORQ tmp0, 4 # 18189vpsrlq $6, %xmm4, %xmm2 # XMM2 = W[t-2]>>6190xor e_64, tmp0191mov a_64, T2192add h_64, T1193vpxor %xmm7, %xmm6, %xmm6 # XMM6 = W[t-15]>>1 ^ W[t-15]>>8194RORQ tmp0, 14 # 14195add tmp0, T1196vpsrlq $7, %xmm5, %xmm8 # XMM8 = W[t-15]>>7197mov a_64, tmp0198xor c_64, T2199vpsllq $(64-61), %xmm4, %xmm3 # XMM3 = W[t-2]<<3200and c_64, tmp0201and b_64, T2202vpxor %xmm3, %xmm2, %xmm2 # XMM2 = W[t-2]>>6 ^ W[t-2]<<3203xor tmp0, T2204mov a_64, tmp0205vpsllq $(64-1), %xmm5, %xmm9 # XMM9 = W[t-15]<<63206RORQ tmp0, 5 # 39207vpxor %xmm9, %xmm8, %xmm8 # XMM8 = W[t-15]>>7 ^ W[t-15]<<63208xor a_64, tmp0209add T1, d_64210RORQ tmp0, 6 # 34211xor a_64, tmp0212vpxor %xmm8, %xmm6, %xmm6 # XMM6 = W[t-15]>>1 ^ W[t-15]>>8 ^213# W[t-15]>>7 ^ W[t-15]<<63214lea (T1, T2), h_64215RORQ tmp0, 28 # 28216vpsllq $(64-19), %xmm4, %xmm4 # XMM4 = W[t-2]<<25217add tmp0, h_64218RotateState219vpxor %xmm4, %xmm0, %xmm0 # XMM0 = W[t-2]>>61 ^ W[t-2]>>19 ^220# W[t-2]<<25221mov f_64, T1222vpxor %xmm2, %xmm0, %xmm0 # XMM0 = s1(W[t-2])223mov e_64, tmp0224xor g_64, T1225idx = \rnd - 16226vpaddq W_t(idx), %xmm0, %xmm0 # XMM0 = s1(W[t-2]) + W[t-16]227idx = \rnd - 7228vmovdqu W_t(idx), %xmm1 # XMM1 = W[t-7]229RORQ tmp0, 23 # 41230and e_64, T1231xor e_64, tmp0232xor g_64, T1233vpsllq $(64-8), %xmm5, %xmm5 # XMM5 = W[t-15]<<56234idx = \rnd + 1235add WK_2(idx), T1236vpxor %xmm5, %xmm6, %xmm6 # XMM6 = s0(W[t-15])237RORQ tmp0, 4 # 18238vpaddq %xmm6, %xmm0, %xmm0 # XMM0 = s1(W[t-2]) + W[t-16] + s0(W[t-15])239xor e_64, tmp0240vpaddq %xmm1, %xmm0, %xmm0 # XMM0 = W[t] = s1(W[t-2]) + W[t-7] +241# s0(W[t-15]) + W[t-16]242mov a_64, T2243add h_64, T1244RORQ tmp0, 14 # 14245add tmp0, T1246idx = \rnd247vmovdqa %xmm0, W_t(idx) # Store W[t]248vpaddq K_t(idx), %xmm0, %xmm0 # Compute W[t]+K[t]249vmovdqa %xmm0, WK_2(idx) # Store W[t]+K[t] for next rounds250mov a_64, tmp0251xor c_64, T2252and c_64, tmp0253and b_64, T2254xor tmp0, T2255mov a_64, tmp0256RORQ tmp0, 5 # 39257xor a_64, tmp0258add T1, d_64259RORQ tmp0, 6 # 34260xor a_64, tmp0261lea (T1, T2), h_64262RORQ tmp0, 28 # 28263add tmp0, h_64264RotateState265.endm266267########################################################################268# void sha512_transform_avx(struct sha512_block_state *state,269# const u8 *data, size_t nblocks);270# Purpose: Updates the SHA512 digest stored at "state" with the message271# stored in "data".272# The size of the message pointed to by "data" must be an integer multiple273# of SHA512 message blocks.274# "nblocks" is the message length in SHA512 blocks. Must be >= 1.275########################################################################276SYM_FUNC_START(sha512_transform_avx)277278# Save GPRs279push %rbx280push %r12281push %r13282push %r14283push %r15284285# Allocate Stack Space286push %rbp287mov %rsp, %rbp288sub $frame_size, %rsp289and $~(0x20 - 1), %rsp290291.Lupdateblock:292293# Load state variables294mov DIGEST(0), a_64295mov DIGEST(1), b_64296mov DIGEST(2), c_64297mov DIGEST(3), d_64298mov DIGEST(4), e_64299mov DIGEST(5), f_64300mov DIGEST(6), g_64301mov DIGEST(7), h_64302303t = 0304.rept 80/2 + 1305# (80 rounds) / (2 rounds/iteration) + (1 iteration)306# +1 iteration because the scheduler leads hashing by 1 iteration307.if t < 2308# BSWAP 2 QWORDS309vmovdqa XMM_QWORD_BSWAP(%rip), %xmm1310vmovdqu MSG(t), %xmm0311vpshufb %xmm1, %xmm0, %xmm0 # BSWAP312vmovdqa %xmm0, W_t(t) # Store Scheduled Pair313vpaddq K_t(t), %xmm0, %xmm0 # Compute W[t]+K[t]314vmovdqa %xmm0, WK_2(t) # Store into WK for rounds315.elseif t < 16316# BSWAP 2 QWORDS# Compute 2 Rounds317vmovdqu MSG(t), %xmm0318vpshufb %xmm1, %xmm0, %xmm0 # BSWAP319SHA512_Round t-2 # Round t-2320vmovdqa %xmm0, W_t(t) # Store Scheduled Pair321vpaddq K_t(t), %xmm0, %xmm0 # Compute W[t]+K[t]322SHA512_Round t-1 # Round t-1323vmovdqa %xmm0, WK_2(t)# Store W[t]+K[t] into WK324.elseif t < 79325# Schedule 2 QWORDS# Compute 2 Rounds326SHA512_2Sched_2Round_avx t327.else328# Compute 2 Rounds329SHA512_Round t-2330SHA512_Round t-1331.endif332t = t+2333.endr334335# Update digest336add a_64, DIGEST(0)337add b_64, DIGEST(1)338add c_64, DIGEST(2)339add d_64, DIGEST(3)340add e_64, DIGEST(4)341add f_64, DIGEST(5)342add g_64, DIGEST(6)343add h_64, DIGEST(7)344345# Advance to next message block346add $16*8, msg347dec msglen348jnz .Lupdateblock349350# Restore Stack Pointer351mov %rbp, %rsp352pop %rbp353354# Restore GPRs355pop %r15356pop %r14357pop %r13358pop %r12359pop %rbx360361RET362SYM_FUNC_END(sha512_transform_avx)363364########################################################################365### Binary Data366367.section .rodata.cst16.XMM_QWORD_BSWAP, "aM", @progbits, 16368.align 16369# Mask for byte-swapping a couple of qwords in an XMM register using (v)pshufb.370XMM_QWORD_BSWAP:371.octa 0x08090a0b0c0d0e0f0001020304050607372373# Mergeable 640-byte rodata section. This allows linker to merge the table374# with other, exactly the same 640-byte fragment of another rodata section375# (if such section exists).376.section .rodata.cst640.K512, "aM", @progbits, 640377.align 64378# K[t] used in SHA512 hashing379K512:380.quad 0x428a2f98d728ae22,0x7137449123ef65cd381.quad 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc382.quad 0x3956c25bf348b538,0x59f111f1b605d019383.quad 0x923f82a4af194f9b,0xab1c5ed5da6d8118384.quad 0xd807aa98a3030242,0x12835b0145706fbe385.quad 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2386.quad 0x72be5d74f27b896f,0x80deb1fe3b1696b1387.quad 0x9bdc06a725c71235,0xc19bf174cf692694388.quad 0xe49b69c19ef14ad2,0xefbe4786384f25e3389.quad 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c65390.quad 0x2de92c6f592b0275,0x4a7484aa6ea6e483391.quad 0x5cb0a9dcbd41fbd4,0x76f988da831153b5392.quad 0x983e5152ee66dfab,0xa831c66d2db43210393.quad 0xb00327c898fb213f,0xbf597fc7beef0ee4394.quad 0xc6e00bf33da88fc2,0xd5a79147930aa725395.quad 0x06ca6351e003826f,0x142929670a0e6e70396.quad 0x27b70a8546d22ffc,0x2e1b21385c26c926397.quad 0x4d2c6dfc5ac42aed,0x53380d139d95b3df398.quad 0x650a73548baf63de,0x766a0abb3c77b2a8399.quad 0x81c2c92e47edaee6,0x92722c851482353b400.quad 0xa2bfe8a14cf10364,0xa81a664bbc423001401.quad 0xc24b8b70d0f89791,0xc76c51a30654be30402.quad 0xd192e819d6ef5218,0xd69906245565a910403.quad 0xf40e35855771202a,0x106aa07032bbd1b8404.quad 0x19a4c116b8d2d0c8,0x1e376c085141ab53405.quad 0x2748774cdf8eeb99,0x34b0bcb5e19b48a8406.quad 0x391c0cb3c5c95a63,0x4ed8aa4ae3418acb407.quad 0x5b9cca4f7763e373,0x682e6ff3d6b2b8a3408.quad 0x748f82ee5defb2fc,0x78a5636f43172f60409.quad 0x84c87814a1f0ab72,0x8cc702081a6439ec410.quad 0x90befffa23631e28,0xa4506cebde82bde9411.quad 0xbef9a3f7b2c67915,0xc67178f2e372532b412.quad 0xca273eceea26619c,0xd186b8c721c0c207413.quad 0xeada7dd6cde0eb1e,0xf57d4f7fee6ed178414.quad 0x06f067aa72176fba,0x0a637dc5a2c898a6415.quad 0x113f9804bef90dae,0x1b710b35131c471b416.quad 0x28db77f523047d84,0x32caab7b40c72493417.quad 0x3c9ebe0a15c9bebc,0x431d67c49c100d4c418.quad 0x4cc5d4becb3e42b6,0x597f299cfc657e2a419.quad 0x5fcb6fab3ad6faec,0x6c44198c4a475817420421422