Commit Graph

2626 Commits

Author SHA1 Message Date
Lucas Clemente
5907bfa168 Fix KEX test on windows
This makes the code rotate the key if `time.Since(kexCurrentTime) == kexLifetime`, which prevents an issue with low-resolution clocks (e.g. in our appveyor tests).
2018-04-30 11:14:46 +02:00
Lucas Clemente
47fd869154 Merge pull request #1328 from lucas-clemente/lucas-clemente-patch-1
Fix unnecessary stack growth when parsing frames
2018-04-30 11:00:17 +02:00
Lucas Clemente
0d8f0be92b Fix unnecessary stack growth when parsing frames 2018-04-30 10:28:18 +02:00
Marten Seemann
0aa793876c Merge pull request #1327 from lucas-clemente/remove-stray-code-comment
remove stray commented code in the session
2018-04-30 17:18:35 +09:00
Marten Seemann
903747fdc7 remove stray commented code in the session 2018-04-29 20:48:03 +09:00
Marten Seemann
376fccbde2 Merge pull request #1322 from lucas-clemente/tlp
implement TLPs
2018-04-25 21:37:57 +09:00
Marten Seemann
1420b138d5 implement TLPs 2018-04-25 20:47:18 +09:00
Marten Seemann
dd03501f13 Merge pull request #1321 from lucas-clemente/fix-1308
fix deadlock when receiving two packets with diversification nonces
2018-04-24 21:33:26 +09:00
Marten Seemann
0c014c0aff fix deadlock when receiving two packets with diversification nonces 2018-04-24 21:14:58 +09:00
Marten Seemann
d6e9e3faa2 Merge pull request #1313 from lucas-clemente/fix-1305
implement the payload length field in the Long Header
2018-04-23 18:25:22 +09:00
Marten Seemann
cc536fb895 cut packets at the payload length when receiving 2018-04-23 17:47:17 +09:00
Marten Seemann
a7f550ae0f set the payload length on Long Headers when packing packets 2018-04-23 17:41:07 +09:00
Marten Seemann
596ef35a80 implement parsing and writing of the Payload Length Long Header field 2018-04-23 17:39:03 +09:00
Marten Seemann
0e58a679d6 Merge pull request #1319 from lucas-clemente/fix-1307
use different source and destination connection IDs
2018-04-23 17:29:45 +09:00
Marten Seemann
b1de5df2f8 Merge pull request #1311 from lucas-clemente/fix-1302
limit the size of the ACK frame
2018-04-23 17:23:52 +09:00
Marten Seemann
cb0395ae37 Merge pull request #1316 from lucas-clemente/fix-1310
implement PATH_CHALLENGE and PATH_RESPONSE frames
2018-04-23 17:13:39 +09:00
Marten Seemann
126de06cc0 Merge pull request #1320 from lucas-clemente/fix-vnp-logging
fix logging of version negotiation packets
2018-04-23 17:00:25 +09:00
Marten Seemann
f353658547 limit the size of an ACK frame to 1000 bytes 2018-04-23 16:44:39 +09:00
Marten Seemann
4891b65c4b refactor calculation of ACK ranges into a separate function 2018-04-23 16:44:38 +09:00
Marten Seemann
83b670841a Merge pull request #1318 from lucas-clemente/fix-1317
fix flaky key exchange generation test on AppVeyor
2018-04-23 16:41:30 +09:00
Marten Seemann
e813d41376 handle PATH_CHALLENGE frames, reject PATH_RESPONSE frames 2018-04-23 16:41:06 +09:00
Marten Seemann
108e574581 implement parsing and writing of the PATH_RESPONSE frame 2018-04-23 16:41:06 +09:00
Marten Seemann
f53f3eee9f implement parsing and writing of the PATH_CHALLENGE frame 2018-04-23 16:41:06 +09:00
Marten Seemann
3eee652ce5 Merge pull request #1315 from lucas-clemente/fix-1314
change the type byte of the IETF ACK frame from 0x0e to 0x0d
2018-04-23 16:40:35 +09:00
Marten Seemann
804eac7348 fix logging of version negotiation packets 2018-04-23 16:37:59 +09:00
Marten Seemann
cd359ec5e0 change the type byte of the IETF ACK frame from 0x0e to 0x0d 2018-04-23 15:57:50 +09:00
Marten Seemann
fae32101a0 use different source and destination connection IDs 2018-04-23 15:23:01 +09:00
Marten Seemann
dd5d376d94 improve packet handling in the client 2018-04-23 11:40:25 +09:00
Marten Seemann
118509cf76 fix flaky key exchange generation test on AppVeyor 2018-04-22 18:36:22 +09:00
Marten Seemann
c1d8c8940e Merge pull request #1306 from lucas-clemente/new-header
implement the new IETF QUIC packet header
2018-04-19 18:15:15 +09:00
Marten Seemann
c723339f4d Merge pull request #1309 from lucas-clemente/ack-binary-search
use binary search to check if an ACK acks a packet
2018-04-19 18:01:33 +09:00
Marten Seemann
1ec873f917 use binary search to check if an ACK acks a packet 2018-04-19 17:36:12 +09:00
Marten Seemann
ea055deea2 Merge pull request #1303 from lucas-clemente/refactor-acks
refactor the ACK frame
2018-04-19 17:11:06 +09:00
Marten Seemann
d47124d14d add more methods to the protocol.ConnectionID
This will make it easier to change the underlying type of the connection
ID (potentially an array is faster than a byte slice).
2018-04-19 16:08:06 +09:00
Marten Seemann
74ccd194f7 remove the omit_connection_id TLS transport parameter 2018-04-19 13:47:02 +09:00
Marten Seemann
52d31dd7ef implement the new header format
Currently, we're only sending and accepting packets with matching source
and destination connection IDs.
2018-04-19 13:46:54 +09:00
Marten Seemann
1a035a265c change the type of Connection ID to byte slice 2018-04-18 22:41:24 +09:00
Marten Seemann
52c3e6e863 remove the {Lowest, Largest}Acked from the ACK frame
All ACK ranges are now saved in the AckRanges slices. This eliminates a
bunch of special cases for ACKs that don't report any packets missing.
2018-04-18 13:19:42 +09:00
Marten Seemann
7de877fc3f remove duplicate test cases for the legacy ACK frame 2018-04-18 12:25:26 +09:00
Marten Seemann
ca896f953a rename AckRange.{First, Last} to AckRange.{Smallest, Largest} 2018-04-18 12:25:26 +09:00
Marten Seemann
af8971d8c9 move connection ID generation from the utils to the protocol package 2018-04-17 20:21:06 +09:00
Marten Seemann
da7708e470 Merge pull request #1285 from lucas-clemente/rto-probe-packets
only allow sending of retransmissions if these are RTO probe packets
2018-04-17 20:20:34 +09:00
Marten Seemann
f052861775 only allow sending of retransmissions if these are RTO probe packets 2018-04-17 19:58:53 +09:00
Marten Seemann
8a2e4e4421 Merge pull request #1295 from lucas-clemente/fix-1289
close all streams when closing the IETF QUIC streams map
2018-04-17 19:52:51 +09:00
Marten Seemann
f8d28a96fe close all streams when closing the IETF QUIC streams map 2018-04-17 19:29:51 +09:00
Marten Seemann
bffa2cd621 Merge pull request #1301 from lucas-clemente/improve-stream-open-doc
improve API documentation for opening new streams
2018-04-17 19:19:35 +09:00
Marten Seemann
c828742cde Merge pull request #1300 from lucas-clemente/prior-in-flight
call OnPacket{Acked, Lost} with the bytes in flight prior to event
2018-04-17 19:18:25 +09:00
Marten Seemann
e0ae5be52e Merge pull request #1299 from lucas-clemente/fix-1298
fix race condition when the handshake completes
2018-04-17 19:16:33 +09:00
Marten Seemann
6f2e568416 Merge pull request #1297 from lucas-clemente/move-rto-calculation
move calculation of RTO delay to the sent packet handler
2018-04-17 19:15:12 +09:00
Marten Seemann
5f5a8a5aa6 Merge pull request #1296 from lucas-clemente/fix-1292
simplify curve 25519 key generation
2018-04-17 19:13:40 +09:00