| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Copyright 2016 Nippon Telegraph and Telephone Corporation.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package auth
- import (
- "github.com/coreos/etcd/storage/backend"
- "github.com/coreos/pkg/capnslog"
- )
- var (
- enableFlagKey = []byte("authEnabled")
- authBucketName = []byte("auth")
- plog = capnslog.NewPackageLogger("github.com/coreos/etcd", "auth")
- )
- type AuthStore interface {
- // AuthEnable() turns on the authentication feature
- AuthEnable()
- // Recover recovers the state of auth store from the given backend
- Recover(b backend.Backend)
- }
- type authStore struct {
- be backend.Backend
- }
- func (as *authStore) AuthEnable() {
- value := []byte{1}
- b := as.be
- tx := b.BatchTx()
- tx.Lock()
- tx.UnsafePut(authBucketName, enableFlagKey, value)
- tx.Unlock()
- b.ForceCommit()
- plog.Noticef("Authentication enabled")
- }
- func (as *authStore) Recover(be backend.Backend) {
- as.be = be
- // TODO(mitake): recovery process
- }
- func NewAuthStore(be backend.Backend) *authStore {
- tx := be.BatchTx()
- tx.Lock()
- tx.UnsafeCreateBucket(authBucketName)
- tx.Unlock()
- be.ForceCommit()
- return &authStore{
- be: be,
- }
- }
|