forked from rurban/smhasher
-
Notifications
You must be signed in to change notification settings - Fork 10
/
falkhash.asm
185 lines (151 loc) · 3.34 KB
/
falkhash.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
;;; https://github.com/gamozolabs/falkhash
;;; nasm -f elf64 -o falkhash-elf64.o falkhash.asm
;;; nasm -f macho64 -o falkhash-macho64.o falkhash.asm
[bits 64]
;%ifdef ELF
;section .code
;%endif
;%ifdef MACHO64
;section .text
;%endif
%macro XMMPUSH 1
sub rsp, 16
movdqu [rsp], %1
%endmacro
%macro XMMPOP 1
movdqu %1, [rsp]
add rsp, 16
%endmacro
; A chunk_size of 0x50 is ideal for AMD fam 15h platforms, which is what this
; was optimized and designed for. If you change this value, you have to
; manually add/remove movdqus and aesencs from the core loop. This must be
; divisible by 16.
%define CHUNK_SIZE 0x50
; rdi -> data
; rsi -> len
; edx -> seed
; xmm5 <- 128-bit hash
;
; All non-output GP registers are preserved, conforming to the falkos ABI.
; All non-output XMM registers are also preserved.
falkhash:
push rax
push rcx
push rdi
push rsi
push rbp
XMMPUSH xmm0
XMMPUSH xmm1
XMMPUSH xmm2
XMMPUSH xmm3
XMMPUSH xmm4
sub rsp, CHUNK_SIZE
; Add the seed to the length
mov rbp, rsi
add rbp, rdx
; Place the length+seed for both the low and high 64-bits into xmm5,
; our hash output.
pinsrq xmm5, rbp, 0
pinsrq xmm5, rbp, 1
.lewp:
; If we have less than a chunk, copy the partial chunk to the stack.
cmp rsi, CHUNK_SIZE
jb short .pad_last_chunk
.continue:
; Read 5 pieces from memory into xmms
movdqu xmm0, [rdi + 0x00]
movdqu xmm1, [rdi + 0x10]
movdqu xmm2, [rdi + 0x20]
movdqu xmm3, [rdi + 0x30]
movdqu xmm4, [rdi + 0x40]
; Mix all pieces into xmm0
aesenc xmm0, xmm1
aesenc xmm0, xmm2
aesenc xmm0, xmm3
aesenc xmm0, xmm4
; Finalize xmm0 by mixing with itself
aesenc xmm0, xmm0
; Mix in xmm0 to the hash
aesenc xmm5, xmm0
; Go to the next chunk, fall through if we're done.
add rdi, CHUNK_SIZE
sub rsi, CHUNK_SIZE
jnz short .lewp
jmp short .done
.pad_last_chunk:
; Fill the stack with 0xff's, this is our padding
push rdi
lea rdi, [rsp + 8]
mov rax, -1
mov ecx, (CHUNK_SIZE / 8)
rep stosq
pop rdi
; Copy the remainder of data to the stack
mov rcx, rsi
mov rsi, rdi
mov rdi, rsp
rep movsb
; Make our data now come from the stack, and set the size to one chunk.
mov rdi, rsp
mov rsi, CHUNK_SIZE
jmp short .continue
.done:
; Finalize the hash. This is required at least once to pass
; Combination 0x8000000 and Combination 0x0000001. Need more than 1 to
; pass the Seed tests. We do 4 because they're pretty much free.
; Maybe we should actually use the seed better? Nah, more finalizing!
aesenc xmm5, xmm5
aesenc xmm5, xmm5
aesenc xmm5, xmm5
aesenc xmm5, xmm5
add rsp, CHUNK_SIZE
XMMPOP xmm4
XMMPOP xmm3
XMMPOP xmm2
XMMPOP xmm1
XMMPOP xmm0
pop rbp
pop rsi
pop rdi
pop rcx
pop rax
ret
; rdi -> pointer to data
; rsi -> len
; edx -> 32-bit seed
; rcx <> pointer to caller allocated 128-bit hash destination
;
; All non-output GP registers are preserved, conforming to the falkos ABI.
; All XMM registers are preserved.
global _falkhash_test
_falkhash_test:
push rcx
push rdx
push rsi
push rdi
XMMPUSH xmm5
%ifdef WIN
; Translate from windows to linux calling convention
mov rdi, rcx
mov rsi, rdx
mov rdx, r8
mov rcx, r9
%endif
call falkhash
; Store the hash into the hash destination
movdqu [rcx], xmm5
XMMPOP xmm5
pop rdi
pop rsi
pop rdx
pop rcx
ret
; rax <- 64-bit rdtsc value
global rdtsc64
rdtsc64:
push rdx
rdtsc
shl rdx, 32
or rax, rdx
pop rdx
ret