1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package protocol
- import (
- "runtime"
- "github.com/xtls/xray-core/common/bitmask"
- "github.com/xtls/xray-core/common/net"
- "golang.org/x/sys/cpu"
- )
- // RequestCommand is a custom command in a proxy request.
- type RequestCommand byte
- const (
- RequestCommandTCP = RequestCommand(0x01)
- RequestCommandUDP = RequestCommand(0x02)
- RequestCommandMux = RequestCommand(0x03)
- RequestCommandRvs = RequestCommand(0x04)
- )
- func (c RequestCommand) TransferType() TransferType {
- switch c {
- case RequestCommandTCP, RequestCommandMux, RequestCommandRvs:
- return TransferTypeStream
- case RequestCommandUDP:
- return TransferTypePacket
- default:
- return TransferTypeStream
- }
- }
- const (
- // [DEPRECATED 2023-06] RequestOptionChunkStream indicates request payload is chunked. Each chunk consists of length, authentication and payload.
- RequestOptionChunkStream bitmask.Byte = 0x01
- // 0x02 legacy setting
- RequestOptionChunkMasking bitmask.Byte = 0x04
- RequestOptionGlobalPadding bitmask.Byte = 0x08
- RequestOptionAuthenticatedLength bitmask.Byte = 0x10
- )
- type RequestHeader struct {
- Version byte
- Command RequestCommand
- Option bitmask.Byte
- Security SecurityType
- Port net.Port
- Address net.Address
- User *MemoryUser
- }
- func (h *RequestHeader) Destination() net.Destination {
- if h.Command == RequestCommandUDP {
- return net.UDPDestination(h.Address, h.Port)
- }
- return net.TCPDestination(h.Address, h.Port)
- }
- const (
- ResponseOptionConnectionReuse bitmask.Byte = 0x01
- )
- type ResponseCommand interface{}
- type ResponseHeader struct {
- Option bitmask.Byte
- Command ResponseCommand
- }
- var (
- // Keep in sync with crypto/tls/cipher_suites.go.
- hasGCMAsmAMD64 = cpu.X86.HasAES && cpu.X86.HasPCLMULQDQ && cpu.X86.HasSSE41 && cpu.X86.HasSSSE3
- hasGCMAsmARM64 = cpu.ARM64.HasAES && cpu.ARM64.HasPMULL
- hasGCMAsmS390X = cpu.S390X.HasAES && cpu.S390X.HasAESCTR && cpu.S390X.HasGHASH
- hasGCMAsmPPC64 = runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le"
- HasAESGCMHardwareSupport = hasGCMAsmAMD64 || hasGCMAsmARM64 || hasGCMAsmS390X || hasGCMAsmPPC64
- )
- func (sc *SecurityConfig) GetSecurityType() SecurityType {
- if sc == nil || sc.Type == SecurityType_AUTO {
- if HasAESGCMHardwareSupport {
- return SecurityType_AES128_GCM
- }
- return SecurityType_CHACHA20_POLY1305
- }
- return sc.Type
- }
- func isDomainTooLong(domain string) bool {
- return len(domain) > 256
- }
|