2018-02-17 00:29:53 -05:00
|
|
|
package wire
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/rand"
|
|
|
|
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ComposeGQUICVersionNegotiation composes a Version Negotiation Packet for gQUIC
|
|
|
|
func ComposeGQUICVersionNegotiation(connID protocol.ConnectionID, versions []protocol.VersionNumber) []byte {
|
2018-03-25 23:37:41 -05:00
|
|
|
buf := &bytes.Buffer{}
|
2018-02-17 00:29:53 -05:00
|
|
|
ph := Header{
|
|
|
|
ConnectionID: connID,
|
|
|
|
PacketNumber: 1,
|
|
|
|
VersionFlag: true,
|
|
|
|
IsVersionNegotiation: true,
|
|
|
|
}
|
2018-03-25 23:37:41 -05:00
|
|
|
if err := ph.writePublicHeader(buf, protocol.PerspectiveServer, protocol.VersionWhatever); err != nil {
|
2018-02-17 00:29:53 -05:00
|
|
|
utils.Errorf("error composing version negotiation packet: %s", err.Error())
|
|
|
|
return nil
|
|
|
|
}
|
2018-03-25 23:37:41 -05:00
|
|
|
for _, v := range versions {
|
|
|
|
utils.BigEndian.WriteUint32(buf, uint32(v))
|
|
|
|
}
|
|
|
|
return buf.Bytes()
|
2018-02-17 00:29:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ComposeVersionNegotiation composes a Version Negotiation according to the IETF draft
|
|
|
|
func ComposeVersionNegotiation(
|
|
|
|
connID protocol.ConnectionID,
|
|
|
|
versions []protocol.VersionNumber,
|
|
|
|
) []byte {
|
2018-03-25 23:37:41 -05:00
|
|
|
greasedVersions := protocol.GetGreasedVersions(versions)
|
|
|
|
buf := bytes.NewBuffer(make([]byte, 0, 1+8+4+len(greasedVersions)*4))
|
2018-02-17 00:29:53 -05:00
|
|
|
r := make([]byte, 1)
|
|
|
|
_, _ = rand.Read(r) // ignore the error here. It is not critical to have perfect random here.
|
2018-03-25 23:37:41 -05:00
|
|
|
buf.WriteByte(r[0] | 0x80)
|
|
|
|
utils.BigEndian.WriteUint64(buf, uint64(connID))
|
|
|
|
utils.BigEndian.WriteUint32(buf, 0) // version 0
|
|
|
|
for _, v := range greasedVersions {
|
2018-02-17 00:29:53 -05:00
|
|
|
utils.BigEndian.WriteUint32(buf, uint32(v))
|
|
|
|
}
|
2018-03-25 23:37:41 -05:00
|
|
|
return buf.Bytes()
|
2018-02-17 00:29:53 -05:00
|
|
|
}
|