* [dts] [PATCH V1 1/3] conf/cvl_switch_filter.cfg: add cvl_switch_filter.cfg
@ 2020-08-25 18:48 Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 2/3] tests/rte_flow_common.py: improve the check functions for cvl switch filter Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 3/3] tests/TestSuite_cvl_switch_filter.py: add PPPOE cases and modify the format Nannan Lu
0 siblings, 2 replies; 3+ messages in thread
From: Nannan Lu @ 2020-08-25 18:48 UTC (permalink / raw)
To: dts; +Cc: Nannan Lu
conf/cvl_switch_filter.cfg: add cvl_switch_filter.cfg to provide driver
and package file location.
Signed-off-by: Nannan Lu <nannan.lu@intel.com>
---
conf/cvl_switch_filter.cfg | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 conf/cvl_switch_filter.cfg
diff --git a/conf/cvl_switch_filter.cfg b/conf/cvl_switch_filter.cfg
new file mode 100644
index 0000000..11b44d0
--- /dev/null
+++ b/conf/cvl_switch_filter.cfg
@@ -0,0 +1,9 @@
+[suite]
+# cvl_switch_filter common options ice driver file location
+ice_driver_file_location="/home/lunannan/nd_linux-cpk/ice-1.1.0_rc40_7_gd24495d/src/ice.ko"
+# os default package file location
+os_default_package_file_location="/lib/firmware/updates/intel/ice/ddp/ice-1.3.16.0.pkg"
+# comms package file location
+comms_package_file_location="/home/lunannan/20.08_environment/rc3/ice_comms-1.3.20.0.pkg"
+# package file location
+package_file_location="/lib/firmware/updates/intel/ice/ddp/ice.pkg"
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts] [PATCH V1 2/3] tests/rte_flow_common.py: improve the check functions for cvl switch filter
2020-08-25 18:48 [dts] [PATCH V1 1/3] conf/cvl_switch_filter.cfg: add cvl_switch_filter.cfg Nannan Lu
@ 2020-08-25 18:48 ` Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 3/3] tests/TestSuite_cvl_switch_filter.py: add PPPOE cases and modify the format Nannan Lu
1 sibling, 0 replies; 3+ messages in thread
From: Nannan Lu @ 2020-08-25 18:48 UTC (permalink / raw)
To: dts; +Cc: Nannan Lu
tests/rte_flow_common.py: improve the check function for cvl switch filter
Signed-off-by: Nannan Lu <nannan.lu@intel.com>
---
tests/rte_flow_common.py | 60 +++++++++++++++++++++---------------------------
1 file changed, 26 insertions(+), 34 deletions(-)
diff --git a/tests/rte_flow_common.py b/tests/rte_flow_common.py
index 5728af0..25c3bd0 100644
--- a/tests/rte_flow_common.py
+++ b/tests/rte_flow_common.py
@@ -1,6 +1,6 @@
# BSD LICENSE
#
-# Copyright(c) 2010-2019 Intel Corporation. All rights reserved.
+# Copyright(c) 2019-2020 Intel Corporation. All rights reserved.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -34,8 +34,6 @@ import time
import re
from utils import GREEN, RED
-CVL_TXQ_RXQ_NUMBER = 16
-
# switch filter common functions
def get_suite_config(test_case):
"""
@@ -59,37 +57,31 @@ def get_suite_config(test_case):
suite_config["package_file_location"] = package_file_location
return suite_config
-def get_rx_packet_number(out,match_string):
- """
- get the rx packets number.
- """
- out_lines=out.splitlines()
- pkt_num =0
- for i in range(len(out_lines)):
- if match_string in out_lines[i]:
- result_scanner = r'RX-packets:\s?(\d+)'
- scanner = re.compile(result_scanner, re.DOTALL)
- m = scanner.search(out_lines[i+1])
- pkt_num = int(m.group(1))
- break
- return pkt_num
-
def get_port_rx_packets_number(out,port_num):
"""
get the port rx packets number.
"""
- match_string="---------------------- Forward statistics for port %d" % port_num
- pkt_num = get_rx_packet_number(out,match_string)
+ p = re.compile(
+ 'Forward\sstatistics\s+for\s+port\s+%s\s+.*\n.*RX-packets:\s(\d+)\s+' % port_num)
+ m = p.search(out)
+ pkt_num = 0
+ if m:
+ pkt_num = int(m.group(1))
return pkt_num
def get_queue_rx_packets_number(out, port_num, queue_id):
"""
get the queue rx packets number.
"""
- match_string="------- Forward Stats for RX Port= %d/Queue= %d" % (port_num, queue_id)
- pkt_num = get_rx_packet_number(out,match_string)
+ p = re.compile(
+ 'Forward\sStats\s+for\s+RX\s+Port=\s*%d/Queue=\s*%d\s+.*\n.*RX-packets:\s(\d+)\s+' % (port_num, queue_id))
+ m = p.search(out)
+ pkt_num = 0
+ if m:
+ pkt_num = int(m.group(1))
return pkt_num
+
def check_output_log_in_queue(out, func_param, expect_results):
"""
check if the expect queue received the expected number packets.
@@ -127,7 +119,7 @@ def check_output_log_queue_region(out, func_param, expect_results):
if packet_sumnum == expect_pkts:
return True, log_msg
else:
- log_msg = "queue region: Not all packets are received in expect_queues"
+ log_msg = "Not all packets are received in expect_queues. expect %s, result %s." % (expect_pkts, packet_sumnum)
return False, log_msg
def check_output_log_queue_region_mismatched(out, func_param, expect_results):
@@ -405,7 +397,7 @@ def check_mark(out, pkt_num, check_param, stats=True):
else:
raise Exception("got wrong output, not match pattern %s" % p.pattern)
if mark_id is not None:
- mark_list = set(int(i, CVL_TXQ_RXQ_NUMBER) for i in fdir_scanner.findall(out))
+ mark_list = set(int(i, 16) for i in fdir_scanner.findall(out))
verify(all([i == check_param["mark_id"] for i in mark_list]),
"failed: some packet mark id of %s not match" % mark_list)
else:
@@ -429,11 +421,11 @@ def check_mark(out, pkt_num, check_param, stats=True):
def verify_directed_by_rss(out, rxq=64, stats=True):
p = re.compile('RSS\shash=(\w+)\s-\sRSS\squeue=(\w+)')
pkt_info = p.findall(out)
- pkt_queue = set([int(i[1], CVL_TXQ_RXQ_NUMBER) for i in pkt_info])
+ pkt_queue = set([int(i[1], 16) for i in pkt_info])
if stats:
- verify(all([int(i[0], CVL_TXQ_RXQ_NUMBER) % rxq == int(i[1], CVL_TXQ_RXQ_NUMBER) for i in pkt_info]), 'some pkt not directed by rss.')
+ verify(all([int(i[0], 16) % rxq == int(i[1], 16) for i in pkt_info]), 'some pkt not directed by rss.')
else:
- verify(not any([int(i[0], CVL_TXQ_RXQ_NUMBER) % rxq == int(i[1], CVL_TXQ_RXQ_NUMBER) for i in pkt_info]), 'some pkt directed by rss')
+ verify(not any([int(i[0], 16) % rxq == int(i[1], 16) for i in pkt_info]), 'some pkt directed by rss')
return pkt_queue
@@ -463,23 +455,23 @@ def check_iavf_fdir_queue(out, pkt_num, check_param, stats=True):
verify(not any(q == queue for q in res_queue), "fail: queue id should not matched, expect queue %s, got %s" % (queue, res_queue))
print((GREEN("pass: queue id %s not matched" % res_queue)))
elif isinstance(queue, list):
- verify_iavf_fdir_directed_by_rss(out, rxq=CVL_TXQ_RXQ_NUMBER, stats=True)
+ verify_iavf_fdir_directed_by_rss(out, rxq=16, stats=True)
print((GREEN("pass: queue id %s not matched" % res_queue)))
else:
raise Exception("wrong action value, expect queue_index or queue_group")
else:
raise Exception("got wrong output, not match pattern %s" % p.pattern)
-def verify_iavf_fdir_directed_by_rss(out, rxq=CVL_TXQ_RXQ_NUMBER, stats=True):
+def verify_iavf_fdir_directed_by_rss(out, rxq=16, stats=True):
p = re.compile("RSS hash=(0x\w+) - RSS queue=(0x\w+)")
pkt_info = p.findall(out)
if stats:
for i in pkt_info:
- verify((int(i[0],CVL_TXQ_RXQ_NUMBER) % rxq == int(i[1],CVL_TXQ_RXQ_NUMBER)), "some packets are not directed by RSS")
+ verify((int(i[0],16) % rxq == int(i[1],16)), "some packets are not directed by RSS")
print(GREEN("pass: queue id %s is redirected by RSS hash value %s" % (i[1], i[0])))
else:
for i in pkt_info:
- verify((int(i[0],CVL_TXQ_RXQ_NUMBER) % rxq != int(i[1],CVL_TXQ_RXQ_NUMBER)), "some packets are not directed by RSS")
+ verify((int(i[0],16) % rxq != int(i[1],16)), "some packets are not directed by RSS")
def check_iavf_fdir_passthru(out, pkt_num, check_param, stats=True):
# check the actual queue is distributed by RSS
@@ -490,7 +482,7 @@ def check_iavf_fdir_passthru(out, pkt_num, check_param, stats=True):
p = re.compile('RSS\shash=(\w+)\s-\sRSS\squeue=(\w+)')
pkt_hash = p.findall(out)
verify(pkt_num == len(pkt_hash), "fail: got wrong number of passthru packets, expect passthru packet number %s, got %s." % (pkt_num, len(pkt_hash)))
- verify_iavf_fdir_directed_by_rss(out, rxq=CVL_TXQ_RXQ_NUMBER, stats=True)
+ verify_iavf_fdir_directed_by_rss(out, rxq=16, stats=True)
def check_iavf_fdir_mark(out, pkt_num, check_param, stats=True):
mark_scanner = "FDIR matched ID=(0x\w+)"
@@ -504,7 +496,7 @@ def check_iavf_fdir_mark(out, pkt_num, check_param, stats=True):
mark_list = [i for i in res]
print("mark list is: ", mark_list)
verify(len(res) == pkt_num, "get wrong number of packet with mark_id")
- verify(all([int(i, CVL_TXQ_RXQ_NUMBER) == check_param["mark_id"] for i in res]),
+ verify(all([int(i, 16) == check_param["mark_id"] for i in res]),
"failed: some packet mark id of %s not match" % mark_list)
if check_param.get("queue") is not None:
check_iavf_fdir_queue(out, pkt_num, check_param, stats)
@@ -634,7 +626,7 @@ def check_iavf_packets_rss_queue(out, count, rss_match=True):
packet_sumnum = packet_sumnum + int(packet_num)
if rss_match:
- if queue_flag == CVL_TXQ_RXQ_NUMBER and packet_sumnum == count:
+ if queue_flag == 16 and packet_sumnum == count:
log_msg = "Packets has send to %s queues" % queue_flag
return True, log_msg
else:
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts] [PATCH V1 3/3] tests/TestSuite_cvl_switch_filter.py: add PPPOE cases and modify the format
2020-08-25 18:48 [dts] [PATCH V1 1/3] conf/cvl_switch_filter.cfg: add cvl_switch_filter.cfg Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 2/3] tests/rte_flow_common.py: improve the check functions for cvl switch filter Nannan Lu
@ 2020-08-25 18:48 ` Nannan Lu
1 sibling, 0 replies; 3+ messages in thread
From: Nannan Lu @ 2020-08-25 18:48 UTC (permalink / raw)
To: dts; +Cc: Nannan Lu
tests/TestSuite_cvl_switch_filter.py: add PPPOE cases and modify
the format.
Signed-off-by: Nannan Lu <nannan.lu@intel.com>
---
tests/TestSuite_cvl_switch_filter.py | 6128 ++++++++++++++++++++++++----------
1 file changed, 4394 insertions(+), 1734 deletions(-)
diff --git a/tests/TestSuite_cvl_switch_filter.py b/tests/TestSuite_cvl_switch_filter.py
index d21c5b2..339dae6 100644
--- a/tests/TestSuite_cvl_switch_filter.py
+++ b/tests/TestSuite_cvl_switch_filter.py
@@ -47,163 +47,138 @@ import rte_flow_common as rfc
import os
#vxlan non-pipeline mode
-#test vector mac_ipv4_vxlan_ipv4_frag
-tv_mac_ipv4_vxlan_ipv4_frag_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_frag_in_queue_01",
+#test vector mac_ipv4_vxlan_ipv4
+mac_ipv4_vxlan_ipv4_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_vxlan_ipv4_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":3}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",frag=5)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_ipv4_vxlan_ipv4_frag_queue_region_02 = {
+tv_mac_ipv4_vxlan_ipv4_queue_region_02 = {
"name":"tv_mac_ipv4_vxlan_ipv4_frag_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",frag=5)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_ipv4_vxlan_ipv4_frag_drop_03 = {
+tv_mac_ipv4_vxlan_ipv4_drop_03 = {
"name":"tv_mac_ipv4_vxlan_ipv4_frag_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",frag=5)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",frag=5)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tvs_mac_ipv4_vxlan_ipv4_frag = [
- tv_mac_ipv4_vxlan_ipv4_frag_in_queue_01,
- tv_mac_ipv4_vxlan_ipv4_frag_queue_region_02,
- tv_mac_ipv4_vxlan_ipv4_frag_drop_03
+tvs_mac_ipv4_vxlan_ipv4 = [
+ tv_mac_ipv4_vxlan_ipv4_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_drop_03
]
-#test vector mac_ipv4_vxlan_ipv4_pay
-tv_mac_ipv4_vxlan_ipv4_pay_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5")/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":4}}
-}
-
-tv_mac_ipv4_vxlan_ipv4_pay_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5")/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":4}}
-}
-
-tv_mac_ipv4_vxlan_ipv4_pay_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.4", dst="192.168.0.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.5")/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":4}}
-}
+#test vector mac_ipv4_vxlan_ipv4_udp_pay
-tvs_mac_ipv4_vxlan_ipv4_pay = [
- tv_mac_ipv4_vxlan_ipv4_pay_in_queue_01,
- tv_mac_ipv4_vxlan_ipv4_pay_queue_region_02,
- tv_mac_ipv4_vxlan_ipv4_pay_drop_03
+mac_ipv4_vxlan_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.5", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.7")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'
]
+}
-#test vector mac_ipv4_vxlan_ipv4_udp_pay
tv_mac_ipv4_vxlan_ipv4_udp_pay_in_queue_01 = {
"name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions queue index 4 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":4}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":4}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_vxlan_ipv4_udp_pay_queue_region_02 = {
"name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_vxlan_ipv4_udp_pay_drop_03 = {
"name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tvs_mac_ipv4_vxlan_ipv4_udp_pay = [
@@ -213,46 +188,65 @@ tvs_mac_ipv4_vxlan_ipv4_udp_pay = [
]
#test vector mac_ipv4_vxlan_ipv4_tcp
+mac_ipv4_vxlan_ipv4_tcp_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.5", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.7")/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=29,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=100)/Raw("x"*80)'
+ ]
+}
+
tv_mac_ipv4_vxlan_ipv4_tcp_in_queue_01 = {
"name":"tv_mac_ipv4_vxlan_ipv4_tcp_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 50 dst is 23 / end actions queue index 5 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":5}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=29,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":5}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_vxlan_ipv4_tcp_queue_region_02 = {
"name":"tv_mac_ipv4_vxlan_ipv4_tcp_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=29,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_vxlan_ipv4_tcp_drop_03 = {
"name":"tv_mac_ipv4_vxlan_ipv4_tcp_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=29,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tvs_mac_ipv4_vxlan_ipv4_tcp = [
@@ -261,169 +255,141 @@ tvs_mac_ipv4_vxlan_ipv4_tcp = [
tv_mac_ipv4_vxlan_ipv4_tcp_drop_03
]
-#test vector mac_ipv4_vxlan_mac_ipv4_frag
-tv_mac_ipv4_vxlan_mac_ipv4_frag_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_frag_in_queue_01",
+
+#test vector mac_ipv4_vxlan_mac_ipv4
+mac_ipv4_vxlan_mac_ipv4_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5" ,frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_vxlan_mac_ipv4_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_mac_ipv4_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tv_mac_ipv4_vxlan_mac_ipv4_frag_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_frag_queue_region_02",
+tv_mac_ipv4_vxlan_mac_ipv4_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_mac_ipv4_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tv_mac_ipv4_vxlan_mac_ipv4_frag_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_frag_drop_03",
+tv_mac_ipv4_vxlan_mac_ipv4_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_mac_ipv4_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tvs_mac_ipv4_vxlan_mac_ipv4_frag = [
- tv_mac_ipv4_vxlan_mac_ipv4_frag_in_queue_01,
- tv_mac_ipv4_vxlan_mac_ipv4_frag_queue_region_02,
- tv_mac_ipv4_vxlan_mac_ipv4_frag_drop_03
+tvs_mac_ipv4_vxlan_mac_ipv4 = [
+ tv_mac_ipv4_vxlan_mac_ipv4_in_queue_01,
+ tv_mac_ipv4_vxlan_mac_ipv4_queue_region_02,
+ tv_mac_ipv4_vxlan_mac_ipv4_drop_03
]
-#test vector mac_ipv4_vxlan_mac_ipv4_pay
-tv_mac_ipv4_vxlan_mac_ipv4_pay_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3") /TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3") /TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3") /TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3") /TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3") /TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5") /TCP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tv_mac_ipv4_vxlan_mac_ipv4_pay_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5")/TCP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tv_mac_ipv4_vxlan_mac_ipv4_pay_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_mac_ipv4_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.4", dst="192.168.0.3")/TCP()/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.5")/TCP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tvs_mac_ipv4_vxlan_mac_ipv4_pay = [
- tv_mac_ipv4_vxlan_mac_ipv4_pay_in_queue_01,
- tv_mac_ipv4_vxlan_mac_ipv4_pay_queue_region_02,
- tv_mac_ipv4_vxlan_mac_ipv4_pay_drop_03
+#test vector mac_ipv4_vxlan_mac_ipv4_udp_pay
+mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni =2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a1")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.5", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.7")/UDP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=29)/Raw("x" * 80)'
]
+}
-#test vector mac_ipv4_vxlan_mac_ipv4_udp_pay
tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_in_queue_01 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=29)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_queue_region_02 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=29)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_drop_03 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_udp_pay_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=29)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tvs_mac_ipv4_vxlan_mac_ipv4_udp_pay = [
@@ -433,46 +399,66 @@ tvs_mac_ipv4_vxlan_mac_ipv4_udp_pay = [
]
#test vector mac_ipv4_vxlan_mac_ipv4_tcp
+mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a2")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.5", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.7")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=20,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
tv_mac_ipv4_vxlan_mac_ipv4_tcp_in_queue_01 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_tcp_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=19)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_vxlan_mac_ipv4_tcp_queue_region_02 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_tcp_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 25 dst is 23 / end actions rss queues 1 2 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[1, 2]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=19)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[1, 2]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_vxlan_mac_ipv4_tcp_drop_03 = {
"name":"tv_mac_ipv4_vxlan_mac_ipv4_tcp_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / udp / vxlan vni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=20,dport=23)/Raw("x" * 80)',
- 'Ether()/IP(dst="192.168.0.1")/UDP()/VXLAN(vni=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.2", dst="192.168.0.3")/TCP(sport=25,dport=19)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tvs_mac_ipv4_vxlan_mac_ipv4_tcp = [
@@ -482,163 +468,137 @@ tvs_mac_ipv4_vxlan_mac_ipv4_tcp = [
]
#nvgre non-pipeline mode
-#test vector mac_ipv4_nvgre_ipv4_frag
-tv_mac_ipv4_nvgre_ipv4_frag_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":4}}
-}
-
-tv_mac_ipv4_nvgre_ipv4_frag_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":4}}
-}
-
-tv_mac_ipv4_nvgre_ipv4_frag_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":4}}
-}
-
-tvs_mac_ipv4_nvgre_ipv4_frag = [
- tv_mac_ipv4_nvgre_ipv4_frag_in_queue_01,
- tv_mac_ipv4_nvgre_ipv4_frag_queue_region_02,
- tv_mac_ipv4_nvgre_ipv4_frag_drop_03
+#test vector mac_ipv4_nvgre_ipv4
+mac_ipv4_nvgre_ipv4_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'
]
+}
-#test vector mac_ipv4_nvgre_ipv4_pay
-tv_mac_ipv4_nvgre_ipv4_pay_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_pay_in_queue_01",
+tv_mac_ipv4_nvgre_ipv4_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":3}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_ipv4_nvgre_ipv4_pay_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_pay_queue_region_02",
+tv_mac_ipv4_nvgre_ipv4_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_ipv4_nvgre_ipv4_pay_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_pay_drop_03",
+tv_mac_ipv4_nvgre_ipv4_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":4}}
+ "expect_results":{"expect_pkts":8}}
}
-tvs_mac_ipv4_nvgre_ipv4_pay = [
- tv_mac_ipv4_nvgre_ipv4_pay_in_queue_01,
- tv_mac_ipv4_nvgre_ipv4_pay_queue_region_02,
- tv_mac_ipv4_nvgre_ipv4_pay_drop_03
+tvs_mac_ipv4_nvgre_ipv4 = [
+ tv_mac_ipv4_nvgre_ipv4_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_drop_03
]
#test vector mac_ipv4_nvgre_ipv4_udp_pay
+mac_ipv4_nvgre_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x1)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.5", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.7")/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'
+ ]
+}
+
tv_mac_ipv4_nvgre_ipv4_udp_pay_in_queue_01 = {
"name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions queue index 4 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":4}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":4}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_nvgre_ipv4_udp_pay_queue_region_02 = {
"name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_nvgre_ipv4_udp_pay_drop_03 = {
"name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether()/IP(src="192.168.0.2", dst="192.168.0.3")/UDP(sport=50,dport=19)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tvs_mac_ipv4_nvgre_ipv4_udp_pay = [
@@ -648,46 +608,65 @@ tvs_mac_ipv4_nvgre_ipv4_udp_pay = [
]
#test vector mac_ipv4_nvgre_ipv4_tcp
+mac_ipv4_nvgre_ipv4_tcp_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.5", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.7")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=20,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=39)/Raw("x"*80)'
+ ]
+}
+
tv_mac_ipv4_nvgre_ipv4_tcp_in_queue_01 = {
"name":"tv_mac_ipv4_nvgre_ipv4_tcp_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=39)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_nvgre_ipv4_tcp_queue_region_02 = {
"name":"tv_mac_ipv4_nvgre_ipv4_tcp_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions rss queues 1 2 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[1, 2]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=39)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[1, 2]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tv_mac_ipv4_nvgre_ipv4_tcp_drop_03 = {
"name":"tv_mac_ipv4_nvgre_ipv4_tcp_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether()/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=39)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":6}}
}
tvs_mac_ipv4_nvgre_ipv4_tcp = [
@@ -696,169 +675,140 @@ tvs_mac_ipv4_nvgre_ipv4_tcp = [
tv_mac_ipv4_nvgre_ipv4_tcp_drop_03
]
-#test vector mac_ipv4_nvgre_mac_ipv4_frag
-tv_mac_ipv4_nvgre_mac_ipv4_frag_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_frag_in_queue_01",
+#test vector mac_ipv4_nvgre_mac_ipv4
+mac_ipv4_nvgre_mac_ipv4_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_mac_ipv4_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_mac_ipv4_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":3}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tv_mac_ipv4_nvgre_mac_ipv4_frag_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_frag_queue_region_02",
+tv_mac_ipv4_nvgre_mac_ipv4_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_mac_ipv4_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tv_mac_ipv4_nvgre_mac_ipv4_frag_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_frag_drop_03",
+tv_mac_ipv4_nvgre_mac_ipv4_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_mac_ipv4_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3" ,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5" ,frag=5)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":5}}
+ "expect_results":{"expect_pkts":10}}
}
-tvs_mac_ipv4_nvgre_mac_ipv4_frag = [
- tv_mac_ipv4_nvgre_mac_ipv4_frag_in_queue_01,
- tv_mac_ipv4_nvgre_mac_ipv4_frag_queue_region_02,
- tv_mac_ipv4_nvgre_mac_ipv4_frag_drop_03
+tvs_mac_ipv4_nvgre_mac_ipv4 = [
+ tv_mac_ipv4_nvgre_mac_ipv4_in_queue_01,
+ tv_mac_ipv4_nvgre_mac_ipv4_queue_region_02,
+ tv_mac_ipv4_nvgre_mac_ipv4_drop_03
]
-#test vector mac_ipv4_nvgre_mac_ipv4_pay
-tv_mac_ipv4_nvgre_mac_ipv4_pay_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tv_mac_ipv4_nvgre_mac_ipv4_pay_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tv_mac_ipv4_nvgre_mac_ipv4_pay_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_mac_ipv4_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP()/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.1.2", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.4", dst="192.168.1.3")/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.5")/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":5}}
-}
-
-tvs_mac_ipv4_nvgre_mac_ipv4_pay = [
- tv_mac_ipv4_nvgre_mac_ipv4_pay_in_queue_01,
- tv_mac_ipv4_nvgre_mac_ipv4_pay_queue_region_02,
- tv_mac_ipv4_nvgre_mac_ipv4_pay_drop_03
+#test vector mac_ipv4_nvgre_mac_ipv4_udp_pay
+mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x1)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a3")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.7")/UDP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=2,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=20)/Raw("x"*80)'
]
+}
-#test vector mac_ipv4_nvgre_mac_ipv4_udp_pay
tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_in_queue_01 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_queue_region_02 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_drop_03 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_udp_pay_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 0x8 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / udp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=0x8)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/UDP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tvs_mac_ipv4_nvgre_mac_ipv4_udp_pay = [
@@ -868,46 +818,66 @@ tvs_mac_ipv4_nvgre_mac_ipv4_udp_pay = [
]
#test vector mac_ipv4_nvgre_mac_ipv4_tcp
+mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str = {
+ "matched": [
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(dst="192.168.0.2")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=3)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a3")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.5", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.7")/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=1,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=20)/Raw("x"*80)'
+ ]
+}
+
tv_mac_ipv4_nvgre_mac_ipv4_tcp_in_queue_01 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_tcp_in_queue_01",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":3}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_nvgre_mac_ipv4_tcp_queue_region_02 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_tcp_queue_region_02",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tv_mac_ipv4_nvgre_mac_ipv4_tcp_drop_03 = {
"name":"tv_mac_ipv4_nvgre_mac_ipv4_tcp_drop_03",
"rte_flow_pattern":"flow create 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IP(dst="192.168.0.1")/NVGRE(TNI=2)/Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.1.2", dst="192.168.1.3")/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_mac_ipv4_tcp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
tvs_mac_ipv4_nvgre_mac_ipv4_tcp = [
@@ -916,1609 +886,3692 @@ tvs_mac_ipv4_nvgre_mac_ipv4_tcp = [
tv_mac_ipv4_nvgre_mac_ipv4_tcp_drop_03
]
-#pppod non-pipeline mode
-#test vector mac_pppod_pay
-tv_mac_pppod_pay_in_queue_01 = {
- "name":"tv_mac_pppod_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8863 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoED()/PPP()/IP()/Raw("x" *80)'],
+#vxlan pipeline mode
+#test vector mac_ipv4_vxlan_ipv4_frag_pipeline_mode
+mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoE()/PPP()/IP()/Raw("x" *80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppod_pay_drop_02 = {
- "name":"tv_mac_pppod_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8863 / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoED()/PPP()/IP()/Raw("x" *80)'],
+tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoE()/PPP()/IP()/Raw("x" *80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_pppod_pay = [
- tv_mac_pppod_pay_in_queue_01,
- tv_mac_pppod_pay_drop_02
+tvs_mac_ipv4_vxlan_ipv4_frag_pipeline_mode = [
+ tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode
+mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4, proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5", dst="192.168.0.3", tos=4, proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.7", tos=4, proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=5, proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4, proto=0x01)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5", dst="192.168.0.3", tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.7", tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=5)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4)/ICMP()/Raw("x"*80)'
]
+}
-#pppoe non-pipeline mode
-#test vector mac_pppoe_pay
-tv_mac_pppoe_pay_in_queue_01 = {
- "name":"tv_mac_pppoe_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoE()/PPP()/IP()/Raw("x"*80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01 = {
+ "name":"mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x06 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoED()/PPP()/IP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_pppoe_pay_queue_region_02 = {
- "name":"tv_mac_pppoe_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoE()/PPP()/IP()/Raw("x"*80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x06 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoED()/PPP()/IP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_pppoe_pay_drop_03 = {
- "name":"tv_mac_pppoe_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoE()/PPP()/IP()/Raw("x"*80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x06 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:55")/PPPoED()/PPP()/IP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":8}}
}
-tvs_mac_pppoe_pay = [
- tv_mac_pppoe_pay_in_queue_01,
- tv_mac_pppoe_pay_queue_region_02,
- tv_mac_pppoe_pay_drop_03
+tvs_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode = [
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode
+mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4, proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4)/UDP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5", dst="192.168.0.3", tos=4, proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.7", tos=4, proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=5, proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4, proto=0x01)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5", dst="192.168.0.3", tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.7", tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=5)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3", tos=4)/ICMP()/Raw("x"*80)'
]
+}
-#test vector mac_pppoe_ipv4_frag
-tv_mac_pppoe_ipv4_frag_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_frag_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x11 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_pppoe_ipv4_frag_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_frag_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x11 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":8}}
}
-tv_mac_pppoe_ipv4_frag_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_frag_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 proto is 0x11 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP(frag=5)/Raw("x" * 80)'],
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":8}}
}
-tvs_mac_pppoe_ipv4_frag = [
- tv_mac_pppoe_ipv4_frag_in_queue_01,
- tv_mac_pppoe_ipv4_frag_queue_region_02,
- tv_mac_pppoe_ipv4_frag_drop_03
+tvs_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode = [
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode
+mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=20,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=99)/Raw("x"*80)'
]
+}
-#test vector mac_pppoe_ipv4_pay
-tv_mac_pppoe_ipv4_pay_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
- 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_pppoe_ipv4_pay_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
- 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_pppoe_ipv4_pay_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_drop,
+tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode = [
+ tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_vxlan_ipv4_tcp_pipeline_mode
+mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=19,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=30)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 3 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode = [
+ tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03
+ ]
+
+#nvgre pipeline mode
+#test vector mac_ipv4_nvgre_ipv4_frag_pipeline_mode
+mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.7",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 3 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tvs_mac_ipv4_nvgre_ipv4_frag_pipeline_mode = [
+ tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode
+mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x06,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",proto=0x06,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",proto=0x06,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x01,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x06,tos=5)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/TCP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/ICMP()/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tvs_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode = [
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode
+mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x11,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",proto=0x11,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",proto=0x11,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x01,tos=4)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",proto=0x11,tos=5)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/UDP()/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/ICMP()/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_in_queue_01 = {
+ "name":"mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tvs_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode = [
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode
+mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=100)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode = [
+ tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_nvgre_ipv4_tcp_pipeline_mode
+mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/TCP(sport=50,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=3,dport=23)/Raw("x" * 80)',
+ 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=100)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode = [
+ tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03
+ ]
+
+#test vector ethertype_filter_pppoed
+ethertype_filter_pppoed_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55", type=0x8863)/Raw("x" *80)',
+ 'Ether(dst="00:11:22:33:44:55")/PPPoED()/Raw("x" *80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55", type=0x8864)/Raw("x" *80)',
+ 'Ether(dst="00:11:22:33:44:55")/PPPoE()/Raw("x" *80)'
+ ]
+}
+
+tv_ethertype_filter_pppoed_in_queue_01 = {
+ "name":"tv_ethertype_filter_pppoed_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8863 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":ethertype_filter_pppoed_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":ethertype_filter_pppoed_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}}
+}
+
+tv_ethertype_filter_pppoed_drop_02 = {
+ "name":"tv_ethertype_filter_pppoed_drop_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8863 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":ethertype_filter_pppoed_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":ethertype_filter_pppoed_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}}
+}
+
+tvs_ethertype_filter_pppoed = [
+ tv_ethertype_filter_pppoed_in_queue_01,
+ tv_ethertype_filter_pppoed_drop_02
+ ]
+
+#test vector ethertype_filter_pppoes
+ethertype_filter_pppoes_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55", type=0x8864)/PPPoE(sessionid=3)/Raw("x" *80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55", type=0x8863)/PPPoED()/Raw("x" *80)'
+ ]
+}
+
+tv_ethertype_filter_pppoes_in_queue_01 = {
+ "name":"tv_ethertype_filter_pppoes_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":ethertype_filter_pppoes_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":ethertype_filter_pppoes_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}}
+}
+
+tv_ethertype_filter_pppoes_queue_region_02 = {
+ "name":"tv_ethertype_filter_pppoes_queue_region_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":ethertype_filter_pppoes_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":ethertype_filter_pppoes_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}}
+}
+
+tv_ethertype_filter_pppoes_drop_03 = {
+ "name":"tv_ethertype_filter_pppoes_drop_03",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth type is 0x8864 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":ethertype_filter_pppoes_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":ethertype_filter_pppoes_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}}
+}
+
+tvs_ethertype_filter_pppoes = [
+ tv_ethertype_filter_pppoes_in_queue_01,
+ tv_ethertype_filter_pppoes_queue_region_02,
+ tv_ethertype_filter_pppoes_drop_03
+ ]
+
+#non-tunnel pipeline mode
+#test vector mac_ipv4_frag_pipeline_mode
+mac_ipv4_frag_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=7,frag=5)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_frag_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_frag_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 3 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_ipv4_frag_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_frag_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_ipv4_frag_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_frag_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_frag_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tvs_mac_ipv4_frag_pipeline_mode = [
+ tv_mac_ipv4_frag_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_frag_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_frag_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_pay_proto_tcp_pipeline_mode
+mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4,proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(src="192.168.0.4",dst="192.168.0.3",tos=4,proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.5",tos=4,proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=7,proto=0x06)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4,proto=0x01)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.4",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.5",tos=4)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=7)/TCP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/ICMP()/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_pay_proto_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_pay_proto_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tvs_mac_ipv4_pay_proto_tcp_pipeline_mode = [
+ tv_mac_ipv4_pay_proto_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_pay_proto_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_pay_proto_tcp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_pay_proto_udp_pipeline_mode
+mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4,proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4,proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4,proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5,proto=0x11)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4,proto=0x01)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/UDP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/UDP()/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/ICMP()/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_pay_proto_udp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_pay_proto_udp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_pay_proto_udp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_pay_proto_udp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tv_mac_ipv4_pay_proto_udp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_pay_proto_udp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv4_pay_proto_udp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":8}}
+}
+
+tvs_mac_ipv4_pay_proto_udp_pipeline_mode = [
+ tv_mac_ipv4_pay_proto_udp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_pay_proto_udp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_pay_proto_udp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_udp_pay_pipeline_mode
+mac_ipv4_udp_pay_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=3)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_udp_pay_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_udp_pay_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_udp_pay_pipeline_mode = [
+ tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_udp_pay_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv4_tcp_pipeline_mode
+mac_ipv4_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IP(src="192.168.0.5",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.7",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=5)/TCP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=5,dport=23)/Raw("x"*80)',
+ 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=7)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv4_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv4_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 3 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv4_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv4_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_tcp_pipeline_mode = [
+ tv_mac_ipv4_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv4_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv4_tcp_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode
+mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1514",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1514",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 5 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":5}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":5}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tvs_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode = [
+ tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_in_queue_01,
+ tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_queue_region_02,
+ tv_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv6_dst_ipv6_tc_pipeline_mode
+mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2027",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=4)/IPv6ExtHdrFragment()/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=4)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions queue index 3 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":3}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_dst_ipv6_tc_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tvs_mac_ipv6_dst_ipv6_tc_pipeline_mode = [
+ tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_in_queue_01,
+ tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_queue_region_02,
+ tv_mac_ipv6_dst_ipv6_tc_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv6_udp_pay_pipeline_mode
+mac_ipv6_udp_pay_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=5)/UDP(sport=50,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=3,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=4)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions queue index 5 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":5}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":5}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_udp_pay_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv6_udp_pay_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_udp_pay_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tvs_mac_ipv6_udp_pay_pipeline_mode = [
+ tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01,
+ tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02,
+ tv_mac_ipv6_udp_pay_pipeline_mode_drop_03
+ ]
+
+#test vector mac_ipv6_tcp_pipeline_mode
+mac_ipv6_tcp_pipeline_mode_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=23)/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=7)/TCP(sport=25,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=1,dport=23)/Raw("x"*80)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=20)/Raw("x"*80)'
+ ]
+}
+
+tv_mac_ipv6_tcp_pipeline_mode_in_queue_01 = {
+ "name":"tv_mac_ipv6_tcp_pipeline_mode_in_queue_01",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions queue index 4 / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":4}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":4}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_tcp_pipeline_mode_queue_region_02 = {
+ "name":"tv_mac_ipv6_tcp_pipeline_mode_queue_region_02",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_ipv6_tcp_pipeline_mode_drop_03 = {
+ "name":"tv_mac_ipv6_tcp_pipeline_mode_drop_03",
+ "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":False,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv6_tcp_pipeline_mode_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tvs_mac_ipv6_tcp_pipeline_mode = [
+ tv_mac_ipv6_tcp_pipeline_mode_in_queue_01,
+ tv_mac_ipv6_tcp_pipeline_mode_queue_region_02,
+ tv_mac_ipv6_tcp_pipeline_mode_drop_03
+ ]
+
+#non-tunnel non-pipeline mode
+mac_ipv4_scapy_str = {
+ "matched": [
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=2)/("X"*480)'],
+ "mismatched": [
+ 'Ether(dst="68:05:ca:8d:ed:a1")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=2)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.3",dst="192.168.0.2",tos=4,ttl=2)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.7",tos=4,ttl=2)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=5,ttl=2)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=9)/("X"*480)'
+ ]
+}
+
+tv_mac_ipv4_in_queue_01 = {
+ "name":"tv_mac_ipv4_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 / end actions queue index 4 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":4}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":4}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_ipv4_drop_queue_02 = {
+ "name":"tv_mac_ipv4_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tvs_mac_ipv4_non_pipeline_mode = [
+ tv_mac_ipv4_in_queue_01,
+ tv_mac_ipv4_drop_queue_02
+ ]
+
+mac_ipv4_udp_scapy_str = {
+ "matched": [
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)'],
+ "mismatched": [
+ 'Ether(dst="68:05:ca:8d:ed:a1")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.3",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.5",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=5,ttl=3)/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=9)/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=19,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=99)/("X"*480)'
+ ]
+}
+
+tv_mac_ipv4_udp_in_queue_01 = {
+ "name":"tv_mac_ipv4_udp_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_udp_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_ipv4_udp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":7}}
+}
+
+tv_mac_ipv4_udp_drop_queue_02 = {
+ "name":"tv_mac_ipv4_udp_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_udp_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
- 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_ipv4_udp_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":7}}
}
-tvs_mac_pppoe_ipv4_pay = [
- tv_mac_pppoe_ipv4_pay_in_queue_01,
- tv_mac_pppoe_ipv4_pay_queue_region_02,
- tv_mac_pppoe_ipv4_pay_drop_03
+tvs_mac_ipv4_udp_non_pipeline_mode = [
+ tv_mac_ipv4_udp_in_queue_01,
+ tv_mac_ipv4_udp_drop_queue_02
]
-#test vector mac_pppoe_ipv4_udp_pay
-tv_mac_pppoe_ipv4_udp_pay_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_udp_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/UDP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{}
+mac_ipv4_tcp_scapy_str = {
+ "matched": [
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=23)/("X"*480)'],
+ "mismatched": [
+ 'Ether(dst="68:05:ca:8d:ed:a1")/IP(src="192.168.0.1",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.3",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.39",tos=4)/TCP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.32",tos=5)/TCP(sport=25,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.32",tos=4)/TCP(sport=19,dport=23)/("X"*480)',
+ 'Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=99)/("X"*480)'
+ ]
}
-tv_mac_pppoe_ipv4_udp_pay_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_udp_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/UDP()/Raw("x" * 80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+tv_mac_ipv4_tcp_in_queue_01 = {
+ "name":"tv_mac_ipv4_tcp_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.32 tos is 4 / tcp src is 25 dst is 23 / end actions queue index 6 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_tcp_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":6}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv4_tcp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":6}},
+ "expect_results":{"expect_pkts":6}}
}
-tv_mac_pppoe_ipv4_udp_pay_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_udp_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/UDP()/Raw("x" * 80)'],
+tv_mac_ipv4_tcp_drop_queue_02 = {
+ "name":"tv_mac_ipv4_tcp_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.32 tos is 4 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv4_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv4_tcp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":6}}
}
-tvs_mac_pppoe_ipv4_udp_pay = [
- tv_mac_pppoe_ipv4_udp_pay_in_queue_01,
- tv_mac_pppoe_ipv4_udp_pay_queue_region_02,
- tv_mac_pppoe_ipv4_udp_pay_drop_03
+tvs_mac_ipv4_tcp_non_pipeline_mode = [
+ tv_mac_ipv4_tcp_in_queue_01,
+ tv_mac_ipv4_tcp_drop_queue_02
]
-#test vector mac_pppoe_ipv4_tcp
-tv_mac_pppoe_ipv4_tcp_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_tcp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/TCP()/Raw("x"*80)'],
+mac_ipv6_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/IPv6ExtHdrFragment()/("X"*480)'
+ ]
+}
+
+tv_mac_ipv6_in_queue_01 = {
+ "name":"tv_mac_ipv6_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 8 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "param":{"expect_port":0, "expect_queues":8}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":8}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv4_tcp_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_tcp_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+tv_mac_ipv6_drop_queue_02 = {
+ "name":"tv_mac_ipv6_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_drop,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}},
+ "mismatched":{"scapy_str":mac_ipv6_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tvs_mac_ipv6_non_pipeline_mode = [
+ tv_mac_ipv6_in_queue_01,
+ tv_mac_ipv6_drop_queue_02
+ ]
+
+mac_ipv6_udp_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=25,dport=23)/("X"*480)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=23)/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=19,dport=23)/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=25,dport=99)/("X"*480)'
+ ]
+}
+
+tv_mac_ipv6_udp_in_queue_01 = {
+ "name":"tv_mac_ipv6_udp_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / udp src is 25 dst is 23 / end actions queue index 6 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_udp_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":6}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv6_udp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":6}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv4_tcp_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_tcp_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/TCP()/Raw("x"*80)'],
+tv_mac_ipv6_udp_drop_queue_02 = {
+ "name":"tv_mac_ipv6_udp_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_udp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv6_udp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_pppoe_ipv4_tcp = [
- tv_mac_pppoe_ipv4_tcp_in_queue_01,
- tv_mac_pppoe_ipv4_tcp_queue_region_02,
- tv_mac_pppoe_ipv4_tcp_drop_03
+tvs_mac_ipv6_udp_non_pipeline_mode = [
+ tv_mac_ipv6_udp_in_queue_01,
+ tv_mac_ipv6_udp_drop_queue_02
]
-#test vector mac_pppoe_ipv4_sctp
-tv_mac_pppoe_ipv4_sctp_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_sctp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/SCTP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{}
+mac_ipv6_tcp_scapy_str = {
+ "matched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP(sport=25,dport=23)/("X"*480)'],
+ "mismatched": [
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/TCP(sport=25,dport=23)/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP(sport=19,dport=23)/("X"*480)',
+ 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP(sport=25,dport=99)/("X"*480)'
+ ]
}
-tv_mac_pppoe_ipv4_sctp_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_sctp_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/SCTP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+tv_mac_ipv6_tcp_in_queue_01 = {
+ "name":"tv_mac_ipv6_tcp_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / tcp src is 25 dst is 23 / end actions queue index 12 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_tcp_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":12}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv6_tcp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":12}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv4_sctp_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_sctp_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/SCTP()/Raw("x"*80)'],
+tv_mac_ipv6_tcp_drop_queue_02 = {
+ "name":"tv_mac_ipv6_tcp_drop_queue_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_ipv6_tcp_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_ipv6_tcp_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_pppoe_ipv4_sctp = [
- tv_mac_pppoe_ipv4_sctp_in_queue_01,
- tv_mac_pppoe_ipv4_sctp_queue_region_02,
- tv_mac_pppoe_ipv4_sctp_drop_03
+tvs_mac_ipv6_tcp_non_pipeline_mode = [
+ tv_mac_ipv6_tcp_in_queue_01,
+ tv_mac_ipv6_tcp_drop_queue_02
+ ]
+
+#20.08
+mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'
]
+}
-#test vector mac_pppoe_ipv4_icmp
-tv_mac_pppoe_ipv4_icmp_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv4_icmp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/ICMP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_pay_session_id_proto_id_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv4_icmp_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv4_icmp_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/ICMP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_pay_session_id_proto_id_queue_region_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv4_icmp_drop_03 = {
- "name":"tv_mac_pppoe_ipv4_icmp_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0021)/IP()/ICMP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_drop_03 = {
+ "name":"tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_drop_03",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_pppoe_ipv4_icmp = [
- tv_mac_pppoe_ipv4_icmp_in_queue_01,
- tv_mac_pppoe_ipv4_icmp_queue_region_02,
- tv_mac_pppoe_ipv4_icmp_drop_03
+tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id = [
+ tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_drop_03
+ ]
+
+
+mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:54",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
]
+}
-#test vector mac_pppoe_ipv6_frag
-tv_mac_pppoe_ipv6_frag_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_frag_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_session_id_proto_id_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_frag_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_frag_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_session_id_proto_id_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_frag_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_frag_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_session_id_proto_id_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_pppoe_ipv6_frag = [
- tv_mac_pppoe_ipv6_frag_in_queue_01,
- tv_mac_pppoe_ipv6_frag_queue_region_02,
- tv_mac_pppoe_ipv6_frag_drop_03
+tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id = [
+ tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_drop_03
+ ]
+
+mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:54",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x0021)/IP()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'
]
+}
-#test vector mac_pppoe_ipv6_pay
-tv_mac_pppoe_ipv6_pay_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_session_id_proto_id_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_pay_session_id_proto_id_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv6_pay_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_session_id_proto_id_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_pay_session_id_proto_id_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv6_pay_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_session_id_proto_id_drop_03 = {
+ "name":"mac_pppoe_ipv4_pay_session_id_proto_id_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_pppoe_ipv6_pay = [
- tv_mac_pppoe_ipv6_pay_in_queue_01,
- tv_mac_pppoe_ipv6_pay_queue_region_02,
- tv_mac_pppoe_ipv6_pay_drop_03
+tvs_mac_pppoe_ipv4_pay_session_id_proto_id = [
+ tv_mac_pppoe_ipv4_pay_session_id_proto_id_in_queue_01,
+ tv_mac_pppoe_ipv4_pay_session_id_proto_id_queue_region_02,
+ tv_mac_pppoe_ipv4_pay_session_id_proto_id_drop_03
]
-#test vector mac_pppoe_ipv6_udp_pay
-tv_mac_pppoe_ipv6_udp_pay_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_udp_pay_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/UDP()/Raw("x" * 80)'],
+mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:54",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x0057)/IPv6()/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv6_pay_session_id_proto_id_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_pay_session_id_proto_id_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv6_udp_pay_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_udp_pay_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/UDP()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv6_pay_session_id_proto_id_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_pay_session_id_proto_id_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_pppoe_ipv6_udp_pay_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_udp_pay_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/UDP()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv6_pay_session_id_proto_id_drop_03 = {
+ "name":"mac_pppoe_ipv6_pay_session_id_proto_id_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0057 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_session_id_proto_id_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_pppoe_ipv6_udp_pay = [
- tv_mac_pppoe_ipv6_udp_pay_in_queue_01,
- tv_mac_pppoe_ipv6_udp_pay_queue_region_02,
- tv_mac_pppoe_ipv6_udp_pay_drop_03
+tvs_mac_pppoe_ipv6_pay_session_id_proto_id = [
+ tv_mac_pppoe_ipv6_pay_session_id_proto_id_in_queue_01,
+ tv_mac_pppoe_ipv6_pay_session_id_proto_id_queue_region_02,
+ tv_mac_pppoe_ipv6_pay_session_id_proto_id_drop_03
+ ]
+
+mac_pppoe_ipv4_pay_ip_address_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/Raw("x"*80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/Raw("x"*80)'
]
+}
-#test vector mac_pppoe_ipv6_tcp
-tv_mac_pppoe_ipv6_tcp_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_tcp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/TCP()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_ip_address_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_pay_ip_address_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":2}}
}
-tv_mac_pppoe_ipv6_tcp_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_tcp_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 4 5 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/TCP()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_ip_address_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_pay_ip_address_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3, 4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":2}}
}
-tv_mac_pppoe_ipv6_tcp_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_tcp_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/TCP()/Raw("x" * 80)'],
+tv_mac_pppoe_ipv4_pay_ip_address_drop_03 = {
+ "name":"mac_pppoe_ipv4_pay_ip_address_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":2}}
}
-tvs_mac_pppoe_ipv6_tcp = [
- tv_mac_pppoe_ipv6_tcp_in_queue_01,
- tv_mac_pppoe_ipv6_tcp_queue_region_02,
- tv_mac_pppoe_ipv6_tcp_drop_03
+tvs_mac_pppoe_ipv4_pay_ip_address = [
+ tv_mac_pppoe_ipv4_pay_ip_address_in_queue_01,
+ tv_mac_pppoe_ipv4_pay_ip_address_queue_region_02,
+ tv_mac_pppoe_ipv4_pay_ip_address_drop_03
+ ]
+
+mac_pppoe_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=19)/Raw("x" * 80)'
]
+}
-#test vector mac_pppoe_ipv6_sctp
-tv_mac_pppoe_ipv6_sctp_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_sctp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/SCTP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_udp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_sctp_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_sctp_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/SCTP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_udp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_sctp_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_sctp_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/SCTP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_drop_03 = {
+ "name":"mac_pppoe_ipv4_udp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_pppoe_ipv6_sctp = [
- tv_mac_pppoe_ipv6_sctp_in_queue_01,
- tv_mac_pppoe_ipv6_sctp_queue_region_02,
- tv_mac_pppoe_ipv6_sctp_drop_03
+tvs_mac_pppoe_ipv4_udp_pay = [
+ tv_mac_pppoe_ipv4_udp_pay_in_queue_01,
+ tv_mac_pppoe_ipv4_udp_pay_queue_region_02,
+ tv_mac_pppoe_ipv4_udp_pay_drop_03
+ ]
+
+mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x" * 80)'
]
+}
-#test vector mac_pppoe_ipv6_icmpv6
-tv_mac_pppoe_ipv6_icmpv6_in_queue_01 = {
- "name":"tv_mac_pppoe_ipv6_icmpv6_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions queue index 1 / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/ICMP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":1}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_icmpv6_queue_region_02 = {
- "name":"tv_mac_pppoe_ipv6_icmpv6_queue_region_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/ICMP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_pppoe_ipv6_icmpv6_drop_03 = {
- "name":"tv_mac_pppoe_ipv6_icmpv6_drop_03",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE()/PPP(proto=0x0057)/IPv6()/ICMP()/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{}
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_drop_mismatched,
+ "param":{"expect_port":0, "expect_queues":"null"}},
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_pppoe_ipv6_icmpv6 = [
- tv_mac_pppoe_ipv6_icmpv6_in_queue_01,
- tv_mac_pppoe_ipv6_icmpv6_queue_region_02,
- tv_mac_pppoe_ipv6_icmpv6_drop_03
+tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port = [
+ tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03
]
-#vxlan pipeline mode
-#test vector mac_ipv4_vxlan_ipv4_frag_pipeline_mode
-tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+mac_pppoe_ipv4_tcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv4_tcp_pay_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_in_queue_01",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":3}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_tcp_pay_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":3}}
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_tcp_pay_drop_03 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":3}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv4_vxlan_ipv4_frag_pipeline_mode = [
- tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_in_queue_01,
- tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_queue_region_02,
- tv_mac_ipv4_vxlan_ipv4_frag_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv4_tcp_pay = [
+ tv_mac_pppoe_ipv4_tcp_pay_in_queue_01,
+ tv_mac_pppoe_ipv4_tcp_pay_queue_region_02,
+ tv_mac_pppoe_ipv4_tcp_pay_drop_03
]
-#test vector mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode
-tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=29)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=29)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=20,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=29)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode = [
- tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_in_queue_01,
- tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_queue_region_02,
- tv_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port = [
+ tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03
]
+mac_pppoe_ipv6_pay_ip_address_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x"*80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*80)'
+ ]
+}
-#test vector mac_ipv4_vxlan_ipv4_tcp_pipeline_mode
-tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_pay_ip_address_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_pay_ip_address_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=19,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=30)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":2}}
}
-tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_pay_ip_address_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_pay_ip_address_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=19,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=30)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}}
}
-tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_pay_ip_address_drop_03 = {
+ "name":"mac_pppoe_ipv6_pay_ip_address_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=19,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/UDP()/VXLAN()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=30)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}}
}
-tvs_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode = [
- tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_in_queue_01,
- tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_queue_region_02,
- tv_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv6_pay_ip_address = [
+ tv_mac_pppoe_ipv6_pay_ip_address_in_queue_01,
+ tv_mac_pppoe_ipv6_pay_ip_address_queue_region_02,
+ tv_mac_pppoe_ipv6_pay_ip_address_drop_03
]
-#nvgre pipeline mode
-#test vector mac_ipv4_nvgre_ipv4_frag_pipeline_mode
-tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+mac_pppoe_ipv6_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv6_udp_pay_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_udp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_udp_pay_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_udp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_udp_pay_drop_03 = {
+ "name":"mac_pppoe_ipv6_udp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=5,frag=5)/TCP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":3}}
}
-tvs_mac_ipv4_nvgre_ipv4_frag_pipeline_mode = [
- tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_in_queue_01,
- tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_queue_region_02,
- tv_mac_ipv4_nvgre_ipv4_frag_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv6_udp_pay = [
+ tv_mac_pppoe_ipv6_udp_pay_in_queue_01,
+ tv_mac_pppoe_ipv6_udp_pay_queue_region_02,
+ tv_mac_pppoe_ipv6_udp_pay_drop_03
]
-#test vector mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode
-tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":2}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=100)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode = [
- tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_in_queue_01,
- tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_queue_region_02,
- tv_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port = [
+ tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03
]
-#test vector mac_ipv4_nvgre_ipv4_tcp_pipeline_mode
-tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)'],
+mac_pppoe_ipv6_tcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_ipv6_tcp_pay_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":2}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=3,dport=23)/Raw("x" * 80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=100)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)'],
+tv_mac_pppoe_ipv6_tcp_pay_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=3,dport=23)/Raw("x" * 80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=100)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 / nvgre / eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x" * 80)'],
+tv_mac_pppoe_ipv6_tcp_pay_drop_03 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=3,dport=23)/Raw("x" * 80)',
- 'Ether()/IP()/NVGRE()/Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=100)/Raw("x" * 80)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":3}}
}
-tvs_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode = [
- tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_in_queue_01,
- tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_queue_region_02,
- tv_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode_drop_03
+tvs_mac_pppoe_ipv6_tcp_pay = [
+ tv_mac_pppoe_ipv6_tcp_pay_in_queue_01,
+ tv_mac_pppoe_ipv6_tcp_pay_queue_region_02,
+ tv_mac_pppoe_ipv6_tcp_pay_drop_03
]
-#non-tunnel pipeline mode
-#test vector mac_ipv4_frag_pipeline_mode
-tv_mac_ipv4_frag_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_frag_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=7,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":3}}
+mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x" * 80)'
+ ]
}
-tv_mac_ipv4_frag_partial_fields_pipeline_mode_in_queue_02 = {
- "name":"tv_mac_ipv4_frag_partial_fields_pipeline_mode_in_queue_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)'],
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}}
-
-}
-
-tv_mac_ipv4_frag_pipeline_mode_queue_region_03 = {
- "name":"tv_mac_ipv4_frag_pipeline_mode_queue_region_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=7,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":3}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_frag_partial_fields_pipeline_mode_queue_region_04 = {
- "name":"tv_mac_ipv4_frag_partial_fields_pipeline_mode_queue_region_04",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
-}
-
-tv_mac_ipv4_frag_pipeline_mode_drop_05 = {
- "name":"tv_mac_ipv4_frag_pipeline_mode_drop_05",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=7,frag=5)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":3}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_frag_partial_fields_pipeline_mode_drop_06 = {
- "name":"tv_mac_ipv4_frag_partial_fields_pipeline_mode_drop_06",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.3",tos=4,frag=5)/Raw("x"*80)'],
+tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.4", dst="192.168.0.3",tos=4,frag=5)/TCP()/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2", dst="192.168.0.5",tos=4,frag=5)/TCP()/Raw("x"*80)'],
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv4_frag_pipeline_mode = [
- tv_mac_ipv4_frag_pipeline_mode_in_queue_01,
- tv_mac_ipv4_frag_partial_fields_pipeline_mode_in_queue_02,
- tv_mac_ipv4_frag_pipeline_mode_queue_region_03,
- tv_mac_ipv4_frag_partial_fields_pipeline_mode_queue_region_04,
- tv_mac_ipv4_frag_pipeline_mode_drop_05,
- tv_mac_ipv4_frag_partial_fields_pipeline_mode_drop_06
+tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port = [
+ tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03
]
-#test vector mac_ipv4_pay_pipeline_mode
-tv_mac_ipv4_pay_pipeline_mode_tcp_in_queue_01 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_tcp_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}}
+mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x"*80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/Raw("x"*80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/Raw("x"*80)'
+ ]
}
-tv_mac_ipv4_pay_pipeline_mode_udp_in_queue_02 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_udp_in_queue_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_ip_address_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_pay_ip_address_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}}
-}
-
-tv_mac_ipv4_pay_pipeline_mode_tcp_queue_region_03 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_tcp_queue_region_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_pay_pipeline_mode_udp_queue_region_04 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_udp_queue_region_04",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_ip_address_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_pay_ip_address_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_pay_pipeline_mode_tcp_drop_05 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_tcp_drop_05",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x06 tos is 4 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_pay_ip_address_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv4_pay_ip_address_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv4_pay_pipeline_mode_udp_drop_06 = {
- "name":"tv_mac_ipv4_pay_pipeline_mode_udp_drop_06",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 proto is 0x11 tos is 4 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP()/Raw("x"*80)'],
+tvs_mac_vlan_pppoe_ipv4_pay_ip_address = [
+ tv_mac_vlan_pppoe_ipv4_pay_ip_address_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_pay_ip_address_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_pay_ip_address_drop_03
+ ]
+
+mac_vlan_pppoe_ipv4_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv4_udp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_in_queue,
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_vlan_pppoe_ipv4_udp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":5}}
+}
+
+tv_mac_vlan_pppoe_ipv4_udp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":5}}
}
-tvs_mac_ipv4_pay_pipeline_mode = [
- tv_mac_ipv4_pay_pipeline_mode_tcp_in_queue_01,
- tv_mac_ipv4_pay_pipeline_mode_udp_in_queue_02,
- tv_mac_ipv4_pay_pipeline_mode_tcp_queue_region_03,
- tv_mac_ipv4_pay_pipeline_mode_udp_queue_region_04,
- tv_mac_ipv4_pay_pipeline_mode_tcp_drop_05,
- tv_mac_ipv4_pay_pipeline_mode_udp_drop_06
+tvs_mac_vlan_pppoe_ipv4_udp_pay = [
+ tv_mac_vlan_pppoe_ipv4_udp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_udp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_udp_pay_drop_03
]
-#test vector mac_ipv4_udp_pay_pipeline_mode
-tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
"param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=3)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
"param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=3)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv4_udp_pay_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_udp_pay_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / udp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=2,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/UDP(sport=50,dport=3)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":5}}
}
-tvs_mac_ipv4_udp_pay_pipeline_mode = [
- tv_mac_ipv4_udp_pay_pipeline_mode_in_queue_01,
- tv_mac_ipv4_udp_pay_pipeline_mode_queue_region_02,
- tv_mac_ipv4_udp_pay_pipeline_mode_drop_03
+tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port = [
+ tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_drop_03
]
-#test vector mac_ipv4_tcp_pipeline_mode
-tv_mac_ipv4_tcp_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv4_tcp_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+mac_vlan_pppoe_ipv4_tcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv4_tcp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=5,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=7)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv4_tcp_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv4_tcp_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_tcp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=5,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=7)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv4_tcp_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv4_tcp_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / tcp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_tcp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=5,dport=23)/Raw("x"*80)',
- 'Ether()/IP(src="192.168.0.2",dst="192.168.0.3",tos=4)/TCP(sport=50,dport=7)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":5}}
}
-tvs_mac_ipv4_tcp_pipeline_mode = [
- tv_mac_ipv4_tcp_pipeline_mode_in_queue_01,
- tv_mac_ipv4_tcp_pipeline_mode_queue_region_02,
- tv_mac_ipv4_tcp_pipeline_mode_drop_03
+tvs_mac_vlan_pppoe_ipv4_tcp_pay = [
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_drop_03
]
-#test vector mac_ipv6_frag_pipeline_mode
-tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 5 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":5}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1514",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":5}},
- "expect_results":{"expect_pkts":2}}
+mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.3", dst="192.168.1.2")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.4")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP(src="192.168.1.1", dst="192.168.1.2")/Raw("x" * 80)'
+ ]
}
-tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_in_queue_02 = {
- "name":"tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_in_queue_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions queue index 3 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions queue index 2 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions queue index 2 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":3}},
+ "param":{"expect_port":0, "expect_queues":2}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2027",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=4)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":3}},
- "expect_results":{"expect_pkts":2}}
-}
-
-tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_queue_region_03 = {
- "name":"tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_queue_region_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1514",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":2}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_queue_region_04 = {
- "name":"tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_queue_region_04",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions rss queues 7 8 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions rss queues 7 8 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2027",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=4)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
- "param":{"expect_port":0, "expect_queues":[2, 3]}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":[7, 8]}},
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_drop_05 = {
- "name":"tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_drop_05",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1515 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv4 src is 192.168.1.1 dst is 192.168.1.2 / tcp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1514",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2023",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":5}}
}
-tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_drop_06 = {
- "name":"tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_drop_06",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2027",tc=3)/IPv6ExtHdrFragment()/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=4)/IPv6ExtHdrFragment()/Raw("x"*80)'],
- "check_func":{"func":rfc.check_output_log_drop_mismatched,
- "param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
-}
+tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port = [
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_drop_03
+ ]
-tvs_mac_ipv6_frag_pipeline_mode = [
- tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_in_queue_01,
- tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_in_queue_02,
- tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_queue_region_03,
- tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_queue_region_04,
- tv_mac_ipv6_frag_srcipv6_dstipv6_pipeline_mode_drop_05,
- tv_mac_ipv6_frag_dstipv6_tc_pipeline_mode_drop_06
+mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x"*80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x"*80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x"*80)'
]
+}
-#test vector mac_ipv6_udp_pay_pipeline_mode
-tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions queue index 5 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_ip_address_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_ip_address_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":5}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=3,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=4)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":5}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":2}}
}
-tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions rss queues 2 3 end / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_ip_address_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_ip_address_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=3,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=4)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":2}}
}
-tv_mac_ipv6_udp_pay_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv6_udp_pay_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / udp src is 50 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_pay_ip_address_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_pay_ip_address_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=3,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/UDP(sport=50,dport=4)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_pay_ip_address_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":2}}
}
-tvs_mac_ipv6_udp_pay_pipeline_mode = [
- tv_mac_ipv6_udp_pay_pipeline_mode_in_queue_01,
- tv_mac_ipv6_udp_pay_pipeline_mode_queue_region_02,
- tv_mac_ipv6_udp_pay_pipeline_mode_drop_03
+tvs_mac_vlan_pppoe_ipv6_pay_ip_address = [
+ tv_mac_vlan_pppoe_ipv6_pay_ip_address_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_pay_ip_address_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_pay_ip_address_drop_03
]
-#test vector mac_ipv6_tcp_pipeline_mode
-tv_mac_ipv6_tcp_pipeline_mode_in_queue_01 = {
- "name":"tv_mac_ipv6_tcp_pipeline_mode_in_queue_01",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions queue index 4 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=23)/Raw("x"*80)'],
+mac_vlan_pppoe_ipv6_udp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv6_udp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":4}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":4}},
- "expect_results":{"expect_pkts":2}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_tcp_pipeline_mode_queue_region_02 = {
- "name":"tv_mac_ipv6_tcp_pipeline_mode_queue_region_02",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_udp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_queue_region,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_queue_region_mismatched,
"param":{"expect_port":0, "expect_queues":[4, 5]}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_tcp_pipeline_mode_drop_03 = {
- "name":"tv_mac_ipv6_tcp_pipeline_mode_drop_03",
- "rte_flow_pattern":"flow create 0 priority 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 tc is 3 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=23)/Raw("x"*80)'],
+tv_mac_vlan_pppoe_ipv6_udp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=1,dport=23)/Raw("x"*80)',
- 'Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1515",dst="CDCD:910A:2222:5498:8475:1111:3900:2020",tc=3)/TCP(sport=25,dport=20)/Raw("x"*80)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":2}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv6_tcp_pipeline_mode = [
- tv_mac_ipv6_tcp_pipeline_mode_in_queue_01,
- tv_mac_ipv6_tcp_pipeline_mode_queue_region_02,
- tv_mac_ipv6_tcp_pipeline_mode_drop_03
+tvs_mac_vlan_pppoe_ipv6_udp_pay = [
+ tv_mac_vlan_pppoe_ipv6_udp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_udp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_udp_pay_drop_03
]
-tv_mac_ipv4_in_queue_01 = {
- "name":"tv_mac_ipv4_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 2 / end actions queue index 4 / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=2)/("X"*480)'],
+mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":4}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.9",dst="192.168.6.12",tos=4,ttl=2)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":4}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_drop_queue_02 = {
- "name":"tv_mac_ipv4_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 ttl is 2 / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.3",tos=4,ttl=2)/("X"*480)'],
+tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / udp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.5.6",dst="192.168.5.15",tos=2,ttl=5)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_udp_in_queue_01 = {
- "name":"tv_mac_ipv4_udp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.2 tos is 4 ttl is 3 / udp src is 25 dst is 23 / end actions queue index 2 / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.2",tos=4,ttl=3)/UDP(sport=25,dport=23)/("X"*480)'],
+tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port = [
+ tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_drop_03
+ ]
+
+mac_vlan_pppoe_ipv6_tcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=27,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=19)/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv6_tcp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":2}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.6.56",dst="192.168.5.83",tos=2,ttl=1)/UDP(sport=20,dport=33)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":2}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_udp_drop_queue_02 = {
- "name":"tv_mac_ipv4_udp_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 / udp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.3",tos=4)/UDP(sport=25,dport=23)/("X"*480)'],
+tv_mac_vlan_pppoe_ipv6_tcp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions rss queues 4 5 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[4, 5]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_vlan_pppoe_ipv6_tcp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / tcp src is 25 dst is 23 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:98")/IP(src="192.168.6.3",dst="192.168.8.5",tos=4)/UDP(sport=85,dport=62)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_tcp_in_queue_01 = {
- "name":"tv_mac_ipv4_tcp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.32 tos is 4 / tcp src is 25 dst is 23 / end actions queue index 6 / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.32",tos=4)/TCP(sport=25,dport=23)/("X"*480)'],
+tvs_mac_vlan_pppoe_ipv6_tcp_pay = [
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_drop_03
+ ]
+
+mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/TCP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/UDP(sport=25,dport=23)/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0057)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2022")/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":6}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.8.3",dst="192.168.15.26",tos=3)/UDP(sport=62,dport=88)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":6}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv4_tcp_drop_queue_02 = {
- "name":"tv_mac_ipv4_tcp_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.0.1 dst is 192.168.0.3 tos is 4 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a8")/IP(src="192.168.0.1",dst="192.168.0.3",tos=4)/TCP(sport=25,dport=23)/("X"*480)'],
+tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03 = {
+ "name":"mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth / vlan tci is 1 / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 / tcp / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":False},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether(dst="68:05:ca:8d:ed:a9")/IP(src="192.168.5.6",dst="192.168.5.5",tos=8)/UDP(sport=55,dport=36)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_in_queue_01 = {
- "name":"tv_mac_ipv6_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 7 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)'],
+tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port = [
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_in_queue_01,
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_queue_region_02,
+ tv_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_drop_03
+ ]
+
+mac_pppoe_lcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:53",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_pppoe_lcp_pay_in_queue_01 = {
+ "name":"mac_pppoe_lcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":7}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220", dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
+ "mismatched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":7}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv6_drop_queue_02 = {
- "name":"tv_mac_ipv6_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)'],
+tv_mac_pppoe_lcp_pay_queue_region_02 = {
+ "name":"mac_pppoe_lcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_pppoe_lcp_pay_drop_03 = {
+ "name":"mac_pppoe_lcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220", dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
+ "mismatched":{"scapy_str":mac_pppoe_lcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
+tvs_mac_pppoe_lcp_pay = [
+ tv_mac_pppoe_lcp_pay_in_queue_01,
+ tv_mac_pppoe_lcp_pay_queue_region_02,
+ tv_mac_pppoe_lcp_pay_drop_03
+ ]
+
+mac_pppoe_ipcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:53",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
+ ]
+}
-tv_mac_ipv6_frag_in_queue_01 = {
- "name":"tv_mac_ipv6_frag_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions queue index 7 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)'],
+tv_mac_pppoe_ipcp_pay_in_queue_01 = {
+ "name":"mac_pppoe_ipcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":7}},
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":3}}
+}
+
+tv_mac_pppoe_ipcp_pay_queue_region_02 = {
+ "name":"mac_pppoe_ipcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220", dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
- "check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":7}},
- "expect_results":{"expect_pkts":1}}
+ "mismatched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv6_frag_drop_queue_02 = {
- "name":"tv_mac_ipv6_frag_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)'],
+tv_mac_pppoe_ipcp_pay_drop_03 = {
+ "name":"mac_pppoe_ipcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220", dst="ABAB:910A:2222:5498:8475:1111:3900:1520")/("X"*480)'],
+ "mismatched":{"scapy_str":mac_pppoe_ipcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":3}}
}
-tv_mac_ipv6_udp_in_queue_01 = {
- "name":"tv_mac_ipv6_udp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1518 / udp src is 25 dst is 23 / end actions queue index 7 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518")/UDP(sport=25,dport=23)/("X"*480)'],
+tvs_mac_pppoe_ipcp_pay = [
+ tv_mac_pppoe_ipcp_pay_in_queue_01,
+ tv_mac_pppoe_ipcp_pay_queue_region_02,
+ tv_mac_pppoe_ipcp_pay_drop_03
+ ]
+
+mac_vlan_pppoe_lcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:53",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0xc021)/PPP_LCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_lcp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_lcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":7}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="ABAB:910A:2222:5498:8475:1111:3900:1520")/UDP(sport=22,dport=12)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":7}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_udp_drop_queue_02 = {
- "name":"tv_mac_ipv6_udp_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1518 / udp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518")/UDP(sport=25,dport=23)/("X"*480)'],
+tv_mac_vlan_pppoe_lcp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_lcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_vlan_pppoe_lcp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_lcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0xc021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220")/UDP(sport=62,dport=11)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_lcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_tcp_in_queue_01 = {
- "name":"tv_mac_ipv6_tcp_in_queue_01",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1518 / tcp src is 25 dst is 23 / end actions queue index 7 / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518")/TCP(sport=25,dport=23)/("X"*480)'],
+tvs_mac_vlan_pppoe_lcp_pay = [
+ tv_mac_vlan_pppoe_lcp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_lcp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_lcp_pay_drop_03
+ ]
+
+mac_vlan_pppoe_ipcp_pay_scapy_str = {
+ "matched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)'],
+ "mismatched": [
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:53",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=2,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=4)/PPP(proto=0x8021)/PPP_IPCP()/Raw("x" * 80)',
+ 'Ether(src="11:22:33:44:55:99",dst="00:11:22:33:44:55",type=0x8100)/Dot1Q(vlan=1,type=0x8864)/PPPoE(sessionid=3)/PPP(proto=0x0021)/IP()/Raw("x" * 80)'
+ ]
+}
+
+tv_mac_vlan_pppoe_ipcp_pay_in_queue_01 = {
+ "name":"mac_vlan_pppoe_ipcp_pay_in_queue_01",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions queue index 1 / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions queue index 1 / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_in_queue,
- "param":{"expect_port":0, "expect_queues":7}},
+ "param":{"expect_port":0, "expect_queues":1}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="ABAB:910A:2222:5498:8475:1111:3900:1520")/UDP(sport=22,dport=12)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_in_queue_mismatched,
- "param":{"expect_port":0, "expect_queues":7}},
- "expect_results":{"expect_pkts":1}}
+ "param":{"expect_port":0, "expect_queues":1}},
+ "expect_results":{"expect_pkts":4}}
}
-tv_mac_ipv6_tcp_drop_queue_02 = {
- "name":"tv_mac_ipv6_tcp_drop_queue_02",
- "rte_flow_pattern":"flow create 0 ingress pattern eth / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1518 / tcp src is 25 dst is 23 / end actions drop / end",
- "matched":{"scapy_str":['Ether()/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1518")/TCP(sport=25,dport=23)/("X"*480)'],
+tv_mac_vlan_pppoe_ipcp_pay_queue_region_02 = {
+ "name":"mac_vlan_pppoe_ipcp_pay_queue_region_02",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions rss queues 2 3 end / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions rss queues 2 3 end / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["matched"],
+ "check_func":{"func":rfc.check_output_log_queue_region,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":1}},
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["mismatched"],
+ "check_func":{"func":rfc.check_output_log_queue_region_mismatched,
+ "param":{"expect_port":0, "expect_queues":[2, 3]}},
+ "expect_results":{"expect_pkts":4}}
+}
+
+tv_mac_vlan_pppoe_ipcp_pay_drop_03 = {
+ "name":"mac_vlan_pppoe_ipcp_pay_drop_03",
+ "validate_pattern":"flow validate 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions drop / end",
+ "rte_flow_pattern":"flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / vlan tci is 1 / pppoes seid is 3 / pppoe_proto_id is 0x8021 / end actions drop / end",
+ "configuration":{
+ "is_non_pipeline":True,
+ "is_need_rss_rule":True},
+ "matched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["matched"],
"check_func":{"func":rfc.check_output_log_drop,
"param":{"expect_port":0, "expect_queues":"null"}},
"expect_results":{"expect_pkts":1}},
- "mismatched":{"scapy_str":['Ether()/IPv6(src="BCBC:910A:2222:5498:8475:1111:3900:8220")/TCP(sport=62,dport=11)/("X"*480)'],
+ "mismatched":{"scapy_str":mac_vlan_pppoe_ipcp_pay_scapy_str["mismatched"],
"check_func":{"func":rfc.check_output_log_drop_mismatched,
"param":{"expect_port":0, "expect_queues":"null"}},
- "expect_results":{"expect_pkts":1}}
+ "expect_results":{"expect_pkts":4}}
}
-tvs_mac_ipv4_non_pipeline_mode = [
- tv_mac_ipv4_in_queue_01,
- tv_mac_ipv4_drop_queue_02
- ]
-
-tvs_mac_ipv4_udp_non_pipeline_mode = [
- tv_mac_ipv4_udp_in_queue_01,
- tv_mac_ipv4_udp_drop_queue_02
- ]
-
-tvs_mac_ipv4_tcp_non_pipeline_mode = [
- tv_mac_ipv4_tcp_in_queue_01,
- tv_mac_ipv4_tcp_drop_queue_02
- ]
-
-tvs_mac_ipv6_non_pipeline_mode = [
- tv_mac_ipv6_in_queue_01,
- tv_mac_ipv6_drop_queue_02
- ]
-
-tvs_mac_ipv6_frag_non_pipeline_mode = [
- tv_mac_ipv6_frag_in_queue_01,
- tv_mac_ipv6_frag_drop_queue_02
- ]
-
-tvs_mac_ipv6_udp_non_pipeline_mode = [
- tv_mac_ipv6_udp_in_queue_01,
- tv_mac_ipv6_udp_drop_queue_02
- ]
-
-tvs_mac_ipv6_tcp_non_pipeline_mode = [
- tv_mac_ipv6_tcp_in_queue_01,
- tv_mac_ipv6_tcp_drop_queue_02
+tvs_mac_vlan_pppoe_ipcp_pay = [
+ tv_mac_vlan_pppoe_ipcp_pay_in_queue_01,
+ tv_mac_vlan_pppoe_ipcp_pay_queue_region_02,
+ tv_mac_vlan_pppoe_ipcp_pay_drop_03
]
test_results = OrderedDict()
class CVLSwitchFilterTest(TestCase):
+ def bind_nics_driver(self, ports, driver=""):
+ # modprobe vfio driver
+ if driver == "vfio-pci":
+ for port in ports:
+ netdev = self.dut.ports_info[port]['port']
+ driver = netdev.get_nic_driver()
+ if driver != 'vfio-pci':
+ netdev.bind_driver(driver='vfio-pci')
+
+ elif driver == "igb_uio":
+ # igb_uio should insmod as default, no need to check
+ for port in ports:
+ netdev = self.dut.ports_info[port]['port']
+ driver = netdev.get_nic_driver()
+ if driver != 'igb_uio':
+ netdev.bind_driver(driver='igb_uio')
+ else:
+ for port in ports:
+ netdev = self.dut.ports_info[port]['port']
+ driver_now = netdev.get_nic_driver()
+ if driver == "":
+ driver = netdev.default_driver
+ if driver != driver_now:
+ netdev.bind_driver(driver=driver)
+
def set_up_all(self):
"""
Run at the start of each test suite.
"""
self.verify(self.nic in ["columbiaville_25g","columbiaville_100g"], "%s nic not support CVL switch filter" % self.nic)
-
self.dut_ports = self.dut.get_ports(self.nic)
# Verify that enough ports are available
self.verify(len(self.dut_ports) >= 1, "Insufficient ports")
-
localPort = self.tester.get_local_port(self.dut_ports[0])
self.__tx_iface = self.tester.get_interface(localPort)
-
- #copy the file with fdir rules to dut, to make the fdir table full and then test switch filter
- src_file = 'dep/testpmd_cmds_rte_flow_fdir_rules'
- self.dut_file_dir = '/tmp'
- self.dut.session.copy_file_to(src_file, self.dut_file_dir)
+ self.dut.send_expect("ifconfig %s up" % self.__tx_iface, "# ")
self.pkt = Packet()
+ #bind pf to kernel
+ self.bind_nics_driver(self.dut_ports, driver="ice")
+ #move comms package to package folder
+ self.suite_config = rfc.get_suite_config(self)
+ self.os_package_location = self.suite_config["os_default_package_file_location"]
+ self.comms_package_location = self.suite_config["comms_package_file_location"]
+ self.package_location = self.suite_config["package_file_location"]
+ self.dut.send_expect("cp %s %s" % (self.comms_package_location, self.package_location), "# ")
+ self.re_load_ice_driver()
+ #bind pf to vfio-pci
+ self.dut.send_expect('modprobe vfio-pci', '#')
+ self.bind_nics_driver(self.dut_ports, driver="vfio-pci")
+
+ self.generate_file_with_fdir_rules()
def set_up(self):
"""
Run before each test case.
"""
- self.dut.kill_all()
- def tear_down(self):
+ def re_load_ice_driver(self):
"""
- Run after each test case.
+ remove and reload the driver
"""
- self.dut.kill_all()
+ ice_driver_file_location = self.suite_config["ice_driver_file_location"]
+ self.dut.send_expect("rmmod ice", "# ", 15)
+ self.dut.send_expect("insmod %s" % ice_driver_file_location, "# ", 60)
+ time.sleep(5)
- def tear_down_all(self):
+ def generate_file_with_fdir_rules(self):
"""
- Run after each test suite.
+ generate file with fdir rules to make fdir table full, then test switch filter
"""
- self.dut.kill_all()
+ fdir_rule_number = 14336 + int(2048/(len(self.dut_ports)))
+ src_file = 'dep/testpmd_cmds_rte_flow_fdir_rules'
+ flows = open(src_file, mode='w')
+ rule_count = 1
+ for i in range(0,255):
+ for j in range(0,255):
+ if not rule_count > fdir_rule_number:
+ flows.write('flow create 0 ingress pattern eth / ipv4 src is 192.168.%d.%d dst is 192.1.0.0 tos is 4 / tcp src is 25 dst is 23 / end actions queue index 5 / end \n' % (i, j))
+ rule_count += 1
+ else:
+ break
+ if rule_count > fdir_rule_number:
+ break
+ flows.close()
+ self.dut_file_dir = '/tmp'
+ self.dut.session.copy_file_to(src_file, self.dut_file_dir)
+ self.fdir_file = "/tmp/testpmd_cmds_rte_flow_fdir_rules"
def create_testpmd_command(self):
"""
Create testpmd command for non-pipeline mode
"""
#Prepare testpmd EAL and parameters
- all_eal_param = self.dut.create_eal_parameters(ports=[0])
- command = "./%s/app/testpmd %s --log-level=\"ice,8\" -- -i %s" % (self.dut.target, all_eal_param, "--rxq=8 --txq=8 --cmdline-file=/tmp/testpmd_cmds_rte_flow_fdir_rules")
+ all_eal_param = self.dut.create_eal_parameters(cores='1S/4C/1T', ports=[0])
+ command = "./%s/app/testpmd %s --log-level=\"ice,8\" -- -i %s" % (self.dut.target, all_eal_param, "--rxq=16 --txq=16 --cmdline-file=%s" % self.fdir_file)
+ # command = "./%s/app/testpmd %s --log-level=\"ice,8\" -- -i %s" % (self.dut.target, all_eal_param, "--rxq=16 --txq=16")
return command
def create_testpmd_command_pipeline_mode(self):
@@ -2526,19 +4579,24 @@ class CVLSwitchFilterTest(TestCase):
Create testpmd command for pipeline mode
"""
#Prepare testpmd EAL and parameters
- all_eal_param = self.dut.create_eal_parameters(ports=[0], port_options={0:"pipeline-mode-support=1"})
- command = "./%s/app/testpmd %s --log-level=\"ice,8\" -- -i %s" % (self.dut.target, all_eal_param, "--rxq=8 --txq=8")
+ all_eal_param = self.dut.create_eal_parameters(cores='1S/4C/1T', ports=[0], port_options={0:"pipeline-mode-support=1"})
+ command = "./%s/app/testpmd %s --log-level=\"ice,8\" -- -i %s" % (self.dut.target, all_eal_param, "--rxq=16 --txq=16")
return command
- def get_rule_number(self,outstring):
+ def launch_testpmd(self, is_non_pipeline):
"""
- get the rule number.
+ launch testpmd with the command
"""
- result_scanner = r'Flow rule #(\d+) created'
- scanner = re.compile(result_scanner, re.DOTALL)
- m = scanner.search(outstring)
- rule_num = int(m.group(1))
- return rule_num
+ if is_non_pipeline:
+ command = self.create_testpmd_command()
+ else:
+ command = self.create_testpmd_command_pipeline_mode()
+ out = self.dut.send_expect(command, "testpmd> ", 300)
+ self.dut.send_expect("port config all rss all", "testpmd> ", 15)
+ self.dut.send_expect("port config 0 rss-hash-key ipv4 1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd", "testpmd> ", 15)
+ self.dut.send_expect("rx_vxlan_port add 4789 0", "testpmd> ", 15)
+ self.dut.send_expect("set fwd rxonly", "testpmd> ", 15)
+ self.dut.send_expect("set verbose 1", "testpmd> ", 15)
def send_and_check_packets(self, dic, port):
"""
@@ -2556,16 +4614,16 @@ class CVLSwitchFilterTest(TestCase):
result_flag, log_msg = dic["check_func"]["func"](out, dic["check_func"]["param"], dic["expect_results"])
return result_flag, log_msg
- def send_packet_get_queue(self, dic):
+ def send_packet_get_queue(self, packets_list):
"""
general packets processing workflow.
"""
self.dut.send_expect("start", "testpmd> ")
# send packets
- for per_packet in dic["scapy_str"]:
- pkt = Packet(pkt_str=per_packet)
- pkt.send_pkt(self.tester, tx_port=self.__tx_iface, count=1)
- out = self.dut.send_expect("stop", "testpmd> ")
+ self.pkt.update_pkt(packets_list)
+ self.pkt.send_pkt(self.tester, tx_port=self.__tx_iface, count=1, timeout=370)
+ time.sleep(3)
+ out = self.dut.send_expect("stop", "testpmd> ", 15)
p = re.compile(r"Forward Stats for RX Port= \d+/Queue=(\s?\d+)")
res = p.findall(out)
default_queue = [int(i) for i in res]
@@ -2578,10 +4636,12 @@ class CVLSwitchFilterTest(TestCase):
queue_list = list(range(1, pmd_queue))
# check if expect_queue length is power of 2
q_len = len(expect_queue)
- self.verify(q_len & (q_len - 1) == 0, "defualt_queue length is not power of 2!")
+ self.verify(q_len & (q_len - 1) == 0, "default_queue length is not power of 2!")
for q in default_queue:
if q in queue_list:
queue_list.remove(q)
+ if queue_list == []:
+ return []
# according to expect_queue length get available queue
set_queue_list = []
if q_len == 1:
@@ -2593,8 +4653,149 @@ class CVLSwitchFilterTest(TestCase):
list_group = [j for i, j in g]
if len(list_group) >= q_len:
set_queue_list = list_group[:q_len]
+ break
return set_queue_list
+ def create_switch_filter_rule(self, rte_flow_pattern, pattern_name="", overall_result=True, check_stats=True):
+ """
+ create switch filter rules
+ """
+ s = "Succeeded to create (2) flow"
+ p = re.compile(r"Flow rule #(\d+) created")
+ rule_list = []
+ if isinstance(rte_flow_pattern, list):
+ for rule in rte_flow_pattern:
+ out = self.dut.send_expect(rule, "testpmd> ") #create a rule
+ if s not in out:
+ rule_list.append(False)
+ else:
+ m = p.search(out)
+ if m:
+ rule_list.append(m.group(1))
+ else:
+ rule_list.append(False)
+ elif isinstance(rte_flow_pattern, str):
+ out = self.dut.send_expect(rte_flow_pattern, "testpmd> ") # create a rule
+ if s not in out:
+ rule_list.append(False)
+ else:
+ m = p.search(out)
+ if m:
+ rule_list.append(m.group(1))
+ else:
+ rule_list.append(False)
+ else:
+ raise Exception("unsupported rule type, only accept list or str")
+ if check_stats:
+ if all(rule_list):
+ result_flag = True
+ log_msg = ""
+ else:
+ result_flag = False
+ log_msg = "some rules not created successfully, result %s, rule %s" % (rule_list, rte_flow_pattern)
+ overall_result = self.save_results(pattern_name, "create rule", result_flag, log_msg, overall_result)
+ return result_flag, overall_result, rule_list
+ else:
+ return rule_list
+
+ def validate_switch_filter_rule(self, rte_flow_pattern, pattern_name="", overall_result=True, check_stats=True):
+ # validate rule.
+ p = "Flow rule validated"
+ rule_list = []
+ if isinstance(rte_flow_pattern, list):
+ for i in rte_flow_pattern:
+ length = len(i)
+ rule_rep = i[0:5] + "validate" + i[11:length]
+ out = self.dut.send_expect(rule_rep, "testpmd> ") #validate a rule
+ if (p in out) and ("Failed" not in out):
+ rule_list.append(True)
+ else:
+ rule_list.append(False)
+ elif isinstance(rte_flow_pattern, str):
+ length = len(rte_flow_pattern)
+ rule_rep = rte_flow_pattern[0:5] + "validate" + rte_flow_pattern[11:length]
+ out = self.dut.send_expect(rule_rep, "testpmd> ") #validate a rule
+ if (p in out) and ("Failed" not in out):
+ rule_list.append(True)
+ else:
+ rule_list.append(False)
+ else:
+ raise Exception("unsupported rule type, only accept list or str")
+ if check_stats:
+ if all(rule_list):
+ result_flag = True
+ log_msg = ""
+ else:
+ result_flag = False
+ log_msg = "some rules not validated successfully, result %s, rule %s" % (rule_list, rte_flow_pattern)
+ overall_result = self.save_results(pattern_name, "validate rule", result_flag, log_msg, overall_result)
+ return result_flag, overall_result
+ else:
+ return rule_list
+
+ def check_switch_filter_rule_list(self, port_id, rule_list=[], is_non_pipeline=True, is_need_rss_rule=True, pattern_name="", overall_result="", flag="", check_stats=True):
+ """
+ check the rules in list identical to ones in rule_list
+ """
+ out = self.dut.send_expect("flow list %d" % port_id, "testpmd> ", 15)
+ p = re.compile(r"ID\s+Group\s+Prio\s+Attr\s+Rule")
+ m = p.search(out)
+ if not m:
+ result = []
+ else:
+ p_spec = re.compile("^(\d+)\s")
+ out_lines = out.splitlines()
+ res = filter(bool, map(p_spec.match, out_lines))
+ result = [i.group(1) for i in res]
+ if is_non_pipeline:
+ #remove 15360 fdir rules id
+ del result[:15360]
+ if is_need_rss_rule:
+ #remove rss rule id
+ del result[0]
+ if check_stats:
+ if result == rule_list:
+ result_flag = True
+ log_msg = ""
+ else:
+ result_flag = False
+ log_msg = "the rule list is not the same. expect %s, result %s" % (rule_list, result)
+ overall_result = self.save_results(pattern_name, "check rule list after "+flag, result_flag, log_msg, overall_result)
+ return result_flag, overall_result
+ else:
+ return result
+
+ def destroy_switch_filter_rule(self, port_id, rule_list, pattern_name="", overall_result=True, check_stats=True):
+ p = re.compile(r"Flow rule #(\d+) destroyed")
+ destroy_list = []
+ if isinstance(rule_list, list):
+ for i in rule_list:
+ out = self.dut.send_expect("flow destroy %s rule %s" % (port_id, i), "testpmd> ", 15)
+ m = p.search(out)
+ if m:
+ destroy_list.append(m.group(1))
+ else:
+ destroy_list.append(False)
+ else:
+ out = self.dut.send_expect("flow destroy %s rule %s" % (port_id, rule_list), "testpmd> ", 15)
+ m = p.search(out)
+ if m:
+ destroy_list.append(m.group(1))
+ else:
+ destroy_list.append(False)
+ rule_list = [rule_list]
+ if check_stats:
+ if sorted(destroy_list) == sorted(rule_list):
+ result_flag = True
+ log_msg = ""
+ else:
+ result_flag = False
+ log_msg = "flow rule destroy failed, expect %s result %s" % (rule_list, destroy_list)
+ overall_result = self.save_results(pattern_name, "destroy rule list", result_flag, log_msg, overall_result)
+ return result_flag, overall_result
+ else:
+ return destroy_list
+
def save_results(self, pattern_name, flag, result_flag, log_msg, overall_result):
"""
save results to dictionary: test_results.
@@ -2607,135 +4808,15 @@ class CVLSwitchFilterTest(TestCase):
overall_result = overall_result and result_flag
return overall_result
- def _rte_flow_validate_pattern(self, test_vectors, command, is_vxlan):
-
+ def display_results(self):
global test_results
-
- out = self.dut.send_expect(command, "testpmd> ", 300)
- self.dut.send_expect("port config 0 rss-hash-key ipv4 1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd", "testpmd> ", 15)
- if is_vxlan:
- self.dut.send_expect("rx_vxlan_port add 4789 0", "testpmd> ", 15)
- self.dut.send_expect("set fwd rxonly", "testpmd> ", 15)
- self.dut.send_expect("set verbose 1", "testpmd> ", 15)
- time.sleep(2)
-
- overall_result = True
- test_results.clear()
- for tv in test_vectors:
- # get packet default_queue number
- mismatched_dic = tv["mismatched"]
- default_queue = self.send_packet_get_queue(mismatched_dic)
-
- # check if default_queue same with expect_queue
- expect_queue = tv["mismatched"]["check_func"]["param"]["expect_queues"]
- if expect_queue != "null":
- if isinstance(expect_queue, int):
- eq_list = []
- eq_list.append(expect_queue)
- elif isinstance(expect_queue, list):
- eq_list = expect_queue
- recover_flag = list(set(eq_list) & set(default_queue))
- else:
- recover_flag = None
-
- # if default_queue has same one with expect_queue, recover rule
- if recover_flag:
- # exclude defult_queue number and get set_queue
- set_queue_list = self.get_available_queue_num(default_queue, eq_list)
- # recover rule command and check queue
- if isinstance(expect_queue, int):
- rule_command = tv["rte_flow_pattern"].replace("/ end actions queue index %s" % str(expect_queue),
- "/ end actions queue index %s" % str(set_queue_list[0]))
- tv["matched"]["check_func"]["param"]["expect_queues"] = set_queue_list[0]
- tv["mismatched"]["check_func"]["param"]["expect_queues"] = set_queue_list[0]
- elif isinstance(expect_queue, list):
- q = [str(i) for i in expect_queue]
- expect_queue_str = " ".join(q)
- s = [str(i) for i in set_queue_list]
- set_queue_str = " ".join(s)
- rule_command = tv["rte_flow_pattern"].replace("/ end actions rss queues %s" % expect_queue_str,
- "/ end actions rss queues %s" % set_queue_str)
- tv["matched"]["check_func"]["param"]["expect_queues"] = set_queue_list
- tv["mismatched"]["check_func"]["param"]["expect_queues"] = set_queue_list
- else:
- rule_command = tv["rte_flow_pattern"]
-
- pattern_name = tv["name"]
- test_results[pattern_name] = OrderedDict()
-
- out = self.dut.send_expect(rule_command, "testpmd> ", 15) #create a rule
- #get the rule number
- rule_num = self.get_rule_number(out)
-
- #check whether the switch rule or fdir rule is created
- if "Succeeded to create (2) flow" not in out:
- result_flag = False
- log_msg = "The rule is not created as switch."
- overall_result = self.save_results(pattern_name, "rule", result_flag, log_msg, overall_result)
- self.dut.send_expect("flow destroy %d rule %d" % (self.dut_ports[0], rule_num), "testpmd> ")
- continue
-
- #check if the rule is in list
- out = self.dut.send_expect("flow list %d" % self.dut_ports[0], "testpmd> ", 15)
- rule_in_list_flag = rfc.check_rule_in_list_by_id(out, rule_num) #check if the rule still in list
- if not rule_in_list_flag:
- result_flag = False
- log_msg = "Flow rule #%d is not in list." % rule_num
- overall_result = self.save_results(pattern_name, "rule", result_flag, log_msg, overall_result)
- self.dut.send_expect("flow destroy %d rule %d" % (self.dut_ports[0], rule_num), "testpmd> ")
- continue
-
- #matched part
- matched_dic = tv["matched"]
- result_flag, log_msg = self.send_and_check_packets(matched_dic, self.dut_ports[0])
- overall_result = self.save_results(pattern_name, "matched", result_flag, log_msg, overall_result)
-
- #mismatched part
- mismatched_dic = tv["mismatched"]
- if len(list(mismatched_dic.keys())) != 0:
- result_flag, log_msg = self.send_and_check_packets(mismatched_dic, self.dut_ports[0])
- overall_result = self.save_results(pattern_name, "mismatched", result_flag, log_msg, overall_result)
-
- self.dut.send_expect("flow destroy %d rule %d" % (self.dut_ports[0], rule_num), "testpmd> ")
- out = self.dut.send_expect("flow list %d" % self.dut_ports[0], "testpmd> ", 15)
- #check if the rule has been destroyed
- rule_in_list_flag = rfc.check_rule_in_list_by_id(out, rule_num) #check if the rule still in list
- if rule_in_list_flag:
- result_flag = False
- log_msg = "Flow rule #%d still exists, not been destroyed." % rule_num
- else:
- #send matched packets, check the packets not to the corresponding queues
- check_destroy_dict = copy.deepcopy(matched_dic)
- check_destroy_dict["check_func"]["func"] = mismatched_dic["check_func"]["func"]
- result_flag, log_msg = self.send_and_check_packets(check_destroy_dict, self.dut_ports[0])
- overall_result = self.save_results(pattern_name, "destroy", result_flag, log_msg, overall_result)
-
- #check if the rules are all destroyed
- self.dut.send_expect("flow flush %d" % self.dut_ports[0], "testpmd> ")
- out = self.dut.send_expect("flow list %d" % self.dut_ports[0], "testpmd> ", 15)
- out_lines=out.splitlines()
- if len(out_lines) == 1:
- result_flag = True
- log_msg = ""
- else:
- result_flag = False
- log_msg = "flow flush failed, rules still exist."
-
- #save the result of executing the command "flow flush 0"
- pattern_name = "flow flush %d" % self.dut_ports[0]
- test_results[pattern_name] = OrderedDict()
- overall_result = self.save_results(pattern_name, "flush", result_flag, log_msg, overall_result)
-
- self.dut.send_expect("quit", "#")
#print the results of the test case
count = 1
for pattern in list(test_results.keys()):
print(str(count)+". "+pattern)
-
for flag in list(test_results[pattern].keys()):
result_flag = test_results[pattern][flag]["result_flag"]
log_msg = test_results[pattern][flag]["log_msg"]
-
print(flag+": ", end=' ')
result = ""
if result_flag:
@@ -2744,215 +4825,794 @@ class CVLSwitchFilterTest(TestCase):
else:
result = "failed"
print(RED(result+", "+log_msg))
-
print()
count += 1
- self.verify(overall_result == True, "Some test case failed.")
- #vxlan non-pipeline mode
- def test_mac_ipv4_vxlan_ipv4_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_frag, command, is_vxlan = True)
+ def check_and_reset_queues(self, tv, default_queue, pattern_name, overall_result):
+ # check if default_queue and queues in rule have intersection
+ expect_queue = tv["matched"]["check_func"]["param"]["expect_queues"]
+ if expect_queue != "null":
+ if isinstance(expect_queue, int):
+ eq_list = []
+ eq_list.append(expect_queue)
+ elif isinstance(expect_queue, list):
+ eq_list = expect_queue
+ recover_flag = list(set(eq_list) & set(default_queue))
+ else:
+ recover_flag = None
+ # if default_queue has intersection with expect_queue, reset queues
+ if recover_flag:
+ # exclude default_queue and get set_queue
+ set_queue_list = self.get_available_queue_num(default_queue, eq_list, 16)
+ if not set_queue_list:
+ result_flag = False
+ log_msg = "No enough queues to avoid default_queue. Please give more queues when launch testpmd."
+ overall_result = self.save_results(pattern_name, "get queues", result_flag, log_msg, overall_result)
+ return result_flag, overall_result, tv
+ # reset queues in the rule
+ if isinstance(expect_queue, int):
+ rule_command = tv["rte_flow_pattern"].replace("/ end actions queue index %s" % str(expect_queue),
+ "/ end actions queue index %s" % str(set_queue_list[0]))
+ tv["matched"]["check_func"]["param"]["expect_queues"] = set_queue_list[0]
+ tv["mismatched"]["check_func"]["param"]["expect_queues"] = set_queue_list[0]
+ elif isinstance(expect_queue, list):
+ q = [str(i) for i in expect_queue]
+ expect_queue_str = " ".join(q)
+ s = [str(i) for i in set_queue_list]
+ set_queue_str = " ".join(s)
+ rule_command = tv["rte_flow_pattern"].replace("/ end actions rss queues %s" % expect_queue_str,
+ "/ end actions rss queues %s" % set_queue_str)
+ tv["matched"]["check_func"]["param"]["expect_queues"] = set_queue_list
+ tv["mismatched"]["check_func"]["param"]["expect_queues"] = set_queue_list
+ tv["rte_flow_pattern"] = rule_command
+ return True, overall_result, tv
+
+ def _rte_flow_validate_pattern(self, test_vectors, launch_testpmd=True):
+
+ global test_results
+ is_non_pipeline = test_vectors[0]["configuration"]["is_non_pipeline"]
+ is_need_rss_rule = test_vectors[0]["configuration"]["is_need_rss_rule"]
+ if launch_testpmd:
+ #launch testpmd
+ self.launch_testpmd(is_non_pipeline)
+ test_results.clear()
+ overall_result = True
+ count = 1
+ for tv in test_vectors:
+ pattern_name = tv["name"]
+ test_results[pattern_name] = OrderedDict()
+ # get the queues that packets originally came to
+ if count == 1:
+ packets_list = tv["matched"]["scapy_str"] + tv["mismatched"]["scapy_str"]
+ default_queue = self.send_packet_get_queue(packets_list)
+ count += 1
+ result_flag, overall_result, tv = self.check_and_reset_queues(tv, default_queue, pattern_name, overall_result)
+ if not result_flag:
+ continue
+
+ #validate a rule
+ result_flag, overall_result = self.validate_switch_filter_rule(tv["rte_flow_pattern"], pattern_name, overall_result)
+ if not result_flag:
+ continue
+ result_flag, overall_result = self.check_switch_filter_rule_list(self.dut_ports[0], [], is_non_pipeline, is_need_rss_rule, pattern_name, overall_result, "validate")
+ if not result_flag:
+ continue
+ #create a rule
+ result_flag, overall_result, rule_list = self.create_switch_filter_rule(tv["rte_flow_pattern"], pattern_name, overall_result) #create a rule
+ if not result_flag:
+ continue
+ result_flag, overall_result = self.check_switch_filter_rule_list(self.dut_ports[0], rule_list, is_non_pipeline, is_need_rss_rule, pattern_name, overall_result, "create")
+ if not result_flag:
+ continue
+ #send matched packets and check
+ matched_dic = tv["matched"]
+ result_flag, log_msg = self.send_and_check_packets(matched_dic, self.dut_ports[0])
+ overall_result = self.save_results(pattern_name, "matched packets", result_flag, log_msg, overall_result)
+ #send mismatched packets and check
+ mismatched_dic = tv["mismatched"]
+ if len(list(mismatched_dic.keys())) != 0:
+ result_flag, log_msg = self.send_and_check_packets(mismatched_dic, self.dut_ports[0])
+ overall_result = self.save_results(pattern_name, "mismatched", result_flag, log_msg, overall_result)
+ #destroy rule and send matched packets
+ result_flag, overall_result = self.destroy_switch_filter_rule(0, rule_list, pattern_name, overall_result)
+ if not result_flag:
+ continue
+ result_flag, overall_result = self.check_switch_filter_rule_list(self.dut_ports[0], [], is_non_pipeline, is_need_rss_rule, pattern_name, overall_result, "destroy")
+ if not result_flag:
+ continue
+ #send matched packets and check
+ check_destroy_dict = copy.deepcopy(matched_dic)
+ check_destroy_dict["check_func"]["func"] = mismatched_dic["check_func"]["func"]
+ result_flag, log_msg = self.send_and_check_packets(check_destroy_dict, self.dut_ports[0])
+ overall_result = self.save_results(pattern_name, "matched packets after destroying", result_flag, log_msg, overall_result)
+ self.display_results()
+ self.verify(overall_result == True, "Some subcase failed.")
- def test_mac_ipv4_vxlan_ipv4_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_pay, command, is_vxlan = True)
+ #vxlan non-pipeline mode
+ def test_mac_ipv4_vxlan_ipv4(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4)
def test_mac_ipv4_vxlan_ipv4_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_udp_pay, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_udp_pay)
def test_mac_ipv4_vxlan_ipv4_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_tcp, command, is_vxlan = True)
-
- def test_mac_ipv4_vxlan_mac_ipv4_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_frag, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_tcp)
- def test_mac_ipv4_vxlan_mac_ipv4_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_pay, command, is_vxlan = True)
+ def test_mac_ipv4_vxlan_mac_ipv4(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4)
def test_mac_ipv4_vxlan_mac_ipv4_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_udp_pay, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_udp_pay)
def test_mac_ipv4_vxlan_mac_ipv4_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_tcp, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_mac_ipv4_tcp)
#nvgre non-pipeline mode
- def test_mac_ipv4_nvgre_ipv4_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_frag, command, is_vxlan = False)
-
- def test_mac_ipv4_nvgre_ipv4_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_pay, command, is_vxlan = False)
+ def test_mac_ipv4_nvgre_ipv4(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4)
def test_mac_ipv4_nvgre_ipv4_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_udp_pay, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_udp_pay)
def test_mac_ipv4_nvgre_ipv4_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_tcp, command, is_vxlan = False)
-
- def test_mac_ipv4_nvgre_mac_ipv4_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_frag, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_tcp)
- def test_mac_ipv4_nvgre_mac_ipv4_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_pay, command, is_vxlan = False)
+ def test_mac_ipv4_nvgre_mac_ipv4(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4)
def test_mac_ipv4_nvgre_mac_ipv4_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_udp_pay, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_udp_pay)
def test_mac_ipv4_nvgre_mac_ipv4_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_tcp, command, is_vxlan = False)
-
- #pppoed non-pipeline mode
- def test_mac_pppod_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppod_pay, command, is_vxlan = False)
-
- #pppoes non-pipeline mode
- def test_mac_pppoe_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_pay, command, is_vxlan = False)
-
- def non_support_test_mac_pppoe_ipv4_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_frag, command, is_vxlan = False)
-
- def test_mac_pppoe_ipv4_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_pay, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv4_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_udp_pay, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv4_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_tcp, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv4_sctp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_sctp, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv4_icmp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_icmp, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_frag(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_frag, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_pay, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_udp_pay(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_tcp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_tcp, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_sctp(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_sctp, command, is_vxlan = False)
-
- def not_support_test_mac_pppoe_ipv6_icmpv6(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_icmpv6, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_mac_ipv4_tcp)
#vxlan pipeline mode
def test_mac_ipv4_vxlan_ipv4_frag_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_frag_pipeline_mode, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_frag_pipeline_mode)
+
+ def test_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_pay_proto_tcp_pipeline_mode)
+
+ def test_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_pay_proto_udp_pipeline_mode)
def test_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_udp_pay_pipeline_mode)
def test_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode, command, is_vxlan = True)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_vxlan_ipv4_tcp_pipeline_mode)
#nvgre pipeline mode
def test_mac_ipv4_nvgre_ipv4_frag_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_frag_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_frag_pipeline_mode)
+
+ def test_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_pay_proto_tcp_pipeline_mode)
+
+ def test_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_pay_proto_udp_pipeline_mode)
def test_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_udp_pay_pipeline_mode)
def test_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_ipv4_tcp_pipeline_mode)
+
+ #ether filter non-pipeline mode
+ def test_ethertype_filter_pppoed(self):
+ self._rte_flow_validate_pattern(tvs_ethertype_filter_pppoed)
+
+ def test_ethertype_filter_pppoes(self):
+ #launch testpmd
+ self.launch_testpmd(True)
+ #create a pppoe rss rule to make the pppoe packets have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_ethertype_filter_pppoes, False)
+
+ #ether filter pipeline mode
+ def test_ethertype_filter_pppoed_pipeline_mode(self):
+ tvs_ethertype_filter_pppoed_pipeline_mode = copy.deepcopy(tvs_ethertype_filter_pppoed)
+ for tv in tvs_ethertype_filter_pppoed_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_ethertype_filter_pppoed_pipeline_mode)
+
+ def test_ethertype_filter_pppoes_pipeline_mode(self):
+ tvs_ethertype_filter_pppoes_pipeline_mode = copy.deepcopy(tvs_ethertype_filter_pppoes)
+ for tv in tvs_ethertype_filter_pppoes_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ #launch testpmd
+ self.launch_testpmd(False)
+ #create a pppoe rss rule to make the pppoe packets have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_ethertype_filter_pppoes_pipeline_mode, False)
#non-tunnel pipeline mode
def test_mac_ipv4_frag_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_frag_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_frag_pipeline_mode)
- def test_mac_ipv4_pay_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_pay_pipeline_mode, command, is_vxlan = False)
+ def test_mac_ipv4_pay_proto_tcp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_pay_proto_tcp_pipeline_mode)
+
+ def test_mac_ipv4_pay_proto_udp_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_pay_proto_udp_pipeline_mode)
def test_mac_ipv4_udp_pay_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_udp_pay_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_udp_pay_pipeline_mode)
def test_mac_ipv4_tcp_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_tcp_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_tcp_pipeline_mode)
+
+ def test_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_src_ipv6_dst_ipv6_pipeline_mode)
- def test_mac_ipv6_frag_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_frag_pipeline_mode, command, is_vxlan = False)
+ def test_mac_ipv6_dst_ipv6_tc_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_dst_ipv6_tc_pipeline_mode)
def test_mac_ipv6_udp_pay_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_udp_pay_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_udp_pay_pipeline_mode)
def test_mac_ipv6_tcp_pipeline_mode(self):
- command = self.create_testpmd_command_pipeline_mode()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_pipeline_mode)
+ #non-tunnel non-pipeline mode
def test_mac_ipv4_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_non_pipeline_mode)
def test_mac_ipv4_udp_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_udp_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_udp_non_pipeline_mode)
def test_mac_ipv4_tcp_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv4_tcp_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv4_tcp_non_pipeline_mode)
def test_mac_ipv6_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_non_pipeline_mode, command, is_vxlan = False)
-
- def test_mac_ipv6_frag_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_frag_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_non_pipeline_mode)
def test_mac_ipv6_udp_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_udp_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_udp_non_pipeline_mode)
def test_mac_ipv6_tcp_non_pipeline_mode(self):
- command = self.create_testpmd_command()
- self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_non_pipeline_mode, command, is_vxlan = False)
+ self._rte_flow_validate_pattern(tvs_mac_ipv6_tcp_non_pipeline_mode)
+
+ # 20.08
+ def test_mac_vlan_pppoe_ipv4_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id)
+
+ def test_mac_vlan_pppoe_ipv6_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id)
+
+ def test_mac_pppoe_ipv4_pay_session_id_proto_id_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_pay_session_id_proto_id)
+
+ def test_mac_pppoe_ipv6_pay_session_id_proto_id_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_pay_session_id_proto_id)
+
+ def test_mac_pppoe_ipv4_pay_ip_address_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_pay_ip_address)
+
+ def test_mac_pppoe_ipv4_udp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_udp_pay)
+
+ def test_mac_pppoe_ipv4_udp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port)
+
+ def test_mac_pppoe_ipv4_tcp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_tcp_pay)
+
+ def test_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port)
+ def test_mac_pppoe_ipv6_pay_ip_address_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_pay_ip_address)
+
+ def test_mac_pppoe_ipv6_udp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay)
+
+ def test_mac_pppoe_ipv6_udp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port)
+
+ def test_mac_pppoe_ipv6_tcp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_tcp_pay)
+
+ def test_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port)
+
+ def test_mac_vlan_pppoe_ipv4_pay_ip_address_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_pay_ip_address)
+
+ def test_mac_vlan_pppoe_ipv4_udp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_udp_pay)
+
+ def test_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port)
+
+ def test_mac_vlan_pppoe_ipv4_tcp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_tcp_pay)
+
+ def test_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port)
+
+ def test_mac_vlan_pppoe_ipv6_pay_ip_address_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_pay_ip_address)
+
+ def test_mac_vlan_pppoe_ipv6_udp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_udp_pay)
+
+ def test_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port)
+
+ def test_mac_vlan_pppoe_ipv6_tcp_pay_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_tcp_pay)
+
+ def test_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_non_pipeline_mode(self):
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port)
+
+ # pppoe control
+ def test_mac_pppoe_lcp_pay_non_pipeline_mode(self):
+ #launch testpmd
+ self.launch_testpmd(True)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_lcp_pay, False)
+
+ def test_mac_pppoe_ipcp_pay_non_pipeline_mode(self):
+ #launch testpmd
+ self.launch_testpmd(True)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipcp_pay, False)
+
+ def test_mac_vlan_pppoe_lcp_pay_non_pipeline_mode(self):
+ #launch testpmd
+ self.launch_testpmd(True)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_lcp_pay, False)
+
+ def test_mac_vlan_pppoe_ipcp_pay_non_pipeline_mode(self):
+ #launch testpmd
+ self.launch_testpmd(True)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipcp_pay, False)
+
+ # 20.08 pipeline mode
+ def test_mac_vlan_pppoe_ipv4_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id)
+ for tv in tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id)
+ for tv in tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_pay_session_id_proto_id)
+ for tv in tvs_mac_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_pay_session_id_proto_id_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_pay_session_id_proto_id)
+ for tv in tvs_mac_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_pay_session_id_proto_id_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_pay_ip_address_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_pay_ip_address_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_pay_ip_address)
+ for tv in tvs_mac_pppoe_ipv4_pay_ip_address_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_pay_ip_address_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_udp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_udp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_udp_pay)
+ for tv in tvs_mac_pppoe_ipv4_udp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_udp_pay_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port)
+ for tv in tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_tcp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_tcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_tcp_pay)
+ for tv in tvs_mac_pppoe_ipv4_tcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_tcp_pay_pipeline_mode)
+
+ def test_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port)
+ for tv in tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_pay_ip_address_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_pay_ip_address_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_pay_ip_address)
+ for tv in tvs_mac_pppoe_ipv6_pay_ip_address_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_pay_ip_address_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_udp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_udp_pay)
+ for tv in tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port)
+ for tv in tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_tcp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_tcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_tcp_pay)
+ for tv in tvs_mac_pppoe_ipv6_tcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_tcp_pay_pipeline_mode)
+
+ def test_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port)
+ for tv in tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv4_pay_ip_address_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_pay_ip_address_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_pay_ip_address)
+ for tv in tvs_mac_vlan_pppoe_ipv4_pay_ip_address_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_pay_ip_address_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv4_udp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_udp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_udp_pay)
+ for tv in tvs_mac_vlan_pppoe_ipv4_udp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_udp_pay_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port)
+ for tv in tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_udp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv4_tcp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_tcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_tcp_pay)
+ for tv in tvs_mac_vlan_pppoe_ipv4_tcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_tcp_pay_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port)
+ for tv in tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv4_tcp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_pay_ip_address_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_pay_ip_address_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_pay_ip_address)
+ for tv in tvs_mac_vlan_pppoe_ipv6_pay_ip_address_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_pay_ip_address_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_udp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_udp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_udp_pay)
+ for tv in tvs_mac_vlan_pppoe_ipv6_udp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_udp_pay_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port)
+ for tv in tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_udp_pay_non_src_dst_port_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_tcp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_tcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_tcp_pay)
+ for tv in tvs_mac_vlan_pppoe_ipv6_tcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_tcp_pay_pipeline_mode)
+
+ def test_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port)
+ for tv in tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipv6_tcp_pay_non_src_dst_port_pipeline_mode)
+
+ # 20.08 pppoe control
+ def test_mac_pppoe_lcp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_lcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_lcp_pay)
+ for tv in tvs_mac_pppoe_lcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ #launch testpmd
+ self.launch_testpmd(False)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_lcp_pay_pipeline_mode, False)
+
+ def test_mac_pppoe_ipcp_pay_pipeline_mode(self):
+ tvs_mac_pppoe_ipcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipcp_pay)
+ for tv in tvs_mac_pppoe_ipcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ #launch testpmd
+ self.launch_testpmd(False)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipcp_pay_pipeline_mode, False)
+
+ def test_mac_vlan_pppoe_lcp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_lcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_lcp_pay)
+ for tv in tvs_mac_vlan_pppoe_lcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ #launch testpmd
+ self.launch_testpmd(False)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_lcp_pay_pipeline_mode, False)
+
+ def test_mac_vlan_pppoe_ipcp_pay_pipeline_mode(self):
+ tvs_mac_vlan_pppoe_ipcp_pay_pipeline_mode = copy.deepcopy(tvs_mac_vlan_pppoe_ipcp_pay)
+ for tv in tvs_mac_vlan_pppoe_ipcp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ #launch testpmd
+ self.launch_testpmd(False)
+ #create a pppoe rss rule to make the pppoe control have hash value, and queue group action work
+ self.dut.send_expect("flow create 0 ingress pattern eth / pppoes / end actions rss types pppoe end key_len 0 queues end / end", "testpmd> ", 15)
+ self._rte_flow_validate_pattern(tvs_mac_vlan_pppoe_ipcp_pay_pipeline_mode, False)
+
+ def test_negative_case(self):
+ """
+ negative cases
+ """
+ self.launch_testpmd(False)
+ rules = {
+ "invalid parameters of queue index" : "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 16 / end",
+ "invalid parameters of rss queues" : [
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues 1 2 3 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues 0 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues 1 2 3 5 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues 15 16 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions rss queues 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 end / end"],
+ "unsupported input set" : "flow create 0 priority 0 ingress pattern eth / ipv4 dst is 192.168.0.1 / nvgre tni is 2 / eth dst is 68:05:ca:8d:ed:a8 / ipv4 src is 192.168.1.2 dst is 192.168.1.3 tos is 4 / end actions queue index 1 / end",
+ "multiple actions" : "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 1 / rss queues 2 3 end / end",
+ "void action" : "flow create 0 priority 0 ingress pattern eth / ipv4 / udp src is 25 dst is 23 / end actions end",
+ "unsupported action": "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions mark id 1 / end",
+ "void input set value" : "flow create 0 priority 0 ingress pattern eth / ipv4 / end actions queue index 1 / end",
+ "invalid port" : "flow create 1 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 1 / end"
+ }
+ # all the rules failed to validate and create
+
+ # invalid parameters of queue index
+ rule_list = self.validate_switch_filter_rule(rules["invalid parameters of queue index"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["invalid parameters of queue index"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # invalid parameters of rss queues
+ rule_list = self.validate_switch_filter_rule(rules["invalid parameters of rss queues"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["invalid parameters of rss queues"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # unsupported input set
+ rule_list = self.validate_switch_filter_rule(rules["unsupported input set"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["unsupported input set"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # duplicated rules
+ rule = "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 1 / end"
+ rule_list = self.create_switch_filter_rule(rule, check_stats=False)
+ self.verify(all(rule_list), "some rules create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == rule_list, "the rule list is not the same. expect %s, result %s" % (rule_list, result))
+ rule_list_dupli = self.create_switch_filter_rule(rule, check_stats=False)
+ self.verify(not any(rule_list_dupli), "all rules should create failed, result %s" % rule_list_dupli)
+ result_dupli = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result_dupli == rule_list, "the rule list is not the same. expect %s, result %s" % (rule_list, result_dupli))
+ self.dut.send_expect("flow destroy 0 rule %s" % rule_list[0], "testpmd> ", 15)
+
+ # conflicted rules
+ rule = "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 1 / end"
+ rule_list = self.create_switch_filter_rule(rule, check_stats=False)
+ self.verify(all(rule_list), "some rules create failed, result %s, rule %s" % (rule_list, rule))
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == rule_list, "the rule list is not the same. expect %s, result %s" % (rule_list, result))
+ rule1 = "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions queue index 2 / end"
+ rule_list1 = self.create_switch_filter_rule(rule1, check_stats=False)
+ self.verify(not any(rule_list1), "all rules should create failed, result %s" % rule_list1)
+ rule2 = "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 ttl is 2 tos is 4 / end actions drop / end"
+ rule_list2 = self.create_switch_filter_rule(rule2, check_stats=False)
+ self.verify(not any(rule_list2), "all rules should create failed, result %s" % rule_list2)
+ result1 = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result1 == rule_list, "the rule list is not the same. expect %s, result %s" % (rule_list, result1))
+ self.dut.send_expect("flow destroy 0 rule %s" % rule_list[0], "testpmd> ", 15)
+
+ # multiple actions
+ rule_list = self.validate_switch_filter_rule(rules["multiple actions"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["multiple actions"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # void action
+ rule_list = self.validate_switch_filter_rule(rules["void action"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["void action"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # delete a non-existing rule
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ out = self.dut.send_expect("flow destroy 0 rule 0", "testpmd> ", 15)
+ self.verify("error" not in out, "It should be no error message.")
+
+ # add long switch rule
+ rule = "flow create 0 priority 0 ingress pattern eth / pppoes / ipv6 src is CDCD:910A:2222:5498:8475:1111:3900:1536 dst is CDCD:910A:2222:5498:8475:1111:3900:2022 / udp src is 25 dst is 23 / end actions queue index 1 / end"
+ rule_list = self.validate_switch_filter_rule(rule, check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rule, check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode = copy.deepcopy(tvs_mac_pppoe_ipv6_udp_pay)
+ for tv in tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode:
+ create_rule = tv["rte_flow_pattern"].replace("flow create 0", "flow create 0 priority 0")
+ tv["rte_flow_pattern"] = create_rule
+ tv["configuration"]["is_non_pipeline"] = False
+ self._rte_flow_validate_pattern(tvs_mac_pppoe_ipv6_udp_pay_pipeline_mode, False)
+
+ # void input set value
+ rule_list = self.validate_switch_filter_rule(rules["void input set value"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rules["void input set value"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ # invalid port
+ rule_list = self.validate_switch_filter_rule(rules["invalid port"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ result = self.check_switch_filter_rule_list(self.dut_ports[1], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % (rule_list, result))
+ rule_list = self.create_switch_filter_rule(rules["invalid port"], check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ # check there is no rule listed
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % (rule_list, result))
+ result = self.check_switch_filter_rule_list(self.dut_ports[1], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % (rule_list, result))
+
+ def test_unsupported_pattern_in_OS_default_package(self):
+ """
+ Validate and create PPPOE rule, GTPU rule, PFCP rule, l2tpv3 rule, esp rule and ah rule with OS default package
+ """
+ rule = ["flow create 0 priority 0 ingress pattern eth dst is 00:11:22:33:44:55 / pppoes seid is 3 / pppoe_proto_id is 0x0021 / end actions queue index 1 / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 / udp / gtpu teid is 0x12345678 / gtp_psc qfi is 0x34 / end actions drop / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 / udp / pfcp s_field is 0 / end actions queue index 1 / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 / l2tpv3oip session_id is 17 / end actions rss queues 2 3 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv6 / udp / esp spi is 8 / end actions rss queues 2 3 end / end",
+ "flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 / ah spi is 1 / end actions queue index 1 / end"]
+ #bind pf to kernel
+ self.bind_nics_driver(self.dut_ports, driver="ice")
+ self.dut.send_expect("cp %s %s" % (self.os_package_location, self.package_location), "# ")
+ self.re_load_ice_driver()
+ #bind pf to vfio-pci
+ self.bind_nics_driver(self.dut_ports, driver="vfio-pci")
+ self.launch_testpmd(False)
+
+ # rule_list = self.validate_switch_filter_rule(rule, check_stats=False)
+ # self.verify(not any(rule_list), "all rules should validate failed, result %s" % rule_list)
+ # result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ # self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+ rule_list = self.create_switch_filter_rule(rule, check_stats=False)
+ self.verify(not any(rule_list), "all rules should create failed, result %s" % rule_list)
+ result = self.check_switch_filter_rule_list(self.dut_ports[0], is_non_pipeline=False, is_need_rss_rule=False, check_stats=False)
+ self.verify(result == [], "the rule list is not the same. expect %s, result %s" % ([], result))
+
+ def tear_down(self):
+ """
+ Run after each test case.
+ """
+ # destroy all the rules on port 0
+ self.dut.send_expect("flow flush %d" % self.dut_ports[0], "testpmd> ", 300)
+ self.dut.send_expect("quit", "#")
+ if self.running_case == "test_unsupported_pattern_in_OS_default_package":
+ self.bind_nics_driver(self.dut_ports, driver="ice")
+ self.dut.send_expect("cp %s %s" % (self.comms_package_location, self.package_location), "# ")
+ self.re_load_ice_driver()
+ #bind pf to vfio-pci
+ self.bind_nics_driver(self.dut_ports, driver="vfio-pci")
+
+ def tear_down_all(self):
+ """
+ Run after each test suite.
+ """
+ self.dut.kill_all()
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-08-25 9:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-25 18:48 [dts] [PATCH V1 1/3] conf/cvl_switch_filter.cfg: add cvl_switch_filter.cfg Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 2/3] tests/rte_flow_common.py: improve the check functions for cvl switch filter Nannan Lu
2020-08-25 18:48 ` [dts] [PATCH V1 3/3] tests/TestSuite_cvl_switch_filter.py: add PPPOE cases and modify the format Nannan Lu
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).