########################################################################1# Implement fast SHA-512 with SSSE3 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)7374W_SIZE = 80*875WK_SIZE = 2*87677frame_W = 078frame_WK = frame_W + W_SIZE79frame_size = frame_WK + WK_SIZE8081# Useful QWORD "arrays" for simpler memory references82# MSG, DIGEST, K_t, W_t are arrays83# WK_2(t) points to 1 of 2 qwords at frame.WK depending on t being odd/even8485# Input message (arg1)86#define MSG(i) 8*i(msg)8788# Output Digest (arg2)89#define DIGEST(i) 8*i(digest)9091# SHA Constants (static mem)92#define K_t(i) 8*i+K512(%rip)9394# Message Schedule (stack frame)95#define W_t(i) 8*i+frame_W(%rsp)9697# W[t]+K[t] (stack frame)98#define WK_2(i) 8*((i%2))+frame_WK(%rsp)99100.macro RotateState101# Rotate symbols a..h right102TMP = h_64103h_64 = g_64104g_64 = f_64105f_64 = e_64106e_64 = d_64107d_64 = c_64108c_64 = b_64109b_64 = a_64110a_64 = TMP111.endm112113.macro SHA512_Round rnd114115# Compute Round %%t116mov f_64, T1 # T1 = f117mov e_64, tmp0 # tmp = e118xor g_64, T1 # T1 = f ^ g119ror $23, tmp0 # 41 # tmp = e ror 23120and e_64, T1 # T1 = (f ^ g) & e121xor e_64, tmp0 # tmp = (e ror 23) ^ e122xor g_64, T1 # T1 = ((f ^ g) & e) ^ g = CH(e,f,g)123idx = \rnd124add WK_2(idx), T1 # W[t] + K[t] from message scheduler125ror $4, tmp0 # 18 # tmp = ((e ror 23) ^ e) ror 4126xor e_64, tmp0 # tmp = (((e ror 23) ^ e) ror 4) ^ e127mov a_64, T2 # T2 = a128add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h129ror $14, tmp0 # 14 # tmp = ((((e ror23)^e)ror4)^e)ror14 = S1(e)130add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)131mov a_64, tmp0 # tmp = a132xor c_64, T2 # T2 = a ^ c133and c_64, tmp0 # tmp = a & c134and b_64, T2 # T2 = (a ^ c) & b135xor tmp0, T2 # T2 = ((a ^ c) & b) ^ (a & c) = Maj(a,b,c)136mov a_64, tmp0 # tmp = a137ror $5, tmp0 # 39 # tmp = a ror 5138xor a_64, tmp0 # tmp = (a ror 5) ^ a139add T1, d_64 # e(next_state) = d + T1140ror $6, tmp0 # 34 # tmp = ((a ror 5) ^ a) ror 6141xor a_64, tmp0 # tmp = (((a ror 5) ^ a) ror 6) ^ a142lea (T1, T2), h_64 # a(next_state) = T1 + Maj(a,b,c)143ror $28, tmp0 # 28 # tmp = ((((a ror5)^a)ror6)^a)ror28 = S0(a)144add tmp0, h_64 # a(next_state) = T1 + Maj(a,b,c) S0(a)145RotateState146.endm147148.macro SHA512_2Sched_2Round_sse rnd149150# Compute rounds t-2 and t-1151# Compute message schedule QWORDS t and t+1152153# Two rounds are computed based on the values for K[t-2]+W[t-2] and154# K[t-1]+W[t-1] which were previously stored at WK_2 by the message155# scheduler.156# The two new schedule QWORDS are stored at [W_t(%%t)] and [W_t(%%t+1)].157# They are then added to their respective SHA512 constants at158# [K_t(%%t)] and [K_t(%%t+1)] and stored at dqword [WK_2(%%t)]159# For brievity, the comments following vectored instructions only refer to160# the first of a pair of QWORDS.161# Eg. XMM2=W[t-2] really means XMM2={W[t-2]|W[t-1]}162# The computation of the message schedule and the rounds are tightly163# stitched to take advantage of instruction-level parallelism.164# For clarity, integer instructions (for the rounds calculation) are indented165# by one tab. Vectored instructions (for the message scheduler) are indented166# by two tabs.167168mov f_64, T1169idx = \rnd -2170movdqa W_t(idx), %xmm2 # XMM2 = W[t-2]171xor g_64, T1172and e_64, T1173movdqa %xmm2, %xmm0 # XMM0 = W[t-2]174xor g_64, T1175idx = \rnd176add WK_2(idx), T1177idx = \rnd - 15178movdqu W_t(idx), %xmm5 # XMM5 = W[t-15]179mov e_64, tmp0180ror $23, tmp0 # 41181movdqa %xmm5, %xmm3 # XMM3 = W[t-15]182xor e_64, tmp0183ror $4, tmp0 # 18184psrlq $61-19, %xmm0 # XMM0 = W[t-2] >> 42185xor e_64, tmp0186ror $14, tmp0 # 14187psrlq $(8-7), %xmm3 # XMM3 = W[t-15] >> 1188add tmp0, T1189add h_64, T1190pxor %xmm2, %xmm0 # XMM0 = (W[t-2] >> 42) ^ W[t-2]191mov a_64, T2192xor c_64, T2193pxor %xmm5, %xmm3 # XMM3 = (W[t-15] >> 1) ^ W[t-15]194and b_64, T2195mov a_64, tmp0196psrlq $(19-6), %xmm0 # XMM0 = ((W[t-2]>>42)^W[t-2])>>13197and c_64, tmp0198xor tmp0, T2199psrlq $(7-1), %xmm3 # XMM3 = ((W[t-15]>>1)^W[t-15])>>6200mov a_64, tmp0201ror $5, tmp0 # 39202pxor %xmm2, %xmm0 # XMM0 = (((W[t-2]>>42)^W[t-2])>>13)^W[t-2]203xor a_64, tmp0204ror $6, tmp0 # 34205pxor %xmm5, %xmm3 # XMM3 = (((W[t-15]>>1)^W[t-15])>>6)^W[t-15]206xor a_64, tmp0207ror $28, tmp0 # 28208psrlq $6, %xmm0 # XMM0 = ((((W[t-2]>>42)^W[t-2])>>13)^W[t-2])>>6209add tmp0, T2210add T1, d_64211psrlq $1, %xmm3 # XMM3 = (((W[t-15]>>1)^W[t-15])>>6)^W[t-15]>>1212lea (T1, T2), h_64213RotateState214movdqa %xmm2, %xmm1 # XMM1 = W[t-2]215mov f_64, T1216xor g_64, T1217movdqa %xmm5, %xmm4 # XMM4 = W[t-15]218and e_64, T1219xor g_64, T1220psllq $(64-19)-(64-61) , %xmm1 # XMM1 = W[t-2] << 42221idx = \rnd + 1222add WK_2(idx), T1223mov e_64, tmp0224psllq $(64-1)-(64-8), %xmm4 # XMM4 = W[t-15] << 7225ror $23, tmp0 # 41226xor e_64, tmp0227pxor %xmm2, %xmm1 # XMM1 = (W[t-2] << 42)^W[t-2]228ror $4, tmp0 # 18229xor e_64, tmp0230pxor %xmm5, %xmm4 # XMM4 = (W[t-15]<<7)^W[t-15]231ror $14, tmp0 # 14232add tmp0, T1233psllq $(64-61), %xmm1 # XMM1 = ((W[t-2] << 42)^W[t-2])<<3234add h_64, T1235mov a_64, T2236psllq $(64-8), %xmm4 # XMM4 = ((W[t-15]<<7)^W[t-15])<<56237xor c_64, T2238and b_64, T2239pxor %xmm1, %xmm0 # XMM0 = s1(W[t-2])240mov a_64, tmp0241and c_64, tmp0242idx = \rnd - 7243movdqu W_t(idx), %xmm1 # XMM1 = W[t-7]244xor tmp0, T2245pxor %xmm4, %xmm3 # XMM3 = s0(W[t-15])246mov a_64, tmp0247paddq %xmm3, %xmm0 # XMM0 = s1(W[t-2]) + s0(W[t-15])248ror $5, tmp0 # 39249idx =\rnd-16250paddq W_t(idx), %xmm0 # XMM0 = s1(W[t-2]) + s0(W[t-15]) + W[t-16]251xor a_64, tmp0252paddq %xmm1, %xmm0 # XMM0 = s1(W[t-2]) + W[t-7] + s0(W[t-15]) + W[t-16]253ror $6, tmp0 # 34254movdqa %xmm0, W_t(\rnd) # Store scheduled qwords255xor a_64, tmp0256paddq K_t(\rnd), %xmm0 # Compute W[t]+K[t]257ror $28, tmp0 # 28258idx = \rnd259movdqa %xmm0, WK_2(idx) # Store W[t]+K[t] for next rounds260add tmp0, T2261add T1, d_64262lea (T1, T2), h_64263RotateState264.endm265266########################################################################267# void sha512_transform_ssse3(struct sha512_block_state *state,268# const u8 *data, size_t nblocks);269# Purpose: Updates the SHA512 digest stored at "state" with the message270# stored in "data".271# The size of the message pointed to by "data" must be an integer multiple272# of SHA512 message blocks.273# "nblocks" is the message length in SHA512 blocks. Must be >= 1.274########################################################################275SYM_FUNC_START(sha512_transform_ssse3)276277# Save GPRs278push %rbx279push %r12280push %r13281push %r14282push %r15283284# Allocate Stack Space285push %rbp286mov %rsp, %rbp287sub $frame_size, %rsp288and $~(0x20 - 1), %rsp289290.Lupdateblock:291292# Load state variables293mov DIGEST(0), a_64294mov DIGEST(1), b_64295mov DIGEST(2), c_64296mov DIGEST(3), d_64297mov DIGEST(4), e_64298mov DIGEST(5), f_64299mov DIGEST(6), g_64300mov DIGEST(7), h_64301302t = 0303.rept 80/2 + 1304# (80 rounds) / (2 rounds/iteration) + (1 iteration)305# +1 iteration because the scheduler leads hashing by 1 iteration306.if t < 2307# BSWAP 2 QWORDS308movdqa XMM_QWORD_BSWAP(%rip), %xmm1309movdqu MSG(t), %xmm0310pshufb %xmm1, %xmm0 # BSWAP311movdqa %xmm0, W_t(t) # Store Scheduled Pair312paddq K_t(t), %xmm0 # Compute W[t]+K[t]313movdqa %xmm0, WK_2(t) # Store into WK for rounds314.elseif t < 16315# BSWAP 2 QWORDS# Compute 2 Rounds316movdqu MSG(t), %xmm0317pshufb %xmm1, %xmm0 # BSWAP318SHA512_Round t-2 # Round t-2319movdqa %xmm0, W_t(t) # Store Scheduled Pair320paddq K_t(t), %xmm0 # Compute W[t]+K[t]321SHA512_Round t-1 # Round t-1322movdqa %xmm0, WK_2(t) # Store W[t]+K[t] into WK323.elseif t < 79324# Schedule 2 QWORDS# Compute 2 Rounds325SHA512_2Sched_2Round_sse t326.else327# Compute 2 Rounds328SHA512_Round t-2329SHA512_Round t-1330.endif331t = t+2332.endr333334# Update digest335add a_64, DIGEST(0)336add b_64, DIGEST(1)337add c_64, DIGEST(2)338add d_64, DIGEST(3)339add e_64, DIGEST(4)340add f_64, DIGEST(5)341add g_64, DIGEST(6)342add h_64, DIGEST(7)343344# Advance to next message block345add $16*8, msg346dec msglen347jnz .Lupdateblock348349# Restore Stack Pointer350mov %rbp, %rsp351pop %rbp352353# Restore GPRs354pop %r15355pop %r14356pop %r13357pop %r12358pop %rbx359360RET361SYM_FUNC_END(sha512_transform_ssse3)362363########################################################################364### Binary Data365366.section .rodata.cst16.XMM_QWORD_BSWAP, "aM", @progbits, 16367.align 16368# Mask for byte-swapping a couple of qwords in an XMM register using (v)pshufb.369XMM_QWORD_BSWAP:370.octa 0x08090a0b0c0d0e0f0001020304050607371372# Mergeable 640-byte rodata section. This allows linker to merge the table373# with other, exactly the same 640-byte fragment of another rodata section374# (if such section exists).375.section .rodata.cst640.K512, "aM", @progbits, 640376.align 64377# K[t] used in SHA512 hashing378K512:379.quad 0x428a2f98d728ae22,0x7137449123ef65cd380.quad 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc381.quad 0x3956c25bf348b538,0x59f111f1b605d019382.quad 0x923f82a4af194f9b,0xab1c5ed5da6d8118383.quad 0xd807aa98a3030242,0x12835b0145706fbe384.quad 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2385.quad 0x72be5d74f27b896f,0x80deb1fe3b1696b1386.quad 0x9bdc06a725c71235,0xc19bf174cf692694387.quad 0xe49b69c19ef14ad2,0xefbe4786384f25e3388.quad 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c65389.quad 0x2de92c6f592b0275,0x4a7484aa6ea6e483390.quad 0x5cb0a9dcbd41fbd4,0x76f988da831153b5391.quad 0x983e5152ee66dfab,0xa831c66d2db43210392.quad 0xb00327c898fb213f,0xbf597fc7beef0ee4393.quad 0xc6e00bf33da88fc2,0xd5a79147930aa725394.quad 0x06ca6351e003826f,0x142929670a0e6e70395.quad 0x27b70a8546d22ffc,0x2e1b21385c26c926396.quad 0x4d2c6dfc5ac42aed,0x53380d139d95b3df397.quad 0x650a73548baf63de,0x766a0abb3c77b2a8398.quad 0x81c2c92e47edaee6,0x92722c851482353b399.quad 0xa2bfe8a14cf10364,0xa81a664bbc423001400.quad 0xc24b8b70d0f89791,0xc76c51a30654be30401.quad 0xd192e819d6ef5218,0xd69906245565a910402.quad 0xf40e35855771202a,0x106aa07032bbd1b8403.quad 0x19a4c116b8d2d0c8,0x1e376c085141ab53404.quad 0x2748774cdf8eeb99,0x34b0bcb5e19b48a8405.quad 0x391c0cb3c5c95a63,0x4ed8aa4ae3418acb406.quad 0x5b9cca4f7763e373,0x682e6ff3d6b2b8a3407.quad 0x748f82ee5defb2fc,0x78a5636f43172f60408.quad 0x84c87814a1f0ab72,0x8cc702081a6439ec409.quad 0x90befffa23631e28,0xa4506cebde82bde9410.quad 0xbef9a3f7b2c67915,0xc67178f2e372532b411.quad 0xca273eceea26619c,0xd186b8c721c0c207412.quad 0xeada7dd6cde0eb1e,0xf57d4f7fee6ed178413.quad 0x06f067aa72176fba,0x0a637dc5a2c898a6414.quad 0x113f9804bef90dae,0x1b710b35131c471b415.quad 0x28db77f523047d84,0x32caab7b40c72493416.quad 0x3c9ebe0a15c9bebc,0x431d67c49c100d4c417.quad 0x4cc5d4becb3e42b6,0x597f299cfc657e2a418.quad 0x5fcb6fab3ad6faec,0x6c44198c4a475817419420421