]> git.proxmox.com Git - ovs.git/blob - lib/netdev-tc-offloads.c
netdev-tc-offloads: Add support to match on 802.1AD ethertype
[ovs.git] / lib / netdev-tc-offloads.c
1 /*
2 * Copyright (c) 2016 Mellanox Technologies, Ltd.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18 #include "netdev-tc-offloads.h"
19
20 #include <errno.h>
21 #include <linux/if_ether.h>
22
23 #include "dpif.h"
24 #include "hash.h"
25 #include "openvswitch/hmap.h"
26 #include "openvswitch/match.h"
27 #include "openvswitch/ofpbuf.h"
28 #include "openvswitch/thread.h"
29 #include "openvswitch/types.h"
30 #include "openvswitch/util.h"
31 #include "openvswitch/vlog.h"
32 #include "netdev-linux.h"
33 #include "netlink.h"
34 #include "netlink-socket.h"
35 #include "odp-netlink.h"
36 #include "odp-util.h"
37 #include "tc.h"
38 #include "unaligned.h"
39 #include "util.h"
40
41 VLOG_DEFINE_THIS_MODULE(netdev_tc_offloads);
42
43 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
44
45 static struct hmap ufid_tc = HMAP_INITIALIZER(&ufid_tc);
46 static bool multi_mask_per_prio = false;
47 static bool block_support = false;
48
49 struct netlink_field {
50 int offset;
51 int flower_offset;
52 int size;
53 };
54
55 static struct netlink_field set_flower_map[][3] = {
56 [OVS_KEY_ATTR_IPV4] = {
57 { offsetof(struct ovs_key_ipv4, ipv4_src),
58 offsetof(struct tc_flower_key, ipv4.ipv4_src),
59 MEMBER_SIZEOF(struct tc_flower_key, ipv4.ipv4_src)
60 },
61 { offsetof(struct ovs_key_ipv4, ipv4_dst),
62 offsetof(struct tc_flower_key, ipv4.ipv4_dst),
63 MEMBER_SIZEOF(struct tc_flower_key, ipv4.ipv4_dst)
64 },
65 { offsetof(struct ovs_key_ipv4, ipv4_ttl),
66 offsetof(struct tc_flower_key, ipv4.rewrite_ttl),
67 MEMBER_SIZEOF(struct tc_flower_key, ipv4.rewrite_ttl)
68 },
69 },
70 [OVS_KEY_ATTR_IPV6] = {
71 { offsetof(struct ovs_key_ipv6, ipv6_src),
72 offsetof(struct tc_flower_key, ipv6.ipv6_src),
73 MEMBER_SIZEOF(struct tc_flower_key, ipv6.ipv6_src)
74 },
75 { offsetof(struct ovs_key_ipv6, ipv6_dst),
76 offsetof(struct tc_flower_key, ipv6.ipv6_dst),
77 MEMBER_SIZEOF(struct tc_flower_key, ipv6.ipv6_dst)
78 },
79 },
80 [OVS_KEY_ATTR_ETHERNET] = {
81 { offsetof(struct ovs_key_ethernet, eth_src),
82 offsetof(struct tc_flower_key, src_mac),
83 MEMBER_SIZEOF(struct tc_flower_key, src_mac)
84 },
85 { offsetof(struct ovs_key_ethernet, eth_dst),
86 offsetof(struct tc_flower_key, dst_mac),
87 MEMBER_SIZEOF(struct tc_flower_key, dst_mac)
88 },
89 },
90 [OVS_KEY_ATTR_ETHERTYPE] = {
91 { 0,
92 offsetof(struct tc_flower_key, eth_type),
93 MEMBER_SIZEOF(struct tc_flower_key, eth_type)
94 },
95 },
96 [OVS_KEY_ATTR_TCP] = {
97 { offsetof(struct ovs_key_tcp, tcp_src),
98 offsetof(struct tc_flower_key, tcp_src),
99 MEMBER_SIZEOF(struct tc_flower_key, tcp_src)
100 },
101 { offsetof(struct ovs_key_tcp, tcp_dst),
102 offsetof(struct tc_flower_key, tcp_dst),
103 MEMBER_SIZEOF(struct tc_flower_key, tcp_dst)
104 },
105 },
106 [OVS_KEY_ATTR_UDP] = {
107 { offsetof(struct ovs_key_udp, udp_src),
108 offsetof(struct tc_flower_key, udp_src),
109 MEMBER_SIZEOF(struct tc_flower_key, udp_src)
110 },
111 { offsetof(struct ovs_key_udp, udp_dst),
112 offsetof(struct tc_flower_key, udp_dst),
113 MEMBER_SIZEOF(struct tc_flower_key, udp_dst)
114 },
115 },
116 };
117
118 static struct ovs_mutex ufid_lock = OVS_MUTEX_INITIALIZER;
119
120 /**
121 * struct ufid_tc_data - data entry for ufid_tc hmap.
122 * @ufid_node: Element in @ufid_tc hash table by ufid key.
123 * @tc_node: Element in @ufid_tc hash table by prio/handle/ifindex key.
124 * @ufid: ufid assigned to the flow
125 * @prio: tc priority
126 * @handle: tc handle
127 * @ifindex: netdev ifindex.
128 * @netdev: netdev associated with the tc rule
129 */
130 struct ufid_tc_data {
131 struct hmap_node ufid_node;
132 struct hmap_node tc_node;
133 ovs_u128 ufid;
134 uint16_t prio;
135 uint32_t handle;
136 int ifindex;
137 struct netdev *netdev;
138 };
139
140 /* Remove matching ufid entry from ufid_tc hashmap. */
141 static void
142 del_ufid_tc_mapping(const ovs_u128 *ufid)
143 {
144 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
145 struct ufid_tc_data *data;
146
147 ovs_mutex_lock(&ufid_lock);
148 HMAP_FOR_EACH_WITH_HASH(data, ufid_node, ufid_hash, &ufid_tc) {
149 if (ovs_u128_equals(*ufid, data->ufid)) {
150 break;
151 }
152 }
153
154 if (!data) {
155 ovs_mutex_unlock(&ufid_lock);
156 return;
157 }
158
159 hmap_remove(&ufid_tc, &data->ufid_node);
160 hmap_remove(&ufid_tc, &data->tc_node);
161 netdev_close(data->netdev);
162 free(data);
163 ovs_mutex_unlock(&ufid_lock);
164 }
165
166 /* Add ufid entry to ufid_tc hashmap.
167 * If entry exists already it will be replaced. */
168 static void
169 add_ufid_tc_mapping(const ovs_u128 *ufid, int prio, int handle,
170 struct netdev *netdev, int ifindex)
171 {
172 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
173 size_t tc_hash = hash_int(hash_int(prio, handle), ifindex);
174 struct ufid_tc_data *new_data = xzalloc(sizeof *new_data);
175
176 del_ufid_tc_mapping(ufid);
177
178 new_data->ufid = *ufid;
179 new_data->prio = prio;
180 new_data->handle = handle;
181 new_data->netdev = netdev_ref(netdev);
182 new_data->ifindex = ifindex;
183
184 ovs_mutex_lock(&ufid_lock);
185 hmap_insert(&ufid_tc, &new_data->ufid_node, ufid_hash);
186 hmap_insert(&ufid_tc, &new_data->tc_node, tc_hash);
187 ovs_mutex_unlock(&ufid_lock);
188 }
189
190 /* Get ufid from ufid_tc hashmap.
191 *
192 * If netdev output param is not NULL then the function will return
193 * associated netdev on success and a refcount is taken on that netdev.
194 * The caller is then responsible to close the netdev.
195 *
196 * Returns handle if successful and fill prio and netdev for that ufid.
197 * Otherwise returns 0.
198 */
199 static int
200 get_ufid_tc_mapping(const ovs_u128 *ufid, int *prio, struct netdev **netdev)
201 {
202 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
203 struct ufid_tc_data *data;
204 int handle = 0;
205
206 ovs_mutex_lock(&ufid_lock);
207 HMAP_FOR_EACH_WITH_HASH(data, ufid_node, ufid_hash, &ufid_tc) {
208 if (ovs_u128_equals(*ufid, data->ufid)) {
209 if (prio) {
210 *prio = data->prio;
211 }
212 if (netdev) {
213 *netdev = netdev_ref(data->netdev);
214 }
215 handle = data->handle;
216 break;
217 }
218 }
219 ovs_mutex_unlock(&ufid_lock);
220
221 return handle;
222 }
223
224 /* Find ufid entry in ufid_tc hashmap using prio, handle and netdev.
225 * The result is saved in ufid.
226 *
227 * Returns true on success.
228 */
229 static bool
230 find_ufid(int prio, int handle, struct netdev *netdev, ovs_u128 *ufid)
231 {
232 int ifindex = netdev_get_ifindex(netdev);
233 struct ufid_tc_data *data;
234 size_t tc_hash = hash_int(hash_int(prio, handle), ifindex);
235
236 ovs_mutex_lock(&ufid_lock);
237 HMAP_FOR_EACH_WITH_HASH(data, tc_node, tc_hash, &ufid_tc) {
238 if (data->prio == prio && data->handle == handle
239 && data->ifindex == ifindex) {
240 *ufid = data->ufid;
241 break;
242 }
243 }
244 ovs_mutex_unlock(&ufid_lock);
245
246 return (data != NULL);
247 }
248
249 struct prio_map_data {
250 struct hmap_node node;
251 struct tc_flower_key mask;
252 ovs_be16 protocol;
253 uint16_t prio;
254 };
255
256 /* Get free prio for tc flower
257 * If prio is already allocated for mask/eth_type combination then return it.
258 * If not assign new prio.
259 *
260 * Return prio on success or 0 if we are out of prios.
261 */
262 static uint16_t
263 get_prio_for_tc_flower(struct tc_flower *flower)
264 {
265 static struct hmap prios = HMAP_INITIALIZER(&prios);
266 static struct ovs_mutex prios_lock = OVS_MUTEX_INITIALIZER;
267 static uint16_t last_prio = 0;
268 size_t key_len = sizeof(struct tc_flower_key);
269 size_t hash = hash_int((OVS_FORCE uint32_t) flower->key.eth_type, 0);
270 struct prio_map_data *data;
271 struct prio_map_data *new_data;
272
273 if (!multi_mask_per_prio) {
274 hash = hash_bytes(&flower->mask, key_len, hash);
275 }
276
277 /* We can use the same prio for same mask/eth combination but must have
278 * different prio if not. Flower classifier will reject same prio for
279 * different mask combination unless multi mask per prio is supported. */
280 ovs_mutex_lock(&prios_lock);
281 HMAP_FOR_EACH_WITH_HASH(data, node, hash, &prios) {
282 if ((multi_mask_per_prio
283 || !memcmp(&flower->mask, &data->mask, key_len))
284 && data->protocol == flower->key.eth_type) {
285 ovs_mutex_unlock(&prios_lock);
286 return data->prio;
287 }
288 }
289
290 if (last_prio == UINT16_MAX) {
291 /* last_prio can overflow if there will be many different kinds of
292 * flows which shouldn't happen organically. */
293 ovs_mutex_unlock(&prios_lock);
294 return 0;
295 }
296
297 new_data = xzalloc(sizeof *new_data);
298 memcpy(&new_data->mask, &flower->mask, key_len);
299 new_data->prio = ++last_prio;
300 new_data->protocol = flower->key.eth_type;
301 hmap_insert(&prios, &new_data->node, hash);
302 ovs_mutex_unlock(&prios_lock);
303
304 return new_data->prio;
305 }
306
307 static uint32_t
308 get_block_id_from_netdev(struct netdev *netdev)
309 {
310 if (block_support) {
311 return netdev_get_block_id(netdev);
312 }
313
314 return 0;
315 }
316
317 int
318 netdev_tc_flow_flush(struct netdev *netdev)
319 {
320 int ifindex = netdev_get_ifindex(netdev);
321 uint32_t block_id = 0;
322
323 if (ifindex < 0) {
324 VLOG_ERR_RL(&error_rl, "flow_flush: failed to get ifindex for %s: %s",
325 netdev_get_name(netdev), ovs_strerror(-ifindex));
326 return -ifindex;
327 }
328
329 block_id = get_block_id_from_netdev(netdev);
330
331 return tc_flush(ifindex, block_id);
332 }
333
334 int
335 netdev_tc_flow_dump_create(struct netdev *netdev,
336 struct netdev_flow_dump **dump_out)
337 {
338 struct netdev_flow_dump *dump;
339 uint32_t block_id = 0;
340 int ifindex;
341
342 ifindex = netdev_get_ifindex(netdev);
343 if (ifindex < 0) {
344 VLOG_ERR_RL(&error_rl, "dump_create: failed to get ifindex for %s: %s",
345 netdev_get_name(netdev), ovs_strerror(-ifindex));
346 return -ifindex;
347 }
348
349 block_id = get_block_id_from_netdev(netdev);
350 dump = xzalloc(sizeof *dump);
351 dump->nl_dump = xzalloc(sizeof *dump->nl_dump);
352 dump->netdev = netdev_ref(netdev);
353 tc_dump_flower_start(ifindex, dump->nl_dump, block_id);
354
355 *dump_out = dump;
356
357 return 0;
358 }
359
360 int
361 netdev_tc_flow_dump_destroy(struct netdev_flow_dump *dump)
362 {
363 nl_dump_done(dump->nl_dump);
364 netdev_close(dump->netdev);
365 free(dump->nl_dump);
366 free(dump);
367 return 0;
368 }
369
370 static void
371 parse_flower_rewrite_to_netlink_action(struct ofpbuf *buf,
372 struct tc_flower *flower)
373 {
374 char *mask = (char *) &flower->rewrite.mask;
375 char *data = (char *) &flower->rewrite.key;
376
377 for (int type = 0; type < ARRAY_SIZE(set_flower_map); type++) {
378 char *put = NULL;
379 size_t nested = 0;
380 int len = ovs_flow_key_attr_lens[type].len;
381
382 if (len <= 0) {
383 continue;
384 }
385
386 for (int j = 0; j < ARRAY_SIZE(set_flower_map[type]); j++) {
387 struct netlink_field *f = &set_flower_map[type][j];
388
389 if (!f->size) {
390 break;
391 }
392
393 if (!is_all_zeros(mask + f->flower_offset, f->size)) {
394 if (!put) {
395 nested = nl_msg_start_nested(buf,
396 OVS_ACTION_ATTR_SET_MASKED);
397 put = nl_msg_put_unspec_zero(buf, type, len * 2);
398 }
399
400 memcpy(put + f->offset, data + f->flower_offset, f->size);
401 memcpy(put + len + f->offset,
402 mask + f->flower_offset, f->size);
403 }
404 }
405
406 if (put) {
407 nl_msg_end_nested(buf, nested);
408 }
409 }
410 }
411
412 static int
413 parse_tc_flower_to_match(struct tc_flower *flower,
414 struct match *match,
415 struct nlattr **actions,
416 struct dpif_flow_stats *stats,
417 struct dpif_flow_attrs *attrs,
418 struct ofpbuf *buf)
419 {
420 size_t act_off;
421 struct tc_flower_key *key = &flower->key;
422 struct tc_flower_key *mask = &flower->mask;
423 odp_port_t outport = 0;
424 struct tc_action *action;
425 int i;
426
427 ofpbuf_clear(buf);
428
429 match_init_catchall(match);
430 match_set_dl_src_masked(match, key->src_mac, mask->src_mac);
431 match_set_dl_dst_masked(match, key->dst_mac, mask->dst_mac);
432
433 if (eth_type_vlan(key->eth_type)) {
434 match_set_dl_vlan(match, htons(key->vlan_id));
435 match_set_dl_vlan_pcp(match, key->vlan_prio);
436 match_set_dl_type(match, key->encap_eth_type);
437 flow_fix_vlan_tpid(&match->flow);
438 } else {
439 match_set_dl_type(match, key->eth_type);
440 }
441
442 if (is_ip_any(&match->flow)) {
443 if (key->ip_proto) {
444 match_set_nw_proto(match, key->ip_proto);
445 }
446
447 match_set_nw_ttl_masked(match, key->ip_ttl, mask->ip_ttl);
448
449 if (mask->flags) {
450 uint8_t flags = 0;
451 uint8_t flags_mask = 0;
452
453 if (mask->flags & TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT) {
454 if (key->flags & TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT) {
455 flags |= FLOW_NW_FRAG_ANY;
456 }
457 flags_mask |= FLOW_NW_FRAG_ANY;
458 }
459
460 if (mask->flags & TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST) {
461 if (!(key->flags & TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST)) {
462 flags |= FLOW_NW_FRAG_LATER;
463 }
464 flags_mask |= FLOW_NW_FRAG_LATER;
465 }
466
467 match_set_nw_frag_masked(match, flags, flags_mask);
468 }
469
470 match_set_nw_src_masked(match, key->ipv4.ipv4_src, mask->ipv4.ipv4_src);
471 match_set_nw_dst_masked(match, key->ipv4.ipv4_dst, mask->ipv4.ipv4_dst);
472
473 match_set_ipv6_src_masked(match,
474 &key->ipv6.ipv6_src, &mask->ipv6.ipv6_src);
475 match_set_ipv6_dst_masked(match,
476 &key->ipv6.ipv6_dst, &mask->ipv6.ipv6_dst);
477
478 if (key->ip_proto == IPPROTO_TCP) {
479 match_set_tp_dst_masked(match, key->tcp_dst, mask->tcp_dst);
480 match_set_tp_src_masked(match, key->tcp_src, mask->tcp_src);
481 match_set_tcp_flags_masked(match, key->tcp_flags, mask->tcp_flags);
482 } else if (key->ip_proto == IPPROTO_UDP) {
483 match_set_tp_dst_masked(match, key->udp_dst, mask->udp_dst);
484 match_set_tp_src_masked(match, key->udp_src, mask->udp_src);
485 } else if (key->ip_proto == IPPROTO_SCTP) {
486 match_set_tp_dst_masked(match, key->sctp_dst, mask->sctp_dst);
487 match_set_tp_src_masked(match, key->sctp_src, mask->sctp_src);
488 }
489 }
490
491 if (flower->tunnel.tunnel) {
492 match_set_tun_id(match, flower->tunnel.id);
493 if (flower->tunnel.ipv4.ipv4_dst) {
494 match_set_tun_src(match, flower->tunnel.ipv4.ipv4_src);
495 match_set_tun_dst(match, flower->tunnel.ipv4.ipv4_dst);
496 } else if (!is_all_zeros(&flower->tunnel.ipv6.ipv6_dst,
497 sizeof flower->tunnel.ipv6.ipv6_dst)) {
498 match_set_tun_ipv6_src(match, &flower->tunnel.ipv6.ipv6_src);
499 match_set_tun_ipv6_dst(match, &flower->tunnel.ipv6.ipv6_dst);
500 }
501 if (flower->tunnel.tp_dst) {
502 match_set_tun_tp_dst(match, flower->tunnel.tp_dst);
503 }
504 }
505
506 act_off = nl_msg_start_nested(buf, OVS_FLOW_ATTR_ACTIONS);
507 {
508 action = flower->actions;
509 for (i = 0; i < flower->action_count; i++, action++) {
510 switch (action->type) {
511 case TC_ACT_VLAN_POP: {
512 nl_msg_put_flag(buf, OVS_ACTION_ATTR_POP_VLAN);
513 }
514 break;
515 case TC_ACT_VLAN_PUSH: {
516 struct ovs_action_push_vlan *push;
517
518 push = nl_msg_put_unspec_zero(buf, OVS_ACTION_ATTR_PUSH_VLAN,
519 sizeof *push);
520 push->vlan_tpid = action->vlan.vlan_push_tpid;
521 push->vlan_tci = htons(action->vlan.vlan_push_id
522 | (action->vlan.vlan_push_prio << 13)
523 | VLAN_CFI);
524 }
525 break;
526 case TC_ACT_PEDIT: {
527 parse_flower_rewrite_to_netlink_action(buf, flower);
528 }
529 break;
530 case TC_ACT_ENCAP: {
531 size_t set_offset = nl_msg_start_nested(buf, OVS_ACTION_ATTR_SET);
532 size_t tunnel_offset =
533 nl_msg_start_nested(buf, OVS_KEY_ATTR_TUNNEL);
534
535 nl_msg_put_be64(buf, OVS_TUNNEL_KEY_ATTR_ID, action->encap.id);
536 if (action->encap.ipv4.ipv4_src) {
537 nl_msg_put_be32(buf, OVS_TUNNEL_KEY_ATTR_IPV4_SRC,
538 action->encap.ipv4.ipv4_src);
539 }
540 if (action->encap.ipv4.ipv4_dst) {
541 nl_msg_put_be32(buf, OVS_TUNNEL_KEY_ATTR_IPV4_DST,
542 action->encap.ipv4.ipv4_dst);
543 }
544 if (!is_all_zeros(&action->encap.ipv6.ipv6_src,
545 sizeof action->encap.ipv6.ipv6_src)) {
546 nl_msg_put_in6_addr(buf, OVS_TUNNEL_KEY_ATTR_IPV6_SRC,
547 &action->encap.ipv6.ipv6_src);
548 }
549 if (!is_all_zeros(&action->encap.ipv6.ipv6_dst,
550 sizeof action->encap.ipv6.ipv6_dst)) {
551 nl_msg_put_in6_addr(buf, OVS_TUNNEL_KEY_ATTR_IPV6_DST,
552 &action->encap.ipv6.ipv6_dst);
553 }
554 nl_msg_put_be16(buf, OVS_TUNNEL_KEY_ATTR_TP_DST,
555 action->encap.tp_dst);
556
557 nl_msg_end_nested(buf, tunnel_offset);
558 nl_msg_end_nested(buf, set_offset);
559 }
560 break;
561 case TC_ACT_OUTPUT: {
562 if (action->ifindex_out) {
563 outport = netdev_ifindex_to_odp_port(action->ifindex_out);
564 if (!outport) {
565 return ENOENT;
566 }
567 }
568 nl_msg_put_u32(buf, OVS_ACTION_ATTR_OUTPUT, odp_to_u32(outport));
569 }
570 break;
571 }
572 }
573 }
574 nl_msg_end_nested(buf, act_off);
575
576 *actions = ofpbuf_at_assert(buf, act_off, sizeof(struct nlattr));
577
578 if (stats) {
579 memset(stats, 0, sizeof *stats);
580 stats->n_packets = get_32aligned_u64(&flower->stats.n_packets);
581 stats->n_bytes = get_32aligned_u64(&flower->stats.n_bytes);
582 stats->used = flower->lastused;
583 }
584
585 attrs->offloaded = (flower->offloaded_state == TC_OFFLOADED_STATE_IN_HW)
586 || (flower->offloaded_state == TC_OFFLOADED_STATE_UNDEFINED);
587 attrs->dp_layer = "tc";
588
589 return 0;
590 }
591
592 bool
593 netdev_tc_flow_dump_next(struct netdev_flow_dump *dump,
594 struct match *match,
595 struct nlattr **actions,
596 struct dpif_flow_stats *stats,
597 struct dpif_flow_attrs *attrs,
598 ovs_u128 *ufid,
599 struct ofpbuf *rbuffer,
600 struct ofpbuf *wbuffer)
601 {
602 struct ofpbuf nl_flow;
603
604 while (nl_dump_next(dump->nl_dump, &nl_flow, rbuffer)) {
605 struct tc_flower flower;
606 struct netdev *netdev = dump->netdev;
607
608 if (parse_netlink_to_tc_flower(&nl_flow, &flower)) {
609 continue;
610 }
611
612 if (parse_tc_flower_to_match(&flower, match, actions, stats, attrs,
613 wbuffer)) {
614 continue;
615 }
616
617 if (flower.act_cookie.len) {
618 *ufid = *((ovs_u128 *) flower.act_cookie.data);
619 } else if (!find_ufid(flower.prio, flower.handle, netdev, ufid)) {
620 continue;
621 }
622
623 match->wc.masks.in_port.odp_port = u32_to_odp(UINT32_MAX);
624 match->flow.in_port.odp_port = dump->port;
625
626 return true;
627 }
628
629 return false;
630 }
631
632 static int
633 parse_put_flow_set_masked_action(struct tc_flower *flower,
634 struct tc_action *action,
635 const struct nlattr *set,
636 size_t set_len,
637 bool hasmask)
638 {
639 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
640 uint64_t set_stub[1024 / 8];
641 struct ofpbuf set_buf = OFPBUF_STUB_INITIALIZER(set_stub);
642 char *set_data, *set_mask;
643 char *key = (char *) &flower->rewrite.key;
644 char *mask = (char *) &flower->rewrite.mask;
645 const struct nlattr *attr;
646 int i, j, type;
647 size_t size;
648
649 /* copy so we can set attr mask to 0 for used ovs key struct members */
650 attr = ofpbuf_put(&set_buf, set, set_len);
651
652 type = nl_attr_type(attr);
653 size = nl_attr_get_size(attr) / 2;
654 set_data = CONST_CAST(char *, nl_attr_get(attr));
655 set_mask = set_data + size;
656
657 if (type >= ARRAY_SIZE(set_flower_map)
658 || !set_flower_map[type][0].size) {
659 VLOG_DBG_RL(&rl, "unsupported set action type: %d", type);
660 ofpbuf_uninit(&set_buf);
661 return EOPNOTSUPP;
662 }
663
664 for (i = 0; i < ARRAY_SIZE(set_flower_map[type]); i++) {
665 struct netlink_field *f = &set_flower_map[type][i];
666
667 if (!f->size) {
668 break;
669 }
670
671 /* copy masked value */
672 for (j = 0; j < f->size; j++) {
673 char maskval = hasmask ? set_mask[f->offset + j] : 0xFF;
674
675 key[f->flower_offset + j] = maskval & set_data[f->offset + j];
676 mask[f->flower_offset + j] = maskval;
677
678 }
679
680 /* set its mask to 0 to show it's been used. */
681 if (hasmask) {
682 memset(set_mask + f->offset, 0, f->size);
683 }
684 }
685
686 if (!is_all_zeros(&flower->rewrite, sizeof flower->rewrite)) {
687 if (flower->rewrite.rewrite == false) {
688 flower->rewrite.rewrite = true;
689 action->type = TC_ACT_PEDIT;
690 flower->action_count++;
691 }
692 }
693
694 if (hasmask && !is_all_zeros(set_mask, size)) {
695 VLOG_DBG_RL(&rl, "unsupported sub attribute of set action type %d",
696 type);
697 ofpbuf_uninit(&set_buf);
698 return EOPNOTSUPP;
699 }
700
701 ofpbuf_uninit(&set_buf);
702 return 0;
703 }
704
705 static int
706 parse_put_flow_set_action(struct tc_flower *flower, struct tc_action *action,
707 const struct nlattr *set, size_t set_len)
708 {
709 const struct nlattr *tunnel;
710 const struct nlattr *tun_attr;
711 size_t tun_left, tunnel_len;
712
713 if (nl_attr_type(set) != OVS_KEY_ATTR_TUNNEL) {
714 return parse_put_flow_set_masked_action(flower, action, set,
715 set_len, false);
716 }
717
718 tunnel = nl_attr_get(set);
719 tunnel_len = nl_attr_get_size(set);
720
721 action->type = TC_ACT_ENCAP;
722 flower->action_count++;
723 NL_ATTR_FOR_EACH_UNSAFE(tun_attr, tun_left, tunnel, tunnel_len) {
724 switch (nl_attr_type(tun_attr)) {
725 case OVS_TUNNEL_KEY_ATTR_ID: {
726 action->encap.id = nl_attr_get_be64(tun_attr);
727 }
728 break;
729 case OVS_TUNNEL_KEY_ATTR_IPV4_SRC: {
730 action->encap.ipv4.ipv4_src = nl_attr_get_be32(tun_attr);
731 }
732 break;
733 case OVS_TUNNEL_KEY_ATTR_IPV4_DST: {
734 action->encap.ipv4.ipv4_dst = nl_attr_get_be32(tun_attr);
735 }
736 break;
737 case OVS_TUNNEL_KEY_ATTR_IPV6_SRC: {
738 action->encap.ipv6.ipv6_src =
739 nl_attr_get_in6_addr(tun_attr);
740 }
741 break;
742 case OVS_TUNNEL_KEY_ATTR_IPV6_DST: {
743 action->encap.ipv6.ipv6_dst =
744 nl_attr_get_in6_addr(tun_attr);
745 }
746 break;
747 case OVS_TUNNEL_KEY_ATTR_TP_SRC: {
748 action->encap.tp_src = nl_attr_get_be16(tun_attr);
749 }
750 break;
751 case OVS_TUNNEL_KEY_ATTR_TP_DST: {
752 action->encap.tp_dst = nl_attr_get_be16(tun_attr);
753 }
754 break;
755 }
756 }
757
758 return 0;
759 }
760
761 static int
762 test_key_and_mask(struct match *match)
763 {
764 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
765 const struct flow *key = &match->flow;
766 struct flow *mask = &match->wc.masks;
767
768 if (mask->pkt_mark) {
769 VLOG_DBG_RL(&rl, "offloading attribute pkt_mark isn't supported");
770 return EOPNOTSUPP;
771 }
772
773 if (mask->recirc_id && key->recirc_id) {
774 VLOG_DBG_RL(&rl, "offloading attribute recirc_id isn't supported");
775 return EOPNOTSUPP;
776 }
777 mask->recirc_id = 0;
778
779 if (mask->dp_hash) {
780 VLOG_DBG_RL(&rl, "offloading attribute dp_hash isn't supported");
781 return EOPNOTSUPP;
782 }
783
784 if (mask->conj_id) {
785 VLOG_DBG_RL(&rl, "offloading attribute conj_id isn't supported");
786 return EOPNOTSUPP;
787 }
788
789 if (mask->skb_priority) {
790 VLOG_DBG_RL(&rl, "offloading attribute skb_priority isn't supported");
791 return EOPNOTSUPP;
792 }
793
794 if (mask->actset_output) {
795 VLOG_DBG_RL(&rl,
796 "offloading attribute actset_output isn't supported");
797 return EOPNOTSUPP;
798 }
799
800 if (mask->ct_state) {
801 VLOG_DBG_RL(&rl, "offloading attribute ct_state isn't supported");
802 return EOPNOTSUPP;
803 }
804
805 if (mask->ct_zone) {
806 VLOG_DBG_RL(&rl, "offloading attribute ct_zone isn't supported");
807 return EOPNOTSUPP;
808 }
809
810 if (mask->ct_mark) {
811 VLOG_DBG_RL(&rl, "offloading attribute ct_mark isn't supported");
812 return EOPNOTSUPP;
813 }
814
815 if (mask->packet_type && key->packet_type) {
816 VLOG_DBG_RL(&rl, "offloading attribute packet_type isn't supported");
817 return EOPNOTSUPP;
818 }
819 mask->packet_type = 0;
820
821 if (!ovs_u128_is_zero(mask->ct_label)) {
822 VLOG_DBG_RL(&rl, "offloading attribute ct_label isn't supported");
823 return EOPNOTSUPP;
824 }
825
826 for (int i = 0; i < FLOW_N_REGS; i++) {
827 if (mask->regs[i]) {
828 VLOG_DBG_RL(&rl,
829 "offloading attribute regs[%d] isn't supported", i);
830 return EOPNOTSUPP;
831 }
832 }
833
834 if (mask->metadata) {
835 VLOG_DBG_RL(&rl, "offloading attribute metadata isn't supported");
836 return EOPNOTSUPP;
837 }
838
839 if (mask->nw_tos) {
840 VLOG_DBG_RL(&rl, "offloading attribute nw_tos isn't supported");
841 return EOPNOTSUPP;
842 }
843
844 for (int i = 0; i < FLOW_MAX_MPLS_LABELS; i++) {
845 if (mask->mpls_lse[i]) {
846 VLOG_DBG_RL(&rl, "offloading attribute mpls_lse isn't supported");
847 return EOPNOTSUPP;
848 }
849 }
850
851 if (key->dl_type == htons(ETH_TYPE_IP) &&
852 key->nw_proto == IPPROTO_ICMP) {
853 if (mask->tp_src) {
854 VLOG_DBG_RL(&rl,
855 "offloading attribute icmp_type isn't supported");
856 return EOPNOTSUPP;
857 }
858 if (mask->tp_dst) {
859 VLOG_DBG_RL(&rl,
860 "offloading attribute icmp_code isn't supported");
861 return EOPNOTSUPP;
862 }
863 } else if (key->dl_type == htons(ETH_TYPE_IP) &&
864 key->nw_proto == IPPROTO_IGMP) {
865 if (mask->tp_src) {
866 VLOG_DBG_RL(&rl,
867 "offloading attribute igmp_type isn't supported");
868 return EOPNOTSUPP;
869 }
870 if (mask->tp_dst) {
871 VLOG_DBG_RL(&rl,
872 "offloading attribute igmp_code isn't supported");
873 return EOPNOTSUPP;
874 }
875 } else if (key->dl_type == htons(ETH_TYPE_IPV6) &&
876 key->nw_proto == IPPROTO_ICMPV6) {
877 if (mask->tp_src) {
878 VLOG_DBG_RL(&rl,
879 "offloading attribute icmp_type isn't supported");
880 return EOPNOTSUPP;
881 }
882 if (mask->tp_dst) {
883 VLOG_DBG_RL(&rl,
884 "offloading attribute icmp_code isn't supported");
885 return EOPNOTSUPP;
886 }
887 }
888
889 if (!is_all_zeros(mask, sizeof *mask)) {
890 VLOG_DBG_RL(&rl, "offloading isn't supported, unknown attribute");
891 return EOPNOTSUPP;
892 }
893
894 return 0;
895 }
896
897 int
898 netdev_tc_flow_put(struct netdev *netdev, struct match *match,
899 struct nlattr *actions, size_t actions_len,
900 const ovs_u128 *ufid, struct offload_info *info,
901 struct dpif_flow_stats *stats OVS_UNUSED)
902 {
903 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
904 struct tc_flower flower;
905 const struct flow *key = &match->flow;
906 struct flow *mask = &match->wc.masks;
907 const struct flow_tnl *tnl = &match->flow.tunnel;
908 struct tc_action *action;
909 uint32_t block_id = 0;
910 struct nlattr *nla;
911 size_t left;
912 int prio = 0;
913 int handle;
914 int ifindex;
915 int err;
916
917 ifindex = netdev_get_ifindex(netdev);
918 if (ifindex < 0) {
919 VLOG_ERR_RL(&error_rl, "flow_put: failed to get ifindex for %s: %s",
920 netdev_get_name(netdev), ovs_strerror(-ifindex));
921 return -ifindex;
922 }
923
924 memset(&flower, 0, sizeof flower);
925
926 if (flow_tnl_dst_is_set(&key->tunnel)) {
927 VLOG_DBG_RL(&rl,
928 "tunnel: id %#" PRIx64 " src " IP_FMT
929 " dst " IP_FMT " tp_src %d tp_dst %d",
930 ntohll(tnl->tun_id),
931 IP_ARGS(tnl->ip_src), IP_ARGS(tnl->ip_dst),
932 ntohs(tnl->tp_src), ntohs(tnl->tp_dst));
933 flower.tunnel.id = tnl->tun_id;
934 flower.tunnel.ipv4.ipv4_src = tnl->ip_src;
935 flower.tunnel.ipv4.ipv4_dst = tnl->ip_dst;
936 flower.tunnel.ipv6.ipv6_src = tnl->ipv6_src;
937 flower.tunnel.ipv6.ipv6_dst = tnl->ipv6_dst;
938 flower.tunnel.tp_src = tnl->tp_src;
939 flower.tunnel.tp_dst = tnl->tp_dst;
940 flower.tunnel.tunnel = true;
941 }
942 memset(&mask->tunnel, 0, sizeof mask->tunnel);
943
944 flower.key.eth_type = key->dl_type;
945 flower.mask.eth_type = mask->dl_type;
946
947 if (mask->vlans[0].tci) {
948 ovs_be16 vid_mask = mask->vlans[0].tci & htons(VLAN_VID_MASK);
949 ovs_be16 pcp_mask = mask->vlans[0].tci & htons(VLAN_PCP_MASK);
950 ovs_be16 cfi = mask->vlans[0].tci & htons(VLAN_CFI);
951
952 if (cfi && key->vlans[0].tci & htons(VLAN_CFI)
953 && (!vid_mask || vid_mask == htons(VLAN_VID_MASK))
954 && (!pcp_mask || pcp_mask == htons(VLAN_PCP_MASK))
955 && (vid_mask || pcp_mask)) {
956 if (vid_mask) {
957 flower.key.vlan_id = vlan_tci_to_vid(key->vlans[0].tci);
958 VLOG_DBG_RL(&rl, "vlan_id: %d\n", flower.key.vlan_id);
959 }
960 if (pcp_mask) {
961 flower.key.vlan_prio = vlan_tci_to_pcp(key->vlans[0].tci);
962 VLOG_DBG_RL(&rl, "vlan_prio: %d\n", flower.key.vlan_prio);
963 }
964 flower.key.encap_eth_type = flower.key.eth_type;
965 flower.key.eth_type = key->vlans[0].tpid;
966 } else if (mask->vlans[0].tci == htons(0xffff) &&
967 ntohs(key->vlans[0].tci) == 0) {
968 /* exact && no vlan */
969 } else {
970 /* partial mask */
971 return EOPNOTSUPP;
972 }
973 } else if (mask->vlans[1].tci) {
974 return EOPNOTSUPP;
975 }
976 memset(mask->vlans, 0, sizeof mask->vlans);
977
978 flower.key.dst_mac = key->dl_dst;
979 flower.mask.dst_mac = mask->dl_dst;
980 flower.key.src_mac = key->dl_src;
981 flower.mask.src_mac = mask->dl_src;
982 memset(&mask->dl_dst, 0, sizeof mask->dl_dst);
983 memset(&mask->dl_src, 0, sizeof mask->dl_src);
984 mask->dl_type = 0;
985 mask->in_port.odp_port = 0;
986
987 if (is_ip_any(key)) {
988 flower.key.ip_proto = key->nw_proto;
989 flower.mask.ip_proto = mask->nw_proto;
990 flower.key.ip_ttl = key->nw_ttl;
991 flower.mask.ip_ttl = mask->nw_ttl;
992
993 if (mask->nw_frag & FLOW_NW_FRAG_ANY) {
994 flower.mask.flags |= TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT;
995
996 if (key->nw_frag & FLOW_NW_FRAG_ANY) {
997 flower.key.flags |= TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT;
998
999 if (mask->nw_frag & FLOW_NW_FRAG_LATER) {
1000 flower.mask.flags |= TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST;
1001
1002 if (!(key->nw_frag & FLOW_NW_FRAG_LATER)) {
1003 flower.key.flags |= TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST;
1004 }
1005 }
1006 }
1007
1008 mask->nw_frag = 0;
1009 }
1010
1011 if (key->nw_proto == IPPROTO_TCP) {
1012 flower.key.tcp_dst = key->tp_dst;
1013 flower.mask.tcp_dst = mask->tp_dst;
1014 flower.key.tcp_src = key->tp_src;
1015 flower.mask.tcp_src = mask->tp_src;
1016 flower.key.tcp_flags = key->tcp_flags;
1017 flower.mask.tcp_flags = mask->tcp_flags;
1018 mask->tp_src = 0;
1019 mask->tp_dst = 0;
1020 mask->tcp_flags = 0;
1021 } else if (key->nw_proto == IPPROTO_UDP) {
1022 flower.key.udp_dst = key->tp_dst;
1023 flower.mask.udp_dst = mask->tp_dst;
1024 flower.key.udp_src = key->tp_src;
1025 flower.mask.udp_src = mask->tp_src;
1026 mask->tp_src = 0;
1027 mask->tp_dst = 0;
1028 } else if (key->nw_proto == IPPROTO_SCTP) {
1029 flower.key.sctp_dst = key->tp_dst;
1030 flower.mask.sctp_dst = mask->tp_dst;
1031 flower.key.sctp_src = key->tp_src;
1032 flower.mask.sctp_src = mask->tp_src;
1033 mask->tp_src = 0;
1034 mask->tp_dst = 0;
1035 }
1036
1037 mask->nw_tos = 0;
1038 mask->nw_proto = 0;
1039 mask->nw_ttl = 0;
1040
1041 if (key->dl_type == htons(ETH_P_IP)) {
1042 flower.key.ipv4.ipv4_src = key->nw_src;
1043 flower.mask.ipv4.ipv4_src = mask->nw_src;
1044 flower.key.ipv4.ipv4_dst = key->nw_dst;
1045 flower.mask.ipv4.ipv4_dst = mask->nw_dst;
1046 mask->nw_src = 0;
1047 mask->nw_dst = 0;
1048 } else if (key->dl_type == htons(ETH_P_IPV6)) {
1049 flower.key.ipv6.ipv6_src = key->ipv6_src;
1050 flower.mask.ipv6.ipv6_src = mask->ipv6_src;
1051 flower.key.ipv6.ipv6_dst = key->ipv6_dst;
1052 flower.mask.ipv6.ipv6_dst = mask->ipv6_dst;
1053 memset(&mask->ipv6_src, 0, sizeof mask->ipv6_src);
1054 memset(&mask->ipv6_dst, 0, sizeof mask->ipv6_dst);
1055 }
1056 }
1057
1058 err = test_key_and_mask(match);
1059 if (err) {
1060 return err;
1061 }
1062
1063 NL_ATTR_FOR_EACH(nla, left, actions, actions_len) {
1064 if (flower.action_count >= TCA_ACT_MAX_PRIO) {
1065 VLOG_DBG_RL(&rl, "Can only support %d actions", flower.action_count);
1066 return EOPNOTSUPP;
1067 }
1068 action = &flower.actions[flower.action_count];
1069 if (nl_attr_type(nla) == OVS_ACTION_ATTR_OUTPUT) {
1070 odp_port_t port = nl_attr_get_odp_port(nla);
1071 struct netdev *outdev = netdev_ports_get(port, info->dpif_class);
1072
1073 action->ifindex_out = netdev_get_ifindex(outdev);
1074 action->type = TC_ACT_OUTPUT;
1075 flower.action_count++;
1076 netdev_close(outdev);
1077 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_PUSH_VLAN) {
1078 const struct ovs_action_push_vlan *vlan_push = nl_attr_get(nla);
1079
1080 action->vlan.vlan_push_tpid = vlan_push->vlan_tpid;
1081 action->vlan.vlan_push_id = vlan_tci_to_vid(vlan_push->vlan_tci);
1082 action->vlan.vlan_push_prio = vlan_tci_to_pcp(vlan_push->vlan_tci);
1083 action->type = TC_ACT_VLAN_PUSH;
1084 flower.action_count++;
1085 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_POP_VLAN) {
1086 action->type = TC_ACT_VLAN_POP;
1087 flower.action_count++;
1088 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_SET) {
1089 const struct nlattr *set = nl_attr_get(nla);
1090 const size_t set_len = nl_attr_get_size(nla);
1091
1092 err = parse_put_flow_set_action(&flower, action, set, set_len);
1093 if (err) {
1094 return err;
1095 }
1096 if (action->type == TC_ACT_ENCAP) {
1097 action->encap.tp_dst = info->tp_dst_port;
1098 }
1099 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_SET_MASKED) {
1100 const struct nlattr *set = nl_attr_get(nla);
1101 const size_t set_len = nl_attr_get_size(nla);
1102
1103 err = parse_put_flow_set_masked_action(&flower, action, set,
1104 set_len, true);
1105 if (err) {
1106 return err;
1107 }
1108 } else {
1109 VLOG_DBG_RL(&rl, "unsupported put action type: %d",
1110 nl_attr_type(nla));
1111 return EOPNOTSUPP;
1112 }
1113 }
1114
1115 block_id = get_block_id_from_netdev(netdev);
1116 handle = get_ufid_tc_mapping(ufid, &prio, NULL);
1117 if (handle && prio) {
1118 VLOG_DBG_RL(&rl, "updating old handle: %d prio: %d", handle, prio);
1119 tc_del_filter(ifindex, prio, handle, block_id);
1120 }
1121
1122 if (!prio) {
1123 prio = get_prio_for_tc_flower(&flower);
1124 if (prio == 0) {
1125 VLOG_ERR_RL(&rl, "couldn't get tc prio: %s", ovs_strerror(ENOSPC));
1126 return ENOSPC;
1127 }
1128 }
1129
1130 flower.act_cookie.data = ufid;
1131 flower.act_cookie.len = sizeof *ufid;
1132
1133 err = tc_replace_flower(ifindex, prio, handle, &flower, block_id);
1134 if (!err) {
1135 add_ufid_tc_mapping(ufid, flower.prio, flower.handle, netdev, ifindex);
1136 }
1137
1138 return err;
1139 }
1140
1141 int
1142 netdev_tc_flow_get(struct netdev *netdev OVS_UNUSED,
1143 struct match *match,
1144 struct nlattr **actions,
1145 const ovs_u128 *ufid,
1146 struct dpif_flow_stats *stats,
1147 struct dpif_flow_attrs *attrs,
1148 struct ofpbuf *buf)
1149 {
1150 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1151 struct netdev *dev;
1152 struct tc_flower flower;
1153 uint32_t block_id = 0;
1154 odp_port_t in_port;
1155 int prio = 0;
1156 int ifindex;
1157 int handle;
1158 int err;
1159
1160 handle = get_ufid_tc_mapping(ufid, &prio, &dev);
1161 if (!handle) {
1162 return ENOENT;
1163 }
1164
1165 ifindex = netdev_get_ifindex(dev);
1166 if (ifindex < 0) {
1167 VLOG_ERR_RL(&error_rl, "flow_get: failed to get ifindex for %s: %s",
1168 netdev_get_name(dev), ovs_strerror(-ifindex));
1169 netdev_close(dev);
1170 return -ifindex;
1171 }
1172
1173 VLOG_DBG_RL(&rl, "flow get (dev %s prio %d handle %d)",
1174 netdev_get_name(dev), prio, handle);
1175 block_id = get_block_id_from_netdev(netdev);
1176 err = tc_get_flower(ifindex, prio, handle, &flower, block_id);
1177 netdev_close(dev);
1178 if (err) {
1179 VLOG_ERR_RL(&error_rl, "flow get failed (dev %s prio %d handle %d): %s",
1180 netdev_get_name(dev), prio, handle, ovs_strerror(err));
1181 return err;
1182 }
1183
1184 in_port = netdev_ifindex_to_odp_port(ifindex);
1185 parse_tc_flower_to_match(&flower, match, actions, stats, attrs, buf);
1186
1187 match->wc.masks.in_port.odp_port = u32_to_odp(UINT32_MAX);
1188 match->flow.in_port.odp_port = in_port;
1189
1190 return 0;
1191 }
1192
1193 int
1194 netdev_tc_flow_del(struct netdev *netdev OVS_UNUSED,
1195 const ovs_u128 *ufid,
1196 struct dpif_flow_stats *stats)
1197 {
1198 struct tc_flower flower;
1199 uint32_t block_id = 0;
1200 struct netdev *dev;
1201 int prio = 0;
1202 int ifindex;
1203 int handle;
1204 int error;
1205
1206 handle = get_ufid_tc_mapping(ufid, &prio, &dev);
1207 if (!handle) {
1208 return ENOENT;
1209 }
1210
1211 ifindex = netdev_get_ifindex(dev);
1212 if (ifindex < 0) {
1213 VLOG_ERR_RL(&error_rl, "flow_del: failed to get ifindex for %s: %s",
1214 netdev_get_name(dev), ovs_strerror(-ifindex));
1215 netdev_close(dev);
1216 return -ifindex;
1217 }
1218
1219 block_id = get_block_id_from_netdev(netdev);
1220
1221 if (stats) {
1222 memset(stats, 0, sizeof *stats);
1223 if (!tc_get_flower(ifindex, prio, handle, &flower, block_id)) {
1224 stats->n_packets = get_32aligned_u64(&flower.stats.n_packets);
1225 stats->n_bytes = get_32aligned_u64(&flower.stats.n_bytes);
1226 stats->used = flower.lastused;
1227 }
1228 }
1229
1230 error = tc_del_filter(ifindex, prio, handle, block_id);
1231 del_ufid_tc_mapping(ufid);
1232
1233 netdev_close(dev);
1234
1235 return error;
1236 }
1237
1238 static void
1239 probe_multi_mask_per_prio(int ifindex)
1240 {
1241 struct tc_flower flower;
1242 int block_id = 0;
1243 int error;
1244
1245 error = tc_add_del_ingress_qdisc(ifindex, true, block_id);
1246 if (error) {
1247 return;
1248 }
1249
1250 memset(&flower, 0, sizeof flower);
1251
1252 flower.key.eth_type = htons(ETH_P_IP);
1253 flower.mask.eth_type = OVS_BE16_MAX;
1254 memset(&flower.key.dst_mac, 0x11, sizeof flower.key.dst_mac);
1255 memset(&flower.mask.dst_mac, 0xff, sizeof flower.mask.dst_mac);
1256
1257 error = tc_replace_flower(ifindex, 1, 1, &flower, block_id);
1258 if (error) {
1259 goto out;
1260 }
1261
1262 memset(&flower.key.src_mac, 0x11, sizeof flower.key.src_mac);
1263 memset(&flower.mask.src_mac, 0xff, sizeof flower.mask.src_mac);
1264
1265 error = tc_replace_flower(ifindex, 1, 2, &flower, block_id);
1266 tc_del_filter(ifindex, 1, 1, block_id);
1267
1268 if (error) {
1269 goto out;
1270 }
1271
1272 tc_del_filter(ifindex, 1, 2, block_id);
1273
1274 multi_mask_per_prio = true;
1275 VLOG_INFO("probe tc: multiple masks on single tc prio is supported.");
1276
1277 out:
1278 tc_add_del_ingress_qdisc(ifindex, false, block_id);
1279 }
1280
1281 static void
1282 probe_tc_block_support(int ifindex)
1283 {
1284 uint32_t block_id = 1;
1285 int error;
1286
1287 error = tc_add_del_ingress_qdisc(ifindex, true, block_id);
1288 if (error) {
1289 return;
1290 }
1291
1292 tc_add_del_ingress_qdisc(ifindex, false, block_id);
1293
1294 block_support = true;
1295 VLOG_INFO("probe tc: block offload is supported.");
1296 }
1297
1298 int
1299 netdev_tc_init_flow_api(struct netdev *netdev)
1300 {
1301 static struct ovsthread_once multi_mask_once = OVSTHREAD_ONCE_INITIALIZER;
1302 static struct ovsthread_once block_once = OVSTHREAD_ONCE_INITIALIZER;
1303 uint32_t block_id = 0;
1304 int ifindex;
1305 int error;
1306
1307 ifindex = netdev_get_ifindex(netdev);
1308 if (ifindex < 0) {
1309 VLOG_ERR_RL(&error_rl, "init: failed to get ifindex for %s: %s",
1310 netdev_get_name(netdev), ovs_strerror(-ifindex));
1311 return -ifindex;
1312 }
1313
1314 if (ovsthread_once_start(&block_once)) {
1315 probe_tc_block_support(ifindex);
1316 ovsthread_once_done(&block_once);
1317 }
1318
1319 if (ovsthread_once_start(&multi_mask_once)) {
1320 probe_multi_mask_per_prio(ifindex);
1321 ovsthread_once_done(&multi_mask_once);
1322 }
1323
1324 block_id = get_block_id_from_netdev(netdev);
1325 error = tc_add_del_ingress_qdisc(ifindex, true, block_id);
1326
1327 if (error && error != EEXIST) {
1328 VLOG_ERR("failed adding ingress qdisc required for offloading: %s",
1329 ovs_strerror(error));
1330 return error;
1331 }
1332
1333 VLOG_INFO("added ingress qdisc to %s", netdev_get_name(netdev));
1334
1335 return 0;
1336 }