common/cnxk: support setting channel mask for SDP interfaces
[dpdk.git] / drivers / common / cnxk / cnxk_security.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4
5 #include <rte_udp.h>
6
7 #include "cnxk_security.h"
8
9 #include "roc_api.h"
10
11 static void
12 ipsec_hmac_opad_ipad_gen(struct rte_crypto_sym_xform *auth_xform,
13                          uint8_t *hmac_opad_ipad)
14 {
15         const uint8_t *key = auth_xform->auth.key.data;
16         uint32_t length = auth_xform->auth.key.length;
17         uint8_t opad[128] = {[0 ... 127] = 0x5c};
18         uint8_t ipad[128] = {[0 ... 127] = 0x36};
19         uint32_t i;
20
21         /* HMAC OPAD and IPAD */
22         for (i = 0; i < 127 && i < length; i++) {
23                 opad[i] = opad[i] ^ key[i];
24                 ipad[i] = ipad[i] ^ key[i];
25         }
26
27         /* Precompute hash of HMAC OPAD and IPAD to avoid
28          * per packet computation
29          */
30         switch (auth_xform->auth.algo) {
31         case RTE_CRYPTO_AUTH_SHA1_HMAC:
32                 roc_hash_sha1_gen(opad, (uint32_t *)&hmac_opad_ipad[0]);
33                 roc_hash_sha1_gen(ipad, (uint32_t *)&hmac_opad_ipad[24]);
34                 break;
35         case RTE_CRYPTO_AUTH_SHA256_HMAC:
36                 roc_hash_sha256_gen(opad, (uint32_t *)&hmac_opad_ipad[0]);
37                 roc_hash_sha256_gen(ipad, (uint32_t *)&hmac_opad_ipad[64]);
38                 break;
39         case RTE_CRYPTO_AUTH_SHA384_HMAC:
40                 roc_hash_sha512_gen(opad, (uint64_t *)&hmac_opad_ipad[0], 384);
41                 roc_hash_sha512_gen(ipad, (uint64_t *)&hmac_opad_ipad[64], 384);
42                 break;
43         case RTE_CRYPTO_AUTH_SHA512_HMAC:
44                 roc_hash_sha512_gen(opad, (uint64_t *)&hmac_opad_ipad[0], 512);
45                 roc_hash_sha512_gen(ipad, (uint64_t *)&hmac_opad_ipad[64], 512);
46                 break;
47         default:
48                 break;
49         }
50 }
51
52 static int
53 ot_ipsec_sa_common_param_fill(union roc_ot_ipsec_sa_word2 *w2,
54                               uint8_t *cipher_key, uint8_t *salt_key,
55                               uint8_t *hmac_opad_ipad,
56                               struct rte_security_ipsec_xform *ipsec_xfrm,
57                               struct rte_crypto_sym_xform *crypto_xfrm)
58 {
59         struct rte_crypto_sym_xform *auth_xfrm, *cipher_xfrm;
60         const uint8_t *key;
61         uint32_t *tmp_salt;
62         uint64_t *tmp_key;
63         int length, i;
64
65         /* Set direction */
66         switch (ipsec_xfrm->direction) {
67         case RTE_SECURITY_IPSEC_SA_DIR_INGRESS:
68                 w2->s.dir = ROC_IE_SA_DIR_INBOUND;
69                 auth_xfrm = crypto_xfrm;
70                 cipher_xfrm = crypto_xfrm->next;
71                 break;
72         case RTE_SECURITY_IPSEC_SA_DIR_EGRESS:
73                 w2->s.dir = ROC_IE_SA_DIR_OUTBOUND;
74                 cipher_xfrm = crypto_xfrm;
75                 auth_xfrm = crypto_xfrm->next;
76                 break;
77         default:
78                 return -EINVAL;
79         }
80
81         /* Set protocol - ESP vs AH */
82         switch (ipsec_xfrm->proto) {
83         case RTE_SECURITY_IPSEC_SA_PROTO_ESP:
84                 w2->s.protocol = ROC_IE_SA_PROTOCOL_ESP;
85                 break;
86         case RTE_SECURITY_IPSEC_SA_PROTO_AH:
87                 w2->s.protocol = ROC_IE_SA_PROTOCOL_AH;
88                 break;
89         default:
90                 return -EINVAL;
91         }
92
93         /* Set mode - transport vs tunnel */
94         switch (ipsec_xfrm->mode) {
95         case RTE_SECURITY_IPSEC_SA_MODE_TRANSPORT:
96                 w2->s.mode = ROC_IE_SA_MODE_TRANSPORT;
97                 break;
98         case RTE_SECURITY_IPSEC_SA_MODE_TUNNEL:
99                 w2->s.mode = ROC_IE_SA_MODE_TUNNEL;
100                 break;
101         default:
102                 return -EINVAL;
103         }
104
105         /* Set encryption algorithm */
106         if (crypto_xfrm->type == RTE_CRYPTO_SYM_XFORM_AEAD) {
107                 key = crypto_xfrm->aead.key.data;
108                 length = crypto_xfrm->aead.key.length;
109
110                 switch (crypto_xfrm->aead.algo) {
111                 case RTE_CRYPTO_AEAD_AES_GCM:
112                         w2->s.enc_type = ROC_IE_OT_SA_ENC_AES_GCM;
113                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_NULL;
114                         memcpy(salt_key, &ipsec_xfrm->salt, 4);
115                         tmp_salt = (uint32_t *)salt_key;
116                         *tmp_salt = rte_be_to_cpu_32(*tmp_salt);
117                         break;
118                 default:
119                         return -ENOTSUP;
120                 }
121         } else {
122                 switch (cipher_xfrm->cipher.algo) {
123                 case RTE_CRYPTO_CIPHER_NULL:
124                         w2->s.enc_type = ROC_IE_OT_SA_ENC_NULL;
125                         break;
126                 case RTE_CRYPTO_CIPHER_AES_CBC:
127                         w2->s.enc_type = ROC_IE_OT_SA_ENC_AES_CBC;
128                         break;
129                 case RTE_CRYPTO_CIPHER_AES_CTR:
130                         w2->s.enc_type = ROC_IE_OT_SA_ENC_AES_CTR;
131                         break;
132                 default:
133                         return -ENOTSUP;
134                 }
135
136                 switch (auth_xfrm->auth.algo) {
137                 case RTE_CRYPTO_AUTH_NULL:
138                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_NULL;
139                         break;
140                 case RTE_CRYPTO_AUTH_SHA1_HMAC:
141                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_SHA1;
142                         break;
143                 case RTE_CRYPTO_AUTH_SHA256_HMAC:
144                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_SHA2_256;
145                         break;
146                 case RTE_CRYPTO_AUTH_SHA384_HMAC:
147                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_SHA2_384;
148                         break;
149                 case RTE_CRYPTO_AUTH_SHA512_HMAC:
150                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_SHA2_512;
151                         break;
152                 case RTE_CRYPTO_AUTH_AES_XCBC_MAC:
153                         w2->s.auth_type = ROC_IE_OT_SA_AUTH_AES_XCBC_128;
154                         break;
155                 default:
156                         return -ENOTSUP;
157                 }
158
159                 if (auth_xfrm->auth.algo == RTE_CRYPTO_AUTH_AES_XCBC_MAC) {
160                         const uint8_t *auth_key = auth_xfrm->auth.key.data;
161                         roc_aes_xcbc_key_derive(auth_key, hmac_opad_ipad);
162                 } else {
163                         ipsec_hmac_opad_ipad_gen(auth_xfrm, hmac_opad_ipad);
164                 }
165
166                 tmp_key = (uint64_t *)hmac_opad_ipad;
167                 for (i = 0;
168                      i < (int)(ROC_CTX_MAX_OPAD_IPAD_LEN / sizeof(uint64_t));
169                      i++)
170                         tmp_key[i] = rte_be_to_cpu_64(tmp_key[i]);
171
172                 key = cipher_xfrm->cipher.key.data;
173                 length = cipher_xfrm->cipher.key.length;
174         }
175
176         /* Set encapsulation type */
177         if (ipsec_xfrm->options.udp_encap)
178                 w2->s.encap_type = ROC_IE_OT_SA_ENCAP_UDP;
179
180         w2->s.spi = ipsec_xfrm->spi;
181
182         /* Copy encryption key */
183         memcpy(cipher_key, key, length);
184         tmp_key = (uint64_t *)cipher_key;
185         for (i = 0; i < (int)(ROC_CTX_MAX_CKEY_LEN / sizeof(uint64_t)); i++)
186                 tmp_key[i] = rte_be_to_cpu_64(tmp_key[i]);
187
188         /* Set AES key length */
189         if (w2->s.enc_type == ROC_IE_OT_SA_ENC_AES_CBC ||
190             w2->s.enc_type == ROC_IE_OT_SA_ENC_AES_CCM ||
191             w2->s.enc_type == ROC_IE_OT_SA_ENC_AES_CTR ||
192             w2->s.enc_type == ROC_IE_OT_SA_ENC_AES_GCM ||
193             w2->s.auth_type == ROC_IE_OT_SA_AUTH_AES_GMAC) {
194                 switch (length) {
195                 case ROC_CPT_AES128_KEY_LEN:
196                         w2->s.aes_key_len = ROC_IE_SA_AES_KEY_LEN_128;
197                         break;
198                 case ROC_CPT_AES192_KEY_LEN:
199                         w2->s.aes_key_len = ROC_IE_SA_AES_KEY_LEN_192;
200                         break;
201                 case ROC_CPT_AES256_KEY_LEN:
202                         w2->s.aes_key_len = ROC_IE_SA_AES_KEY_LEN_256;
203                         break;
204                 default:
205                         plt_err("Invalid AES key length");
206                         return -EINVAL;
207                 }
208         }
209
210         if (ipsec_xfrm->life.packets_soft_limit != 0 ||
211             ipsec_xfrm->life.packets_hard_limit != 0) {
212                 if (ipsec_xfrm->life.bytes_soft_limit != 0 ||
213                     ipsec_xfrm->life.bytes_hard_limit != 0) {
214                         plt_err("Expiry tracking with both packets & bytes is not supported");
215                         return -EINVAL;
216                 }
217                 w2->s.life_unit = ROC_IE_OT_SA_LIFE_UNIT_PKTS;
218         }
219
220         if (ipsec_xfrm->life.bytes_soft_limit != 0 ||
221             ipsec_xfrm->life.bytes_hard_limit != 0) {
222                 if (ipsec_xfrm->life.packets_soft_limit != 0 ||
223                     ipsec_xfrm->life.packets_hard_limit != 0) {
224                         plt_err("Expiry tracking with both packets & bytes is not supported");
225                         return -EINVAL;
226                 }
227                 w2->s.life_unit = ROC_IE_OT_SA_LIFE_UNIT_OCTETS;
228         }
229
230         return 0;
231 }
232
233 static size_t
234 ot_ipsec_inb_ctx_size(struct roc_ot_ipsec_inb_sa *sa)
235 {
236         size_t size;
237
238         /* Variable based on Anti-replay Window */
239         size = offsetof(struct roc_ot_ipsec_inb_sa, ctx) +
240                offsetof(struct roc_ot_ipsec_inb_ctx_update_reg, ar_winbits);
241
242         if (sa->w0.s.ar_win)
243                 size += (1 << (sa->w0.s.ar_win - 1)) * sizeof(uint64_t);
244
245         return size;
246 }
247
248 static int
249 ot_ipsec_inb_tunnel_hdr_fill(struct roc_ot_ipsec_inb_sa *sa,
250                              struct rte_security_ipsec_xform *ipsec_xfrm)
251 {
252         struct rte_security_ipsec_tunnel_param *tunnel;
253
254         if (ipsec_xfrm->mode != RTE_SECURITY_IPSEC_SA_MODE_TUNNEL)
255                 return 0;
256
257         if (ipsec_xfrm->options.tunnel_hdr_verify == 0)
258                 return 0;
259
260         tunnel = &ipsec_xfrm->tunnel;
261
262         switch (tunnel->type) {
263         case RTE_SECURITY_IPSEC_TUNNEL_IPV4:
264                 sa->w2.s.outer_ip_ver = ROC_IE_SA_IP_VERSION_4;
265                 memcpy(&sa->outer_hdr.ipv4.src_addr, &tunnel->ipv4.src_ip,
266                        sizeof(struct in_addr));
267                 memcpy(&sa->outer_hdr.ipv4.dst_addr, &tunnel->ipv4.dst_ip,
268                        sizeof(struct in_addr));
269
270                 /* IP Source and Dest are in LE/CPU endian */
271                 sa->outer_hdr.ipv4.src_addr =
272                         rte_be_to_cpu_32(sa->outer_hdr.ipv4.src_addr);
273                 sa->outer_hdr.ipv4.dst_addr =
274                         rte_be_to_cpu_32(sa->outer_hdr.ipv4.dst_addr);
275
276                 break;
277         case RTE_SECURITY_IPSEC_TUNNEL_IPV6:
278                 sa->w2.s.outer_ip_ver = ROC_IE_SA_IP_VERSION_6;
279                 memcpy(&sa->outer_hdr.ipv6.src_addr, &tunnel->ipv6.src_addr,
280                        sizeof(struct in6_addr));
281                 memcpy(&sa->outer_hdr.ipv6.dst_addr, &tunnel->ipv6.dst_addr,
282                        sizeof(struct in6_addr));
283
284                 break;
285         default:
286                 return -EINVAL;
287         }
288
289         switch (ipsec_xfrm->options.tunnel_hdr_verify) {
290         case RTE_SECURITY_IPSEC_TUNNEL_VERIFY_DST_ADDR:
291                 sa->w2.s.ip_hdr_verify = ROC_IE_OT_SA_IP_HDR_VERIFY_DST_ADDR;
292                 break;
293         case RTE_SECURITY_IPSEC_TUNNEL_VERIFY_SRC_DST_ADDR:
294                 sa->w2.s.ip_hdr_verify =
295                         ROC_IE_OT_SA_IP_HDR_VERIFY_SRC_DST_ADDR;
296                 break;
297         default:
298                 return -ENOTSUP;
299         }
300
301         return 0;
302 }
303
304 int
305 cnxk_ot_ipsec_inb_sa_fill(struct roc_ot_ipsec_inb_sa *sa,
306                           struct rte_security_ipsec_xform *ipsec_xfrm,
307                           struct rte_crypto_sym_xform *crypto_xfrm)
308 {
309         union roc_ot_ipsec_sa_word2 w2;
310         uint32_t replay_win_sz;
311         size_t offset;
312         int rc;
313
314         w2.u64 = 0;
315         rc = ot_ipsec_sa_common_param_fill(&w2, sa->cipher_key, sa->w8.s.salt,
316                                            sa->hmac_opad_ipad, ipsec_xfrm,
317                                            crypto_xfrm);
318         if (rc)
319                 return rc;
320
321         /* Updata common word2 data */
322         sa->w2.u64 = w2.u64;
323
324         /* Only support power-of-two window sizes supported */
325         replay_win_sz = ipsec_xfrm->replay_win_sz;
326         if (replay_win_sz) {
327                 if (!rte_is_power_of_2(replay_win_sz) ||
328                     replay_win_sz > ROC_AR_WIN_SIZE_MAX)
329                         return -ENOTSUP;
330
331                 sa->w0.s.ar_win = rte_log2_u32(replay_win_sz) - 5;
332         }
333
334         rc = ot_ipsec_inb_tunnel_hdr_fill(sa, ipsec_xfrm);
335         if (rc)
336                 return rc;
337
338         /* Default options for pkt_out and pkt_fmt are with
339          * second pass meta and no defrag.
340          */
341         sa->w0.s.pkt_format = ROC_IE_OT_SA_PKT_FMT_META;
342         sa->w0.s.pkt_output = ROC_IE_OT_SA_PKT_OUTPUT_HW_BASED_DEFRAG;
343         sa->w0.s.pkind = ROC_OT_CPT_META_PKIND;
344
345         /* ESN */
346         sa->w2.s.esn_en = !!ipsec_xfrm->options.esn;
347         if (ipsec_xfrm->options.udp_encap) {
348                 sa->w10.s.udp_src_port = 4500;
349                 sa->w10.s.udp_dst_port = 4500;
350         }
351
352         if (ipsec_xfrm->options.udp_ports_verify)
353                 sa->w2.s.udp_ports_verify = 1;
354
355         offset = offsetof(struct roc_ot_ipsec_inb_sa, ctx);
356         /* Word offset for HW managed SA field */
357         sa->w0.s.hw_ctx_off = offset / 8;
358         /* Context push size for inbound spans up to hw_ctx including
359          * ar_base field, in 8b units
360          */
361         sa->w0.s.ctx_push_size = sa->w0.s.hw_ctx_off + 1;
362         /* Entire context size in 128B units */
363         sa->w0.s.ctx_size =
364                 (PLT_ALIGN_CEIL(ot_ipsec_inb_ctx_size(sa), ROC_CTX_UNIT_128B) /
365                  ROC_CTX_UNIT_128B) -
366                 1;
367
368         /**
369          * CPT MC triggers expiry when counter value changes from 2 to 1. To
370          * mitigate this behaviour add 1 to the life counter values provided.
371          */
372
373         if (ipsec_xfrm->life.bytes_soft_limit) {
374                 sa->ctx.soft_life = ipsec_xfrm->life.bytes_soft_limit + 1;
375                 sa->w0.s.soft_life_dec = 1;
376         }
377
378         if (ipsec_xfrm->life.packets_soft_limit) {
379                 sa->ctx.soft_life = ipsec_xfrm->life.packets_soft_limit + 1;
380                 sa->w0.s.soft_life_dec = 1;
381         }
382
383         if (ipsec_xfrm->life.bytes_hard_limit) {
384                 sa->ctx.hard_life = ipsec_xfrm->life.bytes_hard_limit + 1;
385                 sa->w0.s.hard_life_dec = 1;
386         }
387
388         if (ipsec_xfrm->life.packets_hard_limit) {
389                 sa->ctx.hard_life = ipsec_xfrm->life.packets_hard_limit + 1;
390                 sa->w0.s.hard_life_dec = 1;
391         }
392
393         /* There are two words of CPT_CTX_HW_S for ucode to skip */
394         sa->w0.s.ctx_hdr_size = 1;
395         sa->w0.s.aop_valid = 1;
396         sa->w0.s.et_ovrwr = 1;
397
398         rte_wmb();
399
400         /* Enable SA */
401         sa->w2.s.valid = 1;
402         return 0;
403 }
404
405 int
406 cnxk_ot_ipsec_outb_sa_fill(struct roc_ot_ipsec_outb_sa *sa,
407                            struct rte_security_ipsec_xform *ipsec_xfrm,
408                            struct rte_crypto_sym_xform *crypto_xfrm)
409 {
410         struct rte_security_ipsec_tunnel_param *tunnel = &ipsec_xfrm->tunnel;
411         union roc_ot_ipsec_sa_word2 w2;
412         size_t offset;
413         int rc;
414
415         w2.u64 = 0;
416         rc = ot_ipsec_sa_common_param_fill(&w2, sa->cipher_key, sa->iv.s.salt,
417                                            sa->hmac_opad_ipad, ipsec_xfrm,
418                                            crypto_xfrm);
419         if (rc)
420                 return rc;
421
422         /* Update common word2 data */
423         sa->w2.u64 = w2.u64;
424
425         if (ipsec_xfrm->mode != RTE_SECURITY_IPSEC_SA_MODE_TUNNEL)
426                 goto skip_tunnel_info;
427
428         /* Tunnel header info */
429         switch (tunnel->type) {
430         case RTE_SECURITY_IPSEC_TUNNEL_IPV4:
431                 sa->w2.s.outer_ip_ver = ROC_IE_SA_IP_VERSION_4;
432                 memcpy(&sa->outer_hdr.ipv4.src_addr, &tunnel->ipv4.src_ip,
433                        sizeof(struct in_addr));
434                 memcpy(&sa->outer_hdr.ipv4.dst_addr, &tunnel->ipv4.dst_ip,
435                        sizeof(struct in_addr));
436
437                 /* IP Source and Dest seems to be in LE/CPU endian */
438                 sa->outer_hdr.ipv4.src_addr =
439                         rte_be_to_cpu_32(sa->outer_hdr.ipv4.src_addr);
440                 sa->outer_hdr.ipv4.dst_addr =
441                         rte_be_to_cpu_32(sa->outer_hdr.ipv4.dst_addr);
442
443                 /* Outer header DF bit source */
444                 if (!ipsec_xfrm->options.copy_df) {
445                         sa->w2.s.ipv4_df_src_or_ipv6_flw_lbl_src =
446                                 ROC_IE_OT_SA_COPY_FROM_SA;
447                         sa->w10.s.ipv4_df_or_ipv6_flw_lbl = tunnel->ipv4.df;
448                 } else {
449                         sa->w2.s.ipv4_df_src_or_ipv6_flw_lbl_src =
450                                 ROC_IE_OT_SA_COPY_FROM_INNER_IP_HDR;
451                 }
452
453                 /* Outer header DSCP source */
454                 if (!ipsec_xfrm->options.copy_dscp) {
455                         sa->w2.s.dscp_src = ROC_IE_OT_SA_COPY_FROM_SA;
456                         sa->w10.s.dscp = tunnel->ipv4.dscp;
457                 } else {
458                         sa->w2.s.dscp_src = ROC_IE_OT_SA_COPY_FROM_INNER_IP_HDR;
459                 }
460                 break;
461         case RTE_SECURITY_IPSEC_TUNNEL_IPV6:
462                 sa->w2.s.outer_ip_ver = ROC_IE_SA_IP_VERSION_6;
463                 memcpy(&sa->outer_hdr.ipv6.src_addr, &tunnel->ipv6.src_addr,
464                        sizeof(struct in6_addr));
465                 memcpy(&sa->outer_hdr.ipv6.dst_addr, &tunnel->ipv6.dst_addr,
466                        sizeof(struct in6_addr));
467
468                 /* Outer header flow label source */
469                 if (!ipsec_xfrm->options.copy_flabel) {
470                         sa->w2.s.ipv4_df_src_or_ipv6_flw_lbl_src =
471                                 ROC_IE_OT_SA_COPY_FROM_SA;
472
473                         sa->w10.s.ipv4_df_or_ipv6_flw_lbl = tunnel->ipv6.flabel;
474                 } else {
475                         sa->w2.s.ipv4_df_src_or_ipv6_flw_lbl_src =
476                                 ROC_IE_OT_SA_COPY_FROM_INNER_IP_HDR;
477                 }
478
479                 /* Outer header DSCP source */
480                 if (!ipsec_xfrm->options.copy_dscp) {
481                         sa->w2.s.dscp_src = ROC_IE_OT_SA_COPY_FROM_SA;
482                         sa->w10.s.dscp = tunnel->ipv6.dscp;
483                 } else {
484                         sa->w2.s.dscp_src = ROC_IE_OT_SA_COPY_FROM_INNER_IP_HDR;
485                 }
486                 break;
487         default:
488                 return -EINVAL;
489         }
490
491 skip_tunnel_info:
492         /* ESN */
493         sa->w0.s.esn_en = !!ipsec_xfrm->options.esn;
494
495         if (ipsec_xfrm->options.udp_encap) {
496                 sa->w10.s.udp_src_port = 4500;
497                 sa->w10.s.udp_dst_port = 4500;
498         }
499
500         offset = offsetof(struct roc_ot_ipsec_outb_sa, ctx);
501         /* Word offset for HW managed SA field */
502         sa->w0.s.hw_ctx_off = offset / 8;
503         /* Context push size is up to hmac_opad_ipad */
504         sa->w0.s.ctx_push_size = sa->w0.s.hw_ctx_off;
505         /* Entire context size in 128B units */
506         offset = sizeof(struct roc_ot_ipsec_outb_sa);
507         sa->w0.s.ctx_size = (PLT_ALIGN_CEIL(offset, ROC_CTX_UNIT_128B) /
508                              ROC_CTX_UNIT_128B) -
509                             1;
510
511         /* IPID gen */
512         sa->w2.s.ipid_gen = 1;
513
514         /**
515          * CPT MC triggers expiry when counter value changes from 2 to 1. To
516          * mitigate this behaviour add 1 to the life counter values provided.
517          */
518
519         if (ipsec_xfrm->life.bytes_soft_limit) {
520                 sa->ctx.soft_life = ipsec_xfrm->life.bytes_soft_limit + 1;
521                 sa->w0.s.soft_life_dec = 1;
522         }
523
524         if (ipsec_xfrm->life.packets_soft_limit) {
525                 sa->ctx.soft_life = ipsec_xfrm->life.packets_soft_limit + 1;
526                 sa->w0.s.soft_life_dec = 1;
527         }
528
529         if (ipsec_xfrm->life.bytes_hard_limit) {
530                 sa->ctx.hard_life = ipsec_xfrm->life.bytes_hard_limit + 1;
531                 sa->w0.s.hard_life_dec = 1;
532         }
533
534         if (ipsec_xfrm->life.packets_hard_limit) {
535                 sa->ctx.hard_life = ipsec_xfrm->life.packets_hard_limit + 1;
536                 sa->w0.s.hard_life_dec = 1;
537         }
538
539         /* There are two words of CPT_CTX_HW_S for ucode to skip */
540         sa->w0.s.ctx_hdr_size = 1;
541         sa->w0.s.aop_valid = 1;
542
543         rte_wmb();
544
545         /* Enable SA */
546         sa->w2.s.valid = 1;
547         return 0;
548 }
549
550 bool
551 cnxk_ot_ipsec_inb_sa_valid(struct roc_ot_ipsec_inb_sa *sa)
552 {
553         return !!sa->w2.s.valid;
554 }
555
556 bool
557 cnxk_ot_ipsec_outb_sa_valid(struct roc_ot_ipsec_outb_sa *sa)
558 {
559         return !!sa->w2.s.valid;
560 }
561
562 static inline int
563 ipsec_xfrm_verify(struct rte_security_ipsec_xform *ipsec_xfrm,
564                   struct rte_crypto_sym_xform *crypto_xfrm)
565 {
566         if (crypto_xfrm->next == NULL)
567                 return -EINVAL;
568
569         if (ipsec_xfrm->direction == RTE_SECURITY_IPSEC_SA_DIR_INGRESS) {
570                 if (crypto_xfrm->type != RTE_CRYPTO_SYM_XFORM_AUTH ||
571                     crypto_xfrm->next->type != RTE_CRYPTO_SYM_XFORM_CIPHER)
572                         return -EINVAL;
573         } else {
574                 if (crypto_xfrm->type != RTE_CRYPTO_SYM_XFORM_CIPHER ||
575                     crypto_xfrm->next->type != RTE_CRYPTO_SYM_XFORM_AUTH)
576                         return -EINVAL;
577         }
578
579         return 0;
580 }
581
582 static int
583 onf_ipsec_sa_common_param_fill(struct roc_ie_onf_sa_ctl *ctl, uint8_t *salt,
584                                uint8_t *cipher_key, uint8_t *hmac_opad_ipad,
585                                struct rte_security_ipsec_xform *ipsec_xfrm,
586                                struct rte_crypto_sym_xform *crypto_xfrm)
587 {
588         struct rte_crypto_sym_xform *auth_xfrm, *cipher_xfrm;
589         int rc, length, auth_key_len;
590         const uint8_t *key = NULL;
591
592         /* Set direction */
593         switch (ipsec_xfrm->direction) {
594         case RTE_SECURITY_IPSEC_SA_DIR_INGRESS:
595                 ctl->direction = ROC_IE_SA_DIR_INBOUND;
596                 auth_xfrm = crypto_xfrm;
597                 cipher_xfrm = crypto_xfrm->next;
598                 break;
599         case RTE_SECURITY_IPSEC_SA_DIR_EGRESS:
600                 ctl->direction = ROC_IE_SA_DIR_OUTBOUND;
601                 cipher_xfrm = crypto_xfrm;
602                 auth_xfrm = crypto_xfrm->next;
603                 break;
604         default:
605                 return -EINVAL;
606         }
607
608         /* Set protocol - ESP vs AH */
609         switch (ipsec_xfrm->proto) {
610         case RTE_SECURITY_IPSEC_SA_PROTO_ESP:
611                 ctl->ipsec_proto = ROC_IE_SA_PROTOCOL_ESP;
612                 break;
613         case RTE_SECURITY_IPSEC_SA_PROTO_AH:
614                 return -ENOTSUP;
615         default:
616                 return -EINVAL;
617         }
618
619         /* Set mode - transport vs tunnel */
620         switch (ipsec_xfrm->mode) {
621         case RTE_SECURITY_IPSEC_SA_MODE_TRANSPORT:
622                 ctl->ipsec_mode = ROC_IE_SA_MODE_TRANSPORT;
623                 break;
624         case RTE_SECURITY_IPSEC_SA_MODE_TUNNEL:
625                 ctl->ipsec_mode = ROC_IE_SA_MODE_TUNNEL;
626                 break;
627         default:
628                 return -EINVAL;
629         }
630
631         /* Set encryption algorithm */
632         if (crypto_xfrm->type == RTE_CRYPTO_SYM_XFORM_AEAD) {
633                 length = crypto_xfrm->aead.key.length;
634
635                 switch (crypto_xfrm->aead.algo) {
636                 case RTE_CRYPTO_AEAD_AES_GCM:
637                         ctl->enc_type = ROC_IE_ON_SA_ENC_AES_GCM;
638                         ctl->auth_type = ROC_IE_ON_SA_AUTH_NULL;
639                         memcpy(salt, &ipsec_xfrm->salt, 4);
640                         key = crypto_xfrm->aead.key.data;
641                         break;
642                 default:
643                         return -ENOTSUP;
644                 }
645
646         } else {
647                 rc = ipsec_xfrm_verify(ipsec_xfrm, crypto_xfrm);
648                 if (rc)
649                         return rc;
650
651                 switch (cipher_xfrm->cipher.algo) {
652                 case RTE_CRYPTO_CIPHER_AES_CBC:
653                         ctl->enc_type = ROC_IE_ON_SA_ENC_AES_CBC;
654                         break;
655                 case RTE_CRYPTO_CIPHER_AES_CTR:
656                         ctl->enc_type = ROC_IE_ON_SA_ENC_AES_CTR;
657                         break;
658                 default:
659                         return -ENOTSUP;
660                 }
661
662                 switch (auth_xfrm->auth.algo) {
663                 case RTE_CRYPTO_AUTH_SHA1_HMAC:
664                         ctl->auth_type = ROC_IE_ON_SA_AUTH_SHA1;
665                         break;
666                 default:
667                         return -ENOTSUP;
668                 }
669                 auth_key_len = auth_xfrm->auth.key.length;
670                 if (auth_key_len < 20 || auth_key_len > 64)
671                         return -ENOTSUP;
672
673                 key = cipher_xfrm->cipher.key.data;
674                 length = cipher_xfrm->cipher.key.length;
675
676                 ipsec_hmac_opad_ipad_gen(auth_xfrm, hmac_opad_ipad);
677         }
678
679         switch (length) {
680         case ROC_CPT_AES128_KEY_LEN:
681                 ctl->aes_key_len = ROC_IE_SA_AES_KEY_LEN_128;
682                 break;
683         case ROC_CPT_AES192_KEY_LEN:
684                 ctl->aes_key_len = ROC_IE_SA_AES_KEY_LEN_192;
685                 break;
686         case ROC_CPT_AES256_KEY_LEN:
687                 ctl->aes_key_len = ROC_IE_SA_AES_KEY_LEN_256;
688                 break;
689         default:
690                 return -EINVAL;
691         }
692
693         memcpy(cipher_key, key, length);
694
695         if (ipsec_xfrm->options.esn)
696                 ctl->esn_en = 1;
697
698         ctl->spi = rte_cpu_to_be_32(ipsec_xfrm->spi);
699         return 0;
700 }
701
702 int
703 cnxk_onf_ipsec_inb_sa_fill(struct roc_onf_ipsec_inb_sa *sa,
704                            struct rte_security_ipsec_xform *ipsec_xfrm,
705                            struct rte_crypto_sym_xform *crypto_xfrm)
706 {
707         struct roc_ie_onf_sa_ctl *ctl = &sa->ctl;
708         int rc;
709
710         rc = onf_ipsec_sa_common_param_fill(ctl, sa->nonce, sa->cipher_key,
711                                             sa->hmac_key, ipsec_xfrm,
712                                             crypto_xfrm);
713         if (rc)
714                 return rc;
715
716         rte_wmb();
717
718         /* Enable SA */
719         ctl->valid = 1;
720         return 0;
721 }
722
723 int
724 cnxk_onf_ipsec_outb_sa_fill(struct roc_onf_ipsec_outb_sa *sa,
725                             struct rte_security_ipsec_xform *ipsec_xfrm,
726                             struct rte_crypto_sym_xform *crypto_xfrm)
727 {
728         struct rte_security_ipsec_tunnel_param *tunnel = &ipsec_xfrm->tunnel;
729         struct roc_ie_onf_sa_ctl *ctl = &sa->ctl;
730         int rc;
731
732         /* Fill common params */
733         rc = onf_ipsec_sa_common_param_fill(ctl, sa->nonce, sa->cipher_key,
734                                             sa->hmac_key, ipsec_xfrm,
735                                             crypto_xfrm);
736         if (rc)
737                 return rc;
738
739         if (ipsec_xfrm->mode != RTE_SECURITY_IPSEC_SA_MODE_TUNNEL)
740                 goto skip_tunnel_info;
741
742         /* Tunnel header info */
743         switch (tunnel->type) {
744         case RTE_SECURITY_IPSEC_TUNNEL_IPV4:
745                 memcpy(&sa->ip_src, &tunnel->ipv4.src_ip,
746                        sizeof(struct in_addr));
747                 memcpy(&sa->ip_dst, &tunnel->ipv4.dst_ip,
748                        sizeof(struct in_addr));
749                 break;
750         case RTE_SECURITY_IPSEC_TUNNEL_IPV6:
751                 return -ENOTSUP;
752         default:
753                 return -EINVAL;
754         }
755
756 skip_tunnel_info:
757         rte_wmb();
758
759         /* Enable SA */
760         ctl->valid = 1;
761         return 0;
762 }
763
764 bool
765 cnxk_onf_ipsec_inb_sa_valid(struct roc_onf_ipsec_inb_sa *sa)
766 {
767         return !!sa->ctl.valid;
768 }
769
770 bool
771 cnxk_onf_ipsec_outb_sa_valid(struct roc_onf_ipsec_outb_sa *sa)
772 {
773         return !!sa->ctl.valid;
774 }
775
776 uint8_t
777 cnxk_ipsec_ivlen_get(enum rte_crypto_cipher_algorithm c_algo,
778                      enum rte_crypto_auth_algorithm a_algo,
779                      enum rte_crypto_aead_algorithm aead_algo)
780 {
781         uint8_t ivlen = 0;
782
783         if (aead_algo == RTE_CRYPTO_AEAD_AES_GCM)
784                 ivlen = 8;
785
786         switch (c_algo) {
787         case RTE_CRYPTO_CIPHER_AES_CTR:
788                 ivlen = 8;
789                 break;
790         case RTE_CRYPTO_CIPHER_3DES_CBC:
791                 ivlen = ROC_CPT_DES_BLOCK_LENGTH;
792                 break;
793         case RTE_CRYPTO_CIPHER_AES_CBC:
794                 ivlen = ROC_CPT_AES_BLOCK_LENGTH;
795                 break;
796         default:
797                 break;
798         }
799
800         switch (a_algo) {
801         case RTE_CRYPTO_AUTH_AES_GMAC:
802                 ivlen = 8;
803                 break;
804         default:
805                 break;
806         }
807
808         return ivlen;
809 }
810
811 uint8_t
812 cnxk_ipsec_icvlen_get(enum rte_crypto_cipher_algorithm c_algo,
813                       enum rte_crypto_auth_algorithm a_algo,
814                       enum rte_crypto_aead_algorithm aead_algo)
815 {
816         uint8_t icv = 0;
817
818         (void)c_algo;
819
820         switch (a_algo) {
821         case RTE_CRYPTO_AUTH_NULL:
822                 icv = 0;
823                 break;
824         case RTE_CRYPTO_AUTH_SHA1_HMAC:
825                 icv = 12;
826                 break;
827         case RTE_CRYPTO_AUTH_SHA256_HMAC:
828         case RTE_CRYPTO_AUTH_AES_GMAC:
829                 icv = 16;
830                 break;
831         case RTE_CRYPTO_AUTH_SHA384_HMAC:
832                 icv = 24;
833                 break;
834         case RTE_CRYPTO_AUTH_SHA512_HMAC:
835                 icv = 32;
836                 break;
837         case RTE_CRYPTO_AUTH_AES_XCBC_MAC:
838                 icv = 12;
839                 break;
840         default:
841                 break;
842         }
843
844         switch (aead_algo) {
845         case RTE_CRYPTO_AEAD_AES_GCM:
846                 icv = 16;
847                 break;
848         default:
849                 break;
850         }
851
852         return icv;
853 }
854
855 uint8_t
856 cnxk_ipsec_outb_roundup_byte(enum rte_crypto_cipher_algorithm c_algo,
857                              enum rte_crypto_aead_algorithm aead_algo)
858 {
859         uint8_t roundup_byte = 4;
860
861         if (aead_algo == RTE_CRYPTO_AEAD_AES_GCM)
862                 return roundup_byte;
863
864         switch (c_algo) {
865         case RTE_CRYPTO_CIPHER_AES_CTR:
866                 roundup_byte = 4;
867                 break;
868         case RTE_CRYPTO_CIPHER_AES_CBC:
869                 roundup_byte = 16;
870                 break;
871         case RTE_CRYPTO_CIPHER_3DES_CBC:
872                 roundup_byte = 8;
873                 break;
874         case RTE_CRYPTO_CIPHER_NULL:
875                 roundup_byte = 4;
876                 break;
877         default:
878                 break;
879         }
880
881         return roundup_byte;
882 }
883
884 int
885 cnxk_ipsec_outb_rlens_get(struct cnxk_ipsec_outb_rlens *rlens,
886                           struct rte_security_ipsec_xform *ipsec_xfrm,
887                           struct rte_crypto_sym_xform *crypto_xfrm)
888 {
889         struct rte_security_ipsec_tunnel_param *tunnel = &ipsec_xfrm->tunnel;
890         enum rte_crypto_cipher_algorithm c_algo = RTE_CRYPTO_CIPHER_NULL;
891         enum rte_crypto_auth_algorithm a_algo = RTE_CRYPTO_AUTH_NULL;
892         enum rte_crypto_aead_algorithm aead_algo = 0;
893         uint16_t partial_len = 0;
894         uint8_t roundup_byte = 0;
895         int8_t roundup_len = 0;
896
897         memset(rlens, 0, sizeof(struct cnxk_ipsec_outb_rlens));
898
899         /* Get Cipher and Auth algo */
900         if (crypto_xfrm->type == RTE_CRYPTO_SYM_XFORM_AEAD) {
901                 aead_algo = crypto_xfrm->aead.algo;
902         } else {
903                 if (crypto_xfrm->type == RTE_CRYPTO_SYM_XFORM_CIPHER)
904                         c_algo = crypto_xfrm->cipher.algo;
905                 else
906                         a_algo = crypto_xfrm->auth.algo;
907
908                 if (crypto_xfrm->next) {
909                         if (crypto_xfrm->next->type ==
910                             RTE_CRYPTO_SYM_XFORM_CIPHER)
911                                 c_algo = crypto_xfrm->next->cipher.algo;
912                         else
913                                 a_algo = crypto_xfrm->next->auth.algo;
914                 }
915         }
916
917         if (ipsec_xfrm->proto == RTE_SECURITY_IPSEC_SA_PROTO_ESP) {
918                 partial_len = ROC_CPT_ESP_HDR_LEN;
919                 roundup_len = ROC_CPT_ESP_TRL_LEN;
920         } else {
921                 partial_len = ROC_CPT_AH_HDR_LEN;
922         }
923
924         if (ipsec_xfrm->mode == RTE_SECURITY_IPSEC_SA_MODE_TUNNEL) {
925                 if (tunnel->type == RTE_SECURITY_IPSEC_TUNNEL_IPV4)
926                         partial_len += ROC_CPT_TUNNEL_IPV4_HDR_LEN;
927                 else
928                         partial_len += ROC_CPT_TUNNEL_IPV6_HDR_LEN;
929         }
930
931         partial_len += cnxk_ipsec_ivlen_get(c_algo, a_algo, aead_algo);
932         partial_len += cnxk_ipsec_icvlen_get(c_algo, a_algo, aead_algo);
933         roundup_byte = cnxk_ipsec_outb_roundup_byte(c_algo, aead_algo);
934
935         if (ipsec_xfrm->options.udp_encap)
936                 partial_len += sizeof(struct rte_udp_hdr);
937
938         rlens->partial_len = partial_len;
939         rlens->roundup_len = roundup_len;
940         rlens->roundup_byte = roundup_byte;
941         rlens->max_extended_len = partial_len + roundup_len + roundup_byte;
942         return 0;
943 }