2016-01-27 06:46:40 -05:00
|
|
|
package shadowsocks
|
|
|
|
|
|
|
|
import (
|
2016-10-31 10:24:28 -04:00
|
|
|
"bytes"
|
2017-11-25 18:51:54 -05:00
|
|
|
"crypto/aes"
|
2016-02-23 12:16:13 -05:00
|
|
|
"crypto/cipher"
|
2016-01-28 06:33:58 -05:00
|
|
|
"crypto/md5"
|
2017-11-25 18:51:54 -05:00
|
|
|
"crypto/sha1"
|
|
|
|
"io"
|
2016-12-16 11:31:13 -05:00
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
|
|
|
"golang.org/x/crypto/hkdf"
|
|
|
|
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/buf"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/crypto"
|
|
|
|
"v2ray.com/core/common/protocol"
|
2016-01-27 06:46:40 -05:00
|
|
|
)
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
// MemoryAccount is an account type converted from Account.
|
|
|
|
type MemoryAccount struct {
|
2016-10-31 11:35:18 -04:00
|
|
|
Cipher Cipher
|
|
|
|
Key []byte
|
2016-11-02 11:17:57 -04:00
|
|
|
OneTimeAuth Account_OneTimeAuth
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
// Equals implements protocol.Account.Equals().
|
|
|
|
func (a *MemoryAccount) Equals(another protocol.Account) bool {
|
|
|
|
if account, ok := another.(*MemoryAccount); ok {
|
|
|
|
return bytes.Equal(a.Key, account.Key)
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
func createAesGcm(key []byte) cipher.AEAD {
|
|
|
|
block, err := aes.NewCipher(key)
|
|
|
|
common.Must(err)
|
|
|
|
gcm, err := cipher.NewGCM(block)
|
|
|
|
common.Must(err)
|
|
|
|
return gcm
|
|
|
|
}
|
|
|
|
|
|
|
|
func createChacha20Poly1305(key []byte) cipher.AEAD {
|
|
|
|
chacha20, err := chacha20poly1305.New(key)
|
|
|
|
common.Must(err)
|
|
|
|
return chacha20
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
func (a *Account) getCipher() (Cipher, error) {
|
2017-11-29 16:19:04 -05:00
|
|
|
switch a.CipherType {
|
2016-09-25 16:07:32 -04:00
|
|
|
case CipherType_AES_128_CFB:
|
2016-09-25 16:19:49 -04:00
|
|
|
return &AesCfb{KeyBytes: 16}, nil
|
2016-09-25 16:07:32 -04:00
|
|
|
case CipherType_AES_256_CFB:
|
2016-09-25 16:19:49 -04:00
|
|
|
return &AesCfb{KeyBytes: 32}, nil
|
2016-09-25 16:07:32 -04:00
|
|
|
case CipherType_CHACHA20:
|
2016-09-25 16:19:49 -04:00
|
|
|
return &ChaCha20{IVBytes: 8}, nil
|
2017-01-02 19:37:27 -05:00
|
|
|
case CipherType_CHACHA20_IETF:
|
2016-09-25 16:19:49 -04:00
|
|
|
return &ChaCha20{IVBytes: 12}, nil
|
2017-11-25 18:51:54 -05:00
|
|
|
case CipherType_AES_128_GCM:
|
|
|
|
return &AEADCipher{
|
|
|
|
KeyBytes: 16,
|
|
|
|
IVBytes: 16,
|
|
|
|
AEADAuthCreator: createAesGcm,
|
|
|
|
}, nil
|
|
|
|
case CipherType_AES_256_GCM:
|
|
|
|
return &AEADCipher{
|
|
|
|
KeyBytes: 32,
|
|
|
|
IVBytes: 32,
|
|
|
|
AEADAuthCreator: createAesGcm,
|
|
|
|
}, nil
|
|
|
|
case CipherType_CHACHA20_POLY1305:
|
|
|
|
return &AEADCipher{
|
|
|
|
KeyBytes: 32,
|
|
|
|
IVBytes: 32,
|
|
|
|
AEADAuthCreator: createChacha20Poly1305,
|
|
|
|
}, nil
|
2017-11-29 16:19:04 -05:00
|
|
|
case CipherType_NONE:
|
|
|
|
return NoneCipher{}, nil
|
2016-09-25 16:19:49 -04:00
|
|
|
default:
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("Unsupported cipher.")
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
// AsAccount implements protocol.AsAccount.
|
2017-11-29 16:19:04 -05:00
|
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
2017-11-29 16:57:18 -05:00
|
|
|
cipher, err := a.getCipher()
|
2016-10-31 10:24:28 -04:00
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("failed to get cipher").Base(err)
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
2017-11-29 16:57:18 -05:00
|
|
|
return &MemoryAccount{
|
2016-10-31 11:35:18 -04:00
|
|
|
Cipher: cipher,
|
2017-11-29 16:57:18 -05:00
|
|
|
Key: passwordToCipherKey([]byte(a.Password), cipher.KeySize()),
|
2017-11-29 16:19:04 -05:00
|
|
|
OneTimeAuth: a.Ota,
|
2016-10-31 10:24:28 -04:00
|
|
|
}, nil
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
// Cipher is an interface for all Shadowsocks ciphers.
|
2016-01-27 06:46:40 -05:00
|
|
|
type Cipher interface {
|
2018-04-02 14:00:50 -04:00
|
|
|
KeySize() int32
|
|
|
|
IVSize() int32
|
2017-11-25 18:51:54 -05:00
|
|
|
NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (buf.Writer, error)
|
|
|
|
NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (buf.Reader, error)
|
2017-11-25 18:58:57 -05:00
|
|
|
IsAEAD() bool
|
2017-11-26 15:51:30 -05:00
|
|
|
EncodePacket(key []byte, b *buf.Buffer) error
|
|
|
|
DecodePacket(key []byte, b *buf.Buffer) error
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:57:18 -05:00
|
|
|
// AesCfb represents all AES-CFB ciphers.
|
2016-01-27 06:46:40 -05:00
|
|
|
type AesCfb struct {
|
2018-04-02 14:00:50 -04:00
|
|
|
KeyBytes int32
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:58:57 -05:00
|
|
|
func (*AesCfb) IsAEAD() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (v *AesCfb) KeySize() int32 {
|
2016-11-27 15:39:09 -05:00
|
|
|
return v.KeyBytes
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (v *AesCfb) IVSize() int32 {
|
2016-12-16 17:02:00 -05:00
|
|
|
return 16
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
func (v *AesCfb) NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (buf.Writer, error) {
|
2016-02-25 15:50:10 -05:00
|
|
|
stream := crypto.NewAesEncryptionStream(key, iv)
|
2017-11-25 18:51:54 -05:00
|
|
|
return buf.NewWriter(crypto.NewCryptionWriter(stream, writer)), nil
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
func (v *AesCfb) NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (buf.Reader, error) {
|
2016-02-25 15:50:10 -05:00
|
|
|
stream := crypto.NewAesDecryptionStream(key, iv)
|
2017-11-25 18:51:54 -05:00
|
|
|
return buf.NewReader(crypto.NewCryptionReader(stream, reader)), nil
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:51:30 -05:00
|
|
|
func (v *AesCfb) EncodePacket(key []byte, b *buf.Buffer) error {
|
|
|
|
iv := b.BytesTo(v.IVSize())
|
|
|
|
stream := crypto.NewAesEncryptionStream(key, iv)
|
|
|
|
stream.XORKeyStream(b.BytesFrom(v.IVSize()), b.BytesFrom(v.IVSize()))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *AesCfb) DecodePacket(key []byte, b *buf.Buffer) error {
|
2018-01-19 05:08:34 -05:00
|
|
|
if b.Len() <= v.IVSize() {
|
|
|
|
return newError("insufficient data: ", b.Len())
|
|
|
|
}
|
2017-11-26 15:51:30 -05:00
|
|
|
iv := b.BytesTo(v.IVSize())
|
2017-11-27 04:42:34 -05:00
|
|
|
stream := crypto.NewAesDecryptionStream(key, iv)
|
2017-11-26 15:51:30 -05:00
|
|
|
stream.XORKeyStream(b.BytesFrom(v.IVSize()), b.BytesFrom(v.IVSize()))
|
|
|
|
b.SliceFrom(v.IVSize())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
type AEADCipher struct {
|
2018-04-02 14:00:50 -04:00
|
|
|
KeyBytes int32
|
|
|
|
IVBytes int32
|
2017-11-25 18:51:54 -05:00
|
|
|
AEADAuthCreator func(key []byte) cipher.AEAD
|
|
|
|
}
|
|
|
|
|
2017-11-25 18:58:57 -05:00
|
|
|
func (*AEADCipher) IsAEAD() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (c *AEADCipher) KeySize() int32 {
|
2017-11-25 18:51:54 -05:00
|
|
|
return c.KeyBytes
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (c *AEADCipher) IVSize() int32 {
|
2017-11-25 18:51:54 -05:00
|
|
|
return c.IVBytes
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:51:30 -05:00
|
|
|
func (c *AEADCipher) createAuthenticator(key []byte, iv []byte) *crypto.AEADAuthenticator {
|
2017-11-25 18:51:54 -05:00
|
|
|
nonce := crypto.NewIncreasingAEADNonceGenerator()
|
|
|
|
subkey := make([]byte, c.KeyBytes)
|
|
|
|
hkdfSHA1(key, iv, subkey)
|
2017-11-26 15:51:30 -05:00
|
|
|
return &crypto.AEADAuthenticator{
|
2017-11-25 18:51:54 -05:00
|
|
|
AEAD: c.AEADAuthCreator(subkey),
|
|
|
|
NonceGenerator: nonce,
|
|
|
|
}
|
2017-11-26 15:51:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *AEADCipher) NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (buf.Writer, error) {
|
|
|
|
auth := c.createAuthenticator(key, iv)
|
2017-11-25 18:51:54 -05:00
|
|
|
return crypto.NewAuthenticationWriter(auth, &crypto.AEADChunkSizeParser{
|
|
|
|
Auth: auth,
|
|
|
|
}, writer, protocol.TransferTypeStream), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *AEADCipher) NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (buf.Reader, error) {
|
2017-11-26 15:51:30 -05:00
|
|
|
auth := c.createAuthenticator(key, iv)
|
2017-11-25 18:51:54 -05:00
|
|
|
return crypto.NewAuthenticationReader(auth, &crypto.AEADChunkSizeParser{
|
|
|
|
Auth: auth,
|
|
|
|
}, reader, protocol.TransferTypeStream), nil
|
2016-02-23 12:16:13 -05:00
|
|
|
}
|
|
|
|
|
2017-11-26 15:51:30 -05:00
|
|
|
func (c *AEADCipher) EncodePacket(key []byte, b *buf.Buffer) error {
|
|
|
|
ivLen := c.IVSize()
|
|
|
|
payloadLen := b.Len()
|
|
|
|
auth := c.createAuthenticator(key, b.BytesTo(ivLen))
|
|
|
|
return b.Reset(func(bb []byte) (int, error) {
|
|
|
|
bbb, err := auth.Seal(bb[:ivLen], bb[ivLen:payloadLen])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(bbb), nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *AEADCipher) DecodePacket(key []byte, b *buf.Buffer) error {
|
2018-01-19 08:08:45 -05:00
|
|
|
if b.Len() <= c.IVSize() {
|
2018-01-19 05:08:34 -05:00
|
|
|
return newError("insufficient data: ", b.Len())
|
|
|
|
}
|
2017-11-26 15:51:30 -05:00
|
|
|
ivLen := c.IVSize()
|
|
|
|
payloadLen := b.Len()
|
|
|
|
auth := c.createAuthenticator(key, b.BytesTo(ivLen))
|
|
|
|
if err := b.Reset(func(bb []byte) (int, error) {
|
|
|
|
bbb, err := auth.Open(bb[:ivLen], bb[ivLen:payloadLen])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(bbb), nil
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
b.SliceFrom(ivLen)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-23 12:16:13 -05:00
|
|
|
type ChaCha20 struct {
|
2018-04-02 14:00:50 -04:00
|
|
|
IVBytes int32
|
2016-02-23 12:16:13 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:58:57 -05:00
|
|
|
func (*ChaCha20) IsAEAD() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (v *ChaCha20) KeySize() int32 {
|
2016-02-23 12:16:13 -05:00
|
|
|
return 32
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (v *ChaCha20) IVSize() int32 {
|
2016-11-27 15:39:09 -05:00
|
|
|
return v.IVBytes
|
2016-02-23 12:16:13 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
func (v *ChaCha20) NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (buf.Writer, error) {
|
|
|
|
stream := crypto.NewChaCha20Stream(key, iv)
|
|
|
|
return buf.NewWriter(crypto.NewCryptionWriter(stream, writer)), nil
|
2016-02-23 12:16:13 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 18:51:54 -05:00
|
|
|
func (v *ChaCha20) NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (buf.Reader, error) {
|
|
|
|
stream := crypto.NewChaCha20Stream(key, iv)
|
|
|
|
return buf.NewReader(crypto.NewCryptionReader(stream, reader)), nil
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
|
|
|
|
2017-11-26 15:51:30 -05:00
|
|
|
func (v *ChaCha20) EncodePacket(key []byte, b *buf.Buffer) error {
|
|
|
|
iv := b.BytesTo(v.IVSize())
|
|
|
|
stream := crypto.NewChaCha20Stream(key, iv)
|
|
|
|
stream.XORKeyStream(b.BytesFrom(v.IVSize()), b.BytesFrom(v.IVSize()))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *ChaCha20) DecodePacket(key []byte, b *buf.Buffer) error {
|
2018-01-19 05:08:34 -05:00
|
|
|
if b.Len() <= v.IVSize() {
|
|
|
|
return newError("insufficient data: ", b.Len())
|
|
|
|
}
|
2017-11-26 15:51:30 -05:00
|
|
|
iv := b.BytesTo(v.IVSize())
|
|
|
|
stream := crypto.NewChaCha20Stream(key, iv)
|
|
|
|
stream.XORKeyStream(b.BytesFrom(v.IVSize()), b.BytesFrom(v.IVSize()))
|
|
|
|
b.SliceFrom(v.IVSize())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:19:04 -05:00
|
|
|
type NoneCipher struct{}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func (NoneCipher) KeySize() int32 { return 0 }
|
|
|
|
func (NoneCipher) IVSize() int32 { return 0 }
|
2017-11-29 16:19:04 -05:00
|
|
|
func (NoneCipher) IsAEAD() bool {
|
|
|
|
return true // to avoid OTA
|
|
|
|
}
|
|
|
|
|
|
|
|
func (NoneCipher) NewDecryptionReader(key []byte, iv []byte, reader io.Reader) (buf.Reader, error) {
|
|
|
|
return buf.NewReader(reader), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (NoneCipher) NewEncryptionWriter(key []byte, iv []byte, writer io.Writer) (buf.Writer, error) {
|
|
|
|
return buf.NewWriter(writer), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (NoneCipher) EncodePacket(key []byte, b *buf.Buffer) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (NoneCipher) DecodePacket(key []byte, b *buf.Buffer) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
func passwordToCipherKey(password []byte, keySize int32) []byte {
|
2016-01-28 06:33:58 -05:00
|
|
|
key := make([]byte, 0, keySize)
|
|
|
|
|
2017-11-29 16:19:04 -05:00
|
|
|
md5Sum := md5.Sum(password)
|
2016-01-28 06:33:58 -05:00
|
|
|
key = append(key, md5Sum[:]...)
|
|
|
|
|
2018-04-02 14:00:50 -04:00
|
|
|
for int32(len(key)) < keySize {
|
2016-01-28 06:33:58 -05:00
|
|
|
md5Hash := md5.New()
|
2017-11-29 16:57:18 -05:00
|
|
|
common.Must2(md5Hash.Write(md5Sum[:]))
|
|
|
|
common.Must2(md5Hash.Write(password))
|
2016-01-28 06:33:58 -05:00
|
|
|
md5Hash.Sum(md5Sum[:0])
|
|
|
|
|
|
|
|
key = append(key, md5Sum[:]...)
|
|
|
|
}
|
|
|
|
return key
|
2016-01-27 06:46:40 -05:00
|
|
|
}
|
2017-11-25 18:51:54 -05:00
|
|
|
|
|
|
|
func hkdfSHA1(secret, salt, outkey []byte) {
|
|
|
|
r := hkdf.New(sha1.New, secret, salt, []byte("ss-subkey"))
|
|
|
|
common.Must2(io.ReadFull(r, outkey))
|
|
|
|
}
|