From patchwork Thu Jun 21 07:13:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?N=C3=A9lio_Laranjeiro?= X-Patchwork-Id: 41340 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C84461BB0B; Thu, 21 Jun 2018 09:13:37 +0200 (CEST) Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by dpdk.org (Postfix) with ESMTP id 5783E1BACD for ; Thu, 21 Jun 2018 09:13:36 +0200 (CEST) Received: by mail-wm0-f68.google.com with SMTP id x6-v6so3292019wmc.3 for ; Thu, 21 Jun 2018 00:13:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references; bh=NmYXzbBAruUa02scjkkXTrKmn++oeyD8oIIugzoM2Ts=; b=YtQqvmMVFnDppcp/VpW8EK89Lj7dxWkPYb2/tmqFtG0lDQ9eYZ60JQ0u5LSj18OHgl nTQMNaVeRoNMGcngTcbXZygPm2xMOppw0MMZp0WkMM4UL8QUt7vjq8F8aJf02IcTibAP Mt/FSaILb+P14XjbP8y4VYwfzB89SLcqI3UZFhavlBFTV4tzy4qXBCHSWczmBuwT7UQs uIpELCtpXvFXeFndr3X+LSE/V1IgRpZXqboKFZQcwnNhVJn8Ry5ELtyaRWvMpuMkh8x3 sahC6fggira/TEWvjEc9qx5yF8hWZ6OFRWq/CP8DCCmZRtWTZRS+/GmrW4+NutuuzkCy ho7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=NmYXzbBAruUa02scjkkXTrKmn++oeyD8oIIugzoM2Ts=; b=pSYz57brPnlewgzh89AEOTJxSQCgr0z6jfdtTxuK4moXgRfp2FDy7jRTaFYs3+Ekf3 n8ORC6qayNlyplJWMuFFFKOGeEWfdaMyWKHzxAPR7AfOksZRfYdRhaBc6ESSrOM8I0oP q9i9gWa6jZalmU1othlbjdaCCl9Apgecg8P2wQtvXTgiUX3JgJfjIM3Ra/ppOk/jSJsL AwLyT3Kiidhw11WLKDyUqAHFN9yf59llrOC/ODlU3hrhazS0QDtnR0mh+IC/SeAp4kM3 c3F+oZokMueg/o6kW+20zrGdVOz+4+ENI2Jjj4U8YkGLHvsau/4wWwQbznsTOwHhHLzD P4Pw== X-Gm-Message-State: APt69E134kce6dGl3uH2adi+EEHxDBLnGgybSjV1mmJvLE9HLM7hjkex XdCpctvpqfJXv7WWB+ToTo74600i3A== X-Google-Smtp-Source: ADUXVKKimj78CF8UYJSkBSmAtIYUrW1DmIy68jVxLskVa16mqZ1gzPFXygU2/vGQf4rHRxx9ItiKxg== X-Received: by 2002:a1c:d9cb:: with SMTP id q194-v6mr3930477wmg.91.1529565215839; Thu, 21 Jun 2018 00:13:35 -0700 (PDT) Received: from laranjeiro-vm.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id n7-v6sm5187998wrr.39.2018.06.21.00.13.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Jun 2018 00:13:35 -0700 (PDT) From: Nelio Laranjeiro To: dev@dpdk.org, Adrien Mazarguil , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , Mohammad Abdul Awal , Ori Kam , Stephen Hemminger Date: Thu, 21 Jun 2018 09:13:38 +0200 Message-Id: X-Mailer: git-send-email 2.18.0.rc2 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v4 0/2] app/testpmd implement VXLAN/NVGRE Encap/Decap X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This series adds an easy and maintainable configuration version support for those two actions for 18.08 by using global variables in testpmd to store the necessary information for the tunnel encapsulation. Those variables are used in conjunction of RTE_FLOW_ACTION_{VXLAN,NVGRE}_ENCAP action to create easily the action for flows. A common way to use it: set vxlan ipv4 4 4 4 127.0.0.1 128.0.0.1 11:11:11:11:11:11 22:22:22:22:22:22 flow create 0 ingress pattern end actions vxlan_encap / queue index 0 / end set vxlan ipv6 4 4 4 ::1 ::2222 11:11:11:11:11:11 22:22:22:22:22:22 flow create 0 ingress pattern end actions vxlan_encap / queue index 0 / end set nvgre ipv4 4 127.0.0.1 128.0.0.1 11:11:11:11:11:11 22:22:22:22:22:22 flow create 0 ingress pattern end actions nvgre_encap / queue index 0 / end set nvgre ipv6 4 ::1 ::2222 11:11:11:11:11:11 22:22:22:22:22:22 flow create 0 ingress pattern end actions nvgre_encap / queue index 0 / end This also replace the proposal done by Mohammad Abdul Awal [1] which handles in a more complex way for the same work. Note this API has already a modification planned for 18.11 [2] thus those series should have a limited life for a single release. [1] https://dpdk.org/ml/archives/dev/2018-May/101403.html [2] https://dpdk.org/ml/archives/dev/2018-June/103485.html Changes in v4: - fix big endian issue on vni and tni. - add samples to the documentation. - set the VXLAN UDP source port to 0 by default to let the driver generate it from the inner hash as described in the RFC 7348. - use default rte flow mask for each item. Changes in v3: - support VLAN in the outer encapsulation. - fix the documentation with missing arguments. Changes in v2: - add default IPv6 values for NVGRE encapsulation. - replace VXLAN to NVGRE in comments concerning NVGRE layer. Nelio Laranjeiro (2): app/testpmd: add VXLAN encap/decap support app/testpmd: add NVGRE encap/decap support app/test-pmd/cmdline.c | 252 ++++++++++++++++++ app/test-pmd/cmdline_flow.c | 268 ++++++++++++++++++++ app/test-pmd/testpmd.c | 32 +++ app/test-pmd/testpmd.h | 32 +++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 72 ++++++ 5 files changed, 656 insertions(+)