]> git.proxmox.com Git - mirror_iproute2.git/blob - tc/f_flower.c
Merge branch 'master' into net-next
[mirror_iproute2.git] / tc / f_flower.c
1 /*
2 * f_flower.c Flower Classifier
3 *
4 * This program is free software; you can distribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Jiri Pirko <jiri@resnulli.us>
10 */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <syslog.h>
16 #include <string.h>
17 #include <net/if.h>
18 #include <linux/if_arp.h>
19 #include <linux/if_ether.h>
20 #include <linux/ip.h>
21 #include <linux/tc_act/tc_vlan.h>
22 #include <linux/mpls.h>
23
24 #include "utils.h"
25 #include "tc_util.h"
26 #include "rt_names.h"
27
28 enum flower_matching_flags {
29 FLOWER_IP_FLAGS,
30 };
31
32 enum flower_endpoint {
33 FLOWER_ENDPOINT_SRC,
34 FLOWER_ENDPOINT_DST
35 };
36
37 enum flower_icmp_field {
38 FLOWER_ICMP_FIELD_TYPE,
39 FLOWER_ICMP_FIELD_CODE
40 };
41
42 static void explain(void)
43 {
44 fprintf(stderr,
45 "Usage: ... flower [ MATCH-LIST ]\n"
46 " [ skip_sw | skip_hw ]\n"
47 " [ action ACTION-SPEC ] [ classid CLASSID ]\n"
48 "\n"
49 "Where: MATCH-LIST := [ MATCH-LIST ] MATCH\n"
50 " MATCH := { indev DEV-NAME |\n"
51 " vlan_id VID |\n"
52 " vlan_prio PRIORITY |\n"
53 " vlan_ethtype [ ipv4 | ipv6 | ETH-TYPE ] |\n"
54 " dst_mac MASKED-LLADDR |\n"
55 " src_mac MASKED-LLADDR |\n"
56 " ip_proto [tcp | udp | sctp | icmp | icmpv6 | IP-PROTO ] |\n"
57 " ip_tos MASKED-IP_TOS |\n"
58 " ip_ttl MASKED-IP_TTL |\n"
59 " mpls_label LABEL |\n"
60 " mpls_tc TC |\n"
61 " mpls_bos BOS |\n"
62 " mpls_ttl TTL |\n"
63 " dst_ip PREFIX |\n"
64 " src_ip PREFIX |\n"
65 " dst_port PORT-NUMBER |\n"
66 " src_port PORT-NUMBER |\n"
67 " tcp_flags MASKED-TCP_FLAGS |\n"
68 " type MASKED-ICMP-TYPE |\n"
69 " code MASKED-ICMP-CODE |\n"
70 " arp_tip IPV4-PREFIX |\n"
71 " arp_sip IPV4-PREFIX |\n"
72 " arp_op [ request | reply | OP ] |\n"
73 " arp_tha MASKED-LLADDR |\n"
74 " arp_sha MASKED-LLADDR |\n"
75 " enc_dst_ip [ IPV4-ADDR | IPV6-ADDR ] |\n"
76 " enc_src_ip [ IPV4-ADDR | IPV6-ADDR ] |\n"
77 " enc_key_id [ KEY-ID ] |\n"
78 " ip_flags IP-FLAGS | \n"
79 " enc_dst_port [ port_number ] }\n"
80 " FILTERID := X:Y:Z\n"
81 " MASKED_LLADDR := { LLADDR | LLADDR/MASK | LLADDR/BITS }\n"
82 " ACTION-SPEC := ... look at individual actions\n"
83 "\n"
84 "NOTE: CLASSID, IP-PROTO are parsed as hexadecimal input.\n"
85 "NOTE: There can be only used one mask per one prio. If user needs\n"
86 " to specify different mask, he has to use different prio.\n");
87 }
88
89 static int flower_parse_eth_addr(char *str, int addr_type, int mask_type,
90 struct nlmsghdr *n)
91 {
92 int ret, err = -1;
93 char addr[ETH_ALEN], *slash;
94
95 slash = strchr(str, '/');
96 if (slash)
97 *slash = '\0';
98
99 ret = ll_addr_a2n(addr, sizeof(addr), str);
100 if (ret < 0)
101 goto err;
102 addattr_l(n, MAX_MSG, addr_type, addr, sizeof(addr));
103
104 if (slash) {
105 unsigned bits;
106
107 if (!get_unsigned(&bits, slash + 1, 10)) {
108 uint64_t mask;
109
110 /* Extra 16 bit shift to push mac address into
111 * high bits of uint64_t
112 */
113 mask = htonll(0xffffffffffffULL << (16 + 48 - bits));
114 memcpy(addr, &mask, ETH_ALEN);
115 } else {
116 ret = ll_addr_a2n(addr, sizeof(addr), slash + 1);
117 if (ret < 0)
118 goto err;
119 }
120 } else {
121 memset(addr, 0xff, ETH_ALEN);
122 }
123 addattr_l(n, MAX_MSG, mask_type, addr, sizeof(addr));
124
125 err = 0;
126 err:
127 if (slash)
128 *slash = '/';
129 return err;
130 }
131
132 static int flower_parse_vlan_eth_type(char *str, __be16 eth_type, int type,
133 __be16 *p_vlan_eth_type,
134 struct nlmsghdr *n)
135 {
136 __be16 vlan_eth_type;
137
138 if (eth_type != htons(ETH_P_8021Q)) {
139 fprintf(stderr,
140 "Can't set \"vlan_ethtype\" if ethertype isn't 802.1Q\n");
141 return -1;
142 }
143
144 if (ll_proto_a2n(&vlan_eth_type, str))
145 invarg("invalid vlan_ethtype", str);
146 addattr16(n, MAX_MSG, type, vlan_eth_type);
147 *p_vlan_eth_type = vlan_eth_type;
148 return 0;
149 }
150
151 struct flag_to_string {
152 int flag;
153 enum flower_matching_flags type;
154 char *string;
155 };
156
157 static struct flag_to_string flags_str[] = {
158 { TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT, FLOWER_IP_FLAGS, "frag" },
159 };
160
161 static int flower_parse_matching_flags(char *str,
162 enum flower_matching_flags type,
163 __u32 *mtf, __u32 *mtf_mask)
164 {
165 char *token;
166 bool no;
167 bool found;
168 int i;
169
170 token = strtok(str, "/");
171
172 while (token) {
173 if (!strncmp(token, "no", 2)) {
174 no = true;
175 token += 2;
176 } else
177 no = false;
178
179 found = false;
180 for (i = 0; i < ARRAY_SIZE(flags_str); i++) {
181 if (type != flags_str[i].type)
182 continue;
183
184 if (!strcmp(token, flags_str[i].string)) {
185 if (no)
186 *mtf &= ~flags_str[i].flag;
187 else
188 *mtf |= flags_str[i].flag;
189
190 *mtf_mask |= flags_str[i].flag;
191 found = true;
192 break;
193 }
194 }
195 if (!found)
196 return -1;
197
198 token = strtok(NULL, "/");
199 }
200
201 return 0;
202 }
203
204 static int flower_parse_ip_proto(char *str, __be16 eth_type, int type,
205 __u8 *p_ip_proto, struct nlmsghdr *n)
206 {
207 int ret;
208 __u8 ip_proto;
209
210 if (eth_type != htons(ETH_P_IP) && eth_type != htons(ETH_P_IPV6))
211 goto err;
212
213 if (matches(str, "tcp") == 0) {
214 ip_proto = IPPROTO_TCP;
215 } else if (matches(str, "udp") == 0) {
216 ip_proto = IPPROTO_UDP;
217 } else if (matches(str, "sctp") == 0) {
218 ip_proto = IPPROTO_SCTP;
219 } else if (matches(str, "icmp") == 0) {
220 if (eth_type != htons(ETH_P_IP))
221 goto err;
222 ip_proto = IPPROTO_ICMP;
223 } else if (matches(str, "icmpv6") == 0) {
224 if (eth_type != htons(ETH_P_IPV6))
225 goto err;
226 ip_proto = IPPROTO_ICMPV6;
227 } else {
228 ret = get_u8(&ip_proto, str, 16);
229 if (ret)
230 return -1;
231 }
232 addattr8(n, MAX_MSG, type, ip_proto);
233 *p_ip_proto = ip_proto;
234 return 0;
235
236 err:
237 fprintf(stderr, "Illegal \"eth_type\" for ip proto\n");
238 return -1;
239 }
240
241 static int __flower_parse_ip_addr(char *str, int family,
242 int addr4_type, int mask4_type,
243 int addr6_type, int mask6_type,
244 struct nlmsghdr *n)
245 {
246 int ret;
247 inet_prefix addr;
248 int bits;
249 int i;
250
251 ret = get_prefix(&addr, str, family);
252 if (ret)
253 return -1;
254
255 if (family && (addr.family != family)) {
256 fprintf(stderr, "Illegal \"eth_type\" for ip address\n");
257 return -1;
258 }
259
260 addattr_l(n, MAX_MSG, addr.family == AF_INET ? addr4_type : addr6_type,
261 addr.data, addr.bytelen);
262
263 memset(addr.data, 0xff, addr.bytelen);
264 bits = addr.bitlen;
265 for (i = 0; i < addr.bytelen / 4; i++) {
266 if (!bits) {
267 addr.data[i] = 0;
268 } else if (bits / 32 >= 1) {
269 bits -= 32;
270 } else {
271 addr.data[i] <<= 32 - bits;
272 addr.data[i] = htonl(addr.data[i]);
273 bits = 0;
274 }
275 }
276
277 addattr_l(n, MAX_MSG, addr.family == AF_INET ? mask4_type : mask6_type,
278 addr.data, addr.bytelen);
279
280 return 0;
281 }
282
283 static int flower_parse_ip_addr(char *str, __be16 eth_type,
284 int addr4_type, int mask4_type,
285 int addr6_type, int mask6_type,
286 struct nlmsghdr *n)
287 {
288 int family;
289
290 if (eth_type == htons(ETH_P_IP)) {
291 family = AF_INET;
292 } else if (eth_type == htons(ETH_P_IPV6)) {
293 family = AF_INET6;
294 } else if (!eth_type) {
295 family = AF_UNSPEC;
296 } else {
297 return -1;
298 }
299
300 return __flower_parse_ip_addr(str, family, addr4_type, mask4_type,
301 addr6_type, mask6_type, n);
302 }
303
304 static bool flower_eth_type_arp(__be16 eth_type)
305 {
306 return eth_type == htons(ETH_P_ARP) || eth_type == htons(ETH_P_RARP);
307 }
308
309 static int flower_parse_arp_ip_addr(char *str, __be16 eth_type,
310 int addr_type, int mask_type,
311 struct nlmsghdr *n)
312 {
313 if (!flower_eth_type_arp(eth_type))
314 return -1;
315
316 return __flower_parse_ip_addr(str, AF_INET, addr_type, mask_type,
317 TCA_FLOWER_UNSPEC, TCA_FLOWER_UNSPEC, n);
318 }
319
320 static int flower_parse_u8(char *str, int value_type, int mask_type,
321 int (*value_from_name)(const char *str,
322 __u8 *value),
323 bool (*value_validate)(__u8 value),
324 struct nlmsghdr *n)
325 {
326 char *slash;
327 int ret, err = -1;
328 __u8 value, mask;
329
330 slash = strchr(str, '/');
331 if (slash)
332 *slash = '\0';
333
334 ret = value_from_name ? value_from_name(str, &value) : -1;
335 if (ret < 0) {
336 ret = get_u8(&value, str, 10);
337 if (ret)
338 goto err;
339 }
340
341 if (value_validate && !value_validate(value))
342 goto err;
343
344 if (slash) {
345 ret = get_u8(&mask, slash + 1, 10);
346 if (ret)
347 goto err;
348 }
349 else {
350 mask = UINT8_MAX;
351 }
352
353 addattr8(n, MAX_MSG, value_type, value);
354 addattr8(n, MAX_MSG, mask_type, mask);
355
356 err = 0;
357 err:
358 if (slash)
359 *slash = '/';
360 return err;
361 }
362
363 static const char *flower_print_arp_op_to_name(__u8 op)
364 {
365 switch (op) {
366 case ARPOP_REQUEST:
367 return "request";
368 case ARPOP_REPLY:
369 return "reply";
370 default:
371 return NULL;
372 }
373 }
374
375 static int flower_arp_op_from_name(const char *name, __u8 *op)
376 {
377 if (!strcmp(name, "request"))
378 *op = ARPOP_REQUEST;
379 else if (!strcmp(name, "reply"))
380 *op = ARPOP_REPLY;
381 else
382 return -1;
383
384 return 0;
385 }
386
387 static bool flow_arp_op_validate(__u8 op)
388 {
389 return !op || op == ARPOP_REQUEST || op == ARPOP_REPLY;
390 }
391
392 static int flower_parse_arp_op(char *str, __be16 eth_type,
393 int op_type, int mask_type,
394 struct nlmsghdr *n)
395 {
396 if (!flower_eth_type_arp(eth_type))
397 return -1;
398
399 return flower_parse_u8(str, op_type, mask_type, flower_arp_op_from_name,
400 flow_arp_op_validate, n);
401 }
402
403 static int flower_icmp_attr_type(__be16 eth_type, __u8 ip_proto,
404 enum flower_icmp_field field)
405 {
406 if (eth_type == htons(ETH_P_IP) && ip_proto == IPPROTO_ICMP)
407 return field == FLOWER_ICMP_FIELD_CODE ?
408 TCA_FLOWER_KEY_ICMPV4_CODE :
409 TCA_FLOWER_KEY_ICMPV4_TYPE;
410 else if (eth_type == htons(ETH_P_IPV6) && ip_proto == IPPROTO_ICMPV6)
411 return field == FLOWER_ICMP_FIELD_CODE ?
412 TCA_FLOWER_KEY_ICMPV6_CODE :
413 TCA_FLOWER_KEY_ICMPV6_TYPE;
414
415 return -1;
416 }
417
418 static int flower_icmp_attr_mask_type(__be16 eth_type, __u8 ip_proto,
419 enum flower_icmp_field field)
420 {
421 if (eth_type == htons(ETH_P_IP) && ip_proto == IPPROTO_ICMP)
422 return field == FLOWER_ICMP_FIELD_CODE ?
423 TCA_FLOWER_KEY_ICMPV4_CODE_MASK :
424 TCA_FLOWER_KEY_ICMPV4_TYPE_MASK;
425 else if (eth_type == htons(ETH_P_IPV6) && ip_proto == IPPROTO_ICMPV6)
426 return field == FLOWER_ICMP_FIELD_CODE ?
427 TCA_FLOWER_KEY_ICMPV6_CODE_MASK :
428 TCA_FLOWER_KEY_ICMPV6_TYPE_MASK;
429
430 return -1;
431 }
432
433 static int flower_parse_icmp(char *str, __u16 eth_type, __u8 ip_proto,
434 enum flower_icmp_field field, struct nlmsghdr *n)
435 {
436 int value_type, mask_type;
437
438 value_type = flower_icmp_attr_type(eth_type, ip_proto, field);
439 mask_type = flower_icmp_attr_mask_type(eth_type, ip_proto, field);
440 if (value_type < 0 || mask_type < 0)
441 return -1;
442
443 return flower_parse_u8(str, value_type, mask_type, NULL, NULL, n);
444 }
445
446 static int flower_port_attr_type(__u8 ip_proto, enum flower_endpoint endpoint)
447 {
448 if (ip_proto == IPPROTO_TCP)
449 return endpoint == FLOWER_ENDPOINT_SRC ?
450 TCA_FLOWER_KEY_TCP_SRC :
451 TCA_FLOWER_KEY_TCP_DST;
452 else if (ip_proto == IPPROTO_UDP)
453 return endpoint == FLOWER_ENDPOINT_SRC ?
454 TCA_FLOWER_KEY_UDP_SRC :
455 TCA_FLOWER_KEY_UDP_DST;
456 else if (ip_proto == IPPROTO_SCTP)
457 return endpoint == FLOWER_ENDPOINT_SRC ?
458 TCA_FLOWER_KEY_SCTP_SRC :
459 TCA_FLOWER_KEY_SCTP_DST;
460 else
461 return -1;
462 }
463
464 static int flower_parse_port(char *str, __u8 ip_proto,
465 enum flower_endpoint endpoint,
466 struct nlmsghdr *n)
467 {
468 int ret;
469 int type;
470 __be16 port;
471
472 type = flower_port_attr_type(ip_proto, endpoint);
473 if (type < 0)
474 return -1;
475
476 ret = get_be16(&port, str, 10);
477 if (ret)
478 return -1;
479
480 addattr16(n, MAX_MSG, type, port);
481
482 return 0;
483 }
484
485 #define TCP_FLAGS_MAX_MASK 0xfff
486
487 static int flower_parse_tcp_flags(char *str, int flags_type, int mask_type,
488 struct nlmsghdr *n)
489 {
490 char *slash;
491 int ret, err = -1;
492 __u16 flags;
493
494 slash = strchr(str, '/');
495 if (slash)
496 *slash = '\0';
497
498 ret = get_u16(&flags, str, 16);
499 if (ret < 0 || flags & ~TCP_FLAGS_MAX_MASK)
500 goto err;
501
502 addattr16(n, MAX_MSG, flags_type, htons(flags));
503
504 if (slash) {
505 ret = get_u16(&flags, slash + 1, 16);
506 if (ret < 0 || flags & ~TCP_FLAGS_MAX_MASK)
507 goto err;
508 } else {
509 flags = TCP_FLAGS_MAX_MASK;
510 }
511 addattr16(n, MAX_MSG, mask_type, htons(flags));
512
513 err = 0;
514 err:
515 if (slash)
516 *slash = '/';
517 return err;
518 }
519
520 static int flower_parse_ip_tos_ttl(char *str, int key_type, int mask_type,
521 struct nlmsghdr *n)
522 {
523 char *slash;
524 int ret, err = -1;
525 __u8 tos_ttl;
526
527 slash = strchr(str, '/');
528 if (slash)
529 *slash = '\0';
530
531 ret = get_u8(&tos_ttl, str, 10);
532 if (ret < 0)
533 ret = get_u8(&tos_ttl, str, 16);
534 if (ret < 0)
535 goto err;
536
537 addattr8(n, MAX_MSG, key_type, tos_ttl);
538
539 if (slash) {
540 ret = get_u8(&tos_ttl, slash + 1, 16);
541 if (ret < 0)
542 goto err;
543 } else {
544 tos_ttl = 0xff;
545 }
546 addattr8(n, MAX_MSG, mask_type, tos_ttl);
547
548 err = 0;
549 err:
550 if (slash)
551 *slash = '/';
552 return err;
553 }
554
555 static int flower_parse_key_id(const char *str, int type, struct nlmsghdr *n)
556 {
557 int ret;
558 __be32 key_id;
559
560 ret = get_be32(&key_id, str, 10);
561 if (!ret)
562 addattr32(n, MAX_MSG, type, key_id);
563
564 return ret;
565 }
566
567 static int flower_parse_enc_port(char *str, int type, struct nlmsghdr *n)
568 {
569 int ret;
570 __be16 port;
571
572 ret = get_be16(&port, str, 10);
573 if (ret)
574 return -1;
575
576 addattr16(n, MAX_MSG, type, port);
577
578 return 0;
579 }
580
581 static int flower_parse_opt(struct filter_util *qu, char *handle,
582 int argc, char **argv, struct nlmsghdr *n)
583 {
584 int ret;
585 struct tcmsg *t = NLMSG_DATA(n);
586 struct rtattr *tail;
587 __be16 eth_type = TC_H_MIN(t->tcm_info);
588 __be16 vlan_ethtype = 0;
589 __u8 ip_proto = 0xff;
590 __u32 flags = 0;
591 __u32 mtf = 0;
592 __u32 mtf_mask = 0;
593
594 if (handle) {
595 ret = get_u32(&t->tcm_handle, handle, 0);
596 if (ret) {
597 fprintf(stderr, "Illegal \"handle\"\n");
598 return -1;
599 }
600 }
601
602 tail = (struct rtattr *) (((void *) n) + NLMSG_ALIGN(n->nlmsg_len));
603 addattr_l(n, MAX_MSG, TCA_OPTIONS, NULL, 0);
604
605 if (argc == 0) {
606 /*at minimal we will match all ethertype packets */
607 goto parse_done;
608 }
609
610 while (argc > 0) {
611 if (matches(*argv, "classid") == 0 ||
612 matches(*argv, "flowid") == 0) {
613 unsigned int handle;
614
615 NEXT_ARG();
616 ret = get_tc_classid(&handle, *argv);
617 if (ret) {
618 fprintf(stderr, "Illegal \"classid\"\n");
619 return -1;
620 }
621 addattr_l(n, MAX_MSG, TCA_FLOWER_CLASSID, &handle, 4);
622 } else if (matches(*argv, "ip_flags") == 0) {
623 NEXT_ARG();
624 ret = flower_parse_matching_flags(*argv,
625 FLOWER_IP_FLAGS,
626 &mtf,
627 &mtf_mask);
628 if (ret < 0) {
629 fprintf(stderr, "Illegal \"ip_flags\"\n");
630 return -1;
631 }
632 } else if (matches(*argv, "skip_hw") == 0) {
633 flags |= TCA_CLS_FLAGS_SKIP_HW;
634 } else if (matches(*argv, "skip_sw") == 0) {
635 flags |= TCA_CLS_FLAGS_SKIP_SW;
636 } else if (matches(*argv, "indev") == 0) {
637 NEXT_ARG();
638 if (check_ifname(*argv))
639 invarg("\"indev\" not a valid ifname", *argv);
640 addattrstrz(n, MAX_MSG, TCA_FLOWER_INDEV, *argv);
641 } else if (matches(*argv, "vlan_id") == 0) {
642 __u16 vid;
643
644 NEXT_ARG();
645 if (eth_type != htons(ETH_P_8021Q)) {
646 fprintf(stderr,
647 "Can't set \"vlan_id\" if ethertype isn't 802.1Q\n");
648 return -1;
649 }
650 ret = get_u16(&vid, *argv, 10);
651 if (ret < 0 || vid & ~0xfff) {
652 fprintf(stderr, "Illegal \"vlan_id\"\n");
653 return -1;
654 }
655 addattr16(n, MAX_MSG, TCA_FLOWER_KEY_VLAN_ID, vid);
656 } else if (matches(*argv, "vlan_prio") == 0) {
657 __u8 vlan_prio;
658
659 NEXT_ARG();
660 if (eth_type != htons(ETH_P_8021Q)) {
661 fprintf(stderr,
662 "Can't set \"vlan_prio\" if ethertype isn't 802.1Q\n");
663 return -1;
664 }
665 ret = get_u8(&vlan_prio, *argv, 10);
666 if (ret < 0 || vlan_prio & ~0x7) {
667 fprintf(stderr, "Illegal \"vlan_prio\"\n");
668 return -1;
669 }
670 addattr8(n, MAX_MSG,
671 TCA_FLOWER_KEY_VLAN_PRIO, vlan_prio);
672 } else if (matches(*argv, "vlan_ethtype") == 0) {
673 NEXT_ARG();
674 ret = flower_parse_vlan_eth_type(*argv, eth_type,
675 TCA_FLOWER_KEY_VLAN_ETH_TYPE,
676 &vlan_ethtype, n);
677 if (ret < 0)
678 return -1;
679 } else if (matches(*argv, "mpls_label") == 0) {
680 __u32 label;
681
682 NEXT_ARG();
683 if (eth_type != htons(ETH_P_MPLS_UC) &&
684 eth_type != htons(ETH_P_MPLS_MC)) {
685 fprintf(stderr,
686 "Can't set \"mpls_label\" if ethertype isn't MPLS\n");
687 return -1;
688 }
689 ret = get_u32(&label, *argv, 10);
690 if (ret < 0 || label & ~(MPLS_LS_LABEL_MASK >> MPLS_LS_LABEL_SHIFT)) {
691 fprintf(stderr, "Illegal \"mpls_label\"\n");
692 return -1;
693 }
694 addattr32(n, MAX_MSG, TCA_FLOWER_KEY_MPLS_LABEL, label);
695 } else if (matches(*argv, "mpls_tc") == 0) {
696 __u8 tc;
697
698 NEXT_ARG();
699 if (eth_type != htons(ETH_P_MPLS_UC) &&
700 eth_type != htons(ETH_P_MPLS_MC)) {
701 fprintf(stderr,
702 "Can't set \"mpls_tc\" if ethertype isn't MPLS\n");
703 return -1;
704 }
705 ret = get_u8(&tc, *argv, 10);
706 if (ret < 0 || tc & ~(MPLS_LS_TC_MASK >> MPLS_LS_TC_SHIFT)) {
707 fprintf(stderr, "Illegal \"mpls_tc\"\n");
708 return -1;
709 }
710 addattr8(n, MAX_MSG, TCA_FLOWER_KEY_MPLS_TC, tc);
711 } else if (matches(*argv, "mpls_bos") == 0) {
712 __u8 bos;
713
714 NEXT_ARG();
715 if (eth_type != htons(ETH_P_MPLS_UC) &&
716 eth_type != htons(ETH_P_MPLS_MC)) {
717 fprintf(stderr,
718 "Can't set \"mpls_bos\" if ethertype isn't MPLS\n");
719 return -1;
720 }
721 ret = get_u8(&bos, *argv, 10);
722 if (ret < 0 || bos & ~(MPLS_LS_S_MASK >> MPLS_LS_S_SHIFT)) {
723 fprintf(stderr, "Illegal \"mpls_bos\"\n");
724 return -1;
725 }
726 addattr8(n, MAX_MSG, TCA_FLOWER_KEY_MPLS_BOS, bos);
727 } else if (matches(*argv, "mpls_ttl") == 0) {
728 __u8 ttl;
729
730 NEXT_ARG();
731 if (eth_type != htons(ETH_P_MPLS_UC) &&
732 eth_type != htons(ETH_P_MPLS_MC)) {
733 fprintf(stderr,
734 "Can't set \"mpls_ttl\" if ethertype isn't MPLS\n");
735 return -1;
736 }
737 ret = get_u8(&ttl, *argv, 10);
738 if (ret < 0 || ttl & ~(MPLS_LS_TTL_MASK >> MPLS_LS_TTL_SHIFT)) {
739 fprintf(stderr, "Illegal \"mpls_ttl\"\n");
740 return -1;
741 }
742 addattr8(n, MAX_MSG, TCA_FLOWER_KEY_MPLS_TTL, ttl);
743 } else if (matches(*argv, "dst_mac") == 0) {
744 NEXT_ARG();
745 ret = flower_parse_eth_addr(*argv,
746 TCA_FLOWER_KEY_ETH_DST,
747 TCA_FLOWER_KEY_ETH_DST_MASK,
748 n);
749 if (ret < 0) {
750 fprintf(stderr, "Illegal \"dst_mac\"\n");
751 return -1;
752 }
753 } else if (matches(*argv, "src_mac") == 0) {
754 NEXT_ARG();
755 ret = flower_parse_eth_addr(*argv,
756 TCA_FLOWER_KEY_ETH_SRC,
757 TCA_FLOWER_KEY_ETH_SRC_MASK,
758 n);
759 if (ret < 0) {
760 fprintf(stderr, "Illegal \"src_mac\"\n");
761 return -1;
762 }
763 } else if (matches(*argv, "ip_proto") == 0) {
764 NEXT_ARG();
765 ret = flower_parse_ip_proto(*argv, vlan_ethtype ?
766 vlan_ethtype : eth_type,
767 TCA_FLOWER_KEY_IP_PROTO,
768 &ip_proto, n);
769 if (ret < 0) {
770 fprintf(stderr, "Illegal \"ip_proto\"\n");
771 return -1;
772 }
773 } else if (matches(*argv, "ip_tos") == 0) {
774 NEXT_ARG();
775 ret = flower_parse_ip_tos_ttl(*argv,
776 TCA_FLOWER_KEY_IP_TOS,
777 TCA_FLOWER_KEY_IP_TOS_MASK,
778 n);
779 if (ret < 0) {
780 fprintf(stderr, "Illegal \"ip_tos\"\n");
781 return -1;
782 }
783 } else if (matches(*argv, "ip_ttl") == 0) {
784 NEXT_ARG();
785 ret = flower_parse_ip_tos_ttl(*argv,
786 TCA_FLOWER_KEY_IP_TTL,
787 TCA_FLOWER_KEY_IP_TTL_MASK,
788 n);
789 if (ret < 0) {
790 fprintf(stderr, "Illegal \"ip_ttl\"\n");
791 return -1;
792 }
793 } else if (matches(*argv, "dst_ip") == 0) {
794 NEXT_ARG();
795 ret = flower_parse_ip_addr(*argv, vlan_ethtype ?
796 vlan_ethtype : eth_type,
797 TCA_FLOWER_KEY_IPV4_DST,
798 TCA_FLOWER_KEY_IPV4_DST_MASK,
799 TCA_FLOWER_KEY_IPV6_DST,
800 TCA_FLOWER_KEY_IPV6_DST_MASK,
801 n);
802 if (ret < 0) {
803 fprintf(stderr, "Illegal \"dst_ip\"\n");
804 return -1;
805 }
806 } else if (matches(*argv, "src_ip") == 0) {
807 NEXT_ARG();
808 ret = flower_parse_ip_addr(*argv, vlan_ethtype ?
809 vlan_ethtype : eth_type,
810 TCA_FLOWER_KEY_IPV4_SRC,
811 TCA_FLOWER_KEY_IPV4_SRC_MASK,
812 TCA_FLOWER_KEY_IPV6_SRC,
813 TCA_FLOWER_KEY_IPV6_SRC_MASK,
814 n);
815 if (ret < 0) {
816 fprintf(stderr, "Illegal \"src_ip\"\n");
817 return -1;
818 }
819 } else if (matches(*argv, "dst_port") == 0) {
820 NEXT_ARG();
821 ret = flower_parse_port(*argv, ip_proto,
822 FLOWER_ENDPOINT_DST, n);
823 if (ret < 0) {
824 fprintf(stderr, "Illegal \"dst_port\"\n");
825 return -1;
826 }
827 } else if (matches(*argv, "src_port") == 0) {
828 NEXT_ARG();
829 ret = flower_parse_port(*argv, ip_proto,
830 FLOWER_ENDPOINT_SRC, n);
831 if (ret < 0) {
832 fprintf(stderr, "Illegal \"src_port\"\n");
833 return -1;
834 }
835 } else if (matches(*argv, "tcp_flags") == 0) {
836 NEXT_ARG();
837 ret = flower_parse_tcp_flags(*argv,
838 TCA_FLOWER_KEY_TCP_FLAGS,
839 TCA_FLOWER_KEY_TCP_FLAGS_MASK,
840 n);
841 if (ret < 0) {
842 fprintf(stderr, "Illegal \"tcp_flags\"\n");
843 return -1;
844 }
845 } else if (matches(*argv, "type") == 0) {
846 NEXT_ARG();
847 ret = flower_parse_icmp(*argv, eth_type, ip_proto,
848 FLOWER_ICMP_FIELD_TYPE, n);
849 if (ret < 0) {
850 fprintf(stderr, "Illegal \"icmp type\"\n");
851 return -1;
852 }
853 } else if (matches(*argv, "code") == 0) {
854 NEXT_ARG();
855 ret = flower_parse_icmp(*argv, eth_type, ip_proto,
856 FLOWER_ICMP_FIELD_CODE, n);
857 if (ret < 0) {
858 fprintf(stderr, "Illegal \"icmp code\"\n");
859 return -1;
860 }
861 } else if (matches(*argv, "arp_tip") == 0) {
862 NEXT_ARG();
863 ret = flower_parse_arp_ip_addr(*argv, vlan_ethtype ?
864 vlan_ethtype : eth_type,
865 TCA_FLOWER_KEY_ARP_TIP,
866 TCA_FLOWER_KEY_ARP_TIP_MASK,
867 n);
868 if (ret < 0) {
869 fprintf(stderr, "Illegal \"arp_tip\"\n");
870 return -1;
871 }
872 } else if (matches(*argv, "arp_sip") == 0) {
873 NEXT_ARG();
874 ret = flower_parse_arp_ip_addr(*argv, vlan_ethtype ?
875 vlan_ethtype : eth_type,
876 TCA_FLOWER_KEY_ARP_SIP,
877 TCA_FLOWER_KEY_ARP_SIP_MASK,
878 n);
879 if (ret < 0) {
880 fprintf(stderr, "Illegal \"arp_sip\"\n");
881 return -1;
882 }
883 } else if (matches(*argv, "arp_op") == 0) {
884 NEXT_ARG();
885 ret = flower_parse_arp_op(*argv, vlan_ethtype ?
886 vlan_ethtype : eth_type,
887 TCA_FLOWER_KEY_ARP_OP,
888 TCA_FLOWER_KEY_ARP_OP_MASK,
889 n);
890 if (ret < 0) {
891 fprintf(stderr, "Illegal \"arp_op\"\n");
892 return -1;
893 }
894 } else if (matches(*argv, "arp_tha") == 0) {
895 NEXT_ARG();
896 ret = flower_parse_eth_addr(*argv,
897 TCA_FLOWER_KEY_ARP_THA,
898 TCA_FLOWER_KEY_ARP_THA_MASK,
899 n);
900 if (ret < 0) {
901 fprintf(stderr, "Illegal \"arp_tha\"\n");
902 return -1;
903 }
904 } else if (matches(*argv, "arp_sha") == 0) {
905 NEXT_ARG();
906 ret = flower_parse_eth_addr(*argv,
907 TCA_FLOWER_KEY_ARP_SHA,
908 TCA_FLOWER_KEY_ARP_SHA_MASK,
909 n);
910 if (ret < 0) {
911 fprintf(stderr, "Illegal \"arp_sha\"\n");
912 return -1;
913 }
914 } else if (matches(*argv, "enc_dst_ip") == 0) {
915 NEXT_ARG();
916 ret = flower_parse_ip_addr(*argv, 0,
917 TCA_FLOWER_KEY_ENC_IPV4_DST,
918 TCA_FLOWER_KEY_ENC_IPV4_DST_MASK,
919 TCA_FLOWER_KEY_ENC_IPV6_DST,
920 TCA_FLOWER_KEY_ENC_IPV6_DST_MASK,
921 n);
922 if (ret < 0) {
923 fprintf(stderr, "Illegal \"enc_dst_ip\"\n");
924 return -1;
925 }
926 } else if (matches(*argv, "enc_src_ip") == 0) {
927 NEXT_ARG();
928 ret = flower_parse_ip_addr(*argv, 0,
929 TCA_FLOWER_KEY_ENC_IPV4_SRC,
930 TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK,
931 TCA_FLOWER_KEY_ENC_IPV6_SRC,
932 TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK,
933 n);
934 if (ret < 0) {
935 fprintf(stderr, "Illegal \"enc_src_ip\"\n");
936 return -1;
937 }
938 } else if (matches(*argv, "enc_key_id") == 0) {
939 NEXT_ARG();
940 ret = flower_parse_key_id(*argv,
941 TCA_FLOWER_KEY_ENC_KEY_ID, n);
942 if (ret < 0) {
943 fprintf(stderr, "Illegal \"enc_key_id\"\n");
944 return -1;
945 }
946 } else if (matches(*argv, "enc_dst_port") == 0) {
947 NEXT_ARG();
948 ret = flower_parse_enc_port(*argv,
949 TCA_FLOWER_KEY_ENC_UDP_DST_PORT, n);
950 if (ret < 0) {
951 fprintf(stderr, "Illegal \"enc_dst_port\"\n");
952 return -1;
953 }
954 } else if (matches(*argv, "action") == 0) {
955 NEXT_ARG();
956 ret = parse_action(&argc, &argv, TCA_FLOWER_ACT, n);
957 if (ret) {
958 fprintf(stderr, "Illegal \"action\"\n");
959 return -1;
960 }
961 continue;
962 } else if (strcmp(*argv, "help") == 0) {
963 explain();
964 return -1;
965 } else {
966 fprintf(stderr, "What is \"%s\"?\n", *argv);
967 explain();
968 return -1;
969 }
970 argc--; argv++;
971 }
972
973 parse_done:
974 ret = addattr32(n, MAX_MSG, TCA_FLOWER_FLAGS, flags);
975 if (ret)
976 return ret;
977
978 if (mtf_mask) {
979 ret = addattr32(n, MAX_MSG, TCA_FLOWER_KEY_FLAGS, htonl(mtf));
980 if (ret)
981 return ret;
982
983 ret = addattr32(n, MAX_MSG, TCA_FLOWER_KEY_FLAGS_MASK, htonl(mtf_mask));
984 if (ret)
985 return ret;
986 }
987
988 if (eth_type != htons(ETH_P_ALL)) {
989 ret = addattr16(n, MAX_MSG, TCA_FLOWER_KEY_ETH_TYPE, eth_type);
990 if (ret)
991 return ret;
992 }
993
994 tail->rta_len = (((void *)n)+n->nlmsg_len) - (void *)tail;
995
996 return 0;
997 }
998
999 static int __mask_bits(char *addr, size_t len)
1000 {
1001 int bits = 0;
1002 bool hole = false;
1003 int i;
1004 int j;
1005
1006 for (i = 0; i < len; i++, addr++) {
1007 for (j = 7; j >= 0; j--) {
1008 if (((*addr) >> j) & 0x1) {
1009 if (hole)
1010 return -1;
1011 bits++;
1012 } else if (bits) {
1013 hole = true;
1014 } else{
1015 return -1;
1016 }
1017 }
1018 }
1019 return bits;
1020 }
1021
1022 static void flower_print_eth_addr(FILE *f, char *name,
1023 struct rtattr *addr_attr,
1024 struct rtattr *mask_attr)
1025 {
1026 SPRINT_BUF(b1);
1027 int bits;
1028
1029 if (!addr_attr || RTA_PAYLOAD(addr_attr) != ETH_ALEN)
1030 return;
1031 fprintf(f, "\n %s %s", name, ll_addr_n2a(RTA_DATA(addr_attr), ETH_ALEN,
1032 0, b1, sizeof(b1)));
1033 if (!mask_attr || RTA_PAYLOAD(mask_attr) != ETH_ALEN)
1034 return;
1035 bits = __mask_bits(RTA_DATA(mask_attr), ETH_ALEN);
1036 if (bits < 0)
1037 fprintf(f, "/%s", ll_addr_n2a(RTA_DATA(mask_attr), ETH_ALEN,
1038 0, b1, sizeof(b1)));
1039 else if (bits < ETH_ALEN * 8)
1040 fprintf(f, "/%d", bits);
1041 }
1042
1043 static void flower_print_eth_type(FILE *f, __be16 *p_eth_type,
1044 struct rtattr *eth_type_attr)
1045 {
1046 __be16 eth_type;
1047
1048 if (!eth_type_attr)
1049 return;
1050
1051 eth_type = rta_getattr_u16(eth_type_attr);
1052 fprintf(f, "\n eth_type ");
1053 if (eth_type == htons(ETH_P_IP))
1054 fprintf(f, "ipv4");
1055 else if (eth_type == htons(ETH_P_IPV6))
1056 fprintf(f, "ipv6");
1057 else if (eth_type == htons(ETH_P_ARP))
1058 fprintf(f, "arp");
1059 else if (eth_type == htons(ETH_P_RARP))
1060 fprintf(f, "rarp");
1061 else
1062 fprintf(f, "%04x", ntohs(eth_type));
1063 *p_eth_type = eth_type;
1064 }
1065
1066 static void flower_print_ip_proto(FILE *f, __u8 *p_ip_proto,
1067 struct rtattr *ip_proto_attr)
1068 {
1069 __u8 ip_proto;
1070
1071 if (!ip_proto_attr)
1072 return;
1073
1074 ip_proto = rta_getattr_u8(ip_proto_attr);
1075 fprintf(f, "\n ip_proto ");
1076 if (ip_proto == IPPROTO_TCP)
1077 fprintf(f, "tcp");
1078 else if (ip_proto == IPPROTO_UDP)
1079 fprintf(f, "udp");
1080 else if (ip_proto == IPPROTO_SCTP)
1081 fprintf(f, "sctp");
1082 else if (ip_proto == IPPROTO_ICMP)
1083 fprintf(f, "icmp");
1084 else if (ip_proto == IPPROTO_ICMPV6)
1085 fprintf(f, "icmpv6");
1086 else
1087 fprintf(f, "%02x", ip_proto);
1088 *p_ip_proto = ip_proto;
1089 }
1090
1091 static void flower_print_ip_attr(FILE *f, char *name,
1092 struct rtattr *key_attr,
1093 struct rtattr *mask_attr)
1094 {
1095 if (!key_attr)
1096 return;
1097
1098 fprintf(f, "\n %s %x", name, rta_getattr_u8(key_attr));
1099 if (!mask_attr)
1100 return;
1101 fprintf(f, "/%x", rta_getattr_u8(mask_attr));
1102 }
1103
1104 static void flower_print_matching_flags(FILE *f, char *name,
1105 enum flower_matching_flags type,
1106 struct rtattr *attr,
1107 struct rtattr *mask_attr)
1108 {
1109 int i;
1110 int count = 0;
1111 __u32 mtf;
1112 __u32 mtf_mask;
1113
1114 if (!mask_attr || RTA_PAYLOAD(mask_attr) != 4)
1115 return;
1116
1117 mtf = ntohl(rta_getattr_u32(attr));
1118 mtf_mask = ntohl(rta_getattr_u32(mask_attr));
1119
1120 for (i = 0; i < ARRAY_SIZE(flags_str); i++) {
1121 if (type != flags_str[i].type)
1122 continue;
1123 if (mtf_mask & flags_str[i].flag) {
1124 if (++count == 1)
1125 fprintf(f, "\n %s ", name);
1126 else
1127 fprintf(f, "/");
1128
1129 if (mtf & flags_str[i].flag)
1130 fprintf(f, "%s", flags_str[i].string);
1131 else
1132 fprintf(f, "no%s", flags_str[i].string);
1133 }
1134 }
1135 }
1136
1137 static void flower_print_ip_addr(FILE *f, char *name, __be16 eth_type,
1138 struct rtattr *addr4_attr,
1139 struct rtattr *mask4_attr,
1140 struct rtattr *addr6_attr,
1141 struct rtattr *mask6_attr)
1142 {
1143 struct rtattr *addr_attr;
1144 struct rtattr *mask_attr;
1145 int family;
1146 size_t len;
1147 int bits;
1148
1149 if (eth_type == htons(ETH_P_IP)) {
1150 family = AF_INET;
1151 addr_attr = addr4_attr;
1152 mask_attr = mask4_attr;
1153 len = 4;
1154 } else if (eth_type == htons(ETH_P_IPV6)) {
1155 family = AF_INET6;
1156 addr_attr = addr6_attr;
1157 mask_attr = mask6_attr;
1158 len = 16;
1159 } else {
1160 return;
1161 }
1162 if (!addr_attr || RTA_PAYLOAD(addr_attr) != len)
1163 return;
1164 fprintf(f, "\n %s %s", name, rt_addr_n2a_rta(family, addr_attr));
1165 if (!mask_attr || RTA_PAYLOAD(mask_attr) != len)
1166 return;
1167 bits = __mask_bits(RTA_DATA(mask_attr), len);
1168 if (bits < 0)
1169 fprintf(f, "/%s", rt_addr_n2a_rta(family, mask_attr));
1170 else if (bits < len * 8)
1171 fprintf(f, "/%d", bits);
1172 }
1173 static void flower_print_ip4_addr(FILE *f, char *name,
1174 struct rtattr *addr_attr,
1175 struct rtattr *mask_attr)
1176 {
1177 return flower_print_ip_addr(f, name, htons(ETH_P_IP),
1178 addr_attr, mask_attr, 0, 0);
1179 }
1180
1181 static void flower_print_port(FILE *f, char *name, struct rtattr *attr)
1182 {
1183 if (attr)
1184 fprintf(f, "\n %s %d", name, rta_getattr_be16(attr));
1185 }
1186
1187 static void flower_print_tcp_flags(FILE *f, char *name,
1188 struct rtattr *flags_attr,
1189 struct rtattr *mask_attr)
1190 {
1191 if (!flags_attr)
1192 return;
1193 fprintf(f, "\n %s %x", name, rta_getattr_be16(flags_attr));
1194 if (!mask_attr)
1195 return;
1196 fprintf(f, "/%x", rta_getattr_be16(mask_attr));
1197 }
1198
1199
1200 static void flower_print_key_id(FILE *f, const char *name,
1201 struct rtattr *attr)
1202 {
1203 if (attr)
1204 fprintf(f, "\n %s %d", name, rta_getattr_be32(attr));
1205 }
1206
1207 static void flower_print_masked_u8(FILE *f, const char *name,
1208 struct rtattr *attr,
1209 struct rtattr *mask_attr,
1210 const char *(*value_to_str)(__u8 value))
1211 {
1212 const char *value_str = NULL;
1213 __u8 value, mask;
1214
1215 if (!attr)
1216 return;
1217
1218 value = rta_getattr_u8(attr);
1219 mask = mask_attr ? rta_getattr_u8(mask_attr) : UINT8_MAX;
1220 if (mask == UINT8_MAX && value_to_str)
1221 value_str = value_to_str(value);
1222
1223 fprintf(f, "\n %s ", name);
1224
1225 if (value_str)
1226 fputs(value_str, f);
1227 else
1228 fprintf(f, "%d", value);
1229
1230 if (mask != UINT8_MAX)
1231 fprintf(f, "/%d", mask);
1232 }
1233
1234 static void flower_print_u8(FILE *f, const char *name, struct rtattr *attr)
1235 {
1236 flower_print_masked_u8(f, name, attr, NULL, NULL);
1237 }
1238
1239 static void flower_print_u32(FILE *f, const char *name, struct rtattr *attr)
1240 {
1241 __u32 value;
1242
1243 if (!attr)
1244 return;
1245
1246 value = rta_getattr_u32(attr);
1247
1248 fprintf(f, "\n %s %d", name, value);
1249 }
1250
1251 static void flower_print_arp_op(FILE *f, const char *name,
1252 struct rtattr *op_attr,
1253 struct rtattr *mask_attr)
1254 {
1255 flower_print_masked_u8(f, name, op_attr, mask_attr,
1256 flower_print_arp_op_to_name);
1257 }
1258
1259 static int flower_print_opt(struct filter_util *qu, FILE *f,
1260 struct rtattr *opt, __u32 handle)
1261 {
1262 struct rtattr *tb[TCA_FLOWER_MAX + 1];
1263 int nl_type, nl_mask_type;
1264 __be16 eth_type = 0;
1265 __u8 ip_proto = 0xff;
1266
1267 if (!opt)
1268 return 0;
1269
1270 parse_rtattr_nested(tb, TCA_FLOWER_MAX, opt);
1271
1272 if (handle)
1273 fprintf(f, "handle 0x%x ", handle);
1274
1275 if (tb[TCA_FLOWER_CLASSID]) {
1276 SPRINT_BUF(b1);
1277 fprintf(f, "classid %s ",
1278 sprint_tc_classid(rta_getattr_u32(tb[TCA_FLOWER_CLASSID]),
1279 b1));
1280 }
1281
1282 if (tb[TCA_FLOWER_INDEV]) {
1283 struct rtattr *attr = tb[TCA_FLOWER_INDEV];
1284
1285 fprintf(f, "\n indev %s", rta_getattr_str(attr));
1286 }
1287
1288 if (tb[TCA_FLOWER_KEY_VLAN_ID]) {
1289 struct rtattr *attr = tb[TCA_FLOWER_KEY_VLAN_ID];
1290
1291 fprintf(f, "\n vlan_id %d", rta_getattr_u16(attr));
1292 }
1293
1294 if (tb[TCA_FLOWER_KEY_VLAN_PRIO]) {
1295 struct rtattr *attr = tb[TCA_FLOWER_KEY_VLAN_PRIO];
1296
1297 fprintf(f, "\n vlan_prio %d", rta_getattr_u8(attr));
1298 }
1299
1300 flower_print_eth_addr(f, "dst_mac", tb[TCA_FLOWER_KEY_ETH_DST],
1301 tb[TCA_FLOWER_KEY_ETH_DST_MASK]);
1302 flower_print_eth_addr(f, "src_mac", tb[TCA_FLOWER_KEY_ETH_SRC],
1303 tb[TCA_FLOWER_KEY_ETH_SRC_MASK]);
1304
1305 flower_print_eth_type(f, &eth_type, tb[TCA_FLOWER_KEY_ETH_TYPE]);
1306 flower_print_ip_proto(f, &ip_proto, tb[TCA_FLOWER_KEY_IP_PROTO]);
1307
1308 flower_print_ip_attr(f, "ip_tos", tb[TCA_FLOWER_KEY_IP_TOS],
1309 tb[TCA_FLOWER_KEY_IP_TOS_MASK]);
1310 flower_print_ip_attr(f, "ip_ttl", tb[TCA_FLOWER_KEY_IP_TTL],
1311 tb[TCA_FLOWER_KEY_IP_TTL_MASK]);
1312
1313 flower_print_u32(f, "mpls_label", tb[TCA_FLOWER_KEY_MPLS_LABEL]);
1314 flower_print_u8(f, "mpls_tc", tb[TCA_FLOWER_KEY_MPLS_TC]);
1315 flower_print_u8(f, "mpls_bos", tb[TCA_FLOWER_KEY_MPLS_BOS]);
1316 flower_print_u8(f, "mpls_ttl", tb[TCA_FLOWER_KEY_MPLS_TTL]);
1317
1318 flower_print_ip_addr(f, "dst_ip", eth_type,
1319 tb[TCA_FLOWER_KEY_IPV4_DST],
1320 tb[TCA_FLOWER_KEY_IPV4_DST_MASK],
1321 tb[TCA_FLOWER_KEY_IPV6_DST],
1322 tb[TCA_FLOWER_KEY_IPV6_DST_MASK]);
1323
1324 flower_print_ip_addr(f, "src_ip", eth_type,
1325 tb[TCA_FLOWER_KEY_IPV4_SRC],
1326 tb[TCA_FLOWER_KEY_IPV4_SRC_MASK],
1327 tb[TCA_FLOWER_KEY_IPV6_SRC],
1328 tb[TCA_FLOWER_KEY_IPV6_SRC_MASK]);
1329
1330 nl_type = flower_port_attr_type(ip_proto, FLOWER_ENDPOINT_DST);
1331 if (nl_type >= 0)
1332 flower_print_port(f, "dst_port", tb[nl_type]);
1333 nl_type = flower_port_attr_type(ip_proto, FLOWER_ENDPOINT_SRC);
1334 if (nl_type >= 0)
1335 flower_print_port(f, "src_port", tb[nl_type]);
1336
1337 flower_print_tcp_flags(f, "tcp_flags", tb[TCA_FLOWER_KEY_TCP_FLAGS],
1338 tb[TCA_FLOWER_KEY_TCP_FLAGS_MASK]);
1339
1340 nl_type = flower_icmp_attr_type(eth_type, ip_proto,
1341 FLOWER_ICMP_FIELD_TYPE);
1342 nl_mask_type = flower_icmp_attr_mask_type(eth_type, ip_proto,
1343 FLOWER_ICMP_FIELD_TYPE);
1344 if (nl_type >= 0 && nl_mask_type >= 0)
1345 flower_print_masked_u8(f, "icmp_type", tb[nl_type],
1346 tb[nl_mask_type], NULL);
1347
1348 nl_type = flower_icmp_attr_type(eth_type, ip_proto,
1349 FLOWER_ICMP_FIELD_CODE);
1350 nl_mask_type = flower_icmp_attr_mask_type(eth_type, ip_proto,
1351 FLOWER_ICMP_FIELD_CODE);
1352 if (nl_type >= 0 && nl_mask_type >= 0)
1353 flower_print_masked_u8(f, "icmp_code", tb[nl_type],
1354 tb[nl_mask_type], NULL);
1355
1356 flower_print_ip4_addr(f, "arp_sip", tb[TCA_FLOWER_KEY_ARP_SIP],
1357 tb[TCA_FLOWER_KEY_ARP_SIP_MASK]);
1358 flower_print_ip4_addr(f, "arp_tip", tb[TCA_FLOWER_KEY_ARP_TIP],
1359 tb[TCA_FLOWER_KEY_ARP_TIP_MASK]);
1360 flower_print_arp_op(f, "arp_op", tb[TCA_FLOWER_KEY_ARP_OP],
1361 tb[TCA_FLOWER_KEY_ARP_OP_MASK]);
1362 flower_print_eth_addr(f, "arp_sha", tb[TCA_FLOWER_KEY_ARP_SHA],
1363 tb[TCA_FLOWER_KEY_ARP_SHA_MASK]);
1364 flower_print_eth_addr(f, "arp_tha", tb[TCA_FLOWER_KEY_ARP_THA],
1365 tb[TCA_FLOWER_KEY_ARP_THA_MASK]);
1366
1367 flower_print_ip_addr(f, "enc_dst_ip",
1368 tb[TCA_FLOWER_KEY_ENC_IPV4_DST_MASK] ?
1369 htons(ETH_P_IP) : htons(ETH_P_IPV6),
1370 tb[TCA_FLOWER_KEY_ENC_IPV4_DST],
1371 tb[TCA_FLOWER_KEY_ENC_IPV4_DST_MASK],
1372 tb[TCA_FLOWER_KEY_ENC_IPV6_DST],
1373 tb[TCA_FLOWER_KEY_ENC_IPV6_DST_MASK]);
1374
1375 flower_print_ip_addr(f, "enc_src_ip",
1376 tb[TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK] ?
1377 htons(ETH_P_IP) : htons(ETH_P_IPV6),
1378 tb[TCA_FLOWER_KEY_ENC_IPV4_SRC],
1379 tb[TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK],
1380 tb[TCA_FLOWER_KEY_ENC_IPV6_SRC],
1381 tb[TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK]);
1382
1383 flower_print_key_id(f, "enc_key_id",
1384 tb[TCA_FLOWER_KEY_ENC_KEY_ID]);
1385
1386 flower_print_port(f, "enc_dst_port",
1387 tb[TCA_FLOWER_KEY_ENC_UDP_DST_PORT]);
1388
1389 flower_print_matching_flags(f, "ip_flags",
1390 FLOWER_IP_FLAGS,
1391 tb[TCA_FLOWER_KEY_FLAGS],
1392 tb[TCA_FLOWER_KEY_FLAGS_MASK]);
1393
1394 if (tb[TCA_FLOWER_FLAGS]) {
1395 __u32 flags = rta_getattr_u32(tb[TCA_FLOWER_FLAGS]);
1396
1397 if (flags & TCA_CLS_FLAGS_SKIP_HW)
1398 fprintf(f, "\n skip_hw");
1399 if (flags & TCA_CLS_FLAGS_SKIP_SW)
1400 fprintf(f, "\n skip_sw");
1401
1402 if (flags & TCA_CLS_FLAGS_IN_HW)
1403 fprintf(f, "\n in_hw");
1404 else if (flags & TCA_CLS_FLAGS_NOT_IN_HW)
1405 fprintf(f, "\n not_in_hw");
1406 }
1407
1408 if (tb[TCA_FLOWER_ACT])
1409 tc_print_action(f, tb[TCA_FLOWER_ACT], 0);
1410
1411 return 0;
1412 }
1413
1414 struct filter_util flower_filter_util = {
1415 .id = "flower",
1416 .parse_fopt = flower_parse_opt,
1417 .print_fopt = flower_print_opt,
1418 };