Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright(c) 2025 ZTE Corporation
3 : : */
4 : :
5 : : #include "cryptodev_pmd.h"
6 : : #include "rte_byteorder.h"
7 : :
8 : : #include "zsda_crypto_pmd.h"
9 : : #include "zsda_crypto_session.h"
10 : :
11 : : /**************** AES KEY EXPANSION ****************/
12 : : /**
13 : : * AES S-boxes
14 : : * Sbox table: 8bits input convert to 8bits output
15 : : **/
16 : : static const unsigned char aes_sbox[256] = {
17 : : /* 0 1 2 3 4 5 6 7 8 9 A B
18 : : * C D E F
19 : : */
20 : : 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b,
21 : : 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
22 : : 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26,
23 : : 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
24 : : 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2,
25 : : 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
26 : : 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed,
27 : : 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
28 : : 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f,
29 : : 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
30 : : 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec,
31 : : 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
32 : : 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14,
33 : : 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
34 : : 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d,
35 : : 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
36 : : 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f,
37 : : 0x4b, 0xbd, 0x8b, 0x8a, 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
38 : : 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11,
39 : : 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
40 : : 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f,
41 : : 0xb0, 0x54, 0xbb, 0x16};
42 : :
43 : : /**
44 : : * The round constant word array, rcon[i]
45 : : *
46 : : * From Wikipedia's article on the Rijndael key schedule @
47 : : * https://en.wikipedia.org/wiki/Rijndael_key_schedule#rcon "Only the first some
48 : : * of these constants are actually used – up to rcon[10] for AES-128 (as 11
49 : : * round keys are needed), up to rcon[8] for AES-192, up to rcon[7] for AES-256.
50 : : * rcon[0] is not used in AES algorithm."
51 : : */
52 : : static const unsigned char rcon[11] = {0x8d, 0x01, 0x02, 0x04, 0x08, 0x10,
53 : : 0x20, 0x40, 0x80, 0x1b, 0x36};
54 : :
55 : : #define GET_AES_SBOX_VAL(num) (aes_sbox[(num)])
56 : :
57 : : /**
58 : : *rotate shift left marco definition
59 : : *
60 : : **/
61 : : #define SHL(x, n) (((x)&0xFFFFFFFF) << n)
62 : : #define ROTL(x, n) (SHL((x), n) | ((x) >> (32 - n)))
63 : :
64 : : /**
65 : : * SM4 S-boxes
66 : : * Sbox table: 8bits input convert to 8 bitg288s output
67 : : **/
68 : : static unsigned char sm4_sbox[16][16] = {
69 : : {0xd6, 0x90, 0xe9, 0xfe, 0xcc, 0xe1, 0x3d, 0xb7, 0x16, 0xb6, 0x14, 0xc2,
70 : : 0x28, 0xfb, 0x2c, 0x05},
71 : : {0x2b, 0x67, 0x9a, 0x76, 0x2a, 0xbe, 0x04, 0xc3, 0xaa, 0x44, 0x13, 0x26,
72 : : 0x49, 0x86, 0x06, 0x99},
73 : : {0x9c, 0x42, 0x50, 0xf4, 0x91, 0xef, 0x98, 0x7a, 0x33, 0x54, 0x0b, 0x43,
74 : : 0xed, 0xcf, 0xac, 0x62},
75 : : {0xe4, 0xb3, 0x1c, 0xa9, 0xc9, 0x08, 0xe8, 0x95, 0x80, 0xdf, 0x94, 0xfa,
76 : : 0x75, 0x8f, 0x3f, 0xa6},
77 : : {0x47, 0x07, 0xa7, 0xfc, 0xf3, 0x73, 0x17, 0xba, 0x83, 0x59, 0x3c, 0x19,
78 : : 0xe6, 0x85, 0x4f, 0xa8},
79 : : {0x68, 0x6b, 0x81, 0xb2, 0x71, 0x64, 0xda, 0x8b, 0xf8, 0xeb, 0x0f, 0x4b,
80 : : 0x70, 0x56, 0x9d, 0x35},
81 : : {0x1e, 0x24, 0x0e, 0x5e, 0x63, 0x58, 0xd1, 0xa2, 0x25, 0x22, 0x7c, 0x3b,
82 : : 0x01, 0x21, 0x78, 0x87},
83 : : {0xd4, 0x00, 0x46, 0x57, 0x9f, 0xd3, 0x27, 0x52, 0x4c, 0x36, 0x02, 0xe7,
84 : : 0xa0, 0xc4, 0xc8, 0x9e},
85 : : {0xea, 0xbf, 0x8a, 0xd2, 0x40, 0xc7, 0x38, 0xb5, 0xa3, 0xf7, 0xf2, 0xce,
86 : : 0xf9, 0x61, 0x15, 0xa1},
87 : : {0xe0, 0xae, 0x5d, 0xa4, 0x9b, 0x34, 0x1a, 0x55, 0xad, 0x93, 0x32, 0x30,
88 : : 0xf5, 0x8c, 0xb1, 0xe3},
89 : : {0x1d, 0xf6, 0xe2, 0x2e, 0x82, 0x66, 0xca, 0x60, 0xc0, 0x29, 0x23, 0xab,
90 : : 0x0d, 0x53, 0x4e, 0x6f},
91 : : {0xd5, 0xdb, 0x37, 0x45, 0xde, 0xfd, 0x8e, 0x2f, 0x03, 0xff, 0x6a, 0x72,
92 : : 0x6d, 0x6c, 0x5b, 0x51},
93 : : {0x8d, 0x1b, 0xaf, 0x92, 0xbb, 0xdd, 0xbc, 0x7f, 0x11, 0xd9, 0x5c, 0x41,
94 : : 0x1f, 0x10, 0x5a, 0xd8},
95 : : {0x0a, 0xc1, 0x31, 0x88, 0xa5, 0xcd, 0x7b, 0xbd, 0x2d, 0x74, 0xd0, 0x12,
96 : : 0xb8, 0xe5, 0xb4, 0xb0},
97 : : {0x89, 0x69, 0x97, 0x4a, 0x0c, 0x96, 0x77, 0x7e, 0x65, 0xb9, 0xf1, 0x09,
98 : : 0xc5, 0x6e, 0xc6, 0x84},
99 : : {0x18, 0xf0, 0x7d, 0xec, 0x3a, 0xdc, 0x4d, 0x20, 0x79, 0xee, 0x5f, 0x3e,
100 : : 0xd7, 0xcb, 0x39, 0x48},
101 : : };
102 : :
103 : : /* System parameter */
104 : : static const unsigned int fk[4] = {0xa3b1bac6, 0x56aa3350, 0x677d9197,
105 : : 0xb27022dc};
106 : :
107 : : /* fixed parameter */
108 : : static const unsigned int ck[32] = {
109 : : 0x00070e15, 0x1c232a31, 0x383f464d, 0x545b6269, 0x70777e85, 0x8c939aa1,
110 : : 0xa8afb6bd, 0xc4cbd2d9, 0xe0e7eef5, 0xfc030a11, 0x181f262d, 0x343b4249,
111 : : 0x50575e65, 0x6c737a81, 0x888f969d, 0xa4abb2b9, 0xc0c7ced5, 0xdce3eaf1,
112 : : 0xf8ff060d, 0x141b2229, 0x30373e45, 0x4c535a61, 0x686f767d, 0x848b9299,
113 : : 0xa0a7aeb5, 0xbcc3cad1, 0xd8dfe6ed, 0xf4fb0209, 0x10171e25, 0x2c333a41,
114 : : 0x484f565d, 0x646b7279};
115 : :
116 : : /*
117 : : * private function:
118 : : * look up in SM4 S-boxes and get the related value.
119 : : * args: [in] inch: 0x00~0xFF (8 bits unsigned value).
120 : : */
121 : : static unsigned char
122 : : sm4_sbox_cal(unsigned char inch)
123 : : {
124 : : unsigned char *ptable = (unsigned char *)sm4_sbox;
125 : 0 : unsigned char ret = (unsigned char)(ptable[inch]);
126 : : return ret;
127 : : }
128 : :
129 : : /* private function:
130 : : * Calculating round encryption key.
131 : : * args: [in] ka: ka is a 32 bits unsigned value;
132 : : * return: sk[i]: i{0,1,2,3,...31}.
133 : : */
134 : : static unsigned int
135 : 0 : sm4_cirk_cal(unsigned int ka)
136 : : {
137 : : unsigned int bb = 0;
138 : : unsigned int rk = 0;
139 : : unsigned char a[4] = {0};
140 : : unsigned char b[4];
141 : :
142 [ # # ]: 0 : uint32_t be_ka = rte_cpu_to_be_32(ka);
143 : : *(uint32_t *)&a[0] = be_ka;
144 : 0 : b[0] = sm4_sbox_cal(a[0]);
145 : 0 : b[1] = sm4_sbox_cal(a[1]);
146 : 0 : b[2] = sm4_sbox_cal(a[2]);
147 : 0 : b[3] = sm4_sbox_cal(a[3]);
148 [ # # ]: 0 : bb = rte_be_to_cpu_32(*(uint32_t *)&b[0]);
149 : 0 : rk = bb ^ (ROTL(bb, 13)) ^ (ROTL(bb, 23));
150 : 0 : return rk;
151 : : }
152 : :
153 : : static void
154 : 0 : zsda_sm4_key_expansion(unsigned int sk[32], const uint8_t key[16])
155 : : {
156 : : unsigned int mk[4];
157 : : unsigned int k[36];
158 : : unsigned int i = 0;
159 : :
160 [ # # ]: 0 : mk[0] = rte_be_to_cpu_32(*(const uint32_t *)&key[0]);
161 [ # # ]: 0 : mk[1] = rte_be_to_cpu_32(*(const uint32_t *)&key[4]);
162 [ # # ]: 0 : mk[2] = rte_be_to_cpu_32(*(const uint32_t *)&key[8]);
163 [ # # ]: 0 : mk[3] = rte_be_to_cpu_32(*(const uint32_t *)&key[12]);
164 : :
165 : 0 : k[0] = mk[0] ^ fk[0];
166 : 0 : k[1] = mk[1] ^ fk[1];
167 : 0 : k[2] = mk[2] ^ fk[2];
168 : 0 : k[3] = mk[3] ^ fk[3];
169 [ # # ]: 0 : for (; i < 32; i++) {
170 : 0 : k[i + 4] = k[i] ^
171 : 0 : (sm4_cirk_cal(k[i + 1] ^ k[i + 2] ^ k[i + 3] ^ ck[i]));
172 : 0 : sk[i] = k[i + 4];
173 : : }
174 : 0 : }
175 : :
176 : : static void
177 : 0 : u32_to_u8(uint32_t *u_int32_t_data, uint8_t *u8_data)
178 : : {
179 [ # # ]: 0 : uint32_t be_data = rte_cpu_to_be_32(*u_int32_t_data);
180 : :
181 : : rte_memcpy(u8_data, &be_data, sizeof(be_data));
182 : 0 : }
183 : :
184 : : static void
185 : 0 : zsda_aes_key_expansion(uint8_t *round_key, uint32_t round_num,
186 : : const uint8_t *key, uint32_t key_len)
187 : : {
188 : : uint32_t i, j, k, nk, nr;
189 : : uint8_t tempa[4];
190 : :
191 : 0 : nk = key_len >> 2;
192 : : nr = round_num;
193 : :
194 : : /* The first round key is the key itself. */
195 [ # # ]: 0 : for (i = 0; i < nk; ++i) {
196 : 0 : round_key[(i * 4) + 0] = key[(i * 4) + 0];
197 : :
198 : 0 : round_key[(i * 4) + 1] = key[(i * 4) + 1];
199 : :
200 : 0 : round_key[(i * 4) + 2] = key[(i * 4) + 2];
201 : 0 : round_key[(i * 4) + 3] = key[(i * 4) + 3];
202 : : }
203 : :
204 : : /* All other round keys are found from the previous round keys. */
205 [ # # ]: 0 : for (i = nk; i < (4 * (nr + 1)); ++i) {
206 : 0 : k = (i - 1) * 4;
207 : 0 : tempa[0] = round_key[k + 0];
208 : 0 : tempa[1] = round_key[k + 1];
209 : 0 : tempa[2] = round_key[k + 2];
210 : 0 : tempa[3] = round_key[k + 3];
211 : :
212 [ # # # # ]: 0 : if ((nk != 0) && ((i % nk) == 0)) {
213 : : /* This function shifts the 4 bytes in a word to the
214 : : * left once. [a0,a1,a2,a3] becomes [a1,a2,a3,a0]
215 : : * Function RotWord()
216 : : */
217 : : {
218 : : const uint8_t u8tmp = tempa[0];
219 : :
220 : : tempa[0] = tempa[1];
221 : : tempa[1] = tempa[2];
222 : : tempa[2] = tempa[3];
223 : : tempa[3] = u8tmp;
224 : : }
225 : :
226 : : /* SubWord() is a function that takes a four-byte input
227 : : * word and applies the S-box to each of the four bytes
228 : : * to produce an output word. Function Subword()
229 : : */
230 : : {
231 : 0 : tempa[0] = GET_AES_SBOX_VAL(tempa[0]);
232 : 0 : tempa[1] = GET_AES_SBOX_VAL(tempa[1]);
233 : 0 : tempa[2] = GET_AES_SBOX_VAL(tempa[2]);
234 : 0 : tempa[3] = GET_AES_SBOX_VAL(tempa[3]);
235 : : }
236 : :
237 : 0 : tempa[0] = tempa[0] ^ rcon[i / nk];
238 : : }
239 : :
240 [ # # ]: 0 : if (nk == 8) {
241 [ # # ]: 0 : if ((i % nk) == 4) {
242 : : /* Function Subword() */
243 : : {
244 : 0 : tempa[0] = GET_AES_SBOX_VAL(tempa[0]);
245 : 0 : tempa[1] = GET_AES_SBOX_VAL(tempa[1]);
246 : 0 : tempa[2] = GET_AES_SBOX_VAL(tempa[2]);
247 : 0 : tempa[3] = GET_AES_SBOX_VAL(tempa[3]);
248 : : }
249 : : }
250 : : }
251 : :
252 : 0 : j = i * 4;
253 : 0 : k = (i - nk) * 4;
254 : 0 : round_key[j + 0] = round_key[k + 0] ^ tempa[0];
255 : 0 : round_key[j + 1] = round_key[k + 1] ^ tempa[1];
256 : 0 : round_key[j + 2] = round_key[k + 2] ^ tempa[2];
257 : 0 : round_key[j + 3] = round_key[k + 3] ^ tempa[3];
258 : : }
259 : 0 : }
260 : :
261 : : void
262 : 0 : zsda_reverse_memcpy(uint8_t *dst, const uint8_t *src, size_t n)
263 : : {
264 : : size_t i;
265 : :
266 [ # # ]: 0 : for (i = 0; i < n; ++i)
267 : 0 : dst[n - 1 - i] = src[i];
268 : 0 : }
269 : :
270 : : static void
271 : 0 : zsda_decry_key_set(uint8_t key[64], const uint8_t *key1_ptr, uint8_t skey_len,
272 : : enum rte_crypto_cipher_algorithm algo)
273 : : {
274 : : uint8_t round_num;
275 : 0 : uint8_t dec_key1[ZSDA_AES_MAX_KEY_BYTE_LEN] = {0};
276 : 0 : uint8_t aes_round_key[ZSDA_AES_MAX_EXP_BYTE_SIZE] = {0};
277 : 0 : uint32_t sm4_round_key[ZSDA_SM4_MAX_EXP_DWORD_SIZE] = {0};
278 : :
279 [ # # # ]: 0 : switch (algo) {
280 : 0 : case RTE_CRYPTO_CIPHER_AES_XTS:
281 [ # # ]: 0 : round_num = (skey_len == ZSDA_SYM_XTS_256_SKEY_LEN)
282 : : ? ZSDA_AES256_ROUND_NUM
283 : : : ZSDA_AES512_ROUND_NUM;
284 : 0 : zsda_aes_key_expansion(aes_round_key, round_num, key1_ptr,
285 : : skey_len);
286 : 0 : rte_memcpy(dec_key1,
287 [ # # ]: 0 : ((uint8_t *)aes_round_key + (16 * round_num)), 16);
288 : :
289 [ # # ]: 0 : if (skey_len == ZSDA_SYM_XTS_512_SKEY_LEN &&
290 : : (16 * round_num) <= ZSDA_AES_MAX_EXP_BYTE_SIZE) {
291 [ # # ]: 0 : for (int i = 0; i < 16; i++) {
292 : 0 : dec_key1[i + 16] =
293 : 0 : aes_round_key[(16 * (round_num - 1)) + i];
294 : : }
295 : : }
296 : : break;
297 : 0 : case RTE_CRYPTO_CIPHER_SM4_XTS:
298 : 0 : zsda_sm4_key_expansion(sm4_round_key, key1_ptr);
299 [ # # ]: 0 : for (size_t i = 0; i < 4; i++)
300 : 0 : u32_to_u8((uint32_t *)sm4_round_key +
301 : 0 : ZSDA_SM4_MAX_EXP_DWORD_SIZE - 1 - i,
302 : 0 : dec_key1 + (4 * i));
303 : : break;
304 : 0 : default:
305 : 0 : ZSDA_LOG(ERR, "unknown cipher algo!");
306 : 0 : return;
307 : : }
308 : :
309 [ # # ]: 0 : if (skey_len == ZSDA_SYM_XTS_256_SKEY_LEN) {
310 : 0 : zsda_reverse_memcpy((uint8_t *)key + ZSDA_SYM_XTS_256_KEY2_OFF,
311 : : key1_ptr + skey_len, skey_len);
312 : 0 : zsda_reverse_memcpy((uint8_t *)key + ZSDA_SYM_XTS_256_KEY1_OFF,
313 : : dec_key1, skey_len);
314 : : } else {
315 : 0 : zsda_reverse_memcpy(key, key1_ptr + skey_len, skey_len);
316 : 0 : zsda_reverse_memcpy((uint8_t *)key + ZSDA_SYM_XTS_512_KEY1_OFF,
317 : : dec_key1, skey_len);
318 : : }
319 : : }
320 : :
321 : : static uint8_t
322 : 0 : zsda_sym_lbads(uint32_t dataunit_len)
323 : : {
324 : : uint8_t lbads;
325 : :
326 [ # # # # : 0 : switch (dataunit_len) {
# ]
327 : : case ZSDA_AES_LBADS_512:
328 : : lbads = ZSDA_AES_LBADS_INDICATE_512;
329 : : break;
330 : 0 : case ZSDA_AES_LBADS_4096:
331 : : lbads = ZSDA_AES_LBADS_INDICATE_4096;
332 : 0 : break;
333 : 0 : case ZSDA_AES_LBADS_8192:
334 : : lbads = ZSDA_AES_LBADS_INDICATE_8192;
335 : 0 : break;
336 : 0 : case ZSDA_AES_LBADS_0:
337 : : lbads = ZSDA_AES_LBADS_INDICATE_0;
338 : 0 : break;
339 : 0 : default:
340 : 0 : ZSDA_LOG(ERR, "dataunit_len should be 0/512/4096/8192 - %d.",
341 : : dataunit_len);
342 : : lbads = ZSDA_AES_LBADS_INDICATE_INVALID;
343 : 0 : break;
344 : : }
345 : 0 : return lbads;
346 : : }
347 : :
348 : : static int
349 : 0 : zsda_session_cipher_set(struct zsda_sym_session *sess,
350 : : struct rte_crypto_cipher_xform *cipher_xform)
351 : : {
352 : : uint8_t skey_len = 0;
353 : : const uint8_t *key1_ptr = NULL;
354 : :
355 [ # # ]: 0 : if (cipher_xform->key.length > ZSDA_CIPHER_KEY_MAX_LEN) {
356 : 0 : ZSDA_LOG(ERR, "key length not supported");
357 : 0 : return -EINVAL;
358 : : }
359 : :
360 : 0 : sess->chain_order = ZSDA_SYM_CHAIN_ONLY_CIPHER;
361 : 0 : sess->cipher.iv.offset = cipher_xform->iv.offset;
362 : 0 : sess->cipher.iv.length = cipher_xform->iv.length;
363 : 0 : sess->cipher.op = cipher_xform->op;
364 : 0 : sess->cipher.algo = cipher_xform->algo;
365 : 0 : sess->cipher.dataunit_len = cipher_xform->dataunit_len;
366 : 0 : sess->cipher.lbads = zsda_sym_lbads(cipher_xform->dataunit_len);
367 [ # # ]: 0 : if (sess->cipher.lbads == 0xff) {
368 : 0 : ZSDA_LOG(ERR, "dataunit_len wrong!");
369 : 0 : return -EINVAL;
370 : : }
371 : :
372 : 0 : skey_len = (cipher_xform->key.length / 2) & 0xff;
373 : :
374 [ # # ]: 0 : if (sess->cipher.op == RTE_CRYPTO_CIPHER_OP_ENCRYPT) {
375 : 0 : sess->cipher.key_encry.length = cipher_xform->key.length;
376 [ # # ]: 0 : if (skey_len == ZSDA_SYM_XTS_256_SKEY_LEN) {
377 : 0 : zsda_reverse_memcpy((uint8_t *)sess->cipher.key_encry.data +
378 : : ZSDA_SYM_XTS_256_KEY2_OFF,
379 : 0 : (cipher_xform->key.data + skey_len),
380 : : skey_len);
381 : 0 : zsda_reverse_memcpy(((uint8_t *)sess->cipher.key_encry.data +
382 : : ZSDA_SYM_XTS_256_KEY1_OFF),
383 : : cipher_xform->key.data, skey_len);
384 : : } else
385 : 0 : zsda_reverse_memcpy((uint8_t *)sess->cipher.key_encry.data,
386 : : cipher_xform->key.data,
387 : : cipher_xform->key.length);
388 [ # # ]: 0 : } else if (sess->cipher.op == RTE_CRYPTO_CIPHER_OP_DECRYPT) {
389 : 0 : sess->cipher.key_decry.length = cipher_xform->key.length;
390 : 0 : key1_ptr = cipher_xform->key.data;
391 : 0 : zsda_decry_key_set(sess->cipher.key_decry.data, key1_ptr, skey_len,
392 : : sess->cipher.algo);
393 : : }
394 : :
395 : : return ZSDA_SUCCESS;
396 : : }
397 : :
398 : : static int
399 : : zsda_session_auth_set(struct zsda_sym_session *sess,
400 : : struct rte_crypto_auth_xform *xform)
401 : : {
402 : 0 : sess->auth.op = xform->op;
403 : 0 : sess->auth.algo = xform->algo;
404 : 0 : sess->auth.digest_length = xform->digest_length;
405 : :
406 : : return ZSDA_SUCCESS;
407 : : }
408 : :
409 : : static struct rte_crypto_auth_xform *
410 : : zsda_auth_xform_get(struct rte_crypto_sym_xform *xform)
411 : : {
412 : : do {
413 [ # # ]: 0 : if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH)
414 : 0 : return &xform->auth;
415 : :
416 : 0 : xform = xform->next;
417 [ # # ]: 0 : } while (xform);
418 : :
419 : : return NULL;
420 : : }
421 : :
422 : : static struct rte_crypto_cipher_xform *
423 : : zsda_cipher_xform_get(struct rte_crypto_sym_xform *xform)
424 : : {
425 : : do {
426 [ # # ]: 0 : if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER)
427 : 0 : return &xform->cipher;
428 : :
429 : 0 : xform = xform->next;
430 [ # # ]: 0 : } while (xform);
431 : :
432 : : return NULL;
433 : : }
434 : :
435 : : /** Configure the session from a crypto xform chain */
436 : : static enum zsda_sym_chain_order
437 : 0 : zsda_crypto_chain_order_get(const struct rte_crypto_sym_xform *xform)
438 : : {
439 : : enum zsda_sym_chain_order res = ZSDA_SYM_CHAIN_NOT_SUPPORTED;
440 : :
441 [ # # ]: 0 : if (xform != NULL) {
442 [ # # ]: 0 : if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH) {
443 [ # # ]: 0 : if (xform->next == NULL)
444 : : res = ZSDA_SYM_CHAIN_ONLY_AUTH;
445 [ # # ]: 0 : else if (xform->next->type ==
446 : : RTE_CRYPTO_SYM_XFORM_CIPHER)
447 : : res = ZSDA_SYM_CHAIN_AUTH_CIPHER;
448 : : }
449 [ # # ]: 0 : if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER) {
450 [ # # ]: 0 : if (xform->next == NULL)
451 : : res = ZSDA_SYM_CHAIN_ONLY_CIPHER;
452 [ # # ]: 0 : else if (xform->next->type == RTE_CRYPTO_SYM_XFORM_AUTH)
453 : : res = ZSDA_SYM_CHAIN_CIPHER_AUTH;
454 : : }
455 : : }
456 : :
457 : 0 : return res;
458 : : }
459 : :
460 : : /* Set session cipher parameters */
461 : : int
462 : 0 : zsda_crypto_session_parameters_set(void *sess_priv,
463 : : struct rte_crypto_sym_xform *xform)
464 : : {
465 : :
466 : : struct zsda_sym_session *sess = sess_priv;
467 : : struct rte_crypto_cipher_xform *cipher_xform =
468 : : zsda_cipher_xform_get(xform);
469 : : struct rte_crypto_auth_xform *auth_xform =
470 : : zsda_auth_xform_get(xform);
471 : :
472 : : int ret = ZSDA_SUCCESS;
473 : :
474 : 0 : sess->chain_order = zsda_crypto_chain_order_get(xform);
475 [ # # # ]: 0 : switch (sess->chain_order) {
476 : 0 : case ZSDA_SYM_CHAIN_ONLY_CIPHER:
477 [ # # ]: 0 : if (!cipher_xform) {
478 : 0 : ZSDA_LOG(ERR, "Failed! cipher_xform is NULL");
479 : 0 : return -EINVAL;
480 : : }
481 : 0 : ret = zsda_session_cipher_set(sess, cipher_xform);
482 : 0 : break;
483 : 0 : case ZSDA_SYM_CHAIN_ONLY_AUTH:
484 [ # # ]: 0 : if (!auth_xform) {
485 : 0 : ZSDA_LOG(ERR, "Failed! auth_xform is NULL");
486 : 0 : return -EINVAL;
487 : : }
488 : : ret = zsda_session_auth_set(sess, auth_xform);
489 : 0 : break;
490 : :
491 : 0 : default:
492 : 0 : ZSDA_LOG(ERR, "Invalid chain order");
493 : : ret = -EINVAL;
494 : 0 : break;
495 : : }
496 : :
497 : : return ret;
498 : : }
|