pomerium/authorize/evaluator/store.go
2021-06-10 09:35:44 -06:00

257 lines
6.7 KiB
Go

package evaluator
import (
"context"
"encoding/json"
"fmt"
"sync"
"sync/atomic"
"github.com/go-jose/go-jose/v3"
"github.com/google/uuid"
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/rego"
"github.com/open-policy-agent/opa/storage"
"github.com/open-policy-agent/opa/storage/inmem"
"github.com/open-policy-agent/opa/types"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
"google.golang.org/protobuf/types/known/timestamppb"
"github.com/pomerium/pomerium/config"
"github.com/pomerium/pomerium/internal/log"
"github.com/pomerium/pomerium/pkg/cryptutil"
"github.com/pomerium/pomerium/pkg/grpc/databroker"
)
type dataBrokerData struct {
mu sync.RWMutex
m map[string]map[string]proto.Message
}
func newDataBrokerData() *dataBrokerData {
return &dataBrokerData{
m: map[string]map[string]proto.Message{},
}
}
func (dbd *dataBrokerData) clear() {
dbd.mu.Lock()
defer dbd.mu.Unlock()
dbd.m = map[string]map[string]proto.Message{}
}
func (dbd *dataBrokerData) delete(typeURL, id string) {
dbd.mu.Lock()
defer dbd.mu.Unlock()
m, ok := dbd.m[typeURL]
if !ok {
return
}
delete(m, id)
if len(m) == 0 {
delete(dbd.m, typeURL)
}
}
func (dbd *dataBrokerData) get(typeURL, id string) proto.Message {
dbd.mu.RLock()
defer dbd.mu.RUnlock()
m, ok := dbd.m[typeURL]
if !ok {
return nil
}
return m[id]
}
func (dbd *dataBrokerData) set(typeURL, id string, msg proto.Message) {
dbd.mu.Lock()
defer dbd.mu.Unlock()
m, ok := dbd.m[typeURL]
if !ok {
m = map[string]proto.Message{}
dbd.m[typeURL] = m
}
m[id] = msg
}
// A Store stores data for the OPA rego policy evaluation.
type Store struct {
storage.Store
dataBrokerData *dataBrokerData
dataBrokerServerVersion, dataBrokerRecordVersion uint64
}
// NewStore creates a new Store.
func NewStore() *Store {
return &Store{
Store: inmem.New(),
dataBrokerData: newDataBrokerData(),
}
}
// NewStoreFromProtos creates a new Store from an existing set of protobuf messages.
func NewStoreFromProtos(serverVersion uint64, msgs ...proto.Message) *Store {
s := NewStore()
for _, msg := range msgs {
any, err := anypb.New(msg)
if err != nil {
continue
}
record := new(databroker.Record)
record.ModifiedAt = timestamppb.Now()
record.Version = cryptutil.NewRandomUInt64()
record.Id = uuid.New().String()
record.Data = any
record.Type = any.TypeUrl
if hasID, ok := msg.(interface{ GetId() string }); ok {
record.Id = hasID.GetId()
}
s.UpdateRecord(serverVersion, record)
}
return s
}
// ClearRecords removes all the records from the store.
func (s *Store) ClearRecords() {
s.dataBrokerData.clear()
}
// GetDataBrokerVersions gets the databroker versions.
func (s *Store) GetDataBrokerVersions() (serverVersion, recordVersion uint64) {
return atomic.LoadUint64(&s.dataBrokerServerVersion),
atomic.LoadUint64(&s.dataBrokerRecordVersion)
}
// GetRecordData gets a record's data from the store. `nil` is returned
// if no record exists for the given type and id.
func (s *Store) GetRecordData(typeURL, id string) proto.Message {
return s.dataBrokerData.get(typeURL, id)
}
// UpdateIssuer updates the issuer in the store. The issuer is used as part of JWT construction.
func (s *Store) UpdateIssuer(issuer string) {
s.write("/issuer", issuer)
}
// UpdateGoogleCloudServerlessAuthenticationServiceAccount updates the google cloud serverless authentication
// service account in the store.
func (s *Store) UpdateGoogleCloudServerlessAuthenticationServiceAccount(serviceAccount string) {
s.write("/google_cloud_serverless_authentication_service_account", serviceAccount)
}
// UpdateJWTClaimHeaders updates the jwt claim headers in the store.
func (s *Store) UpdateJWTClaimHeaders(jwtClaimHeaders map[string]string) {
s.write("/jwt_claim_headers", jwtClaimHeaders)
}
// UpdateRoutePolicies updates the route policies in the store.
func (s *Store) UpdateRoutePolicies(routePolicies []config.Policy) {
s.write("/route_policies", routePolicies)
}
// UpdateRecord updates a record in the store.
func (s *Store) UpdateRecord(serverVersion uint64, record *databroker.Record) {
if record.GetDeletedAt() != nil {
s.dataBrokerData.delete(record.GetType(), record.GetId())
} else {
msg, _ := record.GetData().UnmarshalNew()
s.dataBrokerData.set(record.GetType(), record.GetId(), msg)
}
s.write("/databroker_server_version", fmt.Sprint(serverVersion))
s.write("/databroker_record_version", fmt.Sprint(record.GetVersion()))
atomic.StoreUint64(&s.dataBrokerServerVersion, serverVersion)
atomic.StoreUint64(&s.dataBrokerRecordVersion, record.GetVersion())
}
// UpdateSigningKey updates the signing key stored in the database. Signing operations
// in rego use JWKs, so we take in that format.
func (s *Store) UpdateSigningKey(signingKey *jose.JSONWebKey) {
s.write("/signing_key", signingKey)
}
func (s *Store) write(rawPath string, value interface{}) {
ctx := context.TODO()
err := storage.Txn(ctx, s.Store, storage.WriteParams, func(txn storage.Transaction) error {
return s.writeTxn(txn, rawPath, value)
})
if err != nil {
log.Error(ctx).Err(err).Msg("opa-store: error writing data")
return
}
}
func (s *Store) writeTxn(txn storage.Transaction, rawPath string, value interface{}) error {
p, ok := storage.ParsePath(rawPath)
if !ok {
return fmt.Errorf("invalid path")
}
if len(p) > 1 {
err := storage.MakeDir(context.Background(), s, txn, p[:len(p)-1])
if err != nil {
return err
}
}
var op storage.PatchOp = storage.ReplaceOp
_, err := s.Read(context.Background(), txn, p)
if storage.IsNotFound(err) {
op = storage.AddOp
} else if err != nil {
return err
}
return s.Write(context.Background(), txn, op, p, value)
}
// GetDataBrokerRecordOption returns a function option that can retrieve databroker data.
func (s *Store) GetDataBrokerRecordOption() func(*rego.Rego) {
return rego.Function2(&rego.Function{
Name: "get_databroker_record",
Decl: types.NewFunction(
types.Args(types.S, types.S),
types.NewObject(nil, types.NewDynamicProperty(types.S, types.S)),
),
}, func(bctx rego.BuiltinContext, op1 *ast.Term, op2 *ast.Term) (*ast.Term, error) {
recordType, ok := op1.Value.(ast.String)
if !ok {
return nil, fmt.Errorf("invalid record type: %T", op1)
}
recordID, ok := op2.Value.(ast.String)
if !ok {
return nil, fmt.Errorf("invalid record id: %T", op2)
}
msg := s.GetRecordData(string(recordType), string(recordID))
if msg == nil {
return ast.NullTerm(), nil
}
obj := toMap(msg)
value, err := ast.InterfaceToValue(obj)
if err != nil {
return nil, err
}
return ast.NewTerm(value), nil
})
}
func toMap(msg proto.Message) map[string]interface{} {
bs, _ := json.Marshal(msg)
var obj map[string]interface{}
_ = json.Unmarshal(bs, &obj)
return obj
}