Skip to content

Commit

Permalink
flow_classify: introduce flow classify library
Browse files Browse the repository at this point in the history
The following APIs's are implemented in the
librte_flow_classify library:

rte_flow_classifier_create
rte_flow_classifier_free
rte_flow_classifier_query
rte_flow_classify_table_create
rte_flow_classify_table_entry_add
rte_flow_classify_table_entry_delete

The following librte_table API's are used:
f_create to create a table.
f_add to add a rule to the table.
f_del to delete a rule from the table.
f_free to free a table
f_lookup to match packets with the rules.

The library supports counting of IPv4 five tupple packets only,
ie IPv4 UDP, TCP and SCTP packets.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>
  • Loading branch information
Ferruh Yigit authored and tmonjalo committed Oct 24, 2017
1 parent 490424e commit be41ac2
Show file tree
Hide file tree
Showing 13 changed files with 1,688 additions and 2 deletions.
7 changes: 6 additions & 1 deletion MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,12 @@ M: Mark Kavanagh <mark.b.kavanagh@intel.com>
F: lib/librte_gso/
F: doc/guides/prog_guide/generic_segmentation_offload_lib.rst

Flow Classify - EXPERIMENTAL
M: Bernard Iremonger <bernard.iremonger@intel.com>
F: lib/librte_flow_classify/
F: test/test/test_flow_classify*
F: examples/flow_classify/

Distributor
M: Bruce Richardson <bruce.richardson@intel.com>
M: David Hunt <david.hunt@intel.com>
Expand Down Expand Up @@ -740,7 +746,6 @@ F: doc/guides/prog_guide/pdump_lib.rst
F: app/pdump/
F: doc/guides/tools/pdump.rst


Packet Framework
----------------
M: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Expand Down
5 changes: 5 additions & 0 deletions config/common_base
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,11 @@ CONFIG_RTE_LIBRTE_GSO=y
#
CONFIG_RTE_LIBRTE_METER=y

#
# Compile librte_classify
#
CONFIG_RTE_LIBRTE_FLOW_CLASSIFY=y

#
# Compile librte_sched
#
Expand Down
3 changes: 2 additions & 1 deletion doc/api/doxy-api-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ The public API headers are grouped by topics:
[distributor] (@ref rte_distributor.h),
[EFD] (@ref rte_efd.h),
[ACL] (@ref rte_acl.h),
[member] (@ref rte_member.h)
[member] (@ref rte_member.h),
[flow classify] (@ref rte_flow_classify.h)

- **containers**:
[mbuf] (@ref rte_mbuf.h),
Expand Down
1 change: 1 addition & 0 deletions doc/api/doxy-api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ INPUT = doc/api/doxy-api-index.md \
lib/librte_efd \
lib/librte_ether \
lib/librte_eventdev \
lib/librte_flow_classify \
lib/librte_gro \
lib/librte_gso \
lib/librte_hash \
Expand Down
7 changes: 7 additions & 0 deletions doc/guides/rel_notes/release_17_11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,12 @@ New Features
checksums, and doesn't update checksums for output packets.
Additionally, the GSO library doesn't process IP fragmented packets.

* **Added the Flow Classification Library.**

Added the Flow Classification library, it provides an API for DPDK
applications to classify an input packet by matching it against a set of flow
rules. It uses the librte_table API to manage the flow rules.


Resolved Issues
---------------
Expand Down Expand Up @@ -354,6 +360,7 @@ The libraries prepended with a plus sign were incremented in this version.
+ librte_eal.so.6
+ librte_ethdev.so.8
+ librte_eventdev.so.3
+ librte_flow_classify.so.1
librte_gro.so.1
+ librte_gso.so.1
librte_hash.so.2
Expand Down
2 changes: 2 additions & 0 deletions lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ DIRS-$(CONFIG_RTE_LIBRTE_POWER) += librte_power
DEPDIRS-librte_power := librte_eal
DIRS-$(CONFIG_RTE_LIBRTE_METER) += librte_meter
DEPDIRS-librte_meter := librte_eal
DIRS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += librte_flow_classify
DEPDIRS-librte_flow_classify := librte_net librte_table librte_acl
DIRS-$(CONFIG_RTE_LIBRTE_SCHED) += librte_sched
DEPDIRS-librte_sched := librte_eal librte_mempool librte_mbuf librte_net
DEPDIRS-librte_sched += librte_timer
Expand Down
53 changes: 53 additions & 0 deletions lib/librte_flow_classify/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# BSD LICENSE
#
# Copyright(c) 2017 Intel Corporation. All rights reserved.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Intel Corporation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

include $(RTE_SDK)/mk/rte.vars.mk

# library name
LIB = librte_flow_classify.a

CFLAGS += -O3
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)

EXPORT_MAP := rte_flow_classify_version.map

LIBABIVER := 1

LDLIBS += -lrte_eal -lrte_ethdev -lrte_net -lrte_table -lrte_acl

# all source are stored in SRCS-y
SRCS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += rte_flow_classify.c
SRCS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += rte_flow_classify_parse.c

# install this header file
SYMLINK-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY)-include := rte_flow_classify.h

include $(RTE_SDK)/mk/rte.lib.mk

0 comments on commit be41ac2

Please sign in to comment.