* [iproute2 1/1] man: tc-ife.8: man page for ife action
@ 2016-04-30 10:58 Jamal Hadi Salim
2016-04-30 11:35 ` Phil Sutter
2016-05-02 22:10 ` Stephen Hemminger
0 siblings, 2 replies; 5+ messages in thread
From: Jamal Hadi Salim @ 2016-04-30 10:58 UTC (permalink / raw)
To: stephen; +Cc: netdev, phil, lucasb, Jamal Hadi Salim
From: Lucas Bates <lucasb@mojatatu.com>
Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
---
man/man8/tc-ife.8 | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 118 insertions(+)
create mode 100644 man/man8/tc-ife.8
diff --git a/man/man8/tc-ife.8 b/man/man8/tc-ife.8
new file mode 100644
index 0000000..7a912b0
--- /dev/null
+++ b/man/man8/tc-ife.8
@@ -0,0 +1,118 @@
+.TH "IFE action in tc" 8 "22 Apr 2016" "iproute2" "Linux"
+
+.SH NAME
+IFE - encapsulate/decapsulate metadata
+.SH SYNOPSIS
+.in +8
+.ti -8
+.BR tc " ... " "action"
+.B "ife"
+.I DIRECTION ACTION
+.RB "[ " dst
+.IR DMAC " ] "
+.RB "[ " src
+.IR SMAC " ] "
+.RB "[ " type
+.IR TYPE " ] "
+.R "[ "
+.IR CONTROL " ] "
+.RB "[ " index
+.IR INDEX " ] "
+
+.ti -8
+.IR DIRECTION " := { "
+.BR decode " | " encode " }"
+
+.ti -8
+.IR ACTION " := { "
+.BR allow " | " use " }"
+
+.ti -8
+.IR CONTROL " := { "
+.BR reclassify " | " use " | " pipe " | " drop " | " continue " | " ok " }"
+.SH DESCRIPTION
+The
+.B ife
+action allows for a sending side to encapsulate arbitrary metadata, which is
+then decapsulated by the receiving end. The sender runs in encoding mode and
+the receiver in decode mode. Both sender and receiver must specify the same
+ethertype. In the future, a registered ethertype may be available as a default.
+.SH OPTIONS
+.TP
+.B decode
+For the receiving side; decode the metadata if the packet matches.
+.TP
+.B encode
+For the sending side. Encode the specified metadata if the packet matches.
+.TP
+.B allow
+Encode direction only. Allows encoding specified metadata.
+.TP
+.B use
+Encode direction only. Enforce static encoding of specified metadata.
+.TP
+.BI dmac " DMAC"
+.TQ
+.BI smac " SMAC"
+Optional six byte destination or source MAC address to encode.
+.TP
+.BI type " TYPE"
+Optional 16-bit ethertype to encode.
+.TP
+.BI CONTROL
+Action to take following an encode/decode.
+.TP
+.BI index " INDEX"
+Assign a unique ID to this action instead of letting the kernel choose one
+automatically.
+.I INDEX
+is a 32bit unsigned integer greater than zero.
+.SH EXAMPLES
+
+On the receiving side, match packets with ethertype 0xdead and restart
+classification so that it will match ICMP on the next rule, at prio 3:
+.RS
+.EX
+# tc qdisc add dev eth0 handle ffff: ingress
+# tc filter add dev eth0 parent ffff: prio 2 protocol 0xdead \\
+ u32 match u32 0 0 flowid 1:1 \\
+ action ife decode reclassify
+# tc filter add dev eth0 parent ffff: priod 3 protocol ip \\
+ u32 match ip protocol 0xff flowid 1:1 \\
+ action continue
+.EE
+.RE
+
+Match with skb mark of 17:
+
+.RS
+.EX
+# tc filter add dev eth0 parent ffff: prio 4 protocol ip \\
+ handle 0x11 fw flowid 1:1 \\
+ action ok
+.EE
+.RE
+
+Configure the sending side to encode for the filters above. Use a destination
+IP address of 192.168.122.237/24, then tag with skb mark of decimal 17. Encode
+the packaet with ethertype 0xdead, add skb->mark to whitelist of metadatum to
+send, and rewrite the destination MAC address to 02:15:15:15:15:15.
+
+.RS
+.EX
+# tc qdisc add dev eth0 root handle 1: prio
+# tc filter add dev eth0 parent 1: protocol ip prio 10 u32 \\
+ match ip dst 192.168.122.237/24 \\
+ match ip protocol 1 0xff \\
+ flowid 1:2 \\
+ action skbedit mark 17 \\
+ action ife encode \\
+ type 0xDEAD \\
+ allow mark \\
+ dst 02:15:15:15:15:15
+.EE
+.RE
+
+.SH SEE ALSO
+.BR tc (8),
+.BR tc-u32 (8)
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [iproute2 1/1] man: tc-ife.8: man page for ife action
2016-04-30 10:58 [iproute2 1/1] man: tc-ife.8: man page for ife action Jamal Hadi Salim
@ 2016-04-30 11:35 ` Phil Sutter
2016-05-02 22:10 ` Stephen Hemminger
1 sibling, 0 replies; 5+ messages in thread
From: Phil Sutter @ 2016-04-30 11:35 UTC (permalink / raw)
To: Jamal Hadi Salim; +Cc: stephen, netdev, lucasb
On Sat, Apr 30, 2016 at 06:58:04AM -0400, Jamal Hadi Salim wrote:
> From: Lucas Bates <lucasb@mojatatu.com>
>
> Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Phil Sutter <phil@nwl.cc>
Nit-picking on two things below, but merely as a hint - I don't think
they need to be fixed before applying this.
[...]
> +.SH NAME
> +IFE - encapsulate/decapsulate metadata
> +.SH SYNOPSIS
> +.in +8
> +.ti -8
> +.BR tc " ... " "action"
> +.B "ife"
The quotes around 'action' and 'ife' are not necessary. Furthermore,
the two lines can be combined:
> +.I DIRECTION ACTION
> +.RB "[ " dst
> +.IR DMAC " ] "
> +.RB "[ " src
> +.IR SMAC " ] "
> +.RB "[ " type
> +.IR TYPE " ] "
> +.R "[ "
This adds a trailing whitespace. Checkpatch.pl finds these things. ;)
Thanks, Phil
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [iproute2 1/1] man: tc-ife.8: man page for ife action
2016-04-30 10:58 [iproute2 1/1] man: tc-ife.8: man page for ife action Jamal Hadi Salim
2016-04-30 11:35 ` Phil Sutter
@ 2016-05-02 22:10 ` Stephen Hemminger
2016-05-02 23:40 ` Jamal Hadi Salim
1 sibling, 1 reply; 5+ messages in thread
From: Stephen Hemminger @ 2016-05-02 22:10 UTC (permalink / raw)
To: Jamal Hadi Salim; +Cc: netdev, phil, lucasb
On Sat, 30 Apr 2016 06:58:04 -0400
Jamal Hadi Salim <jhs@mojatatu.com> wrote:
> From: Lucas Bates <lucasb@mojatatu.com>
>
> Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Still waiting for a you to respond to my earlier suggestions about tc-ife.
Last version I saw was expecting header in include/linux which is not in
kernel source.
~/kernel/net-next$ ls include/uapi/linux/tc_ife.h
ls: cannot access include/uapi/linux/tc_ife.h: No such file or directory
You need to get that header in right place, and get it exported correctly.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [iproute2 1/1] man: tc-ife.8: man page for ife action
2016-05-02 22:10 ` Stephen Hemminger
@ 2016-05-02 23:40 ` Jamal Hadi Salim
2016-05-22 16:54 ` Jamal Hadi Salim
0 siblings, 1 reply; 5+ messages in thread
From: Jamal Hadi Salim @ 2016-05-02 23:40 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev, phil, lucasb
On 16-05-02 06:10 PM, Stephen Hemminger wrote:
> On Sat, 30 Apr 2016 06:58:04 -0400
> Jamal Hadi Salim <jhs@mojatatu.com> wrote:
>
>> From: Lucas Bates <lucasb@mojatatu.com>
>>
>> Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
>> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
>
> Still waiting for a you to respond to my earlier suggestions about tc-ife.
>
I did respond.
> Last version I saw was expecting header in include/linux which is not in
> kernel source.
>
> ~/kernel/net-next$ ls include/uapi/linux/tc_ife.h
> ls: cannot access include/uapi/linux/tc_ife.h: No such file or directory
>
What version of net-next are you looking at? This is what i see:
linux-gits/net-next$ ls include/uapi/linux/tc_act/
Kbuild tc_csum.h tc_ife.h tc_nat.h tc_vlan.h
tc_bpf.h tc_defact.h tc_ipt.h tc_pedit.h
tc_connmark.h tc_gact.h tc_mirred.h tc_skbedit.h
> You need to get that header in right place, and get it exported correctly.
And I saw you sending a patch which tried to export everything. What
did i miss? ;-> If that didnt make i will send one just for IFE.
cheers,
jamal
PS:- I have other patches which fix a small issue with some actions
(which include ife) - but they are depending on this other one going
in.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [iproute2 1/1] man: tc-ife.8: man page for ife action
2016-05-02 23:40 ` Jamal Hadi Salim
@ 2016-05-22 16:54 ` Jamal Hadi Salim
0 siblings, 0 replies; 5+ messages in thread
From: Jamal Hadi Salim @ 2016-05-22 16:54 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev, phil, lucasb
On 16-05-02 07:40 PM, Jamal Hadi Salim wrote:
> On 16-05-02 06:10 PM, Stephen Hemminger wrote:
>> On Sat, 30 Apr 2016 06:58:04 -0400
>> Jamal Hadi Salim <jhs@mojatatu.com> wrote:
>>
>>> From: Lucas Bates <lucasb@mojatatu.com>
>>>
>>> Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
>>> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
>>
>> Still waiting for a you to respond to my earlier suggestions about
>> tc-ife.
>>
>
> I did respond.
>
Stephen,
I pulled the latest iproute2 and the IFE manpage is missing.
It is in this email thread - can you please apply it? Trying
to get Lucas to send more; do it just to encourage him ;->
cheers,
jamal
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-05-22 16:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-30 10:58 [iproute2 1/1] man: tc-ife.8: man page for ife action Jamal Hadi Salim
2016-04-30 11:35 ` Phil Sutter
2016-05-02 22:10 ` Stephen Hemminger
2016-05-02 23:40 ` Jamal Hadi Salim
2016-05-22 16:54 ` Jamal Hadi Salim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).