Commit graph

2096 commits

Author SHA1 Message Date
Marten Seemann
ccd91a36b7
Merge pull request #956 from lucas-clemente/packet-type-names
add a string representation for the Long Header packet types
2017-11-23 06:25:35 -08:00
Marten Seemann
4076ab587e add a string representation for the Long Header packet types 2017-11-22 15:57:22 -08:00
Marten Seemann
5618950054
Merge pull request #955 from Eichhoernchen/fix-953
Make error chan not block for a single write
2017-11-22 11:53:10 -08:00
Jan Rüth
281fec1b2d Make error chan not block for a single write, allowing ParseHandshakeMessage goroutine to gracefully exit 2017-11-22 09:54:03 +01:00
Marten Seemann
214e95c655
Merge pull request #951 from lucas-clemente/rename-cleartext-packet-type
rename the Cleartext Long Header type to Handshake
2017-11-13 11:10:14 +08:00
Marten Seemann
683f244054 rename the Cleartext Long Header type to Handshake
This was recently changed in the draft.
2017-11-13 10:55:33 +08:00
Marten Seemann
2b3b760f41
Merge pull request #947 from lucas-clemente/fix-header-parsing
fix parsing of the Header type byte
2017-11-13 10:43:01 +08:00
Marten Seemann
7c3d6abb4b fix parsing of the Header type byte
In order to determine if a packet is a Version Negotiation Packet, it is
not sufficient to just look at bit 0x1. Other packet types also have
that bit set, e.g. the Retry packet (packet type 0x3). Instead, we have
to look at the last 3 bits. This fix will work as long as IETF QUIC
doesn't define more than 8 long header types.
2017-11-13 10:23:17 +08:00
Marten Seemann
df9d28cf30
Merge pull request #949 from lucas-clemente/fix-ietf-vnp
echo the offered version in IETF Version Negotiation Packets
2017-11-13 09:35:29 +08:00
Marten Seemann
ca8c58babe
Merge pull request #864 from lucas-clemente/fix-863
reject ACKs that ack packets with a higher encryption level
2017-11-13 09:35:12 +08:00
Marten Seemann
dc8b547793 reject ACKs that ack packets with a higher encryption level 2017-11-12 15:05:14 +08:00
Marten Seemann
234d5aab36 echo the offered version in IETF Version Negotiation Packets 2017-11-12 14:37:43 +08:00
Marten Seemann
bf1ee17e67
Merge pull request #945 from lucas-clemente/fix-transport-paramter-timeout-encoding
fix encoding of the idle timeout for the TLS transport parameters
2017-11-12 09:23:23 +08:00
Marten Seemann
11364cbd81 fix encoding of the idle timeout for the TLS transport parameters 2017-11-11 19:48:41 +08:00
Marten Seemann
56cad16af9
Merge pull request #944 from lucas-clemente/easier-header-parsing
parse the packet header before getting the session from the session map
2017-11-11 08:42:45 +08:00
Marten Seemann
5d4174b2f0 parse the packet header before getting the session from the session map 2017-11-10 08:48:45 +07:00
Marten Seemann
dd722758af
Merge pull request #942 from lucas-clemente/fix-941
accept Public Resets without the RSEQ tag
2017-11-09 06:42:19 +07:00
Marten Seemann
bc1ef31531 accept Public Resets without the RSEQ tag
The RSEQ tag is mandatory according to the gQUIC spec, however, Google
doesn't include that tag in its Public Resets.
2017-11-08 11:07:53 +07:00
Marten Seemann
e34d83644e
Merge pull request #940 from lucas-clemente/fix-939
fix flaky proxy shutdown test
2017-11-07 20:55:42 +07:00
Marten Seemann
467a59093e
Merge pull request #937 from lucas-clemente/fix-server-close-race
fix race condition when closing the server
2017-11-07 10:49:33 +07:00
Marten Seemann
0000fe6de7 fix flaky proxy shutdown test 2017-11-07 10:14:06 +07:00
Marten Seemann
f9da93ca86
Merge pull request #938 from lucas-clemente/drop-quic37-quic38
drop support for QUIC 37 and 38
2017-11-07 09:53:09 +07:00
Marten Seemann
095c29dc2c drop support for QUIC 37 and 38 2017-11-07 00:23:53 +07:00
Marten Seemann
b2c7e665ed fix race condition when closing the server 2017-11-06 17:07:47 +07:00
Marten Seemann
2896f582bd
Merge pull request #936 from lucas-clemente/more-handshake-tests
add more integration tests for the handshake
2017-11-06 15:04:30 +07:00
Marten Seemann
66e4da3031 add more integration tests for the handshake 2017-11-04 22:48:16 +07:00
Marten Seemann
adb59b7085
Merge pull request #928 from lucas-clemente/crypto-stream-0
use stream 0 for the crypto stream when using TLS
2017-11-04 15:37:07 +07:00
Marten Seemann
9f1eb62860 implement the IETF draft BLOCKED and STREAM_BLOCKED frames 2017-11-04 15:22:14 +07:00
Marten Seemann
0f1f1c8d41 implement the MAX_DATA and MAX_STREAM_DATA frames
For gQUIC WINDOW_UPDATEs are converted to MAX_DATA and MAX_STREAM_DATA,
respectively.
2017-11-04 15:22:14 +07:00
Marten Seemann
ccb2e9a2df remove check for CONGESTION_FEEDBACK in the packet unpacker
CONGESTION_FEEDBACK was reserved for future use in gQUIC, but has never
actually been implemented. It won't make it to IETF QUIC, so we don't
need to check for it. Note that we'd still reject a CONGESTION_FEEDBACK
frame, since we're rejecting any unknown frame type.
2017-11-04 15:22:14 +07:00
Marten Seemann
1f644debd4 set if a stream contributes to connection flow control
This depends on the version. In gQUIC, stream 1 and 3 don't contribute,
in IETF QUIC only stream 0 doesn't contribute.
2017-11-04 15:22:14 +07:00
Marten Seemann
f662822486 use stream 0 for the crypto stream when using TLS 2017-11-04 15:22:07 +07:00
Marten Seemann
a2b77815ad
Merge pull request #934 from lucas-clemente/improve-server-close
improve closing of the server
2017-11-04 08:59:37 +07:00
Marten Seemann
4d9846482d improve closing of the server
Closing the sessions can be done concurrently.
2017-11-03 17:49:28 +07:00
Marten Seemann
05f6e1cf8e
Merge pull request #929 from lucas-clemente/fix-926
send initial version in the CHLO, not the current version
2017-11-02 22:17:17 +07:00
Marten Seemann
a1a4f35096 send initial version in the CHLO, not the current version
This commit fixes two bugs:
1. In the CHLO, we need to send the initial QUIC version. It will differ
from the current version if version negotiation was performed.
2. The session setup was using the wrong version (current version, and
not the initial version), such that we would have sent the wrong version
in the TLS handshake as well.
2017-11-02 21:51:51 +07:00
Marten Seemann
96f65f922f
Merge pull request #927 from lucas-clemente/fix-925
fix client handshake failure when the server supports unknown versions
2017-11-02 21:34:04 +07:00
Marten Seemann
d77ba5271f
Merge pull request #922 from lucas-clemente/fix-920
reject packets that use the wrong or unknown packet types
2017-11-02 21:28:20 +07:00
Marten Seemann
589decab64
Merge pull request #930 from lucas-clemente/fix-public-reset-logging
fix logging of unparseable PUBLIC_RESETs
2017-11-02 21:16:03 +07:00
Marten Seemann
b40d249953 reject packets that use the wrong or unknown packet types 2017-11-02 20:47:02 +07:00
Marten Seemann
30effa5bdd
Merge pull request #921 from lucas-clemente/fix-919
rename the packet types according to recent draft changes
2017-11-02 20:45:43 +07:00
Marten Seemann
93703f8a4a fix logging of unparseable PUBLIC_RESETs 2017-11-02 20:44:59 +07:00
Marten Seemann
3e6f66da79 rename the packet types according to recent draft changes 2017-11-02 18:31:04 +07:00
Marten Seemann
49e305f97f
Merge pull request #915 from lucas-clemente/fix-914
only use little endian byte order for gQUIC 37 and 38
2017-11-02 17:59:55 +07:00
Marten Seemann
43c23ff5fa fix client handshake failure when the server supports unknown versions 2017-11-02 17:41:06 +07:00
Marten Seemann
1f6f5bb736
Merge pull request #836 from lucas-clemente/cookies
implement the TLS Cookie extension
2017-11-02 17:38:27 +07:00
Marten Seemann
aba1dd13ba only use little endian byte order for gQUIC 37 and 38
That way, when adding new non-gQUIC versions, they will use big endian.
2017-11-02 16:46:22 +07:00
Marten Seemann
df13a0a970 implement the TLS Cookie extension 2017-11-02 16:45:43 +07:00
Marten Seemann
085702df36
Merge pull request #924 from lucas-clemente/fix-chrome-tests-on-travis
fix Chrome tests on Travis, remove test retries
2017-11-02 16:43:59 +07:00
Marten Seemann
e810c097da remove the retries for the Chrome integration tests 2017-11-02 16:18:29 +07:00