From 7e37c9a7656c25c376e024e917c0e4e125694ced Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Tue, 21 Sep 2021 19:50:54 -0400 Subject: [PATCH 1/5] acl: remove legacy field to ACLBoostrap --- agent/consul/fsm/commands_oss.go | 3 +-- agent/consul/fsm/snapshot_oss_test.go | 2 +- agent/consul/state/acl.go | 6 +++--- agent/consul/state/acl_test.go | 8 ++++---- agent/structs/acl.go | 1 + 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index 36a7132f1..25871585e 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -500,7 +500,6 @@ func (c *FSM) applyACLTokenSetOperation(buf []byte, index uint64) interface{} { CAS: req.CAS, AllowMissingPolicyAndRoleIDs: req.AllowMissingLinks, ProhibitUnprivileged: req.ProhibitUnprivileged, - Legacy: false, FromReplication: req.FromReplication, } return c.state.ACLTokenBatchSet(index, req.Tokens, opts) @@ -524,7 +523,7 @@ func (c *FSM) applyACLTokenBootstrap(buf []byte, index uint64) interface{} { } defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "token"}, time.Now(), []metrics.Label{{Name: "op", Value: "bootstrap"}}) - return c.state.ACLBootstrap(index, req.ResetIndex, &req.Token, false) + return c.state.ACLBootstrap(index, req.ResetIndex, &req.Token) } func (c *FSM) applyACLPolicySetOperation(buf []byte, index uint64) interface{} { diff --git a/agent/consul/fsm/snapshot_oss_test.go b/agent/consul/fsm/snapshot_oss_test.go index 13d8bb90b..e2f8c6e03 100644 --- a/agent/consul/fsm/snapshot_oss_test.go +++ b/agent/consul/fsm/snapshot_oss_test.go @@ -113,7 +113,7 @@ func TestFSM_SnapshotRestore_OSS(t *testing.T) { // DEPRECATED (ACL-Legacy-Compat) - This is used so that the bootstrap token is still visible via the v1 acl APIs Type: structs.ACLTokenTypeManagement, } - require.NoError(t, fsm.state.ACLBootstrap(10, 0, token, false)) + require.NoError(t, fsm.state.ACLBootstrap(10, 0, token)) method := &structs.ACLAuthMethod{ Name: "some-method", diff --git a/agent/consul/state/acl.go b/agent/consul/state/acl.go index fdc20a805..573aeaeac 100644 --- a/agent/consul/state/acl.go +++ b/agent/consul/state/acl.go @@ -74,7 +74,7 @@ func (s *Restore) ACLAuthMethod(method *structs.ACLAuthMethod) error { // ACLBootstrap is used to perform a one-time ACL bootstrap operation on a // cluster to get the first management token. -func (s *Store) ACLBootstrap(idx, resetIndex uint64, token *structs.ACLToken, legacy bool) error { +func (s *Store) ACLBootstrap(idx, resetIndex uint64, token *structs.ACLToken) error { tx := s.db.WriteTxn(idx) defer tx.Abort() @@ -91,7 +91,7 @@ func (s *Store) ACLBootstrap(idx, resetIndex uint64, token *structs.ACLToken, le } } - if err := aclTokenSetTxn(tx, idx, token, ACLTokenSetOptions{Legacy: legacy}); err != nil { + if err := aclTokenSetTxn(tx, idx, token, ACLTokenSetOptions{}); err != nil { return fmt.Errorf("failed inserting bootstrap token: %v", err) } if err := tx.Insert(tableIndex, &IndexEntry{"acl-token-bootstrap", idx}); err != nil { @@ -429,7 +429,7 @@ type ACLTokenSetOptions struct { CAS bool AllowMissingPolicyAndRoleIDs bool ProhibitUnprivileged bool - Legacy bool + Legacy bool // TODO(ACL-Legacy-Compat): remove FromReplication bool } diff --git a/agent/consul/state/acl_test.go b/agent/consul/state/acl_test.go index 768efb408..2fba770d6 100644 --- a/agent/consul/state/acl_test.go +++ b/agent/consul/state/acl_test.go @@ -199,7 +199,7 @@ func TestStateStore_ACLBootstrap(t *testing.T) { require.Equal(t, uint64(0), index) // Perform a regular bootstrap. - require.NoError(t, s.ACLBootstrap(3, 0, token1.Clone(), false)) + require.NoError(t, s.ACLBootstrap(3, 0, token1.Clone())) // Make sure we can't bootstrap again canBootstrap, index, err = s.CanBootstrapACLToken() @@ -208,7 +208,7 @@ func TestStateStore_ACLBootstrap(t *testing.T) { require.Equal(t, uint64(3), index) // Make sure another attempt fails. - err = s.ACLBootstrap(4, 0, token2.Clone(), false) + err = s.ACLBootstrap(4, 0, token2.Clone()) require.Error(t, err) require.Equal(t, structs.ACLBootstrapNotAllowedErr, err) @@ -225,12 +225,12 @@ func TestStateStore_ACLBootstrap(t *testing.T) { compareTokens(t, token1, tokens[0]) // bootstrap reset - err = s.ACLBootstrap(32, index-1, token2.Clone(), false) + err = s.ACLBootstrap(32, index-1, token2.Clone()) require.Error(t, err) require.Equal(t, structs.ACLBootstrapInvalidResetIndexErr, err) // bootstrap reset - err = s.ACLBootstrap(32, index, token2.Clone(), false) + err = s.ACLBootstrap(32, index, token2.Clone()) require.NoError(t, err) _, tokens, err = s.ACLTokenList(nil, true, true, "", "", "", nil, nil) diff --git a/agent/structs/acl.go b/agent/structs/acl.go index 67dbbb871..1c3d2a261 100644 --- a/agent/structs/acl.go +++ b/agent/structs/acl.go @@ -432,6 +432,7 @@ func (t *ACLToken) HasExpirationTime() bool { return t.ExpirationTime != nil && !t.ExpirationTime.IsZero() } +// TODO(ACL-Legacy-Compat): remove func (t *ACLToken) UsesNonLegacyFields() bool { return len(t.Policies) > 0 || len(t.ServiceIdentities) > 0 || From 4e3644258343af1aacd13ac9bb2722b3fb7bf587 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Tue, 21 Sep 2021 19:55:33 -0400 Subject: [PATCH 2/5] acl: remove ACLDelete FSM command, and state store function These are no longer used now that ACL.Apply has been removed. --- agent/consul/fsm/commands_oss.go | 4 +--- agent/consul/state/acl.go | 7 ------- agent/consul/state/acl_test.go | 30 ------------------------------ agent/structs/acl.go | 4 ---- 4 files changed, 1 insertion(+), 44 deletions(-) diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index 25871585e..a866f01c6 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -265,10 +265,8 @@ func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { return err } return req.ACL.ID - case structs.ACLDelete: - return c.state.ACLTokenDeleteBySecret(index, req.ACL.ID, nil) // Legacy commands that have been removed - case "bootstrap-now", "force-set": + case "bootstrap-now", "force-set", "delete": return fmt.Errorf("command %v has been removed with the legacy ACL system", req.Op) default: c.logger.Warn("Invalid ACL operation", "operation", req.Op) diff --git a/agent/consul/state/acl.go b/agent/consul/state/acl.go index 573aeaeac..fb19377a3 100644 --- a/agent/consul/state/acl.go +++ b/agent/consul/state/acl.go @@ -806,13 +806,6 @@ func (s *Store) expiresIndexName(local bool) string { return indexExpiresGlobal } -// ACLTokenDeleteBySecret is used to remove an existing ACL from the state store. If -// the ACL does not exist this is a no-op and no error is returned. -// Deprecated (ACL-Legacy-Compat) -func (s *Store) ACLTokenDeleteBySecret(idx uint64, secret string, entMeta *structs.EnterpriseMeta) error { - return s.aclTokenDelete(idx, secret, "id", entMeta) -} - // ACLTokenDeleteByAccessor is used to remove an existing ACL from the state store. If // the ACL does not exist this is a no-op and no error is returned. func (s *Store) ACLTokenDeleteByAccessor(idx uint64, accessor string, entMeta *structs.EnterpriseMeta) error { diff --git a/agent/consul/state/acl_test.go b/agent/consul/state/acl_test.go index 2fba770d6..a58da3e6c 100644 --- a/agent/consul/state/acl_test.go +++ b/agent/consul/state/acl_test.go @@ -1511,34 +1511,6 @@ func TestStateStore_ACLToken_Delete(t *testing.T) { require.Nil(t, rtoken) }) - t.Run("Secret", func(t *testing.T) { - t.Parallel() - s := testACLTokensStateStore(t) - - token := &structs.ACLToken{ - AccessorID: "f1093997-b6c7-496d-bfb8-6b1b1895641b", - SecretID: "34ec8eb3-095d-417a-a937-b439af7a8e8b", - Policies: []structs.ACLTokenPolicyLink{ - { - ID: structs.ACLPolicyGlobalManagementID, - }, - }, - Local: true, - } - - require.NoError(t, s.ACLTokenSet(2, token.Clone(), false)) - - _, rtoken, err := s.ACLTokenGetByAccessor(nil, "f1093997-b6c7-496d-bfb8-6b1b1895641b", nil) - require.NoError(t, err) - require.NotNil(t, rtoken) - - require.NoError(t, s.ACLTokenDeleteBySecret(3, "34ec8eb3-095d-417a-a937-b439af7a8e8b", nil)) - - _, rtoken, err = s.ACLTokenGetByAccessor(nil, "f1093997-b6c7-496d-bfb8-6b1b1895641b", nil) - require.NoError(t, err) - require.Nil(t, rtoken) - }) - t.Run("Multiple", func(t *testing.T) { t.Parallel() s := testACLTokensStateStore(t) @@ -1592,7 +1564,6 @@ func TestStateStore_ACLToken_Delete(t *testing.T) { s := testACLTokensStateStore(t) require.Error(t, s.ACLTokenDeleteByAccessor(3, structs.ACLTokenAnonymousID, nil)) - require.Error(t, s.ACLTokenDeleteBySecret(3, "anonymous", nil)) }) t.Run("Not Found", func(t *testing.T) { @@ -1601,7 +1572,6 @@ func TestStateStore_ACLToken_Delete(t *testing.T) { // deletion of non-existent policies is not an error require.NoError(t, s.ACLTokenDeleteByAccessor(3, "ea58a09c-2100-4aef-816b-8ee0ade77dcd", nil)) - require.NoError(t, s.ACLTokenDeleteBySecret(3, "376d0cae-dd50-4213-9668-2c7797a7fb2d", nil)) }) } diff --git a/agent/structs/acl.go b/agent/structs/acl.go index 1c3d2a261..4b6815dbd 100644 --- a/agent/structs/acl.go +++ b/agent/structs/acl.go @@ -93,10 +93,6 @@ const ( // ACLSet creates or updates a token. // TODO(ACL-Legacy-Compat): remove ACLSet ACLOp = "set" - - // ACLDelete deletes a token. - // TODO(ACL-Legacy-Compat): remove - ACLDelete ACLOp = "delete" ) // ACLBootstrapNotAllowedErr is returned once we know that a bootstrap can no From ea2e0ad2ec20c0e96ba5e27b495de0adf2fcc5fb Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 22 Sep 2021 11:32:41 -0400 Subject: [PATCH 3/5] acl: remove initializeLegacyACL from leader init --- agent/consul/leader.go | 101 ----------------------------------------- 1 file changed, 101 deletions(-) diff --git a/agent/consul/leader.go b/agent/consul/leader.go index 3f92b9788..91b1451c7 100644 --- a/agent/consul/leader.go +++ b/agent/consul/leader.go @@ -398,102 +398,6 @@ func (s *Server) revokeLeadership() { <-s.autopilot.Stop() } -// DEPRECATED (ACL-Legacy-Compat) - Remove once old ACL compatibility is removed -func (s *Server) initializeLegacyACL() error { - if !s.config.ACLsEnabled { - return nil - } - - authDC := s.config.PrimaryDatacenter - - // Create anonymous token if missing. - state := s.fsm.State() - _, token, err := state.ACLTokenGetBySecret(nil, anonymousToken, nil) - if err != nil { - return fmt.Errorf("failed to get anonymous token: %v", err) - } - // Ignoring expiration times to avoid an insertion collision. - if token == nil { - req := structs.ACLRequest{ - Datacenter: authDC, - Op: structs.ACLSet, - ACL: structs.ACL{ - ID: anonymousToken, - Name: "Anonymous Token", - Type: structs.ACLTokenTypeClient, - }, - } - _, err := s.raftApply(structs.ACLRequestType, &req) - if err != nil { - return fmt.Errorf("failed to create anonymous token: %v", err) - } - s.logger.Info("Created the anonymous token") - } - - // Check for configured master token. - if master := s.config.ACLMasterToken; len(master) > 0 { - _, token, err = state.ACLTokenGetBySecret(nil, master, nil) - if err != nil { - return fmt.Errorf("failed to get master token: %v", err) - } - // Ignoring expiration times to avoid an insertion collision. - if token == nil { - req := structs.ACLRequest{ - Datacenter: authDC, - Op: structs.ACLSet, - ACL: structs.ACL{ - ID: master, - Name: "Master Token", - Type: structs.ACLTokenTypeManagement, - }, - } - _, err := s.raftApply(structs.ACLRequestType, &req) - if err != nil { - return fmt.Errorf("failed to create master token: %v", err) - } - s.logger.Info("Created ACL master token from configuration") - } - } - - // Check to see if we need to initialize the ACL bootstrap info. This - // needs a Consul version check since it introduces a new Raft operation - // that'll produce an error on older servers, and it also makes a piece - // of state in the state store that will cause problems with older - // servers consuming snapshots, so we have to wait to create it. - var minVersion = version.Must(version.NewVersion("0.9.1")) - if ok, _ := ServersInDCMeetMinimumVersion(s, s.config.Datacenter, minVersion); ok { - canBootstrap, _, err := state.CanBootstrapACLToken() - if err != nil { - return fmt.Errorf("failed looking for ACL bootstrap info: %v", err) - } - if canBootstrap { - req := structs.ACLRequest{ - Datacenter: authDC, - Op: structs.ACLBootstrapInit, - } - resp, err := s.raftApply(structs.ACLRequestType, &req) - if err != nil { - return fmt.Errorf("failed to initialize ACL bootstrap: %v", err) - } - switch v := resp.(type) { - case bool: - if v { - s.logger.Info("ACL bootstrap enabled") - } else { - s.logger.Info("ACL bootstrap disabled, existing management tokens found") - } - - default: - return fmt.Errorf("unexpected response trying to initialize ACL bootstrap: %T", v) - } - } - } else { - s.logger.Warn("Can't initialize ACL bootstrap until all servers are >= " + minVersion.String()) - } - - return nil -} - // initializeACLs is used to setup the ACLs if we are the leader // and need to do this. func (s *Server) initializeACLs(ctx context.Context, upgrade bool) error { @@ -525,11 +429,6 @@ func (s *Server) initializeACLs(ctx context.Context, upgrade bool) error { } if s.InACLDatacenter() { - if s.UseLegacyACLs() && !upgrade { - s.logger.Info("initializing legacy acls") - return s.initializeLegacyACL() - } - s.logger.Info("initializing acls") // TODO(partitions): initialize acls in all of the partitions? From a8358f7575a95578b87e717939a77737870691a8 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 22 Sep 2021 11:33:54 -0400 Subject: [PATCH 4/5] acl: remove bootstrap-init FSM operation --- agent/consul/fsm/commands_oss.go | 8 +-- agent/consul/fsm/commands_oss_test.go | 96 --------------------------- agent/structs/acl_legacy.go | 8 --- 3 files changed, 1 insertion(+), 111 deletions(-) diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index a866f01c6..43063ef27 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -254,19 +254,13 @@ func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { - case structs.ACLBootstrapInit: - enabled, _, err := c.state.CanBootstrapACLToken() - if err != nil { - return err - } - return enabled case structs.ACLSet: if err := c.state.ACLTokenSet(index, req.ACL.Convert(), true); err != nil { return err } return req.ACL.ID // Legacy commands that have been removed - case "bootstrap-now", "force-set", "delete": + case "bootstrap-now", "bootstrap-init", "force-set", "delete": return fmt.Errorf("command %v has been removed with the legacy ACL system", req.Op) default: c.logger.Warn("Invalid ACL operation", "operation", req.Op) diff --git a/agent/consul/fsm/commands_oss_test.go b/agent/consul/fsm/commands_oss_test.go index f56ae3f24..3763ac418 100644 --- a/agent/consul/fsm/commands_oss_test.go +++ b/agent/consul/fsm/commands_oss_test.go @@ -829,102 +829,6 @@ func TestFSM_SessionCreate_Destroy(t *testing.T) { } } -func TestFSM_ACL_CRUD(t *testing.T) { - t.Parallel() - logger := testutil.Logger(t) - fsm, err := New(nil, logger) - if err != nil { - t.Fatalf("err: %v", err) - } - - // Create a new ACL. - req := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - ID: generateUUID(), - Name: "User token", - Type: structs.ACLTokenTypeClient, - }, - } - buf, err := structs.Encode(structs.ACLRequestType, req) - if err != nil { - t.Fatalf("err: %v", err) - } - resp := fsm.Apply(makeLog(buf)) - if err, ok := resp.(error); ok { - t.Fatalf("resp: %v", err) - } - - // Get the ACL. - id := resp.(string) - _, acl, err := fsm.state.ACLTokenGetBySecret(nil, id, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing") - } - - // Verify the ACL. - if acl.SecretID != id { - t.Fatalf("bad: %v", *acl) - } - if acl.Description != "User token" { - t.Fatalf("bad: %v", *acl) - } - if acl.Type != structs.ACLTokenTypeClient { - t.Fatalf("bad: %v", *acl) - } - - // Try to destroy. - destroy := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLDelete, - ACL: structs.ACL{ - ID: id, - }, - } - buf, err = structs.Encode(structs.ACLRequestType, destroy) - if err != nil { - t.Fatalf("err: %v", err) - } - resp = fsm.Apply(makeLog(buf)) - if resp != nil { - t.Fatalf("resp: %v", resp) - } - - _, acl, err = fsm.state.ACLTokenGetBySecret(nil, id, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - if acl != nil { - t.Fatalf("should be destroyed") - } - - // Initialize bootstrap (should work since we haven't made a management - // token). - init := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLBootstrapInit, - } - buf, err = structs.Encode(structs.ACLRequestType, init) - if err != nil { - t.Fatalf("err: %v", err) - } - resp = fsm.Apply(makeLog(buf)) - if enabled, ok := resp.(bool); !ok || !enabled { - t.Fatalf("resp: %v", resp) - } - canBootstrap, _, err := fsm.state.CanBootstrapACLToken() - if err != nil { - t.Fatalf("err: %v", err) - } - if !canBootstrap { - t.Fatalf("bad: shouldn't be able to bootstrap") - } -} - func TestFSM_PreparedQuery_CRUD(t *testing.T) { t.Parallel() logger := testutil.Logger(t) diff --git a/agent/structs/acl_legacy.go b/agent/structs/acl_legacy.go index 63c34baa6..a8e6a9834 100644 --- a/agent/structs/acl_legacy.go +++ b/agent/structs/acl_legacy.go @@ -13,14 +13,6 @@ import ( "github.com/hashicorp/consul/acl" ) -const ( - // ACLBootstrapInit is used to perform a scan for existing tokens which - // will decide whether bootstrapping is allowed for a cluster. This is - // initiated by the leader when it steps up, if necessary. - // TODO(ACL-Legacy-Compat): remove - ACLBootstrapInit ACLOp = "bootstrap-init" -) - const ( // ACLTokenTypeClient tokens have rules applied ACLTokenTypeClient = "client" From 2995ac61f2ffb1eb9294808dc872505b27c33436 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 22 Sep 2021 11:43:13 -0400 Subject: [PATCH 5/5] acl: remove the last of the legacy FSM Replace it with an implementation that returns an error, and rename some symbols to use a Deprecated suffix to make it clear. Also remove the ACLRequest struct, which is no longer referenced. --- agent/consul/acl_endpoint_legacy.go | 4 +++- agent/consul/fsm/commands_oss.go | 27 +++--------------------- agent/consul/fsm/snapshot_oss.go | 2 +- agent/consul/fsm/snapshot_oss_test.go | 2 +- agent/structs/acl.go | 9 -------- agent/structs/acl_legacy.go | 15 ------------- agent/structs/structs.go | 4 ++-- website/content/docs/agent/telemetry.mdx | 1 - 8 files changed, 10 insertions(+), 54 deletions(-) diff --git a/agent/consul/acl_endpoint_legacy.go b/agent/consul/acl_endpoint_legacy.go index e85163147..069fb1db2 100644 --- a/agent/consul/acl_endpoint_legacy.go +++ b/agent/consul/acl_endpoint_legacy.go @@ -10,7 +10,9 @@ func (a *ACL) Bootstrap(*structs.DCSpecificRequest, *structs.ACL) error { return fmt.Errorf("ACL.Bootstrap: the legacy ACL system has been removed") } -func (a *ACL) Apply(*structs.ACLRequest, *string) error { +type LegacyACLRequest struct{} + +func (a *ACL) Apply(*LegacyACLRequest, *string) error { return fmt.Errorf("ACL.Apply: the legacy ACL system has been removed") } diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index 43063ef27..1d4d15fdb 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -108,7 +108,7 @@ func init() { registerCommand(structs.KVSRequestType, (*FSM).applyKVSOperation) registerCommand(structs.SessionRequestType, (*FSM).applySessionOperation) // DEPRECATED (ACL-Legacy-Compat) - Only needed for v1 ACL compat - registerCommand(structs.ACLRequestType, (*FSM).applyACLOperation) + registerCommand(structs.DeprecatedACLRequestType, (*FSM).deprecatedApplyACLOperation) registerCommand(structs.TombstoneRequestType, (*FSM).applyTombstoneOperation) registerCommand(structs.CoordinateBatchUpdateType, (*FSM).applyCoordinateBatchUpdate) registerCommand(structs.PreparedQueryRequestType, (*FSM).applyPreparedQueryOperation) @@ -243,29 +243,8 @@ func (c *FSM) applySessionOperation(buf []byte, index uint64) interface{} { } } -// DEPRECATED (ACL-Legacy-Compat) - Only needed for legacy compat -func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { - // TODO (ACL-Legacy-Compat) - Should we warn here somehow about using deprecated features - // maybe emit a second metric? - var req structs.ACLRequest - if err := structs.Decode(buf, &req); err != nil { - panic(fmt.Errorf("failed to decode request: %v", err)) - } - defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) - switch req.Op { - case structs.ACLSet: - if err := c.state.ACLTokenSet(index, req.ACL.Convert(), true); err != nil { - return err - } - return req.ACL.ID - // Legacy commands that have been removed - case "bootstrap-now", "bootstrap-init", "force-set", "delete": - return fmt.Errorf("command %v has been removed with the legacy ACL system", req.Op) - default: - c.logger.Warn("Invalid ACL operation", "operation", req.Op) - return fmt.Errorf("Invalid ACL operation '%s'", req.Op) - } +func (c *FSM) deprecatedApplyACLOperation(_ []byte, _ uint64) interface{} { + return fmt.Errorf("legacy ACL command has been removed with the legacy ACL system") } func (c *FSM) applyTombstoneOperation(buf []byte, index uint64) interface{} { diff --git a/agent/consul/fsm/snapshot_oss.go b/agent/consul/fsm/snapshot_oss.go index 57b3e81d8..ec9a638d1 100644 --- a/agent/consul/fsm/snapshot_oss.go +++ b/agent/consul/fsm/snapshot_oss.go @@ -15,7 +15,7 @@ func init() { registerRestorer(structs.KVSRequestType, restoreKV) registerRestorer(structs.TombstoneRequestType, restoreTombstone) registerRestorer(structs.SessionRequestType, restoreSession) - registerRestorer(structs.ACLRequestType, restoreACL) + registerRestorer(structs.DeprecatedACLRequestType, restoreACL) registerRestorer(structs.ACLBootstrapRequestType, restoreACLBootstrap) registerRestorer(structs.CoordinateBatchUpdateType, restoreCoordinates) registerRestorer(structs.PreparedQueryRequestType, restorePreparedQuery) diff --git a/agent/consul/fsm/snapshot_oss_test.go b/agent/consul/fsm/snapshot_oss_test.go index e2f8c6e03..86b9a3d9b 100644 --- a/agent/consul/fsm/snapshot_oss_test.go +++ b/agent/consul/fsm/snapshot_oss_test.go @@ -452,7 +452,7 @@ func TestFSM_SnapshotRestore_OSS(t *testing.T) { // Persist a legacy ACL token - this is not done in newer code // but we want to ensure that restoring legacy tokens works as // expected so we must inject one here manually - _, err = sink.Write([]byte{byte(structs.ACLRequestType)}) + _, err = sink.Write([]byte{byte(structs.DeprecatedACLRequestType)}) require.NoError(t, err) acl := structs.ACL{ diff --git a/agent/structs/acl.go b/agent/structs/acl.go index 4b6815dbd..4394356bd 100644 --- a/agent/structs/acl.go +++ b/agent/structs/acl.go @@ -32,9 +32,6 @@ const ( ACLModeUnknown ACLMode = "3" ) -// ACLOp is used in RPCs to encode ACL operations. -type ACLOp string - type ACLTokenIDType string const ( @@ -89,12 +86,6 @@ func ACLIDReserved(id string) bool { return strings.HasPrefix(id, ACLReservedPrefix) } -const ( - // ACLSet creates or updates a token. - // TODO(ACL-Legacy-Compat): remove - ACLSet ACLOp = "set" -) - // ACLBootstrapNotAllowedErr is returned once we know that a bootstrap can no // longer be done since the cluster was bootstrapped var ACLBootstrapNotAllowedErr = errors.New("ACL bootstrap no longer allowed") diff --git a/agent/structs/acl_legacy.go b/agent/structs/acl_legacy.go index a8e6a9834..330213321 100644 --- a/agent/structs/acl_legacy.go +++ b/agent/structs/acl_legacy.go @@ -87,21 +87,6 @@ func (tok *ACLToken) Convert() (*ACL, error) { return compat, nil } -// ACLRequest is used to create, update or delete an ACL -type ACLRequest struct { - Datacenter string - Op ACLOp - ACL ACL - WriteRequest -} - -func (r *ACLRequest) RequestDatacenter() string { - return r.Datacenter -} - -// ACLRequests is a list of ACL change requests. -type ACLRequests []*ACLRequest - // ACLSpecificRequest is used to request an ACL by ID type ACLSpecificRequest struct { Datacenter string diff --git a/agent/structs/structs.go b/agent/structs/structs.go index cb47bff63..83ae63e79 100644 --- a/agent/structs/structs.go +++ b/agent/structs/structs.go @@ -41,7 +41,7 @@ const ( DeregisterRequestType = 1 KVSRequestType = 2 SessionRequestType = 3 - ACLRequestType = 4 // DEPRECATED (ACL-Legacy-Compat) + DeprecatedACLRequestType = 4 // Removed with the legacy ACL system TombstoneRequestType = 5 CoordinateBatchUpdateType = 6 PreparedQueryRequestType = 7 @@ -81,7 +81,7 @@ var requestTypeStrings = map[MessageType]string{ DeregisterRequestType: "Deregister", KVSRequestType: "KVS", SessionRequestType: "Session", - ACLRequestType: "ACL", // DEPRECATED (ACL-Legacy-Compat) + DeprecatedACLRequestType: "ACL", // DEPRECATED (ACL-Legacy-Compat) TombstoneRequestType: "Tombstone", CoordinateBatchUpdateType: "CoordinateBatchUpdate", PreparedQueryRequestType: "PreparedQuery", diff --git a/website/content/docs/agent/telemetry.mdx b/website/content/docs/agent/telemetry.mdx index 509987582..2902d4355 100644 --- a/website/content/docs/agent/telemetry.mdx +++ b/website/content/docs/agent/telemetry.mdx @@ -380,7 +380,6 @@ These metrics are used to monitor the health of the Consul servers. | `consul.catalog.deregister` | Measures the time it takes to complete a catalog deregister operation. | ms | timer | | `consul.fsm.register` | Measures the time it takes to apply a catalog register operation to the FSM. | ms | timer | | `consul.fsm.deregister` | Measures the time it takes to apply a catalog deregister operation to the FSM. | ms | timer | -| `consul.fsm.acl.` | Measures the time it takes to apply the given ACL operation to the FSM. | ms | timer | | `consul.fsm.session.` | Measures the time it takes to apply the given session operation to the FSM. | ms | timer | | `consul.fsm.kvs.` | Measures the time it takes to apply the given KV operation to the FSM. | ms | timer | | `consul.fsm.tombstone.` | Measures the time it takes to apply the given tombstone operation to the FSM. | ms | timer |