summaryrefslogtreecommitdiffstats
path: root/src/crypto/isa-l/isa-l_crypto/aes/aarch64/xts_aes_256_common.S
blob: e6535dba32d0cba71a45ba03891a4950a046429b (plain)
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/**********************************************************************
  Copyright(c) 2021 Arm Corporation All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in
      the documentation and/or other materials provided with the
      distribution.
    * Neither the name of Arm Corporation nor the names of its
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**********************************************************************/

.altmacro
.macro aes_key_expand_next out0:req,out1:req,in0:req,in1:req,ctx:req
	dup	vdest.4s,vKey\in1\().s[3]
	ext	vtmp.16b,vzero.16b,vKey\in0\().16b,#12
	aese	vdest.16b,vzero.16b
	eor	vKey\out0\().16b,vKey\in0\().16b,vtmp.16b
	ext	vtmp.16b,vzero.16b,vtmp.16b,#12
	eor	vKey\out0\().16b,vKey\out0\().16b,vtmp.16b
	ext	vtmp.16b,vzero.16b,vtmp.16b,#12
	mov	tmpw,vdest.s[0]
	eor	tmpw,\ctx,tmpw,ror 8
	dup	vdest.4s,tmpw
	eor	vKey\out0\().16b,vKey\out0\().16b,vtmp.16b
	mov	\ctx,ctx,lsl 1
	eor	vKey\out0\().16b,vKey\out0\().16b,vdest.16b

	.if \out1 < 14
		dup vdest.4s, vKey\out0\().s[3]
		ext	vtmp.16b, vzero.16b,vKey\in1\().16b,#12
		aese	vdest.16b,vzero.16b
		eor	vKey\out1\().16b,vKey\in1\().16b,vtmp.16b
		ext	vtmp.16b,vzero.16b,vtmp.16b,#12
		eor	vKey\out1\().16b,vKey\out1\().16b,vtmp.16b
		ext	vtmp.16b,vzero.16b,vtmp.16b,#12
		eor	vKey\out1\().16b,vKey\out1\().16b,vtmp.16b
		eor	vKey\out1\().16b,vKey\out1\().16b,vdest.16b
	.endif
.endm

/* when loadin key = 0
 *     arg1 = input key
 *     arg2 = rcon ctx register (optional)
 * when loading key > 0
 *     arg1 = rcon ctx register  (optional)
 */
.macro aes_key_expand key:req,arg1,arg2
	.if \key == 0
		ld1	{vKey0.4s,vKey1.4s},[\arg1]
		movi vzero.4s, 0
		.ifb \arg2
			mov	rcon,#0x01
		.endif

		.ifnb \arg2
			mov	\arg2,#0x01
		.endif
	.endif

	.if \key > 0
		in0=\key-2
		in1=\key-1
		out0=\key
		out1=\key+1
		.ifb \arg1
			aes_key_expand_next	%out0,%out1,%in0,%in1,rcon
		.endif

		.ifnb \arg1
			aes_key_expand_next	%out0,%out1,%in0,%in1,\arg1
		.endif
	.endif
.endm

.macro aes_round block:req,key:req,mode:req
	.if \key < 13
		.if mode == 0
			aese	\block\().16b,vKey\key\().16b
			aesmc	\block\().16b,\block\().16b
		.else
			aesd	\block\().16b,vKey\key\().16b
			aesimc	\block\().16b,\block\().16b
		.endif
	.endif
	.if \key == 13
		.if mode == 0
			aese	\block\().16b,vKey\key\().16b
		.else
			aesd	\block\().16b,vKey\key\().16b
		.endif
	.endif
	.if \key == 14
		eor	\block\().16b,\block\().16b,vKey\key\().16b
	.endif
.endm

