Skip to content

Commit

Permalink
add fallback to TCP tests (client side)
Browse files Browse the repository at this point in the history
test fallback to TCP in the following conditions:

- server replies with wrong protocol version
- server replies with mp_capable flag 'B' set
- server replies with mp_capable flag 'H' unset

related to: issue #3

Signed-off-by: Davide Caratti <[email protected]>
  • Loading branch information
dcaratti committed Jan 9, 2020
1 parent fa070f0 commit 59e6ff2
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
24 changes: 24 additions & 0 deletions gtests/net/mptcp/mp_capable/v1_connect_tcpfallback_flagB.pkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// connect() function, connection initiated by the kernel
`../common/defaults.sh`

0.0 socket(..., SOCK_STREAM, IPPROTO_MPTCP) = 3
+0.0 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
+0.0 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0

// Establish connection and verify that there was no error.

+0.0 connect(3, ..., ...) = -1 EINPROGRESS (Operation now in progress)
+0.0 > S 0:0(0) <mss 1460,sackOK,TS val 100 ecr 0,nop,wscale 8,mpcapable v1 flags[flag_h] nokey>
+0.0 < S. 0:0(0) ack 1 win 65535 <mss 1460,sackOK,TS val 700 ecr 100,nop,wscale 8,mpcapable v1 flags[flag_b,flag_h] key[skey=2] >
+0.0 > . 1:1(0) ack 1 win 256 <nop,nop,TS val 100 ecr 700>
0.200 getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
0.200 fcntl(3, F_SETFL, O_RDWR) = 0 // set back to blocking

// ensure that traffic plane is functional and does not use DSS

+0 write(3, ..., 1000) = 1000
+0 > P. 1:1001(1000) ack 1 <nop,nop,TS val 100 ecr 700>
+0 < P. 1:501(500) ack 1001 win 257
+0 > . 1001:1001(0) ack 501 <nop,nop,TS val 100 ecr 700>
+0 read(3, ..., 1000) = 500

24 changes: 24 additions & 0 deletions gtests/net/mptcp/mp_capable/v1_connect_tcpfallback_flagH.pkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// connect() function, connection initiated by the kernel
`../common/defaults.sh`

0.0 socket(..., SOCK_STREAM, IPPROTO_MPTCP) = 3
+0.0 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
+0.0 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0

// Establish connection and verify that there was no error.

+0.0 connect(3, ..., ...) = -1 EINPROGRESS (Operation now in progress)
+0.0 > S 0:0(0) <mss 1460,sackOK,TS val 100 ecr 0,nop,wscale 8,mpcapable v1 flags[flag_h] nokey>
+0.0 < S. 0:0(0) ack 1 win 65535 <mss 1460,sackOK,TS val 700 ecr 100,nop,wscale 8,mpcapable v1 flags 0x0 key[skey=2] >
+0.0 > . 1:1(0) ack 1 win 256 <nop,nop,TS val 100 ecr 700>
0.200 getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
0.200 fcntl(3, F_SETFL, O_RDWR) = 0 // set back to blocking

// ensure that traffic plane is functional and does not use DSS

+0 write(3, ..., 1000) = 1000
+0 > P. 1:1001(1000) ack 1 <nop,nop,TS val 100 ecr 700>
+0 < P. 1:501(500) ack 1001 win 257
+0 > . 1001:1001(0) ack 501 <nop,nop,TS val 100 ecr 700>
+0 read(3, ..., 1000) = 500

24 changes: 24 additions & 0 deletions gtests/net/mptcp/mp_capable/v1_connect_tcpfallback_wrongver.pkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// connect() function, connection initiated by the kernel
`../common/defaults.sh`

0.0 socket(..., SOCK_STREAM, IPPROTO_MPTCP) = 3
+0.0 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
+0.0 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0

// Establish connection and verify that there was no error.

+0.0 connect(3, ..., ...) = -1 EINPROGRESS (Operation now in progress)
+0.0 > S 0:0(0) <mss 1460,sackOK,TS val 100 ecr 0,nop,wscale 8,mpcapable v1 flags[flag_h] nokey>
+0.0 < S. 0:0(0) ack 1 win 65535 <mss 1460,sackOK,TS val 700 ecr 100,nop,wscale 8,mpcapable v0 flags[flag_h] key[ckey=3,skey=2] >
+0.0 > . 1:1(0) ack 1 win 256 <nop,nop,TS val 100 ecr 700>
0.200 getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
0.200 fcntl(3, F_SETFL, O_RDWR) = 0 // set back to blocking

// ensure that traffic plane is functional and does not use DSS

+0 write(3, ..., 1000) = 1000
+0 > P. 1:1001(1000) ack 1 <nop,nop,TS val 100 ecr 700>
+0 < P. 1:501(500) ack 1001 win 257
+0 > . 1001:1001(0) ack 501 <nop,nop,TS val 100 ecr 700>
+0 read(3, ..., 1000) = 500

0 comments on commit 59e6ff2

Please sign in to comment.