Marten Seemann
2bcfe5bc4b
check for WSAEMSGSIZE errors when receiving UDP packets on Windows ( #3982 )
...
* check for WSAEMSGSIZE errors when receiving UDP packets on Windows
* check EMSGSIZE error on macOS
2023-07-20 20:31:57 -07:00
WeidiDeng
2183283622
http3: discard negative content-length header when writing response ( #3983 )
...
* response writer: discard negative content-length header
* shorten comment
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-20 11:42:37 -07:00
Marten Seemann
5a22ac8970
http3: enforce that DATA frames don't exceed Content-Length ( #3980 )
2023-07-20 09:47:01 -07:00
Sukun
56cd866840
enable the DF bit on macOS ( #3946 )
...
* set DF bit on macOS
* simplify macOS version check
* link to chromium source for macOS 11 check
2023-07-19 12:01:03 -07:00
Marten Seemann
ae8bdd79e0
http3: use correct error code when request header parsing fails ( #3979 )
2023-07-19 11:46:10 -07:00
Marten Seemann
a347d664e2
remove OptimizeConn, add a Transport.WriteTo method instead ( #3957 )
...
* remove OptimizeConn, add a Transport.WriteTo method instead
* fix race condition in Transport.WriteTo
2023-07-19 10:28:11 -07:00
Ferdinand Holzer
27301f791f
surface stream error as stream context cancelation cause ( #3970 )
...
* send stream: surface error as stream context cancellation cause
* Update send_stream_test.go
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-19 10:12:01 -07:00
Marten Seemann
5ae28928db
http3: reject unknown pseudo headers ( #3973 )
2023-07-18 22:42:26 -07:00
Marten Seemann
b6dbfc8c06
http3: reject responses that don't set the :status header ( #3975 )
2023-07-18 22:26:46 -07:00
Marten Seemann
5d59c3059f
http3: deduplicate Content-Length headers ( #3972 )
2023-07-18 21:52:21 -07:00
Marten Seemann
bb296b8c17
http3: unify handling of request and response headers ( #3969 )
2023-07-18 21:39:05 -07:00
Marten Seemann
ad16aa765d
http3: refactor header field processing into a separate function ( #3971 )
2023-07-18 21:16:50 -07:00
Marten Seemann
514df55288
http3: enforce ordering requirement between pseudo and regular headers ( #3968 )
...
* http3: enforce ordering requirement between pseudo and regular headers
* simplify logic
2023-07-18 09:13:16 -07:00
Ferdinand Holzer
4378283f95
surface connection error as connection context cancelation cause ( #3961 )
...
* connection: surface connection error as connection context cancellation cause
* docs: add note about connection context canellation cause
2023-07-17 21:31:31 -07:00
Marten Seemann
ab192a084d
http3: reject negative values for the Content-Length header ( #3966 )
2023-07-17 19:23:54 -07:00
Marten Seemann
c4b3d979bd
http3: reject header field values with invalid characters ( #3967 )
2023-07-17 18:56:29 -07:00
Marten Seemann
baee8184fc
http3: reject header field names with invalid characters ( #3965 )
2023-07-17 18:33:24 -07:00
Marten Seemann
3edacebff0
http3: reject header field that contain non-lowercase characters ( #3964 )
2023-07-17 18:16:01 -07:00
Marten Seemann
8ac22a9483
http3: set the Content-Length header in the http.Request.Header map ( #3963 )
2023-07-16 19:26:15 -07:00
Marten Seemann
3dea8f8a9b
http3: don't send more than http.Request.ContentLength bytes ( #3960 )
2023-07-16 19:16:52 -07:00
WeidiDeng
de8d7a32b8
http3: return http.ErrContentLength when writing too large response ( #3953 )
2023-07-12 23:20:35 -07:00
WeidiDeng
9e7fa4773a
http3: implement FlushError for the response writer ( #3951 )
...
* implement FlushError interface for http3 response writer
* move where to log flush error
2023-07-12 20:40:53 -07:00
Marten Seemann
418b866e32
perform send / receive buffer increases when setting up the connection ( #3949 )
...
The UDP send and receive buffer is now increased when calling
OptimizeConn.
2023-07-12 10:54:20 -07:00
WeidiDeng
2c4371b6a9
http3: add Date response header if not set ( #3952 )
...
* automatically add date header if not already set
* improve comment for Date header
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-12 10:30:33 -07:00
WeidiDeng
f97c9bf88c
http3: don't write response headers if the handler panicked ( #3950 )
2023-07-12 09:32:33 -07:00
Marten Seemann
fcf8d4b3ff
http3: validate Host header before sending ( #3948 )
2023-07-11 23:27:24 -07:00
Marten Seemann
0fe21c7d6f
oss-fuzz: manually install Go, fix paths ( #3941 )
2023-07-08 16:41:04 -07:00
Marten Seemann
783d667601
move oss-fuzz build script to this repo ( #3940 )
2023-07-06 09:03:18 -07:00
Marten Seemann
fd0c9bbf9e
check the length of IPv4 packet info control messages, add log message ( #3920 )
2023-07-01 12:03:00 -07:00
Marten Seemann
0662afba63
stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 ( #3936 )
2023-07-01 11:29:41 -07:00
Marten Seemann
3d89e545d3
use the new crypto/tls QUIC Transport ( #3860 )
2023-07-01 11:15:00 -07:00
Marten Seemann
4998733ae1
disable GSO unless QUIC_GO_ENABLE_GSO is set ( #3934 )
2023-07-01 10:09:32 -07:00
Marten Seemann
2f872ea0fb
update link to the wiki page about UDP buffer sizes ( #3924 )
2023-07-01 10:08:25 -07:00
kelmenhorst
0c54d416ee
transport: don't add connection to multiplexer if init fails ( #3931 )
...
* Remove conn from multiplexer when (*Transport).init fails
* Transport: AddConn to multiplexer directly before start listening
* Update transport_test.go
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-06-29 10:35:16 -07:00
Glonee
435444af7e
add a context to Connection.ReceiveMessage ( #3926 )
...
* add context to ReceiveMessage
* add newlines
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-06-27 11:29:30 -07:00
Benedikt Spies
f3875147b9
log STREAM frames in long header packets ( #3922 )
2023-06-26 15:51:56 -07:00
Marten Seemann
efc252ff56
use the UDP_SEGMENT constant defined in the unix package (for GSO) ( #3917 )
2023-06-26 05:57:50 -07:00
Marten Seemann
d361637419
simplify syscall consts used for requesting / parsing IPv4 packet info ( #3919 )
2023-06-26 01:39:47 -07:00
Marten Seemann
4b0ca320a3
use unix.IPV6_RECVPKTINFO and unix.IPV6_PKTINFO on all platforms ( #3918 )
2023-06-25 20:08:08 +02:00
Marten Seemann
21388c86bb
drop support for draft-29 ( #3903 )
2023-06-21 04:06:44 -07:00
Marten Seemann
da298d09e1
docs: improve documentation of OptimizeConn ( #3910 )
2023-06-21 02:52:43 -07:00
kelmenhorst
8352e5dc32
check for uninitialized fields when closing the Transport ( #3908 )
...
* close Transport: check for possibly uninitialized fields
* close Transport: close Conn, as conn might not be initialized
* close Transport: add test case
2023-06-21 02:14:57 -07:00
Jean-Francois Giorgi
9acce3c6d9
http3: return http.ErrServerClosed instead of quic.ErrServerClosed ( #3900 )
...
* - fix 3898
* fix gofumpt
* - refactoring: inline serveListener in ServeListener
- use ServeListener in s.serveConn
- updated doc for the returned error
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-06-20 09:32:56 -07:00
Marten Seemann
e4fe28930a
docs: add detailed description of the quic package ( #3902 )
...
* docs: add detailed description of the quic package
* Apply suggestions from code review
Co-authored-by: Prithvi Shahi <shahi.prithvi@gmail.com>
* some more README improvements
---------
Co-authored-by: Prithvi Shahi <shahi.prithvi@gmail.com>
2023-06-20 09:31:39 -07:00
Marten Seemann
28d5106a1c
wire: switch to crypto/rand for greased transport parameter generation ( #3904 )
2023-06-20 09:31:12 -07:00
Benedikt Spies
f57f876446
respect minimum idle timeout of 3 PTOs ( #3909 )
2023-06-20 01:47:29 -07:00
Marten Seemann
85764da3b6
docs: improve doc comments for the ConnectionState fields ( #3901 )
2023-06-15 00:03:36 -07:00
Marten Seemann
30527c58c2
frame fuzzer: handle frames one by one ( #3884 )
...
This more closely matches what the connection does.
2023-06-13 13:44:25 -07:00
Marten Seemann
c52b583561
Merge pull request #3889 from quic-go/ackhandler-unexport-packet
...
ackhandler: unexport the packet struct
2023-06-13 23:44:09 +03:00
Marten Seemann
e45c46041a
ackhandler: don't allocate a packet struct for non-ack-eliciting packets
2023-06-05 21:07:05 +03:00