]> git.proxmox.com Git - ovs.git/blame - lib/netdev-tc-offloads.c
netdev-tc-offloads: Fix vxlan tunnel offloading
[ovs.git] / lib / netdev-tc-offloads.c
CommitLineData
18ebd48c
PB
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"
ef3767f5 19
18ebd48c
PB
20#include <errno.h>
21#include <linux/if_ether.h>
ef3767f5
JS
22
23#include "dpif.h"
24#include "hash.h"
18ebd48c
PB
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/vlog.h"
ef3767f5 31#include "netdev-linux.h"
18ebd48c
PB
32#include "netlink.h"
33#include "netlink-socket.h"
34#include "odp-netlink.h"
ef3767f5 35#include "tc.h"
18ebd48c
PB
36#include "unaligned.h"
37#include "util.h"
18ebd48c
PB
38
39VLOG_DEFINE_THIS_MODULE(netdev_tc_offloads);
40
8140a5ff
PB
41static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
42
9116730d
PB
43static struct hmap ufid_tc = HMAP_INITIALIZER(&ufid_tc);
44static struct ovs_mutex ufid_lock = OVS_MUTEX_INITIALIZER;
45
46/**
47 * struct ufid_tc_data - data entry for ufid_tc hmap.
48 * @ufid_node: Element in @ufid_tc hash table by ufid key.
49 * @tc_node: Element in @ufid_tc hash table by prio/handle/ifindex key.
50 * @ufid: ufid assigned to the flow
51 * @prio: tc priority
52 * @handle: tc handle
53 * @ifindex: netdev ifindex.
54 * @netdev: netdev associated with the tc rule
55 */
56struct ufid_tc_data {
57 struct hmap_node ufid_node;
58 struct hmap_node tc_node;
59 ovs_u128 ufid;
60 uint16_t prio;
61 uint32_t handle;
62 int ifindex;
63 struct netdev *netdev;
64};
65
66/* Remove matching ufid entry from ufid_tc hashmap. */
67static void
68del_ufid_tc_mapping(const ovs_u128 *ufid)
69{
70 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
71 struct ufid_tc_data *data;
72
73 ovs_mutex_lock(&ufid_lock);
74 HMAP_FOR_EACH_WITH_HASH(data, ufid_node, ufid_hash, &ufid_tc) {
75 if (ovs_u128_equals(*ufid, data->ufid)) {
76 break;
77 }
78 }
79
80 if (!data) {
81 ovs_mutex_unlock(&ufid_lock);
82 return;
83 }
84
85 hmap_remove(&ufid_tc, &data->ufid_node);
86 hmap_remove(&ufid_tc, &data->tc_node);
87 netdev_close(data->netdev);
88 free(data);
89 ovs_mutex_unlock(&ufid_lock);
90}
91
92/* Add ufid entry to ufid_tc hashmap.
93 * If entry exists already it will be replaced. */
8f283af8 94static void
9116730d
PB
95add_ufid_tc_mapping(const ovs_u128 *ufid, int prio, int handle,
96 struct netdev *netdev, int ifindex)
97{
98 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
99 size_t tc_hash = hash_int(hash_int(prio, handle), ifindex);
100 struct ufid_tc_data *new_data = xzalloc(sizeof *new_data);
101
102 del_ufid_tc_mapping(ufid);
103
104 new_data->ufid = *ufid;
105 new_data->prio = prio;
106 new_data->handle = handle;
107 new_data->netdev = netdev_ref(netdev);
108 new_data->ifindex = ifindex;
109
110 ovs_mutex_lock(&ufid_lock);
111 hmap_insert(&ufid_tc, &new_data->ufid_node, ufid_hash);
112 hmap_insert(&ufid_tc, &new_data->tc_node, tc_hash);
113 ovs_mutex_unlock(&ufid_lock);
114}
115
116/* Get ufid from ufid_tc hashmap.
117 *
118 * If netdev output param is not NULL then the function will return
119 * associated netdev on success and a refcount is taken on that netdev.
120 * The caller is then responsible to close the netdev.
121 *
122 * Returns handle if successful and fill prio and netdev for that ufid.
123 * Otherwise returns 0.
124 */
8f283af8 125static int
9116730d
PB
126get_ufid_tc_mapping(const ovs_u128 *ufid, int *prio, struct netdev **netdev)
127{
128 size_t ufid_hash = hash_bytes(ufid, sizeof *ufid, 0);
129 struct ufid_tc_data *data;
130 int handle = 0;
131
132 ovs_mutex_lock(&ufid_lock);
133 HMAP_FOR_EACH_WITH_HASH(data, ufid_node, ufid_hash, &ufid_tc) {
134 if (ovs_u128_equals(*ufid, data->ufid)) {
135 if (prio) {
136 *prio = data->prio;
137 }
138 if (netdev) {
139 *netdev = netdev_ref(data->netdev);
140 }
141 handle = data->handle;
142 break;
143 }
144 }
145 ovs_mutex_unlock(&ufid_lock);
146
147 return handle;
148}
149
150/* Find ufid entry in ufid_tc hashmap using prio, handle and netdev.
151 * The result is saved in ufid.
152 *
153 * Returns true on success.
154 */
8f7620e6 155static bool
9116730d
PB
156find_ufid(int prio, int handle, struct netdev *netdev, ovs_u128 *ufid)
157{
158 int ifindex = netdev_get_ifindex(netdev);
159 struct ufid_tc_data *data;
160 size_t tc_hash = hash_int(hash_int(prio, handle), ifindex);
161
162 ovs_mutex_lock(&ufid_lock);
163 HMAP_FOR_EACH_WITH_HASH(data, tc_node, tc_hash, &ufid_tc) {
164 if (data->prio == prio && data->handle == handle
165 && data->ifindex == ifindex) {
166 *ufid = data->ufid;
167 break;
168 }
169 }
170 ovs_mutex_unlock(&ufid_lock);
171
172 return (data != NULL);
173}
174
d86eea7c
PB
175struct prio_map_data {
176 struct hmap_node node;
177 struct tc_flower_key mask;
178 ovs_be16 protocol;
179 uint16_t prio;
180};
181
182/* Get free prio for tc flower
183 * If prio is already allocated for mask/eth_type combination then return it.
184 * If not assign new prio.
185 *
186 * Return prio on success or 0 if we are out of prios.
187 */
8f283af8 188static uint16_t
d86eea7c
PB
189get_prio_for_tc_flower(struct tc_flower *flower)
190{
191 static struct hmap prios = HMAP_INITIALIZER(&prios);
192 static struct ovs_mutex prios_lock = OVS_MUTEX_INITIALIZER;
193 static uint16_t last_prio = 0;
194 size_t key_len = sizeof(struct tc_flower_key);
195 size_t hash = hash_bytes(&flower->mask, key_len,
196 (OVS_FORCE uint32_t) flower->key.eth_type);
197 struct prio_map_data *data;
198 struct prio_map_data *new_data;
199
200 /* We can use the same prio for same mask/eth combination but must have
201 * different prio if not. Flower classifier will reject same prio for
202 * different mask/eth combination. */
203 ovs_mutex_lock(&prios_lock);
204 HMAP_FOR_EACH_WITH_HASH(data, node, hash, &prios) {
205 if (!memcmp(&flower->mask, &data->mask, key_len)
206 && data->protocol == flower->key.eth_type) {
207 ovs_mutex_unlock(&prios_lock);
208 return data->prio;
209 }
210 }
211
212 if (last_prio == UINT16_MAX) {
213 /* last_prio can overflow if there will be many different kinds of
214 * flows which shouldn't happen organically. */
215 ovs_mutex_unlock(&prios_lock);
216 return 0;
217 }
218
219 new_data = xzalloc(sizeof *new_data);
220 memcpy(&new_data->mask, &flower->mask, key_len);
221 new_data->prio = ++last_prio;
222 new_data->protocol = flower->key.eth_type;
223 hmap_insert(&prios, &new_data->node, hash);
224 ovs_mutex_unlock(&prios_lock);
225
226 return new_data->prio;
227}
228
18ebd48c 229int
8140a5ff 230netdev_tc_flow_flush(struct netdev *netdev)
18ebd48c 231{
8140a5ff
PB
232 int ifindex = netdev_get_ifindex(netdev);
233
234 if (ifindex < 0) {
0164f10c 235 VLOG_ERR_RL(&error_rl, "flow_flush: failed to get ifindex for %s: %s",
8140a5ff
PB
236 netdev_get_name(netdev), ovs_strerror(-ifindex));
237 return -ifindex;
238 }
239
240 return tc_flush(ifindex);
18ebd48c
PB
241}
242
243int
244netdev_tc_flow_dump_create(struct netdev *netdev,
245 struct netdev_flow_dump **dump_out)
246{
8f7620e6
PB
247 struct netdev_flow_dump *dump;
248 int ifindex;
249
250 ifindex = netdev_get_ifindex(netdev);
251 if (ifindex < 0) {
0164f10c 252 VLOG_ERR_RL(&error_rl, "dump_create: failed to get ifindex for %s: %s",
8f7620e6
PB
253 netdev_get_name(netdev), ovs_strerror(-ifindex));
254 return -ifindex;
255 }
18ebd48c 256
8f7620e6
PB
257 dump = xzalloc(sizeof *dump);
258 dump->nl_dump = xzalloc(sizeof *dump->nl_dump);
18ebd48c 259 dump->netdev = netdev_ref(netdev);
8f7620e6 260 tc_dump_flower_start(ifindex, dump->nl_dump);
18ebd48c
PB
261
262 *dump_out = dump;
263
264 return 0;
265}
266
267int
268netdev_tc_flow_dump_destroy(struct netdev_flow_dump *dump)
269{
8f7620e6 270 nl_dump_done(dump->nl_dump);
18ebd48c 271 netdev_close(dump->netdev);
8f7620e6 272 free(dump->nl_dump);
18ebd48c 273 free(dump);
8f7620e6
PB
274 return 0;
275}
276
277static int
278parse_tc_flower_to_match(struct tc_flower *flower,
279 struct match *match,
280 struct nlattr **actions,
281 struct dpif_flow_stats *stats,
282 struct ofpbuf *buf) {
283 size_t act_off;
284 struct tc_flower_key *key = &flower->key;
285 struct tc_flower_key *mask = &flower->mask;
286 odp_port_t outport = 0;
287
288 if (flower->ifindex_out) {
289 outport = netdev_ifindex_to_odp_port(flower->ifindex_out);
290 if (!outport) {
291 return ENOENT;
292 }
293 }
294
295 ofpbuf_clear(buf);
296
297 match_init_catchall(match);
298 match_set_dl_src_masked(match, key->src_mac, mask->src_mac);
299 match_set_dl_dst_masked(match, key->dst_mac, mask->dst_mac);
300
301 if (key->eth_type == htons(ETH_TYPE_VLAN)) {
302 match_set_dl_vlan(match, htons(key->vlan_id));
303 match_set_dl_vlan_pcp(match, key->vlan_prio);
304 match_set_dl_type(match, key->encap_eth_type);
305 flow_fix_vlan_tpid(&match->flow);
306 } else {
307 match_set_dl_type(match, key->eth_type);
308 }
309
83a87fae
PB
310 if (is_ip_any(&match->flow)) {
311 if (key->ip_proto) {
312 match_set_nw_proto(match, key->ip_proto);
313 }
8f7620e6 314
ab7ecf26
PB
315 match_set_nw_ttl_masked(match, key->ip_ttl, mask->ip_ttl);
316
83a87fae
PB
317 match_set_nw_src_masked(match, key->ipv4.ipv4_src, mask->ipv4.ipv4_src);
318 match_set_nw_dst_masked(match, key->ipv4.ipv4_dst, mask->ipv4.ipv4_dst);
8f7620e6 319
83a87fae
PB
320 match_set_ipv6_src_masked(match,
321 &key->ipv6.ipv6_src, &mask->ipv6.ipv6_src);
322 match_set_ipv6_dst_masked(match,
323 &key->ipv6.ipv6_dst, &mask->ipv6.ipv6_dst);
8f7620e6 324
2b1d9fa9
PB
325 if (key->ip_proto == IPPROTO_TCP) {
326 match_set_tp_dst_masked(match, key->tcp_dst, mask->tcp_dst);
327 match_set_tp_src_masked(match, key->tcp_src, mask->tcp_src);
f2698407 328 match_set_tcp_flags_masked(match, key->tcp_flags, mask->tcp_flags);
2b1d9fa9
PB
329 } else if (key->ip_proto == IPPROTO_UDP) {
330 match_set_tp_dst_masked(match, key->udp_dst, mask->udp_dst);
331 match_set_tp_src_masked(match, key->udp_src, mask->udp_src);
a238dbb5
RD
332 } else if (key->ip_proto == IPPROTO_SCTP) {
333 match_set_tp_dst_masked(match, key->sctp_dst, mask->sctp_dst);
334 match_set_tp_src_masked(match, key->sctp_src, mask->sctp_src);
2b1d9fa9
PB
335 }
336 }
8f7620e6
PB
337
338 if (flower->tunnel.tunnel) {
339 match_set_tun_id(match, flower->tunnel.id);
340 if (flower->tunnel.ipv4.ipv4_dst) {
341 match_set_tun_src(match, flower->tunnel.ipv4.ipv4_src);
342 match_set_tun_dst(match, flower->tunnel.ipv4.ipv4_dst);
343 } else if (!is_all_zeros(&flower->tunnel.ipv6.ipv6_dst,
344 sizeof flower->tunnel.ipv6.ipv6_dst)) {
345 match_set_tun_ipv6_src(match, &flower->tunnel.ipv6.ipv6_src);
346 match_set_tun_ipv6_dst(match, &flower->tunnel.ipv6.ipv6_dst);
347 }
348 if (flower->tunnel.tp_dst) {
349 match_set_tun_tp_dst(match, flower->tunnel.tp_dst);
350 }
351 }
352
353 act_off = nl_msg_start_nested(buf, OVS_FLOW_ATTR_ACTIONS);
354 {
355 if (flower->vlan_pop) {
356 nl_msg_put_flag(buf, OVS_ACTION_ATTR_POP_VLAN);
357 }
358
359 if (flower->vlan_push_id || flower->vlan_push_prio) {
360 struct ovs_action_push_vlan *push;
361 push = nl_msg_put_unspec_zero(buf, OVS_ACTION_ATTR_PUSH_VLAN,
362 sizeof *push);
363
364 push->vlan_tpid = htons(ETH_TYPE_VLAN);
365 push->vlan_tci = htons(flower->vlan_push_id
366 | (flower->vlan_push_prio << 13)
367 | VLAN_CFI);
368 }
369
370 if (flower->set.set) {
371 size_t set_offset = nl_msg_start_nested(buf, OVS_ACTION_ATTR_SET);
372 size_t tunnel_offset =
373 nl_msg_start_nested(buf, OVS_KEY_ATTR_TUNNEL);
374
375 nl_msg_put_be64(buf, OVS_TUNNEL_KEY_ATTR_ID, flower->set.id);
376 if (flower->set.ipv4.ipv4_src) {
377 nl_msg_put_be32(buf, OVS_TUNNEL_KEY_ATTR_IPV4_SRC,
378 flower->set.ipv4.ipv4_src);
379 }
380 if (flower->set.ipv4.ipv4_dst) {
381 nl_msg_put_be32(buf, OVS_TUNNEL_KEY_ATTR_IPV4_DST,
382 flower->set.ipv4.ipv4_dst);
383 }
384 if (!is_all_zeros(&flower->set.ipv6.ipv6_src,
385 sizeof flower->set.ipv6.ipv6_src)) {
386 nl_msg_put_in6_addr(buf, OVS_TUNNEL_KEY_ATTR_IPV6_SRC,
387 &flower->set.ipv6.ipv6_src);
388 }
389 if (!is_all_zeros(&flower->set.ipv6.ipv6_dst,
390 sizeof flower->set.ipv6.ipv6_dst)) {
391 nl_msg_put_in6_addr(buf, OVS_TUNNEL_KEY_ATTR_IPV6_DST,
392 &flower->set.ipv6.ipv6_dst);
393 }
394 nl_msg_put_be16(buf, OVS_TUNNEL_KEY_ATTR_TP_DST,
395 flower->set.tp_dst);
396
397 nl_msg_end_nested(buf, tunnel_offset);
398 nl_msg_end_nested(buf, set_offset);
399 }
400
401 if (flower->ifindex_out > 0) {
402 nl_msg_put_u32(buf, OVS_ACTION_ATTR_OUTPUT, odp_to_u32(outport));
403 }
404
405 }
406 nl_msg_end_nested(buf, act_off);
407
408 *actions = ofpbuf_at_assert(buf, act_off, sizeof(struct nlattr));
409
410 if (stats) {
411 memset(stats, 0, sizeof *stats);
412 stats->n_packets = get_32aligned_u64(&flower->stats.n_packets);
413 stats->n_bytes = get_32aligned_u64(&flower->stats.n_bytes);
414 stats->used = flower->lastused;
415 }
18ebd48c
PB
416
417 return 0;
418}
419
420bool
8f7620e6
PB
421netdev_tc_flow_dump_next(struct netdev_flow_dump *dump,
422 struct match *match,
423 struct nlattr **actions,
424 struct dpif_flow_stats *stats,
425 ovs_u128 *ufid,
426 struct ofpbuf *rbuffer,
427 struct ofpbuf *wbuffer)
18ebd48c 428{
8f7620e6
PB
429 struct ofpbuf nl_flow;
430
431 while (nl_dump_next(dump->nl_dump, &nl_flow, rbuffer)) {
432 struct tc_flower flower;
433 struct netdev *netdev = dump->netdev;
434
435 if (parse_netlink_to_tc_flower(&nl_flow, &flower)) {
436 continue;
437 }
438
439 if (parse_tc_flower_to_match(&flower, match, actions, stats,
440 wbuffer)) {
441 continue;
442 }
443
444 if (flower.act_cookie.len) {
445 *ufid = *((ovs_u128 *) flower.act_cookie.data);
446 } else if (!find_ufid(flower.prio, flower.handle, netdev, ufid)) {
447 continue;
448 }
449
450 match->wc.masks.in_port.odp_port = u32_to_odp(UINT32_MAX);
451 match->flow.in_port.odp_port = dump->port;
452
453 return true;
454 }
455
18ebd48c
PB
456 return false;
457}
458
8f283af8
PB
459static int
460parse_put_flow_set_action(struct tc_flower *flower, const struct nlattr *set,
461 size_t set_len)
462{
463 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
464 const struct nlattr *set_attr;
465 size_t set_left;
466
467 NL_ATTR_FOR_EACH_UNSAFE(set_attr, set_left, set, set_len) {
468 if (nl_attr_type(set_attr) == OVS_KEY_ATTR_TUNNEL) {
469 const struct nlattr *tunnel = nl_attr_get(set_attr);
470 const size_t tunnel_len = nl_attr_get_size(set_attr);
471 const struct nlattr *tun_attr;
472 size_t tun_left;
473
474 flower->set.set = true;
475 NL_ATTR_FOR_EACH_UNSAFE(tun_attr, tun_left, tunnel, tunnel_len) {
476 switch (nl_attr_type(tun_attr)) {
477 case OVS_TUNNEL_KEY_ATTR_ID: {
478 flower->set.id = nl_attr_get_be64(tun_attr);
479 }
480 break;
481 case OVS_TUNNEL_KEY_ATTR_IPV4_SRC: {
482 flower->set.ipv4.ipv4_src = nl_attr_get_be32(tun_attr);
483 }
484 break;
485 case OVS_TUNNEL_KEY_ATTR_IPV4_DST: {
486 flower->set.ipv4.ipv4_dst = nl_attr_get_be32(tun_attr);
487 }
488 break;
489 case OVS_TUNNEL_KEY_ATTR_IPV6_SRC: {
490 flower->set.ipv6.ipv6_src =
491 nl_attr_get_in6_addr(tun_attr);
492 }
493 break;
494 case OVS_TUNNEL_KEY_ATTR_IPV6_DST: {
495 flower->set.ipv6.ipv6_dst =
496 nl_attr_get_in6_addr(tun_attr);
497 }
498 break;
499 case OVS_TUNNEL_KEY_ATTR_TP_SRC: {
500 flower->set.tp_src = nl_attr_get_be16(tun_attr);
501 }
502 break;
503 case OVS_TUNNEL_KEY_ATTR_TP_DST: {
504 flower->set.tp_dst = nl_attr_get_be16(tun_attr);
505 }
506 break;
507 }
508 }
509 } else {
510 VLOG_DBG_RL(&rl, "unsupported set action type: %d",
511 nl_attr_type(set_attr));
512 return EOPNOTSUPP;
513 }
514 }
515 return 0;
516}
517
518static int
519test_key_and_mask(struct match *match)
520{
521 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
522 const struct flow *key = &match->flow;
523 struct flow *mask = &match->wc.masks;
524
525 if (mask->pkt_mark) {
526 VLOG_DBG_RL(&rl, "offloading attribute pkt_mark isn't supported");
527 return EOPNOTSUPP;
528 }
529
530 if (mask->recirc_id && key->recirc_id) {
531 VLOG_DBG_RL(&rl, "offloading attribute recirc_id isn't supported");
532 return EOPNOTSUPP;
533 }
534 mask->recirc_id = 0;
535
536 if (mask->dp_hash) {
537 VLOG_DBG_RL(&rl, "offloading attribute dp_hash isn't supported");
538 return EOPNOTSUPP;
539 }
540
541 if (mask->conj_id) {
542 VLOG_DBG_RL(&rl, "offloading attribute conj_id isn't supported");
543 return EOPNOTSUPP;
544 }
545
546 if (mask->skb_priority) {
547 VLOG_DBG_RL(&rl, "offloading attribute skb_priority isn't supported");
548 return EOPNOTSUPP;
549 }
550
551 if (mask->actset_output) {
552 VLOG_DBG_RL(&rl,
553 "offloading attribute actset_output isn't supported");
554 return EOPNOTSUPP;
555 }
556
557 if (mask->ct_state) {
558 VLOG_DBG_RL(&rl, "offloading attribute ct_state isn't supported");
559 return EOPNOTSUPP;
560 }
561
562 if (mask->ct_zone) {
563 VLOG_DBG_RL(&rl, "offloading attribute ct_zone isn't supported");
564 return EOPNOTSUPP;
565 }
566
567 if (mask->ct_mark) {
568 VLOG_DBG_RL(&rl, "offloading attribute ct_mark isn't supported");
569 return EOPNOTSUPP;
570 }
571
572 if (mask->packet_type && key->packet_type) {
573 VLOG_DBG_RL(&rl, "offloading attribute packet_type isn't supported");
574 return EOPNOTSUPP;
575 }
576 mask->packet_type = 0;
577
578 if (!ovs_u128_is_zero(mask->ct_label)) {
579 VLOG_DBG_RL(&rl, "offloading attribute ct_label isn't supported");
580 return EOPNOTSUPP;
581 }
582
583 for (int i = 0; i < FLOW_N_REGS; i++) {
584 if (mask->regs[i]) {
585 VLOG_DBG_RL(&rl,
586 "offloading attribute regs[%d] isn't supported", i);
587 return EOPNOTSUPP;
588 }
589 }
590
591 if (mask->metadata) {
592 VLOG_DBG_RL(&rl, "offloading attribute metadata isn't supported");
593 return EOPNOTSUPP;
594 }
595
596 if (mask->nw_tos) {
597 VLOG_DBG_RL(&rl, "offloading attribute nw_tos isn't supported");
598 return EOPNOTSUPP;
599 }
600
8f283af8
PB
601 if (mask->nw_frag) {
602 VLOG_DBG_RL(&rl, "offloading attribute nw_frag isn't supported");
603 return EOPNOTSUPP;
604 }
605
606 for (int i = 0; i < FLOW_MAX_MPLS_LABELS; i++) {
607 if (mask->mpls_lse[i]) {
608 VLOG_DBG_RL(&rl, "offloading attribute mpls_lse isn't supported");
609 return EOPNOTSUPP;
610 }
611 }
612
613 if (key->dl_type == htons(ETH_TYPE_IP) &&
614 key->nw_proto == IPPROTO_ICMP) {
615 if (mask->tp_src) {
616 VLOG_DBG_RL(&rl,
617 "offloading attribute icmp_type isn't supported");
618 return EOPNOTSUPP;
619 }
620 if (mask->tp_dst) {
621 VLOG_DBG_RL(&rl,
622 "offloading attribute icmp_code isn't supported");
623 return EOPNOTSUPP;
624 }
625 } else if (key->dl_type == htons(ETH_TYPE_IP) &&
626 key->nw_proto == IPPROTO_IGMP) {
627 if (mask->tp_src) {
628 VLOG_DBG_RL(&rl,
629 "offloading attribute igmp_type isn't supported");
630 return EOPNOTSUPP;
631 }
632 if (mask->tp_dst) {
633 VLOG_DBG_RL(&rl,
634 "offloading attribute igmp_code isn't supported");
635 return EOPNOTSUPP;
636 }
637 } else if (key->dl_type == htons(ETH_TYPE_IPV6) &&
638 key->nw_proto == IPPROTO_ICMPV6) {
639 if (mask->tp_src) {
640 VLOG_DBG_RL(&rl,
641 "offloading attribute icmp_type isn't supported");
642 return EOPNOTSUPP;
643 }
644 if (mask->tp_dst) {
645 VLOG_DBG_RL(&rl,
646 "offloading attribute icmp_code isn't supported");
647 return EOPNOTSUPP;
648 }
649 }
8f283af8
PB
650
651 if (!is_all_zeros(mask, sizeof *mask)) {
652 VLOG_DBG_RL(&rl, "offloading isn't supported, unknown attribute");
653 return EOPNOTSUPP;
654 }
655
656 return 0;
657}
658
18ebd48c 659int
8f283af8
PB
660netdev_tc_flow_put(struct netdev *netdev, struct match *match,
661 struct nlattr *actions, size_t actions_len,
662 const ovs_u128 *ufid, struct offload_info *info,
18ebd48c
PB
663 struct dpif_flow_stats *stats OVS_UNUSED)
664{
8f283af8
PB
665 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
666 struct tc_flower flower;
667 const struct flow *key = &match->flow;
668 struct flow *mask = &match->wc.masks;
669 const struct flow_tnl *tnl = &match->flow.tunnel;
670 struct nlattr *nla;
671 size_t left;
672 int prio = 0;
673 int handle;
674 int ifindex;
675 int err;
676
677 ifindex = netdev_get_ifindex(netdev);
678 if (ifindex < 0) {
0164f10c 679 VLOG_ERR_RL(&error_rl, "flow_put: failed to get ifindex for %s: %s",
8f283af8
PB
680 netdev_get_name(netdev), ovs_strerror(-ifindex));
681 return -ifindex;
682 }
683
684 memset(&flower, 0, sizeof flower);
685
a90120fc 686 if (flow_tnl_dst_is_set(&key->tunnel)) {
8f283af8
PB
687 VLOG_DBG_RL(&rl,
688 "tunnel: id %#" PRIx64 " src " IP_FMT
689 " dst " IP_FMT " tp_src %d tp_dst %d",
690 ntohll(tnl->tun_id),
691 IP_ARGS(tnl->ip_src), IP_ARGS(tnl->ip_dst),
692 ntohs(tnl->tp_src), ntohs(tnl->tp_dst));
693 flower.tunnel.id = tnl->tun_id;
694 flower.tunnel.ipv4.ipv4_src = tnl->ip_src;
695 flower.tunnel.ipv4.ipv4_dst = tnl->ip_dst;
696 flower.tunnel.ipv6.ipv6_src = tnl->ipv6_src;
697 flower.tunnel.ipv6.ipv6_dst = tnl->ipv6_dst;
698 flower.tunnel.tp_src = tnl->tp_src;
699 flower.tunnel.tp_dst = tnl->tp_dst;
700 flower.tunnel.tunnel = true;
8f283af8 701 }
a90120fc 702 memset(&mask->tunnel, 0, sizeof mask->tunnel);
8f283af8
PB
703
704 flower.key.eth_type = key->dl_type;
705 flower.mask.eth_type = mask->dl_type;
706
707 if (mask->vlans[0].tci) {
708 ovs_be16 vid_mask = mask->vlans[0].tci & htons(VLAN_VID_MASK);
709 ovs_be16 pcp_mask = mask->vlans[0].tci & htons(VLAN_PCP_MASK);
710 ovs_be16 cfi = mask->vlans[0].tci & htons(VLAN_CFI);
711
712 if (cfi && key->vlans[0].tci & htons(VLAN_CFI)
713 && (!vid_mask || vid_mask == htons(VLAN_VID_MASK))
714 && (!pcp_mask || pcp_mask == htons(VLAN_PCP_MASK))
715 && (vid_mask || pcp_mask)) {
716 if (vid_mask) {
717 flower.key.vlan_id = vlan_tci_to_vid(key->vlans[0].tci);
718 VLOG_DBG_RL(&rl, "vlan_id: %d\n", flower.key.vlan_id);
719 }
720 if (pcp_mask) {
721 flower.key.vlan_prio = vlan_tci_to_pcp(key->vlans[0].tci);
722 VLOG_DBG_RL(&rl, "vlan_prio: %d\n", flower.key.vlan_prio);
723 }
724 flower.key.encap_eth_type = flower.key.eth_type;
725 flower.key.eth_type = htons(ETH_TYPE_VLAN);
726 } else if (mask->vlans[0].tci == htons(0xffff) &&
727 ntohs(key->vlans[0].tci) == 0) {
728 /* exact && no vlan */
729 } else {
730 /* partial mask */
731 return EOPNOTSUPP;
732 }
733 } else if (mask->vlans[1].tci) {
734 return EOPNOTSUPP;
735 }
736 memset(mask->vlans, 0, sizeof mask->vlans);
737
738 flower.key.dst_mac = key->dl_dst;
739 flower.mask.dst_mac = mask->dl_dst;
740 flower.key.src_mac = key->dl_src;
741 flower.mask.src_mac = mask->dl_src;
742 memset(&mask->dl_dst, 0, sizeof mask->dl_dst);
743 memset(&mask->dl_src, 0, sizeof mask->dl_src);
744 mask->dl_type = 0;
745 mask->in_port.odp_port = 0;
746
747 if (is_ip_any(key)) {
748 flower.key.ip_proto = key->nw_proto;
749 flower.mask.ip_proto = mask->nw_proto;
ab7ecf26
PB
750 flower.key.ip_ttl = key->nw_ttl;
751 flower.mask.ip_ttl = mask->nw_ttl;
8f283af8 752
2b1d9fa9
PB
753 if (key->nw_proto == IPPROTO_TCP) {
754 flower.key.tcp_dst = key->tp_dst;
755 flower.mask.tcp_dst = mask->tp_dst;
756 flower.key.tcp_src = key->tp_src;
757 flower.mask.tcp_src = mask->tp_src;
f2698407
PB
758 flower.key.tcp_flags = key->tcp_flags;
759 flower.mask.tcp_flags = mask->tcp_flags;
2b1d9fa9
PB
760 mask->tp_src = 0;
761 mask->tp_dst = 0;
f2698407 762 mask->tcp_flags = 0;
2b1d9fa9
PB
763 } else if (key->nw_proto == IPPROTO_UDP) {
764 flower.key.udp_dst = key->tp_dst;
765 flower.mask.udp_dst = mask->tp_dst;
766 flower.key.udp_src = key->tp_src;
767 flower.mask.udp_src = mask->tp_src;
768 mask->tp_src = 0;
769 mask->tp_dst = 0;
770 } else if (key->nw_proto == IPPROTO_SCTP) {
771 flower.key.sctp_dst = key->tp_dst;
772 flower.mask.sctp_dst = mask->tp_dst;
773 flower.key.sctp_src = key->tp_src;
774 flower.mask.sctp_src = mask->tp_src;
8f283af8
PB
775 mask->tp_src = 0;
776 mask->tp_dst = 0;
777 }
778
779 mask->nw_frag = 0;
780 mask->nw_tos = 0;
781 mask->nw_proto = 0;
ab7ecf26 782 mask->nw_ttl = 0;
8f283af8
PB
783
784 if (key->dl_type == htons(ETH_P_IP)) {
785 flower.key.ipv4.ipv4_src = key->nw_src;
786 flower.mask.ipv4.ipv4_src = mask->nw_src;
787 flower.key.ipv4.ipv4_dst = key->nw_dst;
788 flower.mask.ipv4.ipv4_dst = mask->nw_dst;
789 mask->nw_src = 0;
790 mask->nw_dst = 0;
791 } else if (key->dl_type == htons(ETH_P_IPV6)) {
792 flower.key.ipv6.ipv6_src = key->ipv6_src;
793 flower.mask.ipv6.ipv6_src = mask->ipv6_src;
794 flower.key.ipv6.ipv6_dst = key->ipv6_dst;
795 flower.mask.ipv6.ipv6_dst = mask->ipv6_dst;
796 memset(&mask->ipv6_src, 0, sizeof mask->ipv6_src);
797 memset(&mask->ipv6_dst, 0, sizeof mask->ipv6_dst);
798 }
799 }
800
801 err = test_key_and_mask(match);
802 if (err) {
803 return err;
804 }
805
806 NL_ATTR_FOR_EACH(nla, left, actions, actions_len) {
807 if (nl_attr_type(nla) == OVS_ACTION_ATTR_OUTPUT) {
808 odp_port_t port = nl_attr_get_odp_port(nla);
dfaf79dd 809 struct netdev *outdev = netdev_ports_get(port, info->dpif_class);
8f283af8
PB
810
811 flower.ifindex_out = netdev_get_ifindex(outdev);
812 flower.set.tp_dst = info->tp_dst_port;
813 netdev_close(outdev);
814 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_PUSH_VLAN) {
815 const struct ovs_action_push_vlan *vlan_push = nl_attr_get(nla);
816
817 flower.vlan_push_id = vlan_tci_to_vid(vlan_push->vlan_tci);
818 flower.vlan_push_prio = vlan_tci_to_pcp(vlan_push->vlan_tci);
819 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_POP_VLAN) {
820 flower.vlan_pop = 1;
821 } else if (nl_attr_type(nla) == OVS_ACTION_ATTR_SET) {
822 const struct nlattr *set = nl_attr_get(nla);
823 const size_t set_len = nl_attr_get_size(nla);
824
825 err = parse_put_flow_set_action(&flower, set, set_len);
826 if (err) {
827 return err;
828 }
829 } else {
830 VLOG_DBG_RL(&rl, "unsupported put action type: %d",
831 nl_attr_type(nla));
832 return EOPNOTSUPP;
833 }
834 }
835
836 handle = get_ufid_tc_mapping(ufid, &prio, NULL);
837 if (handle && prio) {
838 VLOG_DBG_RL(&rl, "updating old handle: %d prio: %d", handle, prio);
839 tc_del_filter(ifindex, prio, handle);
840 }
841
842 if (!prio) {
843 prio = get_prio_for_tc_flower(&flower);
844 if (prio == 0) {
845 VLOG_ERR_RL(&rl, "couldn't get tc prio: %s", ovs_strerror(ENOSPC));
846 return ENOSPC;
847 }
848 }
849
850 flower.act_cookie.data = ufid;
851 flower.act_cookie.len = sizeof *ufid;
852
853 err = tc_replace_flower(ifindex, prio, handle, &flower);
854 if (!err) {
855 add_ufid_tc_mapping(ufid, flower.prio, flower.handle, netdev, ifindex);
856 }
857
858 return err;
18ebd48c
PB
859}
860
861int
862netdev_tc_flow_get(struct netdev *netdev OVS_UNUSED,
7ecdef27
PB
863 struct match *match,
864 struct nlattr **actions,
865 const ovs_u128 *ufid,
866 struct dpif_flow_stats *stats,
867 struct ofpbuf *buf)
18ebd48c 868{
7ecdef27
PB
869 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
870 struct netdev *dev;
871 struct tc_flower flower;
872 odp_port_t in_port;
873 int prio = 0;
874 int ifindex;
875 int handle;
876 int err;
877
878 handle = get_ufid_tc_mapping(ufid, &prio, &dev);
879 if (!handle) {
880 return ENOENT;
881 }
882
883 ifindex = netdev_get_ifindex(dev);
884 if (ifindex < 0) {
0164f10c 885 VLOG_ERR_RL(&error_rl, "flow_get: failed to get ifindex for %s: %s",
7ecdef27
PB
886 netdev_get_name(dev), ovs_strerror(-ifindex));
887 netdev_close(dev);
888 return -ifindex;
889 }
890
891 VLOG_DBG_RL(&rl, "flow get (dev %s prio %d handle %d)",
892 netdev_get_name(dev), prio, handle);
893 err = tc_get_flower(ifindex, prio, handle, &flower);
894 netdev_close(dev);
895 if (err) {
896 VLOG_ERR_RL(&error_rl, "flow get failed (dev %s prio %d handle %d): %s",
897 netdev_get_name(dev), prio, handle, ovs_strerror(err));
898 return err;
899 }
900
901 in_port = netdev_ifindex_to_odp_port(ifindex);
902 parse_tc_flower_to_match(&flower, match, actions, stats, buf);
903
904 match->wc.masks.in_port.odp_port = u32_to_odp(UINT32_MAX);
905 match->flow.in_port.odp_port = in_port;
906
907 return 0;
18ebd48c
PB
908}
909
910int
911netdev_tc_flow_del(struct netdev *netdev OVS_UNUSED,
30b6b047
PB
912 const ovs_u128 *ufid,
913 struct dpif_flow_stats *stats)
18ebd48c 914{
30b6b047
PB
915 struct netdev *dev;
916 int prio = 0;
917 int ifindex;
918 int handle;
919 int error;
920
921 handle = get_ufid_tc_mapping(ufid, &prio, &dev);
922 if (!handle) {
923 return ENOENT;
924 }
925
926 ifindex = netdev_get_ifindex(dev);
927 if (ifindex < 0) {
0164f10c 928 VLOG_ERR_RL(&error_rl, "flow_del: failed to get ifindex for %s: %s",
30b6b047
PB
929 netdev_get_name(dev), ovs_strerror(-ifindex));
930 netdev_close(dev);
931 return -ifindex;
932 }
933
934 error = tc_del_filter(ifindex, prio, handle);
935 del_ufid_tc_mapping(ufid);
936
937 netdev_close(dev);
938
939 if (stats) {
940 memset(stats, 0, sizeof *stats);
941 }
942 return error;
18ebd48c
PB
943}
944
945int
adbbe97f 946netdev_tc_init_flow_api(struct netdev *netdev)
18ebd48c 947{
adbbe97f
PB
948 int ifindex;
949 int error;
950
951 ifindex = netdev_get_ifindex(netdev);
952 if (ifindex < 0) {
0164f10c 953 VLOG_ERR_RL(&error_rl, "init: failed to get ifindex for %s: %s",
adbbe97f
PB
954 netdev_get_name(netdev), ovs_strerror(-ifindex));
955 return -ifindex;
956 }
957
958 error = tc_add_del_ingress_qdisc(ifindex, true);
959
960 if (error && error != EEXIST) {
961 VLOG_ERR("failed adding ingress qdisc required for offloading: %s",
962 ovs_strerror(error));
963 return error;
964 }
965
966 VLOG_INFO("added ingress qdisc to %s", netdev_get_name(netdev));
967
18ebd48c
PB
968 return 0;
969}