From: Or Gerlitz Date: Sun, 23 Apr 2017 12:53:56 +0000 (+0300) Subject: tc/pedit: p_udp: introduce pedit udp support X-Git-Tag: v4.11.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d2a7781ec0b9843c21f48455021ff252bfc85ac;p=thirdparty%2Fiproute2.git tc/pedit: p_udp: introduce pedit udp support For example, forward udp traffic destined to port 999 to veth0 and set tcp port to 888: $ tc filter add dev enp0s9 protocol ip parent ffff: \ flower \ ip_proto udp \ dst_port 999 \ action pedit ex munge \ udp dport set 888 \ action mirred egress \ redirect dev veth0 Signed-off-by: Or Gerlitz Signed-off-by: Amir Vadai --- diff --git a/man/man8/tc-pedit.8 b/man/man8/tc-pedit.8 index ad1929592..7f482eafc 100644 --- a/man/man8/tc-pedit.8 +++ b/man/man8/tc-pedit.8 @@ -34,6 +34,8 @@ pedit - generic packet editor action .BI ip " EX_IPHDR_FIELD" | .BI tcp " TCPHDR_FIELD" +| +.BI udp " UDPHDR_FIELD" .RI } " CMD_SPEC" .ti -8 @@ -57,6 +59,10 @@ pedit - generic packet editor action .IR TCPHDR_FIELD " := { " .BR sport " | " dport " | " flags " }" +.ti -8 +.IR UDPHDR_FIELD " := { " +.BR sport " | " dport " }" + .ti -8 .IR CMD_SPEC " := {" .BR clear " | " invert " | " set @@ -219,6 +225,18 @@ Source or destination TCP port number, a 16-bit value. .B flags .RE .TP +.BI udp " UDPHDR_FIELD" +The supported keywords for +.I UDPHDR_FIELD +are: +.RS +.TP +.B sport +.TQ +.B dport +Source or destination TCP port number, a 16-bit value. +.RE +.TP .B clear Clear the addressed data (i.e., set it to zero). .TP diff --git a/tc/p_udp.c b/tc/p_udp.c index 3a86ba382..a56a1b519 100644 --- a/tc/p_udp.c +++ b/tc/p_udp.c @@ -28,6 +28,33 @@ parse_udp(int *argc_p, char ***argv_p, struct m_pedit_sel *sel, struct m_pedit_key *tkey) { int res = -1; + int argc = *argc_p; + char **argv = *argv_p; + + if (argc < 2) + return -1; + + tkey->htype = TCA_PEDIT_KEY_EX_HDR_TYPE_UDP; + + if (strcmp(*argv, "sport") == 0) { + NEXT_ARG(); + tkey->off = 0; + res = parse_cmd(&argc, &argv, 2, TU32, RU16, sel, tkey); + goto done; + } + + if (strcmp(*argv, "dport") == 0) { + NEXT_ARG(); + tkey->off = 2; + res = parse_cmd(&argc, &argv, 2, TU32, RU16, sel, tkey); + goto done; + } + + return -1; + +done: + *argc_p = argc; + *argv_p = argv; return res; }