.macro aes_round_interleave b0:req,b1:req,b2:req,b3:req,key:req,mode:req,last_key
	.if \key < 13
		.if \mode == 0
			aese	\b0\().16b,vKey\key\().16b
			aesmc	\b0\().16b,\b0\().16b
			aese	\b1\().16b,vKey\key\().16b
			aesmc	\b1\().16b,\b1\().16b
			aese	\b2\().16b,vKey\key\().16b
			aesmc	\b2\().16b,\b2\().16b
			aese	\b3\().16b,vKey\key\().16b
			aesmc	\b3\().16b,\b3\().16b
		.else
			aesd	\b0\().16b,vKey\key\().16b
			aesimc	\b0\().16b,\b0\().16b
			aesd	\b1\().16b,vKey\key\().16b
			aesimc	\b1\().16b,\b1\().16b
			aesd	\b2\().16b,vKey\key\().16b
			aesimc	\b2\().16b,\b2\().16b
			aesd	\b3\().16b,vKey\key\().16b
			aesimc	\b3\().16b,\b3\().16b
		.endif
	.endif

	.if \key == 13
		.if \mode == 0
			aese	\b0\().16b,vKey\key\().16b
			eor	\b0\().16b,\b0\().16b,vKey\last_key\().16b
			aese	\b1\().16b,vKey\key\().16b
			eor	\b1\().16b,\b1\().16b,vKey\last_key\().16b
			aese	\b2\().16b,vKey\key\().16b
			eor	\b2\().16b,\b2\().16b,vKey\last_key\().16b
			aese	\b3\().16b,vKey\key\().16b
			eor	\b3\().16b,\b3\().16b,vKey\last_key\().16b
		.else
			aesd	\b0\().16b,vKey\key\().16b
			eor	\b0\().16b,\b0\().16b,vKey\last_key\().16b
			aesd	\b1\().16b,vKey\key\().16b
			eor	\b1\().16b,\b1\().16b,vKey\last_key\().16b
			aesd	\b2\().16b,vKey\key\().16b
			eor	\b2\().16b,\b2\().16b,vKey\last_key\().16b
			aesd	\b3\().16b,vKey\key\().16b
			eor	\b3\().16b,\b3\().16b,vKey\last_key\().16b
		.endif
	.endif
.endm



.macro aes_rounds_interleave b0:req,b1:req,b2:req,b3:req,mode
	aes_round_interleave \b0,\b1,\b2,\b3,0,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,1,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,2,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,3,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,4,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,5,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,6,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,7,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,8,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,9,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,10,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,11,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,12,\mode
	aes_round_interleave \b0,\b1,\b2,\b3,13,\mode,14
.endm


.macro aes_rounds blk:req,mode:req
	aes_round	\blk,0,\mode
	aes_round	\blk,1,\mode
	aes_round	\blk,2,\mode
	aes_round	\blk,3,\mode
	aes_round	\blk,4,\mode
	aes_round	\blk,5,\mode
	aes_round	\blk,6,\mode
	aes_round	\blk,7,\mode
	aes_round	\blk,8,\mode
	aes_round	\blk,9,\mode
	aes_round	\blk,10,\mode
	aes_round	\blk,11,\mode
	aes_round	\blk,12,\mode
	aes_round	\blk,13,\mode
	aes_round	\blk,14,\mode
.endm

/* load k1/k2 from memory and encrypt the tweak by k2
 * boths keys will share the same set of registers
 * but will never overlap (k2 is used only once and discarded)
 */
.macro keyload_and_encrypt_tweak iv:req,k2:req,k1:req
	ldp	qKey0,qKey1,[\k2],#32
	aes_enc_round	\iv,0
	ldp	qKey2,qKey3,[\k2],#32
	aes_enc_round	\iv,1
	ldp	qKey0,qKey1,[\k1],#32
	aes_enc_round	\iv,2
	ldp	qKey4,qKey5,[\k2],#32
	aes_enc_round	\iv,3
	ldp	qKey2,qKey3,[\k1],#32
	aes_enc_round	\iv,4
	ldp	qKey6,qKey7,[\k2],#32
	aes_enc_round	\iv,5
	ldp	qKey4,qKey5,[\k1],#32
	aes_enc_round	\iv,6
	ldp	qKey8,qKey9,[k2],#32
	aes_enc_round	\iv,7
	ldp	qKey6,qKey7,[\k1],#32
	aes_enc_round	\iv,8
	ldp	qKey10,qKey11,[k2],#32
	aes_enc_round	\iv,9
	ldp	qKey8,qKey9,[\k1],#32
	aes_enc_round	\iv,10
	ldp	qKey12,qKey13,[k2],#32
	aes_enc_round	\iv,11
	ldp	qKey10,qKey11,[\k1],#32
	aes_enc_round	\iv,12
	ld1	{vKey14.16b},[k2],#16
	aes_enc_round	\iv,13
	ldp	qKey12,qKey13,[\k1],#32
	aes_enc_round	\iv,14
	ld1	{vKey14.16b},[\k1],#16
.endm

.macro save_stack
	stp	d8,d9,[sp, -48]!
	stp	d10,d11,[sp, 16]
	add	tmpbuf,sp,32
.endm

.macro restore_stack
	ldp	d10,d11,[sp, 16]
	ldp	d8,d9,[sp], 48
.endm