2016-07-23 07:17:51 -04:00
|
|
|
package encoding
|
2016-02-26 18:05:53 -05:00
|
|
|
|
|
|
|
import (
|
2016-12-07 11:32:40 -05:00
|
|
|
"crypto/aes"
|
|
|
|
"crypto/cipher"
|
2016-02-26 18:05:53 -05:00
|
|
|
"crypto/md5"
|
|
|
|
"hash/fnv"
|
|
|
|
"io"
|
2017-02-12 07:57:36 -05:00
|
|
|
"sync"
|
|
|
|
"time"
|
2016-12-07 11:32:40 -05:00
|
|
|
|
2018-02-09 11:48:09 -05:00
|
|
|
"v2ray.com/core/common/dice"
|
|
|
|
|
2016-12-07 11:32:40 -05:00
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
2017-09-19 17:27:49 -04:00
|
|
|
"v2ray.com/core/common"
|
2017-10-21 15:04:24 -04:00
|
|
|
"v2ray.com/core/common/bitmask"
|
2016-12-09 07:17:34 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/crypto"
|
2017-01-13 17:42:39 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
|
|
|
"v2ray.com/core/common/serial"
|
2017-02-14 04:13:09 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/proxy/vmess"
|
2016-02-26 18:05:53 -05:00
|
|
|
)
|
|
|
|
|
2017-02-12 07:57:36 -05:00
|
|
|
type sessionId struct {
|
|
|
|
user [16]byte
|
|
|
|
key [16]byte
|
|
|
|
nonce [16]byte
|
|
|
|
}
|
|
|
|
|
2017-02-12 10:53:23 -05:00
|
|
|
type SessionHistory struct {
|
2017-02-12 07:57:36 -05:00
|
|
|
sync.RWMutex
|
|
|
|
cache map[sessionId]time.Time
|
2018-02-08 09:39:46 -05:00
|
|
|
task *signal.PeriodicTask
|
2017-02-12 07:57:36 -05:00
|
|
|
}
|
|
|
|
|
2018-02-07 10:35:22 -05:00
|
|
|
func NewSessionHistory() *SessionHistory {
|
2017-02-12 10:53:23 -05:00
|
|
|
h := &SessionHistory{
|
2017-02-12 07:57:36 -05:00
|
|
|
cache: make(map[sessionId]time.Time, 128),
|
|
|
|
}
|
2018-02-08 09:39:46 -05:00
|
|
|
h.task = &signal.PeriodicTask{
|
|
|
|
Interval: time.Second * 30,
|
|
|
|
Execute: func() error {
|
|
|
|
h.removeExpiredEntries()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
common.Must(h.task.Start())
|
2017-02-12 07:57:36 -05:00
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2018-02-08 09:39:46 -05:00
|
|
|
// Close implements common.Closable.
|
|
|
|
func (h *SessionHistory) Close() error {
|
|
|
|
return h.task.Close()
|
|
|
|
}
|
|
|
|
|
2018-02-26 11:49:53 -05:00
|
|
|
func (h *SessionHistory) addIfNotExits(session sessionId) bool {
|
2017-02-12 07:57:36 -05:00
|
|
|
h.Lock()
|
2018-02-07 10:35:22 -05:00
|
|
|
defer h.Unlock()
|
2017-02-14 04:13:09 -05:00
|
|
|
|
2018-02-26 11:49:53 -05:00
|
|
|
if expire, found := h.cache[session]; found && expire.After(time.Now()) {
|
|
|
|
return false
|
2017-02-12 07:57:36 -05:00
|
|
|
}
|
2018-02-26 11:49:53 -05:00
|
|
|
|
|
|
|
h.cache[session] = time.Now().Add(time.Minute * 3)
|
|
|
|
return true
|
2017-02-12 07:57:36 -05:00
|
|
|
}
|
|
|
|
|
2018-02-07 10:35:22 -05:00
|
|
|
func (h *SessionHistory) removeExpiredEntries() {
|
|
|
|
now := time.Now()
|
2017-02-14 04:13:09 -05:00
|
|
|
|
2018-02-07 10:35:22 -05:00
|
|
|
h.Lock()
|
|
|
|
defer h.Unlock()
|
|
|
|
|
|
|
|
for session, expire := range h.cache {
|
|
|
|
if expire.Before(now) {
|
2017-02-12 07:57:36 -05:00
|
|
|
delete(h.cache, session)
|
|
|
|
}
|
2018-02-07 10:35:22 -05:00
|
|
|
}
|
2017-02-12 07:57:36 -05:00
|
|
|
}
|
|
|
|
|
2016-02-26 18:05:53 -05:00
|
|
|
type ServerSession struct {
|
|
|
|
userValidator protocol.UserValidator
|
2017-02-12 10:53:23 -05:00
|
|
|
sessionHistory *SessionHistory
|
2016-02-26 18:05:53 -05:00
|
|
|
requestBodyKey []byte
|
|
|
|
requestBodyIV []byte
|
|
|
|
responseBodyKey []byte
|
|
|
|
responseBodyIV []byte
|
|
|
|
responseHeader byte
|
|
|
|
responseWriter io.Writer
|
|
|
|
}
|
|
|
|
|
2016-04-28 16:31:33 -04:00
|
|
|
// NewServerSession creates a new ServerSession, using the given UserValidator.
|
|
|
|
// The ServerSession instance doesn't take ownership of the validator.
|
2017-02-12 10:53:23 -05:00
|
|
|
func NewServerSession(validator protocol.UserValidator, sessionHistory *SessionHistory) *ServerSession {
|
2016-02-27 11:28:21 -05:00
|
|
|
return &ServerSession{
|
2017-02-12 10:53:23 -05:00
|
|
|
userValidator: validator,
|
|
|
|
sessionHistory: sessionHistory,
|
2016-02-27 11:28:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 06:13:02 -05:00
|
|
|
func parseSecurityType(b byte) protocol.SecurityType {
|
|
|
|
if _, f := protocol.SecurityType_name[int32(b)]; f {
|
2018-03-06 04:59:37 -05:00
|
|
|
st := protocol.SecurityType(b)
|
|
|
|
// For backward compatibility.
|
|
|
|
if st == protocol.SecurityType_UNKNOWN {
|
|
|
|
st = protocol.SecurityType_LEGACY
|
|
|
|
}
|
|
|
|
return st
|
2018-02-23 06:13:02 -05:00
|
|
|
}
|
|
|
|
return protocol.SecurityType_UNKNOWN
|
|
|
|
}
|
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
func (s *ServerSession) DecodeRequestHeader(reader io.Reader) (*protocol.RequestHeader, error) {
|
2017-10-27 15:11:45 -04:00
|
|
|
buffer := buf.New()
|
|
|
|
defer buffer.Release()
|
2016-02-26 18:05:53 -05:00
|
|
|
|
2017-10-27 15:11:45 -04:00
|
|
|
if err := buffer.AppendSupplier(buf.ReadFullFrom(reader, protocol.IDBytesLen)); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to read request header").Base(err)
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2017-10-27 15:11:45 -04:00
|
|
|
user, timestamp, valid := s.userValidator.Get(buffer.Bytes())
|
2016-02-26 18:05:53 -05:00
|
|
|
if !valid {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("invalid user")
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
timestampHash := md5.New()
|
2017-09-19 17:27:49 -04:00
|
|
|
common.Must2(timestampHash.Write(hashTimestamp(timestamp)))
|
2016-02-26 18:05:53 -05:00
|
|
|
iv := timestampHash.Sum(nil)
|
2016-10-16 08:22:21 -04:00
|
|
|
account, err := user.GetTypedAccount()
|
2016-09-17 18:41:21 -04:00
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to get user account").Base(err)
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
2017-02-12 07:57:36 -05:00
|
|
|
vmessAccount := account.(*vmess.InternalAccount)
|
2016-10-16 08:22:21 -04:00
|
|
|
|
2017-02-12 07:57:36 -05:00
|
|
|
aesStream := crypto.NewAesDecryptionStream(vmessAccount.ID.CmdKey(), iv)
|
2016-02-26 18:05:53 -05:00
|
|
|
decryptor := crypto.NewCryptionReader(aesStream, reader)
|
|
|
|
|
2018-02-09 11:48:09 -05:00
|
|
|
if err := buffer.Reset(buf.ReadFullFrom(decryptor, 38)); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to read request header").Base(err)
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
request := &protocol.RequestHeader{
|
|
|
|
User: user,
|
2017-10-27 15:11:45 -04:00
|
|
|
Version: buffer.Byte(0),
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2017-10-27 15:11:45 -04:00
|
|
|
s.requestBodyIV = append([]byte(nil), buffer.BytesRange(1, 17)...) // 16 bytes
|
|
|
|
s.requestBodyKey = append([]byte(nil), buffer.BytesRange(17, 33)...) // 16 bytes
|
2017-02-12 07:57:36 -05:00
|
|
|
var sid sessionId
|
|
|
|
copy(sid.user[:], vmessAccount.ID.Bytes())
|
2017-07-25 16:21:59 -04:00
|
|
|
copy(sid.key[:], s.requestBodyKey)
|
|
|
|
copy(sid.nonce[:], s.requestBodyIV)
|
2018-02-26 11:49:53 -05:00
|
|
|
if !s.sessionHistory.addIfNotExits(sid) {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("duplicated session id, possibly under replay attack")
|
2017-02-12 07:57:36 -05:00
|
|
|
}
|
|
|
|
|
2017-10-27 15:11:45 -04:00
|
|
|
s.responseHeader = buffer.Byte(33) // 1 byte
|
|
|
|
request.Option = bitmask.Byte(buffer.Byte(34)) // 1 byte
|
|
|
|
padingLen := int(buffer.Byte(35) >> 4)
|
2018-02-23 06:13:02 -05:00
|
|
|
request.Security = parseSecurityType(buffer.Byte(35) & 0x0F)
|
2016-12-07 11:32:40 -05:00
|
|
|
// 1 bytes reserved
|
2017-10-27 15:11:45 -04:00
|
|
|
request.Command = protocol.RequestCommand(buffer.Byte(37))
|
2016-02-26 18:05:53 -05:00
|
|
|
|
2018-02-22 09:25:26 -05:00
|
|
|
var invalidRequestErr error
|
2018-02-23 06:13:02 -05:00
|
|
|
defer func() {
|
|
|
|
if invalidRequestErr != nil {
|
|
|
|
randomLen := dice.Roll(64) + 1
|
|
|
|
// Read random number of bytes for prevent detection.
|
|
|
|
buffer.AppendSupplier(buf.ReadFullFrom(decryptor, randomLen))
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if request.Security == protocol.SecurityType_UNKNOWN || request.Security == protocol.SecurityType_AUTO {
|
|
|
|
invalidRequestErr = newError("unknown security type")
|
|
|
|
return nil, invalidRequestErr
|
|
|
|
}
|
|
|
|
|
2018-02-09 11:48:09 -05:00
|
|
|
switch request.Command {
|
|
|
|
case protocol.RequestCommandMux:
|
|
|
|
request.Address = net.DomainAddress("v1.mux.cool")
|
|
|
|
request.Port = 0
|
|
|
|
case protocol.RequestCommandTCP, protocol.RequestCommandUDP:
|
2018-02-23 17:42:01 -05:00
|
|
|
if addr, port, err := addrParser.ReadAddressPort(buffer, decryptor); err == nil {
|
2018-02-09 11:48:09 -05:00
|
|
|
request.Address = addr
|
|
|
|
request.Port = port
|
|
|
|
} else {
|
2018-02-22 09:25:26 -05:00
|
|
|
invalidRequestErr = newError("invalid address").Base(err)
|
2018-02-23 06:13:02 -05:00
|
|
|
return nil, invalidRequestErr
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
2018-02-09 11:48:09 -05:00
|
|
|
default:
|
2018-02-22 09:25:26 -05:00
|
|
|
invalidRequestErr = newError("invalid request command: ", request.Command)
|
|
|
|
return nil, invalidRequestErr
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2016-12-07 11:32:40 -05:00
|
|
|
if padingLen > 0 {
|
2017-10-27 15:11:45 -04:00
|
|
|
if err := buffer.AppendSupplier(buf.ReadFullFrom(decryptor, padingLen)); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to read padding").Base(err)
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-27 15:11:45 -04:00
|
|
|
if err := buffer.AppendSupplier(buf.ReadFullFrom(decryptor, 4)); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to read checksum").Base(err)
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fnv1a := fnv.New32a()
|
2017-10-27 15:11:45 -04:00
|
|
|
common.Must2(fnv1a.Write(buffer.BytesTo(-4)))
|
2016-02-26 18:05:53 -05:00
|
|
|
actualHash := fnv1a.Sum32()
|
2017-10-27 15:11:45 -04:00
|
|
|
expectedHash := serial.BytesToUint32(buffer.BytesFrom(-4))
|
2016-02-26 18:05:53 -05:00
|
|
|
|
|
|
|
if actualHash != expectedHash {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("invalid auth")
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2016-12-13 03:17:39 -05:00
|
|
|
if request.Address == nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("invalid remote address")
|
2016-12-13 03:17:39 -05:00
|
|
|
}
|
|
|
|
|
2016-02-26 18:05:53 -05:00
|
|
|
return request, nil
|
|
|
|
}
|
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
func (s *ServerSession) DecodeRequestBody(request *protocol.RequestHeader, reader io.Reader) buf.Reader {
|
2017-04-23 07:30:08 -04:00
|
|
|
var sizeParser crypto.ChunkSizeDecoder = crypto.PlainChunkSizeParser{}
|
2017-02-14 08:16:43 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkMasking) {
|
2017-07-25 16:21:59 -04:00
|
|
|
sizeParser = NewShakeSizeParser(s.requestBodyIV)
|
2017-02-14 08:16:43 -05:00
|
|
|
}
|
2018-02-23 06:13:02 -05:00
|
|
|
switch request.Security {
|
|
|
|
case protocol.SecurityType_NONE:
|
2016-12-07 11:32:40 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
2018-02-09 16:29:30 -05:00
|
|
|
if request.Command.TransferType() == protocol.TransferTypeStream {
|
2017-05-01 18:28:16 -04:00
|
|
|
return crypto.NewChunkStreamReader(sizeParser, reader)
|
|
|
|
}
|
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: new(NoOpAuthenticator),
|
|
|
|
NonceGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, protocol.TransferTypePacket)
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2017-04-23 07:30:08 -04:00
|
|
|
|
|
|
|
return buf.NewReader(reader)
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_LEGACY:
|
2017-07-25 16:21:59 -04:00
|
|
|
aesStream := crypto.NewAesDecryptionStream(s.requestBodyKey, s.requestBodyIV)
|
2016-12-07 11:32:40 -05:00
|
|
|
cryptionReader := crypto.NewCryptionReader(aesStream, reader)
|
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: new(FnvAuthenticator),
|
|
|
|
NonceGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationReader(auth, sizeParser, cryptionReader, request.Command.TransferType())
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2017-04-23 07:30:08 -04:00
|
|
|
|
|
|
|
return buf.NewReader(cryptionReader)
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_AES128_GCM:
|
2017-07-25 16:21:59 -04:00
|
|
|
block, _ := aes.NewCipher(s.requestBodyKey)
|
2016-12-07 11:32:40 -05:00
|
|
|
aead, _ := cipher.NewGCM(block)
|
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: aead,
|
|
|
|
NonceGenerator: &ChunkNonceGenerator{
|
2017-07-25 16:21:59 -04:00
|
|
|
Nonce: append([]byte(nil), s.requestBodyIV...),
|
2016-12-07 11:32:40 -05:00
|
|
|
Size: aead.NonceSize(),
|
|
|
|
},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
2017-07-25 16:21:59 -04:00
|
|
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.requestBodyKey))
|
2016-12-07 11:32:40 -05:00
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: aead,
|
|
|
|
NonceGenerator: &ChunkNonceGenerator{
|
2017-07-25 16:21:59 -04:00
|
|
|
Nonce: append([]byte(nil), s.requestBodyIV...),
|
2016-12-07 11:32:40 -05:00
|
|
|
Size: aead.NonceSize(),
|
|
|
|
},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
2018-02-23 06:13:02 -05:00
|
|
|
default:
|
|
|
|
panic("Unknown security type.")
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
func (s *ServerSession) EncodeResponseHeader(header *protocol.ResponseHeader, writer io.Writer) {
|
|
|
|
responseBodyKey := md5.Sum(s.requestBodyKey)
|
|
|
|
responseBodyIV := md5.Sum(s.requestBodyIV)
|
|
|
|
s.responseBodyKey = responseBodyKey[:]
|
|
|
|
s.responseBodyIV = responseBodyIV[:]
|
2016-02-26 18:05:53 -05:00
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
aesStream := crypto.NewAesEncryptionStream(s.responseBodyKey, s.responseBodyIV)
|
2016-02-26 18:05:53 -05:00
|
|
|
encryptionWriter := crypto.NewCryptionWriter(aesStream, writer)
|
2017-07-25 16:21:59 -04:00
|
|
|
s.responseWriter = encryptionWriter
|
2016-02-26 18:05:53 -05:00
|
|
|
|
2017-09-19 17:27:49 -04:00
|
|
|
common.Must2(encryptionWriter.Write([]byte{s.responseHeader, byte(header.Option)}))
|
2016-02-27 11:28:21 -05:00
|
|
|
err := MarshalCommand(header.Command, encryptionWriter)
|
|
|
|
if err != nil {
|
2017-09-19 17:27:49 -04:00
|
|
|
common.Must2(encryptionWriter.Write([]byte{0x00, 0x00}))
|
2016-02-27 11:28:21 -05:00
|
|
|
}
|
2016-02-27 10:41:21 -05:00
|
|
|
}
|
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
func (s *ServerSession) EncodeResponseBody(request *protocol.RequestHeader, writer io.Writer) buf.Writer {
|
2017-04-23 07:30:08 -04:00
|
|
|
var sizeParser crypto.ChunkSizeEncoder = crypto.PlainChunkSizeParser{}
|
2017-02-14 08:16:43 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkMasking) {
|
2017-07-25 16:21:59 -04:00
|
|
|
sizeParser = NewShakeSizeParser(s.responseBodyIV)
|
2017-02-14 08:16:43 -05:00
|
|
|
}
|
2018-02-23 06:13:02 -05:00
|
|
|
switch request.Security {
|
|
|
|
case protocol.SecurityType_NONE:
|
2016-12-07 11:32:40 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
2018-02-09 16:29:30 -05:00
|
|
|
if request.Command.TransferType() == protocol.TransferTypeStream {
|
2017-05-01 18:28:16 -04:00
|
|
|
return crypto.NewChunkStreamWriter(sizeParser, writer)
|
|
|
|
}
|
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: new(NoOpAuthenticator),
|
|
|
|
NonceGenerator: &crypto.NoOpBytesGenerator{},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, protocol.TransferTypePacket)
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2017-04-23 07:30:08 -04:00
|
|
|
|
|
|
|
return buf.NewWriter(writer)
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_LEGACY:
|
2016-12-07 11:32:40 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: new(FnvAuthenticator),
|
|
|
|
NonceGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-07-25 16:21:59 -04:00
|
|
|
return crypto.NewAuthenticationWriter(auth, sizeParser, s.responseWriter, request.Command.TransferType())
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2017-04-23 07:30:08 -04:00
|
|
|
|
2017-07-25 16:21:59 -04:00
|
|
|
return buf.NewWriter(s.responseWriter)
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_AES128_GCM:
|
2017-07-25 16:21:59 -04:00
|
|
|
block, _ := aes.NewCipher(s.responseBodyKey)
|
2016-12-07 11:32:40 -05:00
|
|
|
aead, _ := cipher.NewGCM(block)
|
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: aead,
|
|
|
|
NonceGenerator: &ChunkNonceGenerator{
|
2017-07-25 16:21:59 -04:00
|
|
|
Nonce: append([]byte(nil), s.responseBodyIV...),
|
2016-12-07 11:32:40 -05:00
|
|
|
Size: aead.NonceSize(),
|
|
|
|
},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
2018-02-23 06:13:02 -05:00
|
|
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
2017-07-25 16:21:59 -04:00
|
|
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.responseBodyKey))
|
2016-12-07 11:32:40 -05:00
|
|
|
|
|
|
|
auth := &crypto.AEADAuthenticator{
|
|
|
|
AEAD: aead,
|
|
|
|
NonceGenerator: &ChunkNonceGenerator{
|
2017-07-25 16:21:59 -04:00
|
|
|
Nonce: append([]byte(nil), s.responseBodyIV...),
|
2016-12-07 11:32:40 -05:00
|
|
|
Size: aead.NonceSize(),
|
|
|
|
},
|
|
|
|
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
|
|
}
|
2017-05-02 16:23:07 -04:00
|
|
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
2018-02-23 06:13:02 -05:00
|
|
|
default:
|
|
|
|
panic("Unknown security type.")
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|
2016-02-26 18:05:53 -05:00
|
|
|
}
|