* Add IAM gRPC service definition - Add GetConfiguration/PutConfiguration for config management - Add CreateUser/GetUser/UpdateUser/DeleteUser/ListUsers for user management - Add CreateAccessKey/DeleteAccessKey/GetUserByAccessKey for access key management - Methods mirror existing IAM HTTP API functionality * Add IAM gRPC handlers on filer server - Implement IamGrpcServer with CredentialManager integration - Handle configuration get/put operations - Handle user CRUD operations - Handle access key create/delete operations - All methods delegate to CredentialManager for actual storage * Wire IAM gRPC service to filer server - Add CredentialManager field to FilerOption and FilerServer - Import credential store implementations in filer command - Initialize CredentialManager from credential.toml if available - Register IAM gRPC service on filer gRPC server - Enable credential management via gRPC alongside existing filer services * Regenerate IAM protobuf with gRPC service methods * fix: compilation error in DeleteUser * fix: address code review comments for IAM migration * feat: migrate policies to multi-file layout and fix identity duplicated content * refactor: remove configuration.json and migrate Service Accounts to multi-file layout * refactor: standardize Service Accounts as distinct store entities and fix Admin Server persistence * config: set ServiceAccountsDirectory to /etc/iam/service_accounts * Fix Chrome dialog auto-dismiss with Bootstrap modals - Add modal-alerts.js library with Bootstrap modal replacements - Replace all 15 confirm() calls with showConfirm/showDeleteConfirm - Auto-override window.alert() for all alert() calls - Fixes Chrome 132+ aggressively blocking native dialogs * Upgrade Bootstrap from 5.3.2 to 5.3.8 * Fix syntax error in object_store_users.templ - remove duplicate closing braces * create policy * display errors * migrate to multi-file policies * address PR feedback: use showDeleteConfirm and showErrorMessage in policies.templ, refine migration check * Update policies_templ.go * add service account to iam grpc * iam: fix potential path traversal in policy names by validating name pattern * iam: add GetServiceAccountByAccessKey to CredentialStore interface * iam: implement service account support for PostgresStore Includes full CRUD operations and efficient lookup by access key. * iam: implement GetServiceAccountByAccessKey for filer_etc, grpc, and memory stores Provides efficient lookup of service accounts by access key where possible, with linear scan fallbacks for file-based stores. * iam: remove filer_multiple support Deleted its implementation and references in imports, scaffold config, and core interface constants. Redundant with filer_etc. * clear comment * dash: robustify service account construction - Guard against nil sa.Credential when constructing responses - Fix Expiration logic to only set if > 0, avoiding Unix epoch 1970 - Ensure consistency across Get, Create, and Update handlers * credential/filer_etc: improve error propagation in configuration handlers - Return error from loadServiceAccountsFromMultiFile to callers - Ensure listEntries errors in SaveConfiguration (cleanup logic) are propagated unless they are "not found" failures. - Fixes potential silent failures during IAM configuration sync. * credential/filer_etc: add existence check to CreateServiceAccount Ensures consistency with other stores by preventing accidental overwrite of existing service accounts during creation. * credential/memory: improve store robustness and Reset logic - Enforce ID immutability in UpdateServiceAccount to prevent orphans - Update Reset() to also clear the policies map, ensuring full state cleanup for tests. * dash: improve service account robustness and policy docs - Wrap parent user lookup errors to preserve context - Strictly validate Status field in UpdateServiceAccount - Add deprecation comments to legacy policy management methods * credential/filer_etc: protect against path traversal in service accounts Implemented ID validation (alphanumeric, underscores, hyphens) and applied it to Get, Save, and Delete operations to ensure no directory traversal via saId.json filenames. * credential/postgres: improve robustness and cleanup comments - Removed brainstorming comments in GetServiceAccountByAccessKey - Added missing rows.Err() check during iteration - Properly propagate Scan and Unmarshal errors instead of swallowing them * admin: unify UI alerts and confirmations using Bootstrap modals - Updated modal-alerts.js with improved automated alert type detection - Replaced native alert() and confirm() with showAlert(), showConfirm(), and showDeleteConfirm() across various Templ components - Improved UX for delete operations by providing better context and styling - Ensured consistent error reporting across IAM and Maintenance views * admin: additional UI consistency fixes for alerts and confirmations - Replaced native alert() and confirm() with Bootstrap modals in: - EC volumes (repair flow) - Collection details (repair flow) - File browser (properties and delete) - Maintenance config schema (save and reset) - Improved delete confirmation in file browser with item context - Ensured consistent success/error/info styling for all feedbacks * make * iam: add GetServiceAccountByAccessKey RPC and update GetConfiguration * iam: implement GetServiceAccountByAccessKey on server and client * iam: centralize policy and service account validation * iam: optimize MemoryStore service account lookups with indexing * iam: fix postgres service_accounts table and optimize lookups * admin: refactor modal alerts and clean up dashboard logic * admin: fix EC shards table layout mismatch * admin: URL-encode IAM path parameters for safety * admin: implement pauseWorker logic in maintenance view * iam: add rows.Err() check to postgres ListServiceAccounts * iam: standardize ErrServiceAccountNotFound across credential stores * iam: map ErrServiceAccountNotFound to codes.NotFound in DeleteServiceAccount * iam: refine service account store logic, errors and schema * iam: add validation to GetServiceAccountByAccessKey * admin: refine modal titles and ensure URL safety * admin: address bot review comments for alerts and async usage * iam: fix syntax error by restoring missing function declaration * [FilerEtcStore] improve error handling in CreateServiceAccount Refine error handling to provide clearer messages when checking for existing service accounts. * [PostgresStore] add nil guards and validation to service account methods Ensure input parameters are not nil and required IDs are present to prevent runtime panics and ensure data integrity. * [JS] add shared IAM utility script Consolidate common IAM operations like deleteUser and deleteAccessKey into a shared utility script for better maintainability. * [View] include shared IAM utilities in layout Include iam-utils.js in the main layout to make IAM functions available across all administrative pages. * [View] refactor IAM logic and restore async in EC Shards view Remove redundant local IAM functions and ensure that delete confirmation callbacks are properly marked as async. * [View] consolidate IAM logic in Object Store Users view Remove redundant local definitions of deleteUser and deleteAccessKey, relying on the shared utilities instead. * [View] update generated templ files for UI consistency * credential/postgres: remove redundant name column from service_accounts table The id is already used as the unique identifier and was being copied to the name column. This removes the name column from the schema and updates the INSERT/UPDATE queries. * credential/filer_etc: improve logging for policy migration failures Added Errorf log if AtomicRenameEntry fails during migration to ensure visibility of common failure points. * credential: allow uppercase characters in service account ID username Updated ServiceAccountIdPattern to allow [A-Za-z0-9_-]+ for the username component, matching the actual service account creation logic which uses the parent user name directly. * Update object_store_users_templ.go * admin: fix ec_shards pagination to handle numeric page arguments Updated goToPage in cluster_ec_shards.templ to accept either an Event or a numeric page argument. This prevents errors when goToPage(1) is called directly. Corrected both the .templ source and generated Go code. * credential/filer_etc: improve service account storage robustness Added nil guard to saveServiceAccount, updated GetServiceAccount to return ErrServiceAccountNotFound for empty data, and improved deleteServiceAccount to handle response-level Filer errors.
381 lines
9.4 KiB
Go
381 lines
9.4 KiB
Go
package memory
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/credential"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func TestMemoryStore(t *testing.T) {
|
|
store := &MemoryStore{}
|
|
|
|
// Test initialization
|
|
config := util.GetViper()
|
|
if err := store.Initialize(config, "credential."); err != nil {
|
|
t.Fatalf("Failed to initialize store: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// Test creating a user
|
|
identity := &iam_pb.Identity{
|
|
Name: "testuser",
|
|
Credentials: []*iam_pb.Credential{
|
|
{
|
|
AccessKey: "access123",
|
|
SecretKey: "secret123",
|
|
},
|
|
},
|
|
}
|
|
|
|
if err := store.CreateUser(ctx, identity); err != nil {
|
|
t.Fatalf("Failed to create user: %v", err)
|
|
}
|
|
|
|
// Test getting user
|
|
retrievedUser, err := store.GetUser(ctx, "testuser")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get user: %v", err)
|
|
}
|
|
|
|
if retrievedUser.Name != "testuser" {
|
|
t.Errorf("Expected username 'testuser', got '%s'", retrievedUser.Name)
|
|
}
|
|
|
|
if len(retrievedUser.Credentials) != 1 {
|
|
t.Errorf("Expected 1 credential, got %d", len(retrievedUser.Credentials))
|
|
}
|
|
|
|
// Test getting user by access key
|
|
userByAccessKey, err := store.GetUserByAccessKey(ctx, "access123")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get user by access key: %v", err)
|
|
}
|
|
|
|
if userByAccessKey.Name != "testuser" {
|
|
t.Errorf("Expected username 'testuser', got '%s'", userByAccessKey.Name)
|
|
}
|
|
|
|
// Test listing users
|
|
users, err := store.ListUsers(ctx)
|
|
if err != nil {
|
|
t.Fatalf("Failed to list users: %v", err)
|
|
}
|
|
|
|
if len(users) != 1 || users[0] != "testuser" {
|
|
t.Errorf("Expected ['testuser'], got %v", users)
|
|
}
|
|
|
|
// Test creating access key
|
|
newCred := &iam_pb.Credential{
|
|
AccessKey: "access456",
|
|
SecretKey: "secret456",
|
|
}
|
|
|
|
if err := store.CreateAccessKey(ctx, "testuser", newCred); err != nil {
|
|
t.Fatalf("Failed to create access key: %v", err)
|
|
}
|
|
|
|
// Verify user now has 2 credentials
|
|
updatedUser, err := store.GetUser(ctx, "testuser")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get updated user: %v", err)
|
|
}
|
|
|
|
if len(updatedUser.Credentials) != 2 {
|
|
t.Errorf("Expected 2 credentials, got %d", len(updatedUser.Credentials))
|
|
}
|
|
|
|
// Test deleting access key
|
|
if err := store.DeleteAccessKey(ctx, "testuser", "access456"); err != nil {
|
|
t.Fatalf("Failed to delete access key: %v", err)
|
|
}
|
|
|
|
// Verify user now has 1 credential again
|
|
finalUser, err := store.GetUser(ctx, "testuser")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get final user: %v", err)
|
|
}
|
|
|
|
if len(finalUser.Credentials) != 1 {
|
|
t.Errorf("Expected 1 credential, got %d", len(finalUser.Credentials))
|
|
}
|
|
|
|
// Test deleting user
|
|
if err := store.DeleteUser(ctx, "testuser"); err != nil {
|
|
t.Fatalf("Failed to delete user: %v", err)
|
|
}
|
|
|
|
// Verify user is gone
|
|
_, err = store.GetUser(ctx, "testuser")
|
|
if err != credential.ErrUserNotFound {
|
|
t.Errorf("Expected ErrUserNotFound, got %v", err)
|
|
}
|
|
|
|
// Test error cases
|
|
if err := store.CreateUser(ctx, identity); err != nil {
|
|
t.Fatalf("Failed to create user for error tests: %v", err)
|
|
}
|
|
|
|
// Try to create duplicate user
|
|
if err := store.CreateUser(ctx, identity); err != credential.ErrUserAlreadyExists {
|
|
t.Errorf("Expected ErrUserAlreadyExists, got %v", err)
|
|
}
|
|
|
|
// Try to get non-existent user
|
|
_, err = store.GetUser(ctx, "nonexistent")
|
|
if err != credential.ErrUserNotFound {
|
|
t.Errorf("Expected ErrUserNotFound, got %v", err)
|
|
}
|
|
|
|
// Try to get user by non-existent access key
|
|
_, err = store.GetUserByAccessKey(ctx, "nonexistent")
|
|
if err != credential.ErrAccessKeyNotFound {
|
|
t.Errorf("Expected ErrAccessKeyNotFound, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestMemoryStoreConcurrency(t *testing.T) {
|
|
store := &MemoryStore{}
|
|
config := util.GetViper()
|
|
if err := store.Initialize(config, "credential."); err != nil {
|
|
t.Fatalf("Failed to initialize store: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// Test concurrent access
|
|
done := make(chan bool, 10)
|
|
for i := 0; i < 10; i++ {
|
|
go func(i int) {
|
|
defer func() { done <- true }()
|
|
|
|
username := fmt.Sprintf("user%d", i)
|
|
identity := &iam_pb.Identity{
|
|
Name: username,
|
|
Credentials: []*iam_pb.Credential{
|
|
{
|
|
AccessKey: fmt.Sprintf("access%d", i),
|
|
SecretKey: fmt.Sprintf("secret%d", i),
|
|
},
|
|
},
|
|
}
|
|
|
|
if err := store.CreateUser(ctx, identity); err != nil {
|
|
t.Errorf("Failed to create user %s: %v", username, err)
|
|
return
|
|
}
|
|
|
|
if _, err := store.GetUser(ctx, username); err != nil {
|
|
t.Errorf("Failed to get user %s: %v", username, err)
|
|
return
|
|
}
|
|
}(i)
|
|
}
|
|
|
|
// Wait for all goroutines to complete
|
|
for i := 0; i < 10; i++ {
|
|
<-done
|
|
}
|
|
|
|
// Verify all users were created
|
|
users, err := store.ListUsers(ctx)
|
|
if err != nil {
|
|
t.Fatalf("Failed to list users: %v", err)
|
|
}
|
|
|
|
if len(users) != 10 {
|
|
t.Errorf("Expected 10 users, got %d", len(users))
|
|
}
|
|
}
|
|
|
|
func TestMemoryStoreReset(t *testing.T) {
|
|
store := &MemoryStore{}
|
|
config := util.GetViper()
|
|
if err := store.Initialize(config, "credential."); err != nil {
|
|
t.Fatalf("Failed to initialize store: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// Create a user
|
|
identity := &iam_pb.Identity{
|
|
Name: "testuser",
|
|
Credentials: []*iam_pb.Credential{
|
|
{
|
|
AccessKey: "access123",
|
|
SecretKey: "secret123",
|
|
},
|
|
},
|
|
}
|
|
|
|
if err := store.CreateUser(ctx, identity); err != nil {
|
|
t.Fatalf("Failed to create user: %v", err)
|
|
}
|
|
|
|
// Verify user exists
|
|
if store.GetUserCount() != 1 {
|
|
t.Errorf("Expected 1 user, got %d", store.GetUserCount())
|
|
}
|
|
|
|
if store.GetAccessKeyCount() != 1 {
|
|
t.Errorf("Expected 1 access key, got %d", store.GetAccessKeyCount())
|
|
}
|
|
|
|
// Reset the store
|
|
store.Reset()
|
|
|
|
// Verify store is empty
|
|
if store.GetUserCount() != 0 {
|
|
t.Errorf("Expected 0 users after reset, got %d", store.GetUserCount())
|
|
}
|
|
|
|
if store.GetAccessKeyCount() != 0 {
|
|
t.Errorf("Expected 0 access keys after reset, got %d", store.GetAccessKeyCount())
|
|
}
|
|
|
|
// Verify user is gone
|
|
_, err := store.GetUser(ctx, "testuser")
|
|
if err != credential.ErrUserNotFound {
|
|
t.Errorf("Expected ErrUserNotFound after reset, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestMemoryStoreConfigurationSaveLoad(t *testing.T) {
|
|
store := &MemoryStore{}
|
|
config := util.GetViper()
|
|
if err := store.Initialize(config, "credential."); err != nil {
|
|
t.Fatalf("Failed to initialize store: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// Create initial configuration
|
|
originalConfig := &iam_pb.S3ApiConfiguration{
|
|
Identities: []*iam_pb.Identity{
|
|
{
|
|
Name: "user1",
|
|
Credentials: []*iam_pb.Credential{
|
|
{
|
|
AccessKey: "access1",
|
|
SecretKey: "secret1",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "user2",
|
|
Credentials: []*iam_pb.Credential{
|
|
{
|
|
AccessKey: "access2",
|
|
SecretKey: "secret2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
// Save configuration
|
|
if err := store.SaveConfiguration(ctx, originalConfig); err != nil {
|
|
t.Fatalf("Failed to save configuration: %v", err)
|
|
}
|
|
|
|
// Load configuration
|
|
loadedConfig, err := store.LoadConfiguration(ctx)
|
|
if err != nil {
|
|
t.Fatalf("Failed to load configuration: %v", err)
|
|
}
|
|
|
|
// Verify configuration matches
|
|
if len(loadedConfig.Identities) != 2 {
|
|
t.Errorf("Expected 2 identities, got %d", len(loadedConfig.Identities))
|
|
}
|
|
|
|
// Check users exist
|
|
user1, err := store.GetUser(ctx, "user1")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get user1: %v", err)
|
|
}
|
|
|
|
if len(user1.Credentials) != 1 || user1.Credentials[0].AccessKey != "access1" {
|
|
t.Errorf("User1 credentials not correct: %+v", user1.Credentials)
|
|
}
|
|
|
|
user2, err := store.GetUser(ctx, "user2")
|
|
if err != nil {
|
|
t.Fatalf("Failed to get user2: %v", err)
|
|
}
|
|
|
|
if len(user2.Credentials) != 1 || user2.Credentials[0].AccessKey != "access2" {
|
|
t.Errorf("User2 credentials not correct: %+v", user2.Credentials)
|
|
}
|
|
}
|
|
|
|
func TestMemoryStoreServiceAccountByAccessKey(t *testing.T) {
|
|
store := &MemoryStore{}
|
|
config := util.GetViper()
|
|
if err := store.Initialize(config, "credential."); err != nil {
|
|
t.Fatalf("Failed to initialize store: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
// 1. Create service account
|
|
sa := &iam_pb.ServiceAccount{
|
|
Id: "sa-test-1",
|
|
ParentUser: "user1",
|
|
Credential: &iam_pb.Credential{
|
|
AccessKey: "ACCESS-KEY-1",
|
|
SecretKey: "SECRET-KEY-1",
|
|
},
|
|
}
|
|
|
|
if err := store.CreateServiceAccount(ctx, sa); err != nil {
|
|
t.Fatalf("Failed to create service account: %v", err)
|
|
}
|
|
|
|
// 2. Lookup by access key
|
|
found, err := store.GetServiceAccountByAccessKey(ctx, "ACCESS-KEY-1")
|
|
if err != nil {
|
|
t.Fatalf("Failed to lookup by access key: %v", err)
|
|
}
|
|
if found.Id != "sa-test-1" {
|
|
t.Errorf("Expected sa-test-1, got %s", found.Id)
|
|
}
|
|
|
|
// 3. Update with new access key
|
|
sa.Credential.AccessKey = "ACCESS-KEY-2"
|
|
if err := store.UpdateServiceAccount(ctx, sa.Id, sa); err != nil {
|
|
t.Fatalf("Failed to update service account: %v", err)
|
|
}
|
|
|
|
// Verify old key is gone
|
|
_, err = store.GetServiceAccountByAccessKey(ctx, "ACCESS-KEY-1")
|
|
if err != credential.ErrAccessKeyNotFound {
|
|
t.Errorf("Expected ErrAccessKeyNotFound for old key, got %v", err)
|
|
}
|
|
|
|
// Verify new key works
|
|
found, err = store.GetServiceAccountByAccessKey(ctx, "ACCESS-KEY-2")
|
|
if err != nil {
|
|
t.Fatalf("Failed to lookup by new access key: %v", err)
|
|
}
|
|
if found.Id != "sa-test-1" {
|
|
t.Errorf("Expected sa-test-1, got %s", found.Id)
|
|
}
|
|
|
|
// 4. Delete service account
|
|
if err := store.DeleteServiceAccount(ctx, sa.Id); err != nil {
|
|
t.Fatalf("Failed to delete service account: %v", err)
|
|
}
|
|
|
|
// Verify key is gone
|
|
_, err = store.GetServiceAccountByAccessKey(ctx, "ACCESS-KEY-2")
|
|
if err != credential.ErrAccessKeyNotFound {
|
|
t.Errorf("Expected ErrAccessKeyNotFound after delete, got %v", err)
|
|
}
|
|
}
|