blob: cd1b3ad1d1f306ec5e98080780dd66329148a233 [file] [log] [blame]
Ard Biesheuvela4397632019-08-12 01:59:11 +03001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2019 Linaro, Ltd. <ard.biesheuvel@linaro.org>
4 */
5
6#ifdef CONFIG_ARM64
7#include <asm/neon-intrinsics.h>
8
9#define AES_ROUND "aese %0.16b, %1.16b \n\t aesmc %0.16b, %0.16b"
10#else
11#include <arm_neon.h>
12
13#define AES_ROUND "aese.8 %q0, %q1 \n\t aesmc.8 %q0, %q0"
14#endif
15
16#define AEGIS_BLOCK_SIZE 16
17
18#include <stddef.h>
19
Ard Biesheuvel19842962019-08-12 01:59:12 +030020extern int aegis128_have_aes_insn;
21
Ard Biesheuvela4397632019-08-12 01:59:11 +030022void *memcpy(void *dest, const void *src, size_t n);
Ard Biesheuvela4397632019-08-12 01:59:11 +030023
24struct aegis128_state {
25 uint8x16_t v[5];
26};
27
Ard Biesheuvel389139b2019-08-19 17:15:00 +030028extern const uint8_t crypto_aes_sbox[];
Ard Biesheuvel19842962019-08-12 01:59:12 +030029
Ard Biesheuvela4397632019-08-12 01:59:11 +030030static struct aegis128_state aegis128_load_state_neon(const void *state)
31{
32 return (struct aegis128_state){ {
33 vld1q_u8(state),
34 vld1q_u8(state + 16),
35 vld1q_u8(state + 32),
36 vld1q_u8(state + 48),
37 vld1q_u8(state + 64)
38 } };
39}
40
41static void aegis128_save_state_neon(struct aegis128_state st, void *state)
42{
43 vst1q_u8(state, st.v[0]);
44 vst1q_u8(state + 16, st.v[1]);
45 vst1q_u8(state + 32, st.v[2]);
46 vst1q_u8(state + 48, st.v[3]);
47 vst1q_u8(state + 64, st.v[4]);
48}
49
50static inline __attribute__((always_inline))
51uint8x16_t aegis_aes_round(uint8x16_t w)
52{
53 uint8x16_t z = {};
54
Ard Biesheuvel19842962019-08-12 01:59:12 +030055#ifdef CONFIG_ARM64
56 if (!__builtin_expect(aegis128_have_aes_insn, 1)) {
Ard Biesheuvel389139b2019-08-19 17:15:00 +030057 static const uint8_t shift_rows[] = {
Ard Biesheuvel19842962019-08-12 01:59:12 +030058 0x0, 0x5, 0xa, 0xf, 0x4, 0x9, 0xe, 0x3,
59 0x8, 0xd, 0x2, 0x7, 0xc, 0x1, 0x6, 0xb,
60 };
Ard Biesheuvel389139b2019-08-19 17:15:00 +030061 static const uint8_t ror32by8[] = {
Ard Biesheuvel19842962019-08-12 01:59:12 +030062 0x1, 0x2, 0x3, 0x0, 0x5, 0x6, 0x7, 0x4,
63 0x9, 0xa, 0xb, 0x8, 0xd, 0xe, 0xf, 0xc,
64 };
65 uint8x16_t v;
66
67 // shift rows
Ard Biesheuvel389139b2019-08-19 17:15:00 +030068 w = vqtbl1q_u8(w, vld1q_u8(shift_rows));
Ard Biesheuvel19842962019-08-12 01:59:12 +030069
70 // sub bytes
Ard Biesheuvel389139b2019-08-19 17:15:00 +030071#ifndef CONFIG_CC_IS_GCC
72 v = vqtbl4q_u8(vld1q_u8_x4(crypto_aes_sbox), w);
73 v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x40), w - 0x40);
74 v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0x80), w - 0x80);
75 v = vqtbx4q_u8(v, vld1q_u8_x4(crypto_aes_sbox + 0xc0), w - 0xc0);
76#else
77 asm("tbl %0.16b, {v16.16b-v19.16b}, %1.16b" : "=w"(v) : "w"(w));
78 w -= 0x40;
79 asm("tbx %0.16b, {v20.16b-v23.16b}, %1.16b" : "+w"(v) : "w"(w));
80 w -= 0x40;
81 asm("tbx %0.16b, {v24.16b-v27.16b}, %1.16b" : "+w"(v) : "w"(w));
82 w -= 0x40;
83 asm("tbx %0.16b, {v28.16b-v31.16b}, %1.16b" : "+w"(v) : "w"(w));
84#endif
Ard Biesheuvel19842962019-08-12 01:59:12 +030085
86 // mix columns
87 w = (v << 1) ^ (uint8x16_t)(((int8x16_t)v >> 7) & 0x1b);
88 w ^= (uint8x16_t)vrev32q_u16((uint16x8_t)v);
Ard Biesheuvel389139b2019-08-19 17:15:00 +030089 w ^= vqtbl1q_u8(v ^ w, vld1q_u8(ror32by8));
Ard Biesheuvel19842962019-08-12 01:59:12 +030090
91 return w;
92 }
93#endif
94
Ard Biesheuvela4397632019-08-12 01:59:11 +030095 /*
96 * We use inline asm here instead of the vaeseq_u8/vaesmcq_u8 intrinsics
97 * to force the compiler to issue the aese/aesmc instructions in pairs.
98 * This is much faster on many cores, where the instruction pair can
99 * execute in a single cycle.
100 */
101 asm(AES_ROUND : "+w"(w) : "w"(z));
102 return w;
103}
104
105static inline __attribute__((always_inline))
106struct aegis128_state aegis128_update_neon(struct aegis128_state st,
107 uint8x16_t m)
108{
109 m ^= aegis_aes_round(st.v[4]);
110 st.v[4] ^= aegis_aes_round(st.v[3]);
111 st.v[3] ^= aegis_aes_round(st.v[2]);
112 st.v[2] ^= aegis_aes_round(st.v[1]);
113 st.v[1] ^= aegis_aes_round(st.v[0]);
114 st.v[0] ^= m;
115
116 return st;
117}
118
Ard Biesheuvel19842962019-08-12 01:59:12 +0300119static inline __attribute__((always_inline))
120void preload_sbox(void)
121{
122 if (!IS_ENABLED(CONFIG_ARM64) ||
123 !IS_ENABLED(CONFIG_CC_IS_GCC) ||
124 __builtin_expect(aegis128_have_aes_insn, 1))
125 return;
126
127 asm("ld1 {v16.16b-v19.16b}, [%0], #64 \n\t"
128 "ld1 {v20.16b-v23.16b}, [%0], #64 \n\t"
129 "ld1 {v24.16b-v27.16b}, [%0], #64 \n\t"
130 "ld1 {v28.16b-v31.16b}, [%0] \n\t"
131 :: "r"(crypto_aes_sbox));
132}
133
Ard Biesheuvel52828262019-10-14 18:16:45 +0200134void crypto_aegis128_init_neon(void *state, const void *key, const void *iv)
135{
136 static const uint8_t const0[] = {
137 0x00, 0x01, 0x01, 0x02, 0x03, 0x05, 0x08, 0x0d,
138 0x15, 0x22, 0x37, 0x59, 0x90, 0xe9, 0x79, 0x62,
139 };
140 static const uint8_t const1[] = {
141 0xdb, 0x3d, 0x18, 0x55, 0x6d, 0xc2, 0x2f, 0xf1,
142 0x20, 0x11, 0x31, 0x42, 0x73, 0xb5, 0x28, 0xdd,
143 };
144 uint8x16_t k = vld1q_u8(key);
145 uint8x16_t kiv = k ^ vld1q_u8(iv);
146 struct aegis128_state st = {{
147 kiv,
148 vld1q_u8(const1),
149 vld1q_u8(const0),
150 k ^ vld1q_u8(const0),
151 k ^ vld1q_u8(const1),
152 }};
153 int i;
154
155 preload_sbox();
156
157 for (i = 0; i < 5; i++) {
158 st = aegis128_update_neon(st, k);
159 st = aegis128_update_neon(st, kiv);
160 }
161 aegis128_save_state_neon(st, state);
162}
163
Ard Biesheuvela4397632019-08-12 01:59:11 +0300164void crypto_aegis128_update_neon(void *state, const void *msg)
165{
166 struct aegis128_state st = aegis128_load_state_neon(state);
167
Ard Biesheuvel19842962019-08-12 01:59:12 +0300168 preload_sbox();
169
Ard Biesheuvela4397632019-08-12 01:59:11 +0300170 st = aegis128_update_neon(st, vld1q_u8(msg));
171
172 aegis128_save_state_neon(st, state);
173}
174
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100175#ifdef CONFIG_ARM
176/*
177 * AArch32 does not provide these intrinsics natively because it does not
178 * implement the underlying instructions. AArch32 only provides 64-bit
179 * wide vtbl.8/vtbx.8 instruction, so use those instead.
180 */
181static uint8x16_t vqtbl1q_u8(uint8x16_t a, uint8x16_t b)
182{
183 union {
184 uint8x16_t val;
185 uint8x8x2_t pair;
186 } __a = { a };
187
188 return vcombine_u8(vtbl2_u8(__a.pair, vget_low_u8(b)),
189 vtbl2_u8(__a.pair, vget_high_u8(b)));
190}
191
192static uint8x16_t vqtbx1q_u8(uint8x16_t v, uint8x16_t a, uint8x16_t b)
193{
194 union {
195 uint8x16_t val;
196 uint8x8x2_t pair;
197 } __a = { a };
198
199 return vcombine_u8(vtbx2_u8(vget_low_u8(v), __a.pair, vget_low_u8(b)),
200 vtbx2_u8(vget_high_u8(v), __a.pair, vget_high_u8(b)));
201}
202#endif
203
204static const uint8_t permute[] __aligned(64) = {
205 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
206 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
207 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
208};
209
Ard Biesheuvela4397632019-08-12 01:59:11 +0300210void crypto_aegis128_encrypt_chunk_neon(void *state, void *dst, const void *src,
211 unsigned int size)
212{
213 struct aegis128_state st = aegis128_load_state_neon(state);
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100214 const int short_input = size < AEGIS_BLOCK_SIZE;
Ard Biesheuvela4397632019-08-12 01:59:11 +0300215 uint8x16_t msg;
216
Ard Biesheuvel19842962019-08-12 01:59:12 +0300217 preload_sbox();
218
Ard Biesheuvela4397632019-08-12 01:59:11 +0300219 while (size >= AEGIS_BLOCK_SIZE) {
220 uint8x16_t s = st.v[1] ^ (st.v[2] & st.v[3]) ^ st.v[4];
221
222 msg = vld1q_u8(src);
223 st = aegis128_update_neon(st, msg);
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100224 msg ^= s;
225 vst1q_u8(dst, msg);
Ard Biesheuvela4397632019-08-12 01:59:11 +0300226
227 size -= AEGIS_BLOCK_SIZE;
228 src += AEGIS_BLOCK_SIZE;
229 dst += AEGIS_BLOCK_SIZE;
230 }
231
232 if (size > 0) {
233 uint8x16_t s = st.v[1] ^ (st.v[2] & st.v[3]) ^ st.v[4];
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100234 uint8_t buf[AEGIS_BLOCK_SIZE];
235 const void *in = src;
236 void *out = dst;
237 uint8x16_t m;
Ard Biesheuvela4397632019-08-12 01:59:11 +0300238
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100239 if (__builtin_expect(short_input, 0))
240 in = out = memcpy(buf + AEGIS_BLOCK_SIZE - size, src, size);
241
242 m = vqtbl1q_u8(vld1q_u8(in + size - AEGIS_BLOCK_SIZE),
243 vld1q_u8(permute + 32 - size));
244
245 st = aegis128_update_neon(st, m);
246
247 vst1q_u8(out + size - AEGIS_BLOCK_SIZE,
248 vqtbl1q_u8(m ^ s, vld1q_u8(permute + size)));
249
250 if (__builtin_expect(short_input, 0))
251 memcpy(dst, out, size);
252 else
253 vst1q_u8(out - AEGIS_BLOCK_SIZE, msg);
Ard Biesheuvela4397632019-08-12 01:59:11 +0300254 }
255
256 aegis128_save_state_neon(st, state);
257}
258
259void crypto_aegis128_decrypt_chunk_neon(void *state, void *dst, const void *src,
260 unsigned int size)
261{
262 struct aegis128_state st = aegis128_load_state_neon(state);
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100263 const int short_input = size < AEGIS_BLOCK_SIZE;
Ard Biesheuvela4397632019-08-12 01:59:11 +0300264 uint8x16_t msg;
265
Ard Biesheuvel19842962019-08-12 01:59:12 +0300266 preload_sbox();
267
Ard Biesheuvela4397632019-08-12 01:59:11 +0300268 while (size >= AEGIS_BLOCK_SIZE) {
269 msg = vld1q_u8(src) ^ st.v[1] ^ (st.v[2] & st.v[3]) ^ st.v[4];
270 st = aegis128_update_neon(st, msg);
271 vst1q_u8(dst, msg);
272
273 size -= AEGIS_BLOCK_SIZE;
274 src += AEGIS_BLOCK_SIZE;
275 dst += AEGIS_BLOCK_SIZE;
276 }
277
278 if (size > 0) {
279 uint8x16_t s = st.v[1] ^ (st.v[2] & st.v[3]) ^ st.v[4];
280 uint8_t buf[AEGIS_BLOCK_SIZE];
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100281 const void *in = src;
282 void *out = dst;
283 uint8x16_t m;
Ard Biesheuvela4397632019-08-12 01:59:11 +0300284
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100285 if (__builtin_expect(short_input, 0))
286 in = out = memcpy(buf + AEGIS_BLOCK_SIZE - size, src, size);
Ard Biesheuvela4397632019-08-12 01:59:11 +0300287
Ard Biesheuvelad00d412020-11-17 14:32:12 +0100288 m = s ^ vqtbx1q_u8(s, vld1q_u8(in + size - AEGIS_BLOCK_SIZE),
289 vld1q_u8(permute + 32 - size));
290
291 st = aegis128_update_neon(st, m);
292
293 vst1q_u8(out + size - AEGIS_BLOCK_SIZE,
294 vqtbl1q_u8(m, vld1q_u8(permute + size)));
295
296 if (__builtin_expect(short_input, 0))
297 memcpy(dst, out, size);
298 else
299 vst1q_u8(out - AEGIS_BLOCK_SIZE, msg);
Ard Biesheuvela4397632019-08-12 01:59:11 +0300300 }
301
302 aegis128_save_state_neon(st, state);
303}
Ard Biesheuvel52828262019-10-14 18:16:45 +0200304
305void crypto_aegis128_final_neon(void *state, void *tag_xor, uint64_t assoclen,
306 uint64_t cryptlen)
307{
308 struct aegis128_state st = aegis128_load_state_neon(state);
309 uint8x16_t v;
310 int i;
311
312 preload_sbox();
313
314 v = st.v[3] ^ (uint8x16_t)vcombine_u64(vmov_n_u64(8 * assoclen),
315 vmov_n_u64(8 * cryptlen));
316
317 for (i = 0; i < 7; i++)
318 st = aegis128_update_neon(st, v);
319
320 v = vld1q_u8(tag_xor);
321 v ^= st.v[0] ^ st.v[1] ^ st.v[2] ^ st.v[3] ^ st.v[4];
322 vst1q_u8(tag_xor, v);
323}