mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
don't parse the Public Header in the proxy
This commit is contained in:
parent
7ba9fb0f8b
commit
3cc34a3ae7
6 changed files with 23 additions and 38 deletions
|
@ -60,12 +60,12 @@ var _ = Describe("Drop tests", func() {
|
||||||
|
|
||||||
func dropTests(
|
func dropTests(
|
||||||
context string,
|
context string,
|
||||||
interval protocol.PacketNumber,
|
interval uint64,
|
||||||
dropInARow protocol.PacketNumber,
|
dropInARow uint64,
|
||||||
runDropTest func(dropCallback quicproxy.DropCallback, version protocol.VersionNumber),
|
runDropTest func(dropCallback quicproxy.DropCallback, version protocol.VersionNumber),
|
||||||
version protocol.VersionNumber) {
|
version protocol.VersionNumber) {
|
||||||
Context(context, func() {
|
Context(context, func() {
|
||||||
dropper := func(p protocol.PacketNumber) bool {
|
dropper := func(p uint64) bool {
|
||||||
if p <= 10 { // don't interfere with the crypto handshake
|
if p <= 10 { // don't interfere with the crypto handshake
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -73,13 +73,13 @@ func dropTests(
|
||||||
}
|
}
|
||||||
|
|
||||||
It("gets a file when many outgoing packets are dropped", func() {
|
It("gets a file when many outgoing packets are dropped", func() {
|
||||||
runDropTest(func(d quicproxy.Direction, p protocol.PacketNumber) bool {
|
runDropTest(func(d quicproxy.Direction, p uint64) bool {
|
||||||
return d == quicproxy.DirectionOutgoing && dropper(p)
|
return d == quicproxy.DirectionOutgoing && dropper(p)
|
||||||
}, version)
|
}, version)
|
||||||
})
|
})
|
||||||
|
|
||||||
It("gets a file when many incoming packets are dropped", func() {
|
It("gets a file when many incoming packets are dropped", func() {
|
||||||
runDropTest(func(d quicproxy.Direction, p protocol.PacketNumber) bool {
|
runDropTest(func(d quicproxy.Direction, p uint64) bool {
|
||||||
return d == quicproxy.DirectionIncoming && dropper(p)
|
return d == quicproxy.DirectionIncoming && dropper(p)
|
||||||
}, version)
|
}, version)
|
||||||
})
|
})
|
||||||
|
|
|
@ -58,7 +58,7 @@ var _ = Describe("Random RTT", func() {
|
||||||
var err error
|
var err error
|
||||||
proxy, err = quicproxy.NewQuicProxy("localhost:", version, &quicproxy.Opts{
|
proxy, err = quicproxy.NewQuicProxy("localhost:", version, &quicproxy.Opts{
|
||||||
RemoteAddr: "localhost:" + testserver.Port(),
|
RemoteAddr: "localhost:" + testserver.Port(),
|
||||||
DelayPacket: func(_ quicproxy.Direction, _ protocol.PacketNumber) time.Duration {
|
DelayPacket: func(_ quicproxy.Direction, _ uint64) time.Duration {
|
||||||
return getRandomDuration(minRtt, maxRtt)
|
return getRandomDuration(minRtt, maxRtt)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -24,7 +24,7 @@ var _ = Describe("non-zero RTT", func() {
|
||||||
var err error
|
var err error
|
||||||
proxy, err = quicproxy.NewQuicProxy("localhost:", version, &quicproxy.Opts{
|
proxy, err = quicproxy.NewQuicProxy("localhost:", version, &quicproxy.Opts{
|
||||||
RemoteAddr: "localhost:" + testserver.Port(),
|
RemoteAddr: "localhost:" + testserver.Port(),
|
||||||
DelayPacket: func(_ quicproxy.Direction, _ protocol.PacketNumber) time.Duration {
|
DelayPacket: func(_ quicproxy.Direction, _ uint64) time.Duration {
|
||||||
return rtt / 2
|
return rtt / 2
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -47,7 +47,7 @@ var _ = Describe("Handshake RTT tests", func() {
|
||||||
// start the proxy
|
// start the proxy
|
||||||
proxy, err = quicproxy.NewQuicProxy("localhost:0", protocol.VersionWhatever, &quicproxy.Opts{
|
proxy, err = quicproxy.NewQuicProxy("localhost:0", protocol.VersionWhatever, &quicproxy.Opts{
|
||||||
RemoteAddr: server.Addr().String(),
|
RemoteAddr: server.Addr().String(),
|
||||||
DelayPacket: func(_ quicproxy.Direction, _ protocol.PacketNumber) time.Duration { return rtt / 2 },
|
DelayPacket: func(_ quicproxy.Direction, _ uint64) time.Duration { return rtt / 2 },
|
||||||
})
|
})
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
package quicproxy
|
package quicproxy
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Connection is a UDP connection
|
// Connection is a UDP connection
|
||||||
|
@ -31,18 +29,18 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
// DropCallback is a callback that determines which packet gets dropped.
|
// DropCallback is a callback that determines which packet gets dropped.
|
||||||
type DropCallback func(Direction, protocol.PacketNumber) bool
|
type DropCallback func(dir Direction, packetCount uint64) bool
|
||||||
|
|
||||||
// NoDropper doesn't drop packets.
|
// NoDropper doesn't drop packets.
|
||||||
var NoDropper DropCallback = func(Direction, protocol.PacketNumber) bool {
|
var NoDropper DropCallback = func(Direction, uint64) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// DelayCallback is a callback that determines how much delay to apply to a packet.
|
// DelayCallback is a callback that determines how much delay to apply to a packet.
|
||||||
type DelayCallback func(Direction, protocol.PacketNumber) time.Duration
|
type DelayCallback func(dir Direction, packetCount uint64) time.Duration
|
||||||
|
|
||||||
// NoDelay doesn't apply a delay.
|
// NoDelay doesn't apply a delay.
|
||||||
var NoDelay DelayCallback = func(Direction, protocol.PacketNumber) time.Duration {
|
var NoDelay DelayCallback = func(Direction, uint64) time.Duration {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,6 +123,7 @@ func (p *QuicProxy) LocalAddr() net.Addr {
|
||||||
return p.conn.LocalAddr()
|
return p.conn.LocalAddr()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LocalPort is the UDP port number the proxy is listening on.
|
||||||
func (p *QuicProxy) LocalPort() int {
|
func (p *QuicProxy) LocalPort() int {
|
||||||
return p.conn.LocalAddr().(*net.UDPAddr).Port
|
return p.conn.LocalAddr().(*net.UDPAddr).Port
|
||||||
}
|
}
|
||||||
|
@ -165,20 +164,14 @@ func (p *QuicProxy) runProxy() error {
|
||||||
}
|
}
|
||||||
p.mutex.Unlock()
|
p.mutex.Unlock()
|
||||||
|
|
||||||
atomic.AddUint64(&conn.incomingPacketCounter, 1)
|
packetCount := atomic.AddUint64(&conn.incomingPacketCounter, 1)
|
||||||
|
|
||||||
r := bytes.NewReader(raw)
|
if p.dropPacket(DirectionIncoming, packetCount) {
|
||||||
hdr, err := wire.ParsePublicHeader(r, protocol.PerspectiveClient, p.version)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if p.dropPacket(DirectionIncoming, hdr.PacketNumber) {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send the packet to the server
|
// Send the packet to the server
|
||||||
delay := p.delayPacket(DirectionIncoming, hdr.PacketNumber)
|
delay := p.delayPacket(DirectionIncoming, packetCount)
|
||||||
if delay != 0 {
|
if delay != 0 {
|
||||||
time.AfterFunc(delay, func() {
|
time.AfterFunc(delay, func() {
|
||||||
// TODO: handle error
|
// TODO: handle error
|
||||||
|
@ -203,21 +196,13 @@ func (p *QuicProxy) runConnection(conn *connection) error {
|
||||||
}
|
}
|
||||||
raw := buffer[0:n]
|
raw := buffer[0:n]
|
||||||
|
|
||||||
// TODO: Switch back to using the public header once Chrome properly sets the type byte.
|
packetCount := atomic.AddUint64(&conn.outgoingPacketCounter, 1)
|
||||||
// r := bytes.NewReader(raw)
|
|
||||||
// , err := wire.ParsePublicHeader(r, protocol.PerspectiveServer)
|
|
||||||
// if err != nil {
|
|
||||||
// return err
|
|
||||||
// }
|
|
||||||
|
|
||||||
v := atomic.AddUint64(&conn.outgoingPacketCounter, 1)
|
if p.dropPacket(DirectionOutgoing, packetCount) {
|
||||||
|
|
||||||
packetNumber := protocol.PacketNumber(v)
|
|
||||||
if p.dropPacket(DirectionOutgoing, packetNumber) {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
delay := p.delayPacket(DirectionOutgoing, packetNumber)
|
delay := p.delayPacket(DirectionOutgoing, packetCount)
|
||||||
if delay != 0 {
|
if delay != 0 {
|
||||||
time.AfterFunc(delay, func() {
|
time.AfterFunc(delay, func() {
|
||||||
// TODO: handle error
|
// TODO: handle error
|
||||||
|
|
|
@ -214,7 +214,7 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
It("drops incoming packets", func() {
|
It("drops incoming packets", func() {
|
||||||
opts := &Opts{
|
opts := &Opts{
|
||||||
RemoteAddr: serverConn.LocalAddr().String(),
|
RemoteAddr: serverConn.LocalAddr().String(),
|
||||||
DropPacket: func(d Direction, p protocol.PacketNumber) bool {
|
DropPacket: func(d Direction, p uint64) bool {
|
||||||
return d == DirectionIncoming && p%2 == 0
|
return d == DirectionIncoming && p%2 == 0
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -232,7 +232,7 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
const numPackets = 6
|
const numPackets = 6
|
||||||
opts := &Opts{
|
opts := &Opts{
|
||||||
RemoteAddr: serverConn.LocalAddr().String(),
|
RemoteAddr: serverConn.LocalAddr().String(),
|
||||||
DropPacket: func(d Direction, p protocol.PacketNumber) bool {
|
DropPacket: func(d Direction, p uint64) bool {
|
||||||
return d == DirectionOutgoing && p%2 == 0
|
return d == DirectionOutgoing && p%2 == 0
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -279,7 +279,7 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
// delay packet 1 by 200 ms
|
// delay packet 1 by 200 ms
|
||||||
// delay packet 2 by 400 ms
|
// delay packet 2 by 400 ms
|
||||||
// ...
|
// ...
|
||||||
DelayPacket: func(d Direction, p protocol.PacketNumber) time.Duration {
|
DelayPacket: func(d Direction, p uint64) time.Duration {
|
||||||
if d == DirectionOutgoing {
|
if d == DirectionOutgoing {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
@ -310,7 +310,7 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
// delay packet 1 by 200 ms
|
// delay packet 1 by 200 ms
|
||||||
// delay packet 2 by 400 ms
|
// delay packet 2 by 400 ms
|
||||||
// ...
|
// ...
|
||||||
DelayPacket: func(d Direction, p protocol.PacketNumber) time.Duration {
|
DelayPacket: func(d Direction, p uint64) time.Duration {
|
||||||
if d == DirectionIncoming {
|
if d == DirectionIncoming {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue