From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Ma, LihongX" <lihongx.ma@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Ma, LihongX" <lihongx.ma@intel.com>
Subject: Re: [dts] [PATCH V1] dep/vxlan: optimization the pkt of vxlan
Date: Mon, 6 Jan 2020 08:53:03 +0000 [thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBA245B@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1578262199-13378-1-git-send-email-lihongx.ma@intel.com>
applied
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong
> Sent: Monday, January 6, 2020 6:10 AM
> To: dts@dpdk.org
> Cc: Ma, LihongX <lihongx.ma@intel.com>
> Subject: [dts] [PATCH V1] dep/vxlan: optimization the pkt of vxlan
>
> Signed-off-by: lihong <lihongx.ma@intel.com>
> ---
> dep/vxlan.py | 63
> +++++++++++++++++++++++++++++++++++++++++++++++++++---------
> 1 file changed, 54 insertions(+), 9 deletions(-)
>
> diff --git a/dep/vxlan.py b/dep/vxlan.py index d160718..f60f2a1 100644
> --- a/dep/vxlan.py
> +++ b/dep/vxlan.py
> @@ -6,19 +6,60 @@ Created on Jul 29, 2014 from scapy.packet import *
> from scapy.fields import * from scapy.layers.inet import UDP, IP
> +from scapy.layers.inet6 import IPv6
> from scapy.layers.dns import DNS
> from scapy.layers.l2 import Ether
>
> vxlanmagic = "0x8"
>
> VXLAN_PORT=4789
> +_GP_FLAGS = ["R", "R", "R", "A", "R", "R", "D", "R"]
>
> class VXLAN(Packet):
> name = "VXLAN"
> - fields_desc = [ByteField("flags", 8),
> - X3BytesField("reserved1", 0),
> - X3BytesField("vni", 0),
> - ByteField("reserved2", 0)]
> + fields_desc = [
> + FlagsField("flags", 0x8, 8,
> + ['OAM', 'R', 'NextProtocol', 'Instance',
> + 'V1', 'V2', 'R', 'G']),
> + ConditionalField(
> + ShortField("reserved0", 0),
> + lambda pkt: pkt.flags & 0x04,
> + ),
> + ConditionalField(
> + ByteEnumField('NextProtocol', 0,
> + {0: 'NotDefined',
> + 1: 'IPv4',
> + 2: 'IPv6',
> + 3: 'Ethernet',
> + 4: 'NSH'}),
> + lambda pkt: pkt.flags & 0x04,
> + ),
> + ConditionalField(
> + X3BytesField("reserved1", 0x000000),
> + lambda pkt: (not pkt.flags & 0x80) and (not pkt.flags & 0x04),
> + ),
> + ConditionalField(
> + FlagsField("gpflags", 0x0, 8, _GP_FLAGS),
> + lambda pkt: pkt.flags & 0x80,
> + ),
> + ConditionalField(
> + ShortField("gpid", 0),
> + lambda pkt: pkt.flags & 0x80,
> + ),
> + X3BytesField("vni", 0),
> + XByteField("reserved2", 0x00),
> + ]
> +
> + # Use default linux implementation port
> + overload_fields = {
> + UDP: {'dport': 8472},
> + }
> +
> + def mysummary(self):
> + if self.flags & 0x80:
> + return self.sprintf("VXLAN (vni=%VXLAN.vni% gpid=%VXLAN.gpid%)")
> + else:
> + return self.sprintf("VXLAN (vni=%VXLAN.vni%)")
>
> def guess_payload_class(self, payload):
> if self.flag == vxlanmagic:
> @@ -26,9 +67,13 @@ class VXLAN(Packet):
> else:
> return Packet.guess_payload_class(self, payload)
>
> - def mysummary(self):
> - return self.sprintf("VXLAN (vni=%VXLAN.vni%)")
> -
> split_layers(UDP, DNS, sport=53)
> -bind_layers(UDP, VXLAN, dport=VXLAN_PORT) -bind_layers(VXLAN, Ether)
> +bind_layers(UDP, VXLAN, dport=4789) # RFC standard port
> +bind_layers(UDP, VXLAN, dport=6633) # New IANA assigned port for use
> +with NSH bind_layers(UDP, VXLAN, dport=8472) # Linux implementation
> +port bind_layers(VXLAN, Ether, {'flags': 0x8}) bind_layers(VXLAN,
> +Ether, {'flags': 0x88}) bind_layers(VXLAN, Ether, {'flags': 0xC,
> +'NextProtocol': 0}, NextProtocol=0) bind_layers(VXLAN, IP, {'flags':
> +0xC, 'NextProtocol': 1}, NextProtocol=1) bind_layers(VXLAN, IPv6,
> +{'flags': 0xC, 'NextProtocol': 2}, NextProtocol=2) bind_layers(VXLAN,
> +Ether, {'flags': 0xC, 'NextProtocol': 3}, NextProtocol=3)
> --
> 2.7.4
prev parent reply other threads:[~2020-01-06 8:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-05 22:09 lihong
2020-01-06 5:43 ` Ma, LihongX
2020-01-06 8:53 ` Tu, Lijuan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8CE3E05A3F976642AAB0F4675D0AD20E0BBA245B@SHSMSX101.ccr.corp.intel.com \
--to=lijuan.tu@intel.com \
--cc=dts@dpdk.org \
--cc=lihongx.ma@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).