2010-09-10 16:50:17 +02:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
# ====================================================================
|
|
|
|
# Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
|
|
|
|
# project. The module is, however, dual licensed under OpenSSL and
|
|
|
|
# CRYPTOGAMS licenses depending on where you obtain it. For further
|
|
|
|
# details see http://www.openssl.org/~appro/cryptogams/.
|
|
|
|
# ====================================================================
|
|
|
|
|
|
|
|
# September 2010.
|
2010-09-21 13:37:00 +02:00
|
|
|
#
|
|
|
|
# The module implements "4-bit" GCM GHASH function and underlying
|
|
|
|
# single multiplication operation in GF(2^128). "4-bit" means that it
|
|
|
|
# uses 256 bytes per-key table [+128 bytes shared table]. Performance
|
|
|
|
# was measured to be ~18 cycles per processed byte on z10, which is
|
|
|
|
# almost 40% better than gcc-generated code. It should be noted that
|
|
|
|
# 18 cycles is worse result than expected: loop is scheduled for 12
|
|
|
|
# and the result should be close to 12. In the lack of instruction-
|
|
|
|
# level profiling data it's impossible to tell why...
|
2010-09-10 16:50:17 +02:00
|
|
|
|
|
|
|
while (($output=shift) && ($output!~/^\w[\w\-]*\.\w+$/)) {}
|
|
|
|
open STDOUT,">$output";
|
|
|
|
|
2010-09-21 13:37:00 +02:00
|
|
|
$softonly=1; # disable hardware support for now
|
|
|
|
|
2010-09-10 16:50:17 +02:00
|
|
|
$Zhi="%r0";
|
|
|
|
$Zlo="%r1";
|
|
|
|
|
|
|
|
$Xi="%r2"; # argument block
|
|
|
|
$Htbl="%r3";
|
|
|
|
$inp="%r4";
|
|
|
|
$len="%r5";
|
|
|
|
|
|
|
|
$rem0="%r6"; # variables
|
|
|
|
$rem1="%r7";
|
|
|
|
$nlo="%r8";
|
|
|
|
$nhi="%r9";
|
|
|
|
$xi="%r10";
|
|
|
|
$cnt="%r11";
|
|
|
|
$tmp="%r12";
|
|
|
|
$x78="%r13";
|
|
|
|
$rem_4bit="%r14";
|
|
|
|
|
|
|
|
$sp="%r15";
|
|
|
|
|
|
|
|
$code.=<<___;
|
|
|
|
.text
|
|
|
|
|
|
|
|
.globl gcm_gmult_4bit
|
|
|
|
.align 32
|
|
|
|
gcm_gmult_4bit:
|
2010-09-21 13:37:00 +02:00
|
|
|
___
|
|
|
|
$code.=<<___ if(!$softonly);
|
|
|
|
larl %r1,OPENSSL_s390xcap_P
|
|
|
|
lg %r0,0(%r1)
|
|
|
|
tmhl %r0,0x4000 # check for message-security-assist
|
|
|
|
jz .Lsoft_gmult
|
|
|
|
lghi %r0,0
|
|
|
|
la %r1,16($sp)
|
|
|
|
.long 0xb93e0004 # kimd %r0,%r4
|
|
|
|
lg %r1,24($sp)
|
|
|
|
tmhh %r1,0x4000 # check for function 65
|
|
|
|
jz .Lsoft_gmult
|
|
|
|
stg %r0,16($sp) # arrange 16 bytes of zero input
|
|
|
|
stg %r0,24($sp)
|
|
|
|
lghi %r0,65 # function 65
|
|
|
|
la %r1,0($Xi) # H lies right after Xi in gcm128_context
|
|
|
|
la $inp,16($sp)
|
|
|
|
lghi $len,16
|
|
|
|
.long 0xb93e0004 # kimd %r0,$inp
|
|
|
|
brc 1,.-4 # pay attention to "partial completion"
|
|
|
|
br %r14
|
|
|
|
.align 32
|
|
|
|
.Lsoft_gmult:
|
|
|
|
___
|
|
|
|
$code.=<<___;
|
2010-09-10 16:50:17 +02:00
|
|
|
stmg %r6,%r14,48($sp)
|
|
|
|
|
|
|
|
aghi $Xi,-1
|
|
|
|
lghi $len,1
|
|
|
|
lghi $x78,`0xf<<3`
|
|
|
|
larl $rem_4bit,rem_4bit
|
|
|
|
|
|
|
|
lg $Zlo,8+1($Xi) # Xi
|
|
|
|
j .Lgmult_shortcut
|
|
|
|
.type gcm_gmult_4bit,\@function
|
|
|
|
.size gcm_gmult_4bit,(.-gcm_gmult_4bit)
|
|
|
|
|
|
|
|
.globl gcm_ghash_4bit
|
|
|
|
.align 32
|
|
|
|
gcm_ghash_4bit:
|
2010-09-21 13:37:00 +02:00
|
|
|
___
|
|
|
|
$code.=<<___ if(!$softonly);
|
|
|
|
larl %r1,OPENSSL_s390xcap_P
|
|
|
|
lg %r0,0(%r1)
|
|
|
|
tmhl %r0,0x4000 # check for message-security-assist
|
|
|
|
jz .Lsoft_ghash
|
|
|
|
lghi %r0,0
|
|
|
|
la %r1,16($sp)
|
|
|
|
.long 0xb93e0004 # kimd %r0,%r4
|
|
|
|
lg %r1,24($sp)
|
|
|
|
tmhh %r1,0x4000 # check for function 65
|
|
|
|
jz .Lsoft_ghash
|
|
|
|
lghi %r0,65 # function 65
|
|
|
|
la %r1,0($Xi) # H lies right after Xi in gcm128_context
|
|
|
|
.long 0xb93e0004 # kimd %r0,$inp
|
|
|
|
brc 1,.-4 # pay attention to "partial completion"
|
|
|
|
br %r14
|
|
|
|
.align 32
|
|
|
|
.Lsoft_ghash:
|
|
|
|
___
|
|
|
|
$code.=<<___;
|
2010-09-10 16:50:17 +02:00
|
|
|
stmg %r6,%r14,48($sp)
|
|
|
|
|
|
|
|
aghi $Xi,-1
|
|
|
|
srlg $len,$len,4
|
|
|
|
lghi $x78,`0xf<<3`
|
|
|
|
larl $rem_4bit,rem_4bit
|
|
|
|
|
|
|
|
lg $Zlo,8+1($Xi) # Xi
|
|
|
|
lg $Zhi,0+1($Xi)
|
2010-09-21 13:37:00 +02:00
|
|
|
lghi $tmp,0
|
2010-09-10 16:50:17 +02:00
|
|
|
.Louter:
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zhi,0($inp) # Xi ^= inp
|
|
|
|
xg $Zlo,8($inp)
|
|
|
|
xgr $Zhi,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
stg $Zlo,8+1($Xi)
|
|
|
|
stg $Zhi,0+1($Xi)
|
|
|
|
|
|
|
|
.Lgmult_shortcut:
|
2010-09-21 13:37:00 +02:00
|
|
|
lghi $tmp,0xf0
|
|
|
|
sllg $nlo,$Zlo,4
|
|
|
|
srlg $xi,$Zlo,8 # extract second byte
|
|
|
|
ngr $nlo,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
lgr $nhi,$Zlo
|
|
|
|
lghi $cnt,14
|
2010-09-21 13:37:00 +02:00
|
|
|
ngr $nhi,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
|
|
|
|
lg $Zlo,8($nlo,$Htbl)
|
|
|
|
lg $Zhi,0($nlo,$Htbl)
|
|
|
|
|
|
|
|
sllg $nlo,$xi,4
|
|
|
|
sllg $rem0,$Zlo,3
|
2010-09-21 13:37:00 +02:00
|
|
|
ngr $nlo,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
ngr $rem0,$x78
|
2010-09-21 13:37:00 +02:00
|
|
|
ngr $xi,$tmp
|
|
|
|
|
2010-09-10 16:50:17 +02:00
|
|
|
sllg $tmp,$Zhi,60
|
2010-09-21 13:37:00 +02:00
|
|
|
srlg $Zlo,$Zlo,4
|
2010-09-10 16:50:17 +02:00
|
|
|
srlg $Zhi,$Zhi,4
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zlo,8($nhi,$Htbl)
|
2010-09-10 16:50:17 +02:00
|
|
|
xg $Zhi,0($nhi,$Htbl)
|
|
|
|
lgr $nhi,$xi
|
|
|
|
sllg $rem1,$Zlo,3
|
2010-09-21 13:37:00 +02:00
|
|
|
xgr $Zlo,$tmp
|
|
|
|
ngr $rem1,$x78
|
|
|
|
j .Lghash_inner
|
|
|
|
.align 16
|
2010-09-10 16:50:17 +02:00
|
|
|
.Lghash_inner:
|
|
|
|
srlg $Zlo,$Zlo,4
|
|
|
|
sllg $tmp,$Zhi,60
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zlo,8($nlo,$Htbl)
|
2010-09-10 16:50:17 +02:00
|
|
|
srlg $Zhi,$Zhi,4
|
|
|
|
llgc $xi,0($cnt,$Xi)
|
|
|
|
xg $Zhi,0($nlo,$Htbl)
|
|
|
|
sllg $nlo,$xi,4
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zhi,0($rem0,$rem_4bit)
|
2010-09-10 16:50:17 +02:00
|
|
|
nill $nlo,0xf0
|
2010-09-21 13:37:00 +02:00
|
|
|
sllg $rem0,$Zlo,3
|
|
|
|
xgr $Zlo,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
ngr $rem0,$x78
|
2010-09-21 13:37:00 +02:00
|
|
|
nill $xi,0xf0
|
|
|
|
|
2010-09-10 16:50:17 +02:00
|
|
|
sllg $tmp,$Zhi,60
|
2010-09-21 13:37:00 +02:00
|
|
|
srlg $Zlo,$Zlo,4
|
2010-09-10 16:50:17 +02:00
|
|
|
srlg $Zhi,$Zhi,4
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zlo,8($nhi,$Htbl)
|
2010-09-10 16:50:17 +02:00
|
|
|
xg $Zhi,0($nhi,$Htbl)
|
|
|
|
lgr $nhi,$xi
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zhi,0($rem1,$rem_4bit)
|
|
|
|
sllg $rem1,$Zlo,3
|
|
|
|
xgr $Zlo,$tmp
|
|
|
|
ngr $rem1,$x78
|
2010-09-10 16:50:17 +02:00
|
|
|
brct $cnt,.Lghash_inner
|
|
|
|
|
2010-09-21 13:37:00 +02:00
|
|
|
sllg $tmp,$Zhi,60
|
2010-09-10 16:50:17 +02:00
|
|
|
srlg $Zlo,$Zlo,4
|
2010-09-21 13:37:00 +02:00
|
|
|
srlg $Zhi,$Zhi,4
|
2010-09-10 16:50:17 +02:00
|
|
|
xg $Zlo,8($nlo,$Htbl)
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zhi,0($nlo,$Htbl)
|
|
|
|
sllg $xi,$Zlo,3
|
2010-09-10 16:50:17 +02:00
|
|
|
xg $Zhi,0($rem0,$rem_4bit)
|
|
|
|
xgr $Zlo,$tmp
|
2010-09-21 13:37:00 +02:00
|
|
|
ngr $xi,$x78
|
2010-09-10 16:50:17 +02:00
|
|
|
|
|
|
|
sllg $tmp,$Zhi,60
|
2010-09-21 13:37:00 +02:00
|
|
|
srlg $Zlo,$Zlo,4
|
2010-09-10 16:50:17 +02:00
|
|
|
srlg $Zhi,$Zhi,4
|
2010-09-21 13:37:00 +02:00
|
|
|
xg $Zlo,8($nhi,$Htbl)
|
2010-09-10 16:50:17 +02:00
|
|
|
xg $Zhi,0($nhi,$Htbl)
|
2010-09-21 13:37:00 +02:00
|
|
|
xgr $Zlo,$tmp
|
|
|
|
xg $Zhi,0($rem1,$rem_4bit)
|
2010-09-10 16:50:17 +02:00
|
|
|
|
2010-09-21 13:37:00 +02:00
|
|
|
lg $tmp,0($xi,$rem_4bit)
|
2010-09-10 16:50:17 +02:00
|
|
|
la $inp,16($inp)
|
2010-09-21 13:37:00 +02:00
|
|
|
sllg $tmp,$tmp,4 # correct last rem_4bit[rem]
|
2010-09-10 16:50:17 +02:00
|
|
|
brctg $len,.Louter
|
|
|
|
|
2010-09-21 13:37:00 +02:00
|
|
|
xgr $Zhi,$tmp
|
2010-09-10 16:50:17 +02:00
|
|
|
stg $Zlo,8+1($Xi)
|
|
|
|
stg $Zhi,0+1($Xi)
|
|
|
|
lmg %r6,%r14,48($sp)
|
|
|
|
br %r14
|
|
|
|
.type gcm_ghash_4bit,\@function
|
|
|
|
.size gcm_ghash_4bit,(.-gcm_ghash_4bit)
|
|
|
|
|
|
|
|
.align 64
|
|
|
|
rem_4bit:
|
2010-09-21 13:37:00 +02:00
|
|
|
.long `0x0000<<12`,0,`0x1C20<<12`,0,`0x3840<<12`,0,`0x2460<<12`,0
|
|
|
|
.long `0x7080<<12`,0,`0x6CA0<<12`,0,`0x48C0<<12`,0,`0x54E0<<12`,0
|
|
|
|
.long `0xE100<<12`,0,`0xFD20<<12`,0,`0xD940<<12`,0,`0xC560<<12`,0
|
|
|
|
.long `0x9180<<12`,0,`0x8DA0<<12`,0,`0xA9C0<<12`,0,`0xB5E0<<12`,0
|
2010-09-10 16:50:17 +02:00
|
|
|
.type rem_4bit,\@object
|
|
|
|
.size rem_4bit,(.-rem_4bit)
|
|
|
|
.string "GHASH for s390x, CRYPTOGAMS by <appro\@openssl.org>"
|
|
|
|
___
|
|
|
|
|
|
|
|
$code =~ s/\`([^\`]*)\`/eval $1/gem;
|
|
|
|
print $code;
|
|
|
|
close STDOUT;
|