mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
tc-testing: avoid action cookies with odd length.
Update odd length cookie hexstrings in csum.json, tunnel_key.json and bpf.json to be even length to comply with check enforced in commit 0149dabf2a1b ("tc: m_actions: check cookie hexstring len") in iproute2. Signed-off-by: Briana Oursler <briana.oursler@gmail.com> Reviewed-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: Davide Caratti <dcaratti@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3b0e7dc0be
commit
b6186d413b
@ -260,10 +260,10 @@
|
|||||||
255
|
255
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"cmdUnderTest": "$TC action add action bpf bytecode '4,40 0 0 12,21 0 1 2054,6 0 0 262144,6 0 0 0' index 4294967296 cookie 12345",
|
"cmdUnderTest": "$TC action add action bpf bytecode '4,40 0 0 12,21 0 1 2054,6 0 0 262144,6 0 0 0' index 4294967296 cookie 123456",
|
||||||
"expExitCode": "255",
|
"expExitCode": "255",
|
||||||
"verifyCmd": "$TC action ls action bpf",
|
"verifyCmd": "$TC action ls action bpf",
|
||||||
"matchPattern": "action order [0-9]*: bpf bytecode '4,40 0 0 12,21 0 1 2048,6 0 0 262144,6 0 0 0' default-action pipe.*cookie 12345",
|
"matchPattern": "action order [0-9]*: bpf bytecode '4,40 0 0 12,21 0 1 2048,6 0 0 262144,6 0 0 0' default-action pipe.*cookie 123456",
|
||||||
"matchCount": "0",
|
"matchCount": "0",
|
||||||
"teardown": [
|
"teardown": [
|
||||||
"$TC action flush action bpf"
|
"$TC action flush action bpf"
|
||||||
|
@ -469,7 +469,7 @@
|
|||||||
255
|
255
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum tcp continue index \\$i cookie aaabbbcccdddeee \\\"; args=\"\\$args\\$cmd\"; done && $TC actions add \\$args\"",
|
"cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum tcp continue index \\$i cookie 123456789abcde \\\"; args=\"\\$args\\$cmd\"; done && $TC actions add \\$args\"",
|
||||||
"expExitCode": "0",
|
"expExitCode": "0",
|
||||||
"verifyCmd": "$TC actions ls action csum",
|
"verifyCmd": "$TC actions ls action csum",
|
||||||
"matchPattern": "^[ \t]+index [0-9]* ref",
|
"matchPattern": "^[ \t]+index [0-9]* ref",
|
||||||
@ -492,7 +492,7 @@
|
|||||||
1,
|
1,
|
||||||
255
|
255
|
||||||
],
|
],
|
||||||
"bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum tcp continue index \\$i cookie aaabbbcccdddeee \\\"; args=\"\\$args\\$cmd\"; done && $TC actions add \\$args\""
|
"bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum tcp continue index \\$i cookie 123456789abcde \\\"; args=\"\\$args\\$cmd\"; done && $TC actions add \\$args\""
|
||||||
],
|
],
|
||||||
"cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum index \\$i \\\"; args=\"\\$args\\$cmd\"; done && $TC actions del \\$args\"",
|
"cmdUnderTest": "bash -c \"for i in \\`seq 1 32\\`; do cmd=\\\"action csum index \\$i \\\"; args=\"\\$args\\$cmd\"; done && $TC actions del \\$args\"",
|
||||||
"expExitCode": "0",
|
"expExitCode": "0",
|
||||||
|
@ -818,12 +818,12 @@
|
|||||||
1,
|
1,
|
||||||
255
|
255
|
||||||
],
|
],
|
||||||
"$TC actions add action tunnel_key set src_ip 10.10.10.1 dst_ip 20.20.20.2 dst_port 3128 nocsum id 1 index 1 cookie aabbccddeeff112233445566778800a"
|
"$TC actions add action tunnel_key set src_ip 10.10.10.1 dst_ip 20.20.20.2 dst_port 3128 nocsum id 1 index 1 cookie 123456"
|
||||||
],
|
],
|
||||||
"cmdUnderTest": "$TC actions replace action tunnel_key set src_ip 11.11.11.1 dst_ip 21.21.21.2 dst_port 3129 id 11 csum reclassify index 1 cookie a1b1c1d1",
|
"cmdUnderTest": "$TC actions replace action tunnel_key set src_ip 11.11.11.1 dst_ip 21.21.21.2 dst_port 3129 id 11 csum reclassify index 1 cookie 123456",
|
||||||
"expExitCode": "0",
|
"expExitCode": "0",
|
||||||
"verifyCmd": "$TC actions get action tunnel_key index 1",
|
"verifyCmd": "$TC actions get action tunnel_key index 1",
|
||||||
"matchPattern": "action order [0-9]+: tunnel_key.*set.*src_ip 11.11.11.1.*dst_ip 21.21.21.2.*key_id 11.*dst_port 3129.*csum reclassify.*index 1.*cookie a1b1c1d1",
|
"matchPattern": "action order [0-9]+: tunnel_key.*set.*src_ip 11.11.11.1.*dst_ip 21.21.21.2.*key_id 11.*dst_port 3129.*csum reclassify.*index 1.*cookie 123456",
|
||||||
"matchCount": "1",
|
"matchCount": "1",
|
||||||
"teardown": [
|
"teardown": [
|
||||||
"$TC actions flush action tunnel_key"
|
"$TC actions flush action tunnel_key"
|
||||||
|
Loading…
Reference in New Issue
Block a user