mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
use a prefix to distinguish IPs and net.Addrs in source address tokens
This commit is contained in:
parent
87df63dd5f
commit
afc9b11715
2 changed files with 13 additions and 13 deletions
|
@ -173,8 +173,6 @@ var _ = Describe("Server Crypto Setup", func() {
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
var err error
|
var err error
|
||||||
remoteAddr := &net.UDPAddr{IP: net.IPv4(1, 2, 3, 4), Port: 1234}
|
remoteAddr := &net.UDPAddr{IP: net.IPv4(1, 2, 3, 4), Port: 1234}
|
||||||
validSTK, err = mockStkSource{}.NewToken(remoteAddr.IP)
|
|
||||||
Expect(err).NotTo(HaveOccurred())
|
|
||||||
expectedInitialNonceLen = 32
|
expectedInitialNonceLen = 32
|
||||||
expectedFSNonceLen = 64
|
expectedFSNonceLen = 64
|
||||||
aeadChanged = make(chan protocol.EncryptionLevel, 2)
|
aeadChanged = make(chan protocol.EncryptionLevel, 2)
|
||||||
|
@ -206,6 +204,8 @@ var _ = Describe("Server Crypto Setup", func() {
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
cs = csInt.(*cryptoSetupServer)
|
cs = csInt.(*cryptoSetupServer)
|
||||||
cs.stkGenerator.stkSource = &mockStkSource{}
|
cs.stkGenerator.stkSource = &mockStkSource{}
|
||||||
|
validSTK, err = cs.stkGenerator.NewToken(remoteAddr)
|
||||||
|
Expect(err).NotTo(HaveOccurred())
|
||||||
sourceAddrValid = true
|
sourceAddrValid = true
|
||||||
cs.acceptSTKCallback = func(_ net.Addr, _ *STK) bool { return sourceAddrValid }
|
cs.acceptSTKCallback = func(_ net.Addr, _ *STK) bool { return sourceAddrValid }
|
||||||
cs.keyDerivation = mockKeyDerivation
|
cs.keyDerivation = mockKeyDerivation
|
||||||
|
|
|
@ -1,13 +1,17 @@
|
||||||
package handshake
|
package handshake
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/crypto"
|
"github.com/lucas-clemente/quic-go/crypto"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
stkPrefixIP byte = iota
|
||||||
|
stkPrefixString
|
||||||
|
)
|
||||||
|
|
||||||
// An STK is a source address token
|
// An STK is a source address token
|
||||||
type STK struct {
|
type STK struct {
|
||||||
RemoteAddr string
|
RemoteAddr string
|
||||||
|
@ -52,21 +56,17 @@ func (g *STKGenerator) DecodeToken(data []byte) (*STK, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// encodeRemoteAddr encodes a remote address such that it can be saved in the STK
|
// encodeRemoteAddr encodes a remote address such that it can be saved in the STK
|
||||||
// it ensures that we're binary compatible with Google's implementation of STKs
|
|
||||||
func encodeRemoteAddr(remoteAddr net.Addr) []byte {
|
func encodeRemoteAddr(remoteAddr net.Addr) []byte {
|
||||||
// if the address is a UDP address, just use the byte representation of the IP address
|
|
||||||
// the length of an IP address is 4 bytes (for IPv4) or 16 bytes (for IPv6)
|
|
||||||
if udpAddr, ok := remoteAddr.(*net.UDPAddr); ok {
|
if udpAddr, ok := remoteAddr.(*net.UDPAddr); ok {
|
||||||
return udpAddr.IP
|
return append([]byte{stkPrefixIP}, udpAddr.IP...)
|
||||||
}
|
}
|
||||||
// if the address is not a UDP address, prepend 16 bytes
|
return append([]byte{stkPrefixString}, []byte(remoteAddr.String())...)
|
||||||
// that way it can be distinguished from an IP address
|
|
||||||
return append(bytes.Repeat([]byte{0}, 16), []byte(remoteAddr.String())...)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// decodeRemoteAddr decodes the remote address saved in the STK
|
||||||
func decodeRemoteAddr(data []byte) string {
|
func decodeRemoteAddr(data []byte) string {
|
||||||
if len(data) <= 16 {
|
if data[0] == stkPrefixIP {
|
||||||
return net.IP(data).String()
|
return net.IP(data[1:]).String()
|
||||||
}
|
}
|
||||||
return string(data[16:])
|
return string(data[1:])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue