2020-07-15 13:48:25 +00:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
2020-07-20 17:23:16 +00:00
|
|
|
"bytes"
|
2020-07-15 20:16:27 +00:00
|
|
|
"crypto/ecdsa"
|
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rsa"
|
2020-07-15 13:48:25 +00:00
|
|
|
"crypto/sha256"
|
2020-07-15 20:16:27 +00:00
|
|
|
"crypto/x509"
|
2020-07-20 17:23:16 +00:00
|
|
|
"encoding/hex"
|
2020-07-15 20:16:27 +00:00
|
|
|
"encoding/pem"
|
|
|
|
"io/ioutil"
|
2020-07-16 15:33:47 +00:00
|
|
|
"net/http"
|
|
|
|
"regexp"
|
2020-07-15 13:48:25 +00:00
|
|
|
|
|
|
|
"github.com/klauspost/compress/zstd"
|
2020-07-15 20:16:27 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/refs"
|
2020-07-15 13:48:25 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/service"
|
2020-07-15 20:16:27 +00:00
|
|
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
2020-07-15 13:48:25 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-07-20 17:23:16 +00:00
|
|
|
"go.uber.org/zap"
|
2020-07-15 13:48:25 +00:00
|
|
|
)
|
|
|
|
|
2020-07-16 15:33:47 +00:00
|
|
|
const authorizationFieldPattern = `AWS4-HMAC-SHA256 Credential=(?P<access_key_id>[^/]+)/(?P<date>[^/]+)/(?P<region>[^/]*)/(?P<service>[^/]+)/aws4_request, SignedHeaders=(?P<signed_header_fields>.*), Signature=(?P<v4_signature>.*)`
|
|
|
|
|
2020-07-20 17:23:16 +00:00
|
|
|
const emptyStringSHA256 = `e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855`
|
|
|
|
|
2020-07-15 13:48:25 +00:00
|
|
|
// Center is a central app's authentication/authorization management unit.
|
|
|
|
type Center struct {
|
2020-07-20 17:23:16 +00:00
|
|
|
log *zap.Logger
|
2020-07-16 15:33:47 +00:00
|
|
|
submatcher *regexpSubmatcher
|
2020-07-15 13:48:25 +00:00
|
|
|
zstdEncoder *zstd.Encoder
|
|
|
|
zstdDecoder *zstd.Decoder
|
2020-07-15 20:16:27 +00:00
|
|
|
neofsKeys struct {
|
|
|
|
PrivateKey *ecdsa.PrivateKey
|
|
|
|
PublicKey *ecdsa.PublicKey
|
|
|
|
}
|
|
|
|
ownerID refs.OwnerID
|
|
|
|
wifString string
|
|
|
|
userAuthKeys struct {
|
|
|
|
PrivateKey *rsa.PrivateKey
|
|
|
|
PublicKey *rsa.PublicKey
|
|
|
|
}
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 15:20:45 +00:00
|
|
|
// NewCenter creates an instance of AuthCenter.
|
2020-07-20 17:23:16 +00:00
|
|
|
func NewCenter(log *zap.Logger) *Center {
|
2020-07-15 13:48:25 +00:00
|
|
|
zstdEncoder, _ := zstd.NewWriter(nil)
|
|
|
|
zstdDecoder, _ := zstd.NewReader(nil)
|
2020-07-15 20:16:27 +00:00
|
|
|
return &Center{
|
2020-07-20 17:23:16 +00:00
|
|
|
log: log,
|
2020-07-16 15:33:47 +00:00
|
|
|
submatcher: ®expSubmatcher{re: regexp.MustCompile(authorizationFieldPattern)},
|
2020-07-15 15:20:45 +00:00
|
|
|
zstdEncoder: zstdEncoder,
|
|
|
|
zstdDecoder: zstdDecoder,
|
|
|
|
}
|
2020-07-15 20:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) SetNeoFSKeys(key *ecdsa.PrivateKey) error {
|
|
|
|
publicKey := &key.PublicKey
|
|
|
|
oid, err := refs.NewOwnerID(publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to get OwnerID")
|
|
|
|
}
|
|
|
|
center.neofsKeys.PrivateKey = key
|
|
|
|
wif, err := crypto.WIFEncode(key)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to get WIF string from given key")
|
|
|
|
}
|
|
|
|
center.neofsKeys.PublicKey = publicKey
|
|
|
|
center.ownerID = oid
|
|
|
|
center.wifString = wif
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) GetNeoFSKeyPrivateKey() *ecdsa.PrivateKey {
|
|
|
|
return center.neofsKeys.PrivateKey
|
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) GetNeoFSKeyPublicKey() *ecdsa.PublicKey {
|
|
|
|
return center.neofsKeys.PublicKey
|
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) GetOwnerID() refs.OwnerID {
|
|
|
|
return center.ownerID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) GetWIFString() string {
|
|
|
|
return center.wifString
|
|
|
|
}
|
|
|
|
|
|
|
|
func (center *Center) SetUserAuthKeys(key *rsa.PrivateKey) {
|
|
|
|
center.userAuthKeys.PrivateKey = key
|
|
|
|
center.userAuthKeys.PublicKey = &key.PublicKey
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-20 17:23:16 +00:00
|
|
|
func (center *Center) packBearerToken(bearerToken *service.BearerTokenMsg) (string, string, error) {
|
2020-07-15 13:48:25 +00:00
|
|
|
data, err := bearerToken.Marshal()
|
|
|
|
if err != nil {
|
2020-07-20 17:23:16 +00:00
|
|
|
return "", "", errors.Wrap(err, "failed to marshal bearer token")
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
2020-07-15 20:16:27 +00:00
|
|
|
encryptedKeyID, err := encrypt(center.userAuthKeys.PublicKey, center.compress(data))
|
2020-07-15 13:48:25 +00:00
|
|
|
if err != nil {
|
2020-07-20 17:23:16 +00:00
|
|
|
return "", "", errors.Wrap(err, "failed to encrypt bearer token bytes")
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
2020-07-20 17:23:16 +00:00
|
|
|
accessKeyID := hex.EncodeToString(encryptedKeyID)
|
|
|
|
secretAccessKey := hex.EncodeToString(sha256Hash(data))
|
|
|
|
return accessKeyID, secretAccessKey, nil
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-20 17:23:16 +00:00
|
|
|
func (center *Center) unpackBearerToken(accessKeyID string) (*service.BearerTokenMsg, error) {
|
|
|
|
encryptedKeyID, err := hex.DecodeString(accessKeyID)
|
2020-07-15 13:48:25 +00:00
|
|
|
if err != nil {
|
2020-07-20 17:23:16 +00:00
|
|
|
return nil, errors.Wrap(err, "failed to decode HEX string")
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
2020-07-20 17:23:16 +00:00
|
|
|
compressedKeyID, err := decrypt(center.userAuthKeys.PrivateKey, encryptedKeyID)
|
2020-07-15 13:48:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to decrypt key ID")
|
|
|
|
}
|
2020-07-20 17:23:16 +00:00
|
|
|
data, err := center.decompress(compressedKeyID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to decompress key ID")
|
|
|
|
}
|
2020-07-15 13:48:25 +00:00
|
|
|
bearerToken := new(service.BearerTokenMsg)
|
2020-07-20 17:23:16 +00:00
|
|
|
if err := bearerToken.Unmarshal(data); err != nil {
|
2020-07-15 13:48:25 +00:00
|
|
|
return nil, errors.Wrap(err, "failed to unmarshal embedded bearer token")
|
|
|
|
}
|
|
|
|
return bearerToken, nil
|
|
|
|
}
|
|
|
|
|
2020-07-20 17:23:16 +00:00
|
|
|
func (center *Center) AuthenticationPassed(request *http.Request) (*service.BearerTokenMsg, error) {
|
|
|
|
authHeaderField := request.Header["Authorization"]
|
2020-07-16 15:33:47 +00:00
|
|
|
if len(authHeaderField) != 1 {
|
2020-07-20 17:23:16 +00:00
|
|
|
return nil, errors.New("unsupported request: wrong length of Authorization header field")
|
2020-07-16 15:33:47 +00:00
|
|
|
}
|
|
|
|
sms := center.submatcher.getSubmatches(authHeaderField[0])
|
|
|
|
if len(sms) != 6 {
|
|
|
|
return nil, errors.New("bad Authorization header field")
|
|
|
|
}
|
2020-07-20 17:23:16 +00:00
|
|
|
bt, err := center.unpackBearerToken(sms["access_key_id"])
|
2020-07-16 15:33:47 +00:00
|
|
|
if err != nil {
|
2020-07-20 17:23:16 +00:00
|
|
|
center.log.Warn("Failed to unpack bearer token", zap.Error(err))
|
|
|
|
//return nil, errors.Wrap(err, "failed to unpack bearer token")
|
2020-07-16 15:33:47 +00:00
|
|
|
}
|
|
|
|
return bt, nil
|
|
|
|
}
|
|
|
|
|
2020-07-20 17:23:16 +00:00
|
|
|
func readAndReplaceBody(request *http.Request) []byte {
|
|
|
|
if request.Body == nil {
|
|
|
|
return []byte{}
|
|
|
|
}
|
|
|
|
payload, _ := ioutil.ReadAll(request.Body)
|
|
|
|
request.Body = ioutil.NopCloser(bytes.NewReader(payload))
|
|
|
|
return payload
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:20:45 +00:00
|
|
|
func (center *Center) compress(data []byte) []byte {
|
2020-07-20 17:23:16 +00:00
|
|
|
return center.zstdEncoder.EncodeAll(data, make([]byte, 0, len(data)))
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 15:20:45 +00:00
|
|
|
func (center *Center) decompress(data []byte) ([]byte, error) {
|
2020-07-20 17:23:16 +00:00
|
|
|
return center.zstdDecoder.DecodeAll(data, nil)
|
2020-07-15 13:48:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 20:16:27 +00:00
|
|
|
func encrypt(key *rsa.PublicKey, data []byte) ([]byte, error) {
|
|
|
|
return rsa.EncryptOAEP(sha256.New(), rand.Reader, key, data, []byte{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func decrypt(key *rsa.PrivateKey, data []byte) ([]byte, error) {
|
|
|
|
return rsa.DecryptOAEP(sha256.New(), rand.Reader, key, data, []byte{})
|
|
|
|
}
|
|
|
|
|
2020-07-15 13:48:25 +00:00
|
|
|
func sha256Hash(data []byte) []byte {
|
|
|
|
hash := sha256.New()
|
|
|
|
hash.Write(data)
|
|
|
|
return hash.Sum(nil)
|
|
|
|
}
|
2020-07-15 20:16:27 +00:00
|
|
|
|
|
|
|
func ReadRSAPrivateKeyFromPEMFile(filePath string) (*rsa.PrivateKey, error) {
|
|
|
|
kbs, err := ioutil.ReadFile(filePath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to read file %s", filePath)
|
|
|
|
}
|
|
|
|
pemBlock, _ := pem.Decode(kbs)
|
|
|
|
if pemBlock == nil {
|
|
|
|
return nil, errors.Errorf("failed to decode PEM data from file %s", filePath)
|
|
|
|
}
|
|
|
|
rsaKey, err := x509.ParsePKCS1PrivateKey(pemBlock.Bytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to parse private key bytes from pem data from file %s", filePath)
|
|
|
|
}
|
|
|
|
return rsaKey, nil
|
|
|
|
}
|
2020-07-16 15:33:47 +00:00
|
|
|
|
|
|
|
type regexpSubmatcher struct {
|
|
|
|
re *regexp.Regexp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (resm *regexpSubmatcher) getSubmatches(target string) map[string]string {
|
|
|
|
matches := resm.re.FindStringSubmatch(target)
|
|
|
|
l := len(matches)
|
|
|
|
submatches := make(map[string]string, l)
|
|
|
|
for i, name := range resm.re.SubexpNames() {
|
|
|
|
if i > 0 && i <= l {
|
|
|
|
submatches[name] = matches[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return submatches
|
|
|
|
}
|