net/cnxk: support parsing custom SA action
[dpdk.git] / drivers / net / cnxk / cnxk_flow.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4 #include <cnxk_flow.h>
5
6 const struct cnxk_rte_flow_term_info term[] = {
7         [RTE_FLOW_ITEM_TYPE_ETH] = {ROC_NPC_ITEM_TYPE_ETH,
8                                     sizeof(struct rte_flow_item_eth)},
9         [RTE_FLOW_ITEM_TYPE_VLAN] = {ROC_NPC_ITEM_TYPE_VLAN,
10                                      sizeof(struct rte_flow_item_vlan)},
11         [RTE_FLOW_ITEM_TYPE_E_TAG] = {ROC_NPC_ITEM_TYPE_E_TAG,
12                                       sizeof(struct rte_flow_item_e_tag)},
13         [RTE_FLOW_ITEM_TYPE_IPV4] = {ROC_NPC_ITEM_TYPE_IPV4,
14                                      sizeof(struct rte_flow_item_ipv4)},
15         [RTE_FLOW_ITEM_TYPE_IPV6] = {ROC_NPC_ITEM_TYPE_IPV6,
16                                      sizeof(struct rte_flow_item_ipv6)},
17         [RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4] = {
18                         ROC_NPC_ITEM_TYPE_ARP_ETH_IPV4,
19                         sizeof(struct rte_flow_item_arp_eth_ipv4)},
20         [RTE_FLOW_ITEM_TYPE_MPLS] = {ROC_NPC_ITEM_TYPE_MPLS,
21                                      sizeof(struct rte_flow_item_mpls)},
22         [RTE_FLOW_ITEM_TYPE_ICMP] = {ROC_NPC_ITEM_TYPE_ICMP,
23                                      sizeof(struct rte_flow_item_icmp)},
24         [RTE_FLOW_ITEM_TYPE_UDP] = {ROC_NPC_ITEM_TYPE_UDP,
25                                     sizeof(struct rte_flow_item_udp)},
26         [RTE_FLOW_ITEM_TYPE_TCP] = {ROC_NPC_ITEM_TYPE_TCP,
27                                     sizeof(struct rte_flow_item_tcp)},
28         [RTE_FLOW_ITEM_TYPE_SCTP] = {ROC_NPC_ITEM_TYPE_SCTP,
29                                      sizeof(struct rte_flow_item_sctp)},
30         [RTE_FLOW_ITEM_TYPE_ESP] = {ROC_NPC_ITEM_TYPE_ESP,
31                                     sizeof(struct rte_flow_item_esp)},
32         [RTE_FLOW_ITEM_TYPE_GRE] = {ROC_NPC_ITEM_TYPE_GRE,
33                                     sizeof(struct rte_flow_item_gre)},
34         [RTE_FLOW_ITEM_TYPE_NVGRE] = {ROC_NPC_ITEM_TYPE_NVGRE,
35                                       sizeof(struct rte_flow_item_nvgre)},
36         [RTE_FLOW_ITEM_TYPE_VXLAN] = {ROC_NPC_ITEM_TYPE_VXLAN,
37                                       sizeof(struct rte_flow_item_vxlan)},
38         [RTE_FLOW_ITEM_TYPE_GTPC] = {ROC_NPC_ITEM_TYPE_GTPC,
39                                      sizeof(struct rte_flow_item_gtp)},
40         [RTE_FLOW_ITEM_TYPE_GTPU] = {ROC_NPC_ITEM_TYPE_GTPU,
41                                      sizeof(struct rte_flow_item_gtp)},
42         [RTE_FLOW_ITEM_TYPE_GENEVE] = {ROC_NPC_ITEM_TYPE_GENEVE,
43                                        sizeof(struct rte_flow_item_geneve)},
44         [RTE_FLOW_ITEM_TYPE_VXLAN_GPE] = {
45                         ROC_NPC_ITEM_TYPE_VXLAN_GPE,
46                         sizeof(struct rte_flow_item_vxlan_gpe)},
47         [RTE_FLOW_ITEM_TYPE_IPV6_EXT] = {ROC_NPC_ITEM_TYPE_IPV6_EXT,
48                                          sizeof(struct rte_flow_item_ipv6_ext)},
49         [RTE_FLOW_ITEM_TYPE_VOID] = {ROC_NPC_ITEM_TYPE_VOID, 0},
50         [RTE_FLOW_ITEM_TYPE_ANY] = {ROC_NPC_ITEM_TYPE_ANY, 0},
51         [RTE_FLOW_ITEM_TYPE_GRE_KEY] = {ROC_NPC_ITEM_TYPE_GRE_KEY,
52                                         sizeof(uint32_t)},
53         [RTE_FLOW_ITEM_TYPE_HIGIG2] = {ROC_NPC_ITEM_TYPE_HIGIG2,
54                                        sizeof(struct rte_flow_item_higig2_hdr)},
55         [RTE_FLOW_ITEM_TYPE_RAW] = {ROC_NPC_ITEM_TYPE_RAW,
56                                     sizeof(struct rte_flow_item_raw)},
57         [RTE_FLOW_ITEM_TYPE_MARK] = {ROC_NPC_ITEM_TYPE_MARK,
58                                      sizeof(struct rte_flow_item_mark)}};
59
60 static int
61 npc_rss_action_validate(struct rte_eth_dev *eth_dev,
62                         const struct rte_flow_attr *attr,
63                         const struct rte_flow_action *act)
64 {
65         const struct rte_flow_action_rss *rss;
66
67         rss = (const struct rte_flow_action_rss *)act->conf;
68
69         if (attr->egress) {
70                 plt_err("No support of RSS in egress");
71                 return -EINVAL;
72         }
73
74         if (eth_dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_RSS) {
75                 plt_err("multi-queue mode is disabled");
76                 return -ENOTSUP;
77         }
78
79         if (!rss || !rss->queue_num) {
80                 plt_err("no valid queues");
81                 return -EINVAL;
82         }
83
84         if (rss->func != RTE_ETH_HASH_FUNCTION_DEFAULT) {
85                 plt_err("non-default RSS hash functions are not supported");
86                 return -ENOTSUP;
87         }
88
89         if (rss->key_len && rss->key_len > ROC_NIX_RSS_KEY_LEN) {
90                 plt_err("RSS hash key too large");
91                 return -ENOTSUP;
92         }
93
94         return 0;
95 }
96
97 static void
98 npc_rss_flowkey_get(struct cnxk_eth_dev *eth_dev,
99                     const struct roc_npc_action *rss_action,
100                     uint32_t *flowkey_cfg)
101 {
102         const struct roc_npc_action_rss *rss;
103
104         rss = (const struct roc_npc_action_rss *)rss_action->conf;
105
106         *flowkey_cfg = cnxk_rss_ethdev_to_nix(eth_dev, rss->types, rss->level);
107 }
108
109 static int
110 cnxk_map_actions(struct rte_eth_dev *eth_dev, const struct rte_flow_attr *attr,
111                  const struct rte_flow_action actions[],
112                  struct roc_npc_action in_actions[], uint32_t *flowkey_cfg)
113 {
114         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
115         const struct rte_flow_action_port_id *port_act;
116         const struct rte_flow_action_queue *act_q;
117         struct roc_npc *roc_npc_src = &dev->npc;
118         struct rte_eth_dev *portid_eth_dev;
119         char if_name[RTE_ETH_NAME_MAX_LEN];
120         struct cnxk_eth_dev *hw_dst;
121         struct roc_npc *roc_npc_dst;
122         int i = 0, rc = 0;
123         int rq;
124
125         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
126                 switch (actions->type) {
127                 case RTE_FLOW_ACTION_TYPE_VOID:
128                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VOID;
129                         break;
130
131                 case RTE_FLOW_ACTION_TYPE_MARK:
132                         in_actions[i].type = ROC_NPC_ACTION_TYPE_MARK;
133                         in_actions[i].conf = actions->conf;
134                         break;
135
136                 case RTE_FLOW_ACTION_TYPE_FLAG:
137                         in_actions[i].type = ROC_NPC_ACTION_TYPE_FLAG;
138                         break;
139
140                 case RTE_FLOW_ACTION_TYPE_COUNT:
141                         in_actions[i].type = ROC_NPC_ACTION_TYPE_COUNT;
142                         break;
143
144                 case RTE_FLOW_ACTION_TYPE_DROP:
145                         in_actions[i].type = ROC_NPC_ACTION_TYPE_DROP;
146                         break;
147
148                 case RTE_FLOW_ACTION_TYPE_PF:
149                         in_actions[i].type = ROC_NPC_ACTION_TYPE_PF;
150                         break;
151
152                 case RTE_FLOW_ACTION_TYPE_VF:
153                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VF;
154                         in_actions[i].conf = actions->conf;
155                         break;
156
157                 case RTE_FLOW_ACTION_TYPE_PORT_ID:
158                         in_actions[i].type = ROC_NPC_ACTION_TYPE_PORT_ID;
159                         in_actions[i].conf = actions->conf;
160                         port_act = (const struct rte_flow_action_port_id *)
161                                            actions->conf;
162                         if (rte_eth_dev_get_name_by_port(port_act->id,
163                                                          if_name)) {
164                                 plt_err("Name not found for output port id");
165                                 goto err_exit;
166                         }
167                         portid_eth_dev = rte_eth_dev_allocated(if_name);
168                         if (!portid_eth_dev) {
169                                 plt_err("eth_dev not found for output port id");
170                                 goto err_exit;
171                         }
172                         if (strcmp(portid_eth_dev->device->driver->name,
173                                    eth_dev->device->driver->name) != 0) {
174                                 plt_err("Output port not under same driver");
175                                 goto err_exit;
176                         }
177                         hw_dst = portid_eth_dev->data->dev_private;
178                         roc_npc_dst = &hw_dst->npc;
179
180                         rc = roc_npc_validate_portid_action(roc_npc_src,
181                                                             roc_npc_dst);
182
183                         if (rc)
184                                 goto err_exit;
185                         break;
186
187                 case RTE_FLOW_ACTION_TYPE_QUEUE:
188                         act_q = (const struct rte_flow_action_queue *)
189                                         actions->conf;
190                         rq = act_q->index;
191                         if (rq >= eth_dev->data->nb_rx_queues) {
192                                 plt_npc_dbg("Invalid queue index");
193                                 goto err_exit;
194                         }
195                         in_actions[i].type = ROC_NPC_ACTION_TYPE_QUEUE;
196                         in_actions[i].conf = actions->conf;
197                         break;
198
199                 case RTE_FLOW_ACTION_TYPE_RSS:
200                         rc = npc_rss_action_validate(eth_dev, attr, actions);
201                         if (rc)
202                                 goto err_exit;
203                         in_actions[i].type = ROC_NPC_ACTION_TYPE_RSS;
204                         in_actions[i].conf = actions->conf;
205                         npc_rss_flowkey_get(dev, &in_actions[i], flowkey_cfg);
206                         break;
207
208                 case RTE_FLOW_ACTION_TYPE_SECURITY:
209                         in_actions[i].type = ROC_NPC_ACTION_TYPE_SEC;
210                         break;
211                 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
212                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VLAN_STRIP;
213                         break;
214                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
215                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VLAN_INSERT;
216                         in_actions[i].conf = actions->conf;
217                         break;
218                 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
219                         in_actions[i].type =
220                                 ROC_NPC_ACTION_TYPE_VLAN_ETHTYPE_INSERT;
221                         in_actions[i].conf = actions->conf;
222                         break;
223                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
224                         in_actions[i].type =
225                                 ROC_NPC_ACTION_TYPE_VLAN_PCP_INSERT;
226                         in_actions[i].conf = actions->conf;
227                         break;
228                 case RTE_FLOW_ACTION_TYPE_METER:
229                         in_actions[i].type = ROC_NPC_ACTION_TYPE_METER;
230                         in_actions[i].conf = actions->conf;
231                         break;
232                 default:
233                         plt_npc_dbg("Action is not supported = %d",
234                                     actions->type);
235                         goto err_exit;
236                 }
237                 i++;
238         }
239         in_actions[i].type = ROC_NPC_ACTION_TYPE_END;
240         return 0;
241
242 err_exit:
243         return -EINVAL;
244 }
245
246 static int
247 cnxk_map_flow_data(struct rte_eth_dev *eth_dev,
248                    const struct rte_flow_attr *attr,
249                    const struct rte_flow_item pattern[],
250                    const struct rte_flow_action actions[],
251                    struct roc_npc_attr *in_attr,
252                    struct roc_npc_item_info in_pattern[],
253                    struct roc_npc_action in_actions[], uint32_t *flowkey_cfg)
254 {
255         int i = 0;
256
257         in_attr->priority = attr->priority;
258         in_attr->ingress = attr->ingress;
259         in_attr->egress = attr->egress;
260
261         while (pattern->type != RTE_FLOW_ITEM_TYPE_END) {
262                 in_pattern[i].spec = pattern->spec;
263                 in_pattern[i].last = pattern->last;
264                 in_pattern[i].mask = pattern->mask;
265                 in_pattern[i].type = term[pattern->type].item_type;
266                 in_pattern[i].size = term[pattern->type].item_size;
267                 pattern++;
268                 i++;
269         }
270         in_pattern[i].type = ROC_NPC_ITEM_TYPE_END;
271
272         return cnxk_map_actions(eth_dev, attr, actions, in_actions,
273                                 flowkey_cfg);
274 }
275
276 static int
277 cnxk_flow_validate(struct rte_eth_dev *eth_dev,
278                    const struct rte_flow_attr *attr,
279                    const struct rte_flow_item pattern[],
280                    const struct rte_flow_action actions[],
281                    struct rte_flow_error *error)
282 {
283         struct roc_npc_item_info in_pattern[ROC_NPC_ITEM_TYPE_END + 1];
284         struct roc_npc_action in_actions[ROC_NPC_MAX_ACTION_COUNT];
285         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
286         struct roc_npc *npc = &dev->npc;
287         struct roc_npc_attr in_attr;
288         struct roc_npc_flow flow;
289         uint32_t flowkey_cfg = 0;
290         int rc;
291
292         memset(&flow, 0, sizeof(flow));
293
294         rc = cnxk_map_flow_data(eth_dev, attr, pattern, actions, &in_attr,
295                                 in_pattern, in_actions, &flowkey_cfg);
296         if (rc) {
297                 rte_flow_error_set(error, 0, RTE_FLOW_ERROR_TYPE_ACTION_NUM,
298                                    NULL, "Failed to map flow data");
299                 return rc;
300         }
301
302         rc = roc_npc_flow_parse(npc, &in_attr, in_pattern, in_actions, &flow);
303
304         if (rc) {
305                 rte_flow_error_set(error, 0, rc, NULL,
306                                    "Flow validation failed");
307                 return rc;
308         }
309         return 0;
310 }
311
312 struct roc_npc_flow *
313 cnxk_flow_create(struct rte_eth_dev *eth_dev, const struct rte_flow_attr *attr,
314                  const struct rte_flow_item pattern[],
315                  const struct rte_flow_action actions[],
316                  struct rte_flow_error *error)
317 {
318         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
319         struct roc_npc_item_info in_pattern[ROC_NPC_ITEM_TYPE_END + 1];
320         struct roc_npc_action in_actions[ROC_NPC_MAX_ACTION_COUNT];
321         struct roc_npc *npc = &dev->npc;
322         struct roc_npc_attr in_attr;
323         struct roc_npc_flow *flow;
324         int errcode = 0;
325         int rc;
326
327         rc = cnxk_map_flow_data(eth_dev, attr, pattern, actions, &in_attr,
328                                 in_pattern, in_actions,
329                                 &npc->flowkey_cfg_state);
330         if (rc) {
331                 rte_flow_error_set(error, 0, RTE_FLOW_ERROR_TYPE_ACTION_NUM,
332                                    NULL, "Failed to map flow data");
333                 return NULL;
334         }
335
336         flow = roc_npc_flow_create(npc, &in_attr, in_pattern, in_actions,
337                                    &errcode);
338         if (errcode != 0) {
339                 rte_flow_error_set(error, errcode, errcode, NULL,
340                                    roc_error_msg_get(errcode));
341                 return NULL;
342         }
343
344         return flow;
345 }
346
347 int
348 cnxk_flow_destroy(struct rte_eth_dev *eth_dev, struct roc_npc_flow *flow,
349                   struct rte_flow_error *error)
350 {
351         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
352         struct roc_npc *npc = &dev->npc;
353         int rc;
354
355         rc = roc_npc_flow_destroy(npc, flow);
356         if (rc)
357                 rte_flow_error_set(error, rc, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
358                                    NULL, "Flow Destroy failed");
359         return rc;
360 }
361
362 static int
363 cnxk_flow_flush(struct rte_eth_dev *eth_dev, struct rte_flow_error *error)
364 {
365         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
366         struct roc_npc *npc = &dev->npc;
367         int rc;
368
369         rc = roc_npc_mcam_free_all_resources(npc);
370         if (rc) {
371                 rte_flow_error_set(error, EIO, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
372                                    NULL, "Failed to flush filter");
373                 return -rte_errno;
374         }
375
376         return 0;
377 }
378
379 static int
380 cnxk_flow_query(struct rte_eth_dev *eth_dev, struct rte_flow *flow,
381                 const struct rte_flow_action *action, void *data,
382                 struct rte_flow_error *error)
383 {
384         struct roc_npc_flow *in_flow = (struct roc_npc_flow *)flow;
385         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
386         struct roc_npc *npc = &dev->npc;
387         struct rte_flow_query_count *query = data;
388         const char *errmsg = NULL;
389         int errcode = ENOTSUP;
390         int rc;
391
392         if (action->type != RTE_FLOW_ACTION_TYPE_COUNT) {
393                 errmsg = "Only COUNT is supported in query";
394                 goto err_exit;
395         }
396
397         if (in_flow->ctr_id == NPC_COUNTER_NONE) {
398                 errmsg = "Counter is not available";
399                 goto err_exit;
400         }
401
402         rc = roc_npc_mcam_read_counter(npc, in_flow->ctr_id, &query->hits);
403         if (rc != 0) {
404                 errcode = EIO;
405                 errmsg = "Error reading flow counter";
406                 goto err_exit;
407         }
408         query->hits_set = 1;
409         query->bytes_set = 0;
410
411         if (query->reset)
412                 rc = roc_npc_mcam_clear_counter(npc, in_flow->ctr_id);
413         if (rc != 0) {
414                 errcode = EIO;
415                 errmsg = "Error clearing flow counter";
416                 goto err_exit;
417         }
418
419         return 0;
420
421 err_exit:
422         rte_flow_error_set(error, errcode, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
423                            NULL, errmsg);
424         return -rte_errno;
425 }
426
427 static int
428 cnxk_flow_isolate(struct rte_eth_dev *eth_dev __rte_unused,
429                   int enable __rte_unused, struct rte_flow_error *error)
430 {
431         /* If we support, we need to un-install the default mcam
432          * entry for this port.
433          */
434
435         rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
436                            NULL, "Flow isolation not supported");
437
438         return -rte_errno;
439 }
440
441 static int
442 cnxk_flow_dev_dump(struct rte_eth_dev *eth_dev, struct rte_flow *flow,
443                    FILE *file, struct rte_flow_error *error)
444 {
445         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
446         struct roc_npc *npc = &dev->npc;
447
448         if (file == NULL) {
449                 rte_flow_error_set(error, EINVAL,
450                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
451                                    "Invalid file");
452                 return -rte_errno;
453         }
454
455         if (flow != NULL) {
456                 rte_flow_error_set(error, EINVAL,
457                                    RTE_FLOW_ERROR_TYPE_HANDLE,
458                                    NULL,
459                                    "Invalid argument");
460                 return -EINVAL;
461         }
462
463         roc_npc_flow_dump(file, npc);
464
465         return 0;
466 }
467
468 struct rte_flow_ops cnxk_flow_ops = {
469         .validate = cnxk_flow_validate,
470         .flush = cnxk_flow_flush,
471         .query = cnxk_flow_query,
472         .isolate = cnxk_flow_isolate,
473         .dev_dump = cnxk_flow_dev_dump,
474 };