2023-07-17 03:23:26 +02:00
|
|
|
package actions
|
|
|
|
|
|
|
|
import (
|
2023-07-18 22:08:09 +02:00
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/quexten/goldwarden/agent/bitwarden"
|
|
|
|
"github.com/quexten/goldwarden/agent/bitwarden/crypto"
|
2023-07-17 03:23:26 +02:00
|
|
|
"github.com/quexten/goldwarden/agent/config"
|
|
|
|
"github.com/quexten/goldwarden/agent/sockets"
|
2023-09-12 18:56:35 +02:00
|
|
|
"github.com/quexten/goldwarden/agent/systemauth"
|
2023-09-12 01:22:48 +02:00
|
|
|
"github.com/quexten/goldwarden/agent/systemauth/biometrics"
|
2023-07-17 03:23:26 +02:00
|
|
|
"github.com/quexten/goldwarden/agent/vault"
|
|
|
|
"github.com/quexten/goldwarden/ipc"
|
|
|
|
)
|
|
|
|
|
|
|
|
var AgentActionsRegistry = newActionsRegistry()
|
|
|
|
|
2023-09-12 18:56:35 +02:00
|
|
|
type Action func(ipc.IPCMessage, *config.Config, *vault.Vault, *sockets.CallingContext) (ipc.IPCMessage, error)
|
2023-07-17 03:23:26 +02:00
|
|
|
type ActionsRegistry struct {
|
|
|
|
actions map[ipc.IPCMessageType]Action
|
|
|
|
}
|
|
|
|
|
|
|
|
func newActionsRegistry() *ActionsRegistry {
|
|
|
|
return &ActionsRegistry{
|
|
|
|
actions: make(map[ipc.IPCMessageType]Action),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (registry *ActionsRegistry) Register(messageType ipc.IPCMessageType, action Action) {
|
|
|
|
registry.actions[messageType] = action
|
|
|
|
}
|
|
|
|
|
|
|
|
func (registry *ActionsRegistry) Get(messageType ipc.IPCMessageType) (Action, bool) {
|
|
|
|
action, ok := registry.actions[messageType]
|
|
|
|
return action, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func ensureIsLoggedIn(action Action) Action {
|
2023-09-12 18:56:35 +02:00
|
|
|
return func(request ipc.IPCMessage, cfg *config.Config, vault *vault.Vault, ctx *sockets.CallingContext) (ipc.IPCMessage, error) {
|
2023-07-17 03:23:26 +02:00
|
|
|
if hash, err := cfg.GetMasterPasswordHash(); err != nil || len(hash) == 0 {
|
|
|
|
return ipc.IPCMessageFromPayload(ipc.ActionResponse{
|
|
|
|
Success: false,
|
|
|
|
Message: "Not logged in",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return action(request, cfg, vault, ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-18 22:08:09 +02:00
|
|
|
func sync(ctx context.Context, vault *vault.Vault, cfg *config.Config) bool {
|
|
|
|
token, err := cfg.GetToken()
|
|
|
|
if err == nil {
|
|
|
|
if token.AccessToken != "" {
|
|
|
|
bitwarden.RefreshToken(ctx, cfg)
|
|
|
|
userSymmetricKey, err := cfg.GetUserSymmetricKey()
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
protectedUserSymetricKey, err := crypto.SymmetricEncryptionKeyFromBytes(userSymmetricKey)
|
|
|
|
|
|
|
|
err = bitwarden.DoFullSync(context.WithValue(ctx, bitwarden.AuthToken{}, token.AccessToken), vault, cfg, &protectedUserSymetricKey, true)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-07-17 03:23:26 +02:00
|
|
|
func ensureIsNotLocked(action Action) Action {
|
2023-09-12 18:56:35 +02:00
|
|
|
return func(request ipc.IPCMessage, cfg *config.Config, vault *vault.Vault, ctx *sockets.CallingContext) (ipc.IPCMessage, error) {
|
2023-07-17 03:23:26 +02:00
|
|
|
if cfg.IsLocked() {
|
|
|
|
err := cfg.TryUnlock(vault)
|
2023-07-18 22:08:09 +02:00
|
|
|
ctx1 := context.Background()
|
|
|
|
success := sync(ctx1, vault, cfg)
|
|
|
|
if err != nil || !success {
|
2023-07-17 03:23:26 +02:00
|
|
|
return ipc.IPCMessageFromPayload(ipc.ActionResponse{
|
|
|
|
Success: false,
|
|
|
|
Message: err.Error(),
|
|
|
|
})
|
|
|
|
}
|
2023-09-12 18:56:35 +02:00
|
|
|
|
|
|
|
systemauth.CreateSession(*ctx)
|
2023-07-17 03:23:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return action(request, cfg, vault, ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-12 01:22:48 +02:00
|
|
|
func ensureBiometricsAuthorized(approvalType biometrics.Approval, action Action) Action {
|
2023-09-12 18:56:35 +02:00
|
|
|
return func(request ipc.IPCMessage, cfg *config.Config, vault *vault.Vault, ctx *sockets.CallingContext) (ipc.IPCMessage, error) {
|
|
|
|
if !systemauth.CheckBiometrics(ctx, approvalType) {
|
2023-07-17 03:23:26 +02:00
|
|
|
return ipc.IPCMessageFromPayload(ipc.ActionResponse{
|
|
|
|
Success: false,
|
|
|
|
Message: "Polkit authorization failed required",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return action(request, cfg, vault, ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-12 01:22:48 +02:00
|
|
|
func ensureEverything(approvalType biometrics.Approval, action Action) Action {
|
2023-07-17 03:23:26 +02:00
|
|
|
return ensureIsNotLocked(ensureIsLoggedIn(ensureBiometricsAuthorized(approvalType, action)))
|
|
|
|
}
|