You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cloak/internal/server/auth.go

76 lines
2.1 KiB
Go

6 years ago
package server
import (
"bytes"
"crypto"
6 years ago
"encoding/binary"
5 years ago
"errors"
"fmt"
"github.com/cbeuw/Cloak/internal/ecdh"
"github.com/cbeuw/Cloak/internal/util"
"time"
6 years ago
)
type ClientInfo struct {
UID []byte
SessionId uint32
ProxyMethod string
EncryptionMethod byte
Unordered bool
}
const (
UNORDERED_FLAG = 0x01 // 0000 0001
)
5 years ago
var ErrInvalidPubKey = errors.New("public key has invalid format")
var ErrCiphertextLength = errors.New("ciphertext has the wrong length")
var ErrTimestampOutOfWindow = errors.New("timestamp is outside of the accepting window")
5 years ago
// touchStone checks if a ClientHello came from a Cloak client by checking and decrypting the fields Cloak hides data in
// It returns the ClientInfo, but it doesn't check if the UID is authorised
func touchStone(ch *ClientHello, staticPv crypto.PrivateKey, now func() time.Time) (info ClientInfo, sharedSecret []byte, err error) {
ephPub, ok := ecdh.Unmarshal(ch.random)
5 years ago
if !ok {
5 years ago
err = ErrInvalidPubKey
5 years ago
return
}
sharedSecret = ecdh.GenerateSharedSecret(staticPv, ephPub)
5 years ago
var keyShare []byte
keyShare, err = parseKeyShare(ch.extensions[[2]byte{0x00, 0x33}])
5 years ago
if err != nil {
return
}
5 years ago
ciphertext := append(ch.sessionId, keyShare...)
5 years ago
if len(ciphertext) != 64 {
5 years ago
err = fmt.Errorf("%v: %v", ErrCiphertextLength, len(ciphertext))
5 years ago
return
}
5 years ago
var plaintext []byte
plaintext, err = util.AESGCMDecrypt(ch.random[0:12], sharedSecret, ciphertext)
5 years ago
if err != nil {
return
}
5 years ago
info = ClientInfo{
UID: plaintext[0:16],
SessionId: 0,
ProxyMethod: string(bytes.Trim(plaintext[16:28], "\x00")),
EncryptionMethod: plaintext[28],
Unordered: plaintext[41]&UNORDERED_FLAG != 0,
}
5 years ago
timestamp := int64(binary.BigEndian.Uint64(plaintext[29:37]))
clientTime := time.Unix(timestamp, 0)
serverTime := now()
if !(clientTime.After(serverTime.Truncate(TIMESTAMP_TOLERANCE)) && clientTime.Before(serverTime.Add(TIMESTAMP_TOLERANCE))) {
5 years ago
err = fmt.Errorf("%v: received timestamp %v", ErrTimestampOutOfWindow, timestamp)
return
6 years ago
}
info.SessionId = binary.BigEndian.Uint32(plaintext[37:41])
return
6 years ago
}