2016-07-31 17:11:14 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2016 Minio, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-18 17:50:50 -04:00
|
|
|
package cmd
|
2016-07-31 17:11:14 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-09-16 03:30:55 -04:00
|
|
|
"math/rand"
|
2016-07-31 17:11:14 -04:00
|
|
|
"net/rpc"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2016-08-22 14:01:21 -04:00
|
|
|
"time"
|
2016-07-31 17:11:14 -04:00
|
|
|
|
|
|
|
router "github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
2016-08-10 02:57:16 -04:00
|
|
|
const lockRPCPath = "/minio/lock"
|
2016-09-16 03:30:55 -04:00
|
|
|
const lockMaintenanceLoop = 1 * time.Minute
|
|
|
|
const lockCheckValidityInterval = 2 * time.Minute
|
2016-07-31 17:11:14 -04:00
|
|
|
|
2016-08-22 14:01:21 -04:00
|
|
|
// LockArgs besides lock name, holds Token and Timestamp for session
|
|
|
|
// authentication and validation server restart.
|
|
|
|
type LockArgs struct {
|
|
|
|
Name string
|
|
|
|
Token string
|
|
|
|
Timestamp time.Time
|
2016-09-16 03:30:55 -04:00
|
|
|
Node string
|
|
|
|
RPCPath string
|
|
|
|
UID string
|
2016-08-22 14:01:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetToken - sets the token to the supplied value.
|
|
|
|
func (l *LockArgs) SetToken(token string) {
|
|
|
|
l.Token = token
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTimestamp - sets the timestamp to the supplied value.
|
|
|
|
func (l *LockArgs) SetTimestamp(tstamp time.Time) {
|
|
|
|
l.Timestamp = tstamp
|
|
|
|
}
|
|
|
|
|
2016-09-16 03:30:55 -04:00
|
|
|
// lockRequesterInfo stores various info from the client for each lock that is requested
|
|
|
|
type lockRequesterInfo struct {
|
|
|
|
writer bool // Bool whether write or read lock
|
|
|
|
node string // Network address of client claiming lock
|
|
|
|
rpcPath string // RPC path of client claiming lock
|
|
|
|
uid string // Uid to uniquely identify request of client
|
|
|
|
timestamp time.Time // Timestamp set at the time of initialization
|
|
|
|
timeLastCheck time.Time // Timestamp for last check of validity of lock
|
|
|
|
}
|
|
|
|
|
|
|
|
// isWriteLock returns whether the lock is a write or read lock
|
|
|
|
func isWriteLock(lri []lockRequesterInfo) bool {
|
|
|
|
return len(lri) == 1 && lri[0].writer
|
|
|
|
}
|
|
|
|
|
|
|
|
// lockServer is type for RPC handlers
|
2016-07-31 17:11:14 -04:00
|
|
|
type lockServer struct {
|
2016-09-16 03:30:55 -04:00
|
|
|
rpcPath string
|
|
|
|
mutex sync.Mutex
|
|
|
|
lockMap map[string][]lockRequesterInfo
|
2016-08-22 14:01:21 -04:00
|
|
|
timestamp time.Time // Timestamp set at the time of initialization. Resets naturally on minio server restart.
|
|
|
|
}
|
|
|
|
|
2016-08-23 22:19:24 -04:00
|
|
|
func (l *lockServer) verifyArgs(args *LockArgs) error {
|
|
|
|
if !l.timestamp.Equal(args.Timestamp) {
|
2016-08-24 13:14:14 -04:00
|
|
|
return errInvalidTimestamp
|
2016-08-23 22:19:24 -04:00
|
|
|
}
|
|
|
|
if !isRPCTokenValid(args.Token) {
|
2016-08-24 13:14:14 -04:00
|
|
|
return errInvalidToken
|
2016-08-23 22:19:24 -04:00
|
|
|
}
|
|
|
|
return nil
|
2016-07-31 17:11:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Distributed lock handlers
|
|
|
|
|
2016-08-22 14:01:21 -04:00
|
|
|
// LoginHandler - handles LoginHandler RPC call.
|
|
|
|
func (l *lockServer) LoginHandler(args *RPCLoginArgs, reply *RPCLoginReply) error {
|
|
|
|
jwt, err := newJWT(defaultTokenExpiry)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = jwt.Authenticate(args.Username, args.Password); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
token, err := jwt.GenerateToken(args.Username)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
reply.Token = token
|
|
|
|
reply.Timestamp = l.timestamp
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-27 06:16:52 -04:00
|
|
|
// Lock - rpc handler for (single) write lock operation.
|
2016-08-22 14:01:21 -04:00
|
|
|
func (l *lockServer) Lock(args *LockArgs, reply *bool) error {
|
2016-07-31 17:11:14 -04:00
|
|
|
l.mutex.Lock()
|
|
|
|
defer l.mutex.Unlock()
|
2016-08-23 22:19:24 -04:00
|
|
|
if err := l.verifyArgs(args); err != nil {
|
|
|
|
return err
|
2016-08-22 14:01:21 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
_, *reply = l.lockMap[args.Name]
|
|
|
|
if !*reply { // No locks held on the given name, so claim write lock
|
2016-09-16 16:44:52 -04:00
|
|
|
l.lockMap[args.Name] = []lockRequesterInfo{{writer: true, node: args.Node, rpcPath: args.RPCPath, uid: args.UID, timestamp: time.Now(), timeLastCheck: time.Now()}}
|
2016-07-31 17:11:14 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
*reply = !*reply // Negate *reply to return true when lock is granted or false otherwise
|
2016-07-31 17:11:14 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-27 06:16:52 -04:00
|
|
|
// Unlock - rpc handler for (single) write unlock operation.
|
2016-08-22 14:01:21 -04:00
|
|
|
func (l *lockServer) Unlock(args *LockArgs, reply *bool) error {
|
2016-07-31 17:11:14 -04:00
|
|
|
l.mutex.Lock()
|
|
|
|
defer l.mutex.Unlock()
|
2016-08-23 22:19:24 -04:00
|
|
|
if err := l.verifyArgs(args); err != nil {
|
|
|
|
return err
|
2016-08-22 14:01:21 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
var lri []lockRequesterInfo
|
|
|
|
lri, *reply = l.lockMap[args.Name]
|
|
|
|
if !*reply { // No lock is held on the given name
|
|
|
|
return fmt.Errorf("Unlock attempted on an unlocked entity: %s", args.Name)
|
|
|
|
}
|
|
|
|
if *reply = isWriteLock(lri); !*reply { // Unless it is a write lock
|
|
|
|
return fmt.Errorf("Unlock attempted on a read locked entity: %s (%d read locks active)", args.Name, len(lri))
|
|
|
|
}
|
|
|
|
if l.removeEntry(args.Name, args.UID, &lri) {
|
2016-08-27 06:16:52 -04:00
|
|
|
return nil
|
2016-07-31 17:11:14 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
return fmt.Errorf("Unlock unable to find corresponding lock for uid: %s", args.UID)
|
2016-07-31 17:11:14 -04:00
|
|
|
}
|
|
|
|
|
2016-08-27 06:16:52 -04:00
|
|
|
// RLock - rpc handler for read lock operation.
|
2016-08-22 14:01:21 -04:00
|
|
|
func (l *lockServer) RLock(args *LockArgs, reply *bool) error {
|
2016-08-14 19:57:01 -04:00
|
|
|
l.mutex.Lock()
|
|
|
|
defer l.mutex.Unlock()
|
2016-08-23 22:19:24 -04:00
|
|
|
if err := l.verifyArgs(args); err != nil {
|
|
|
|
return err
|
2016-08-22 14:01:21 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
var lri []lockRequesterInfo
|
|
|
|
lri, *reply = l.lockMap[args.Name]
|
|
|
|
if !*reply { // No locks held on the given name, so claim (first) read lock
|
2016-09-16 16:44:52 -04:00
|
|
|
l.lockMap[args.Name] = []lockRequesterInfo{{writer: false, node: args.Node, rpcPath: args.RPCPath, uid: args.UID, timestamp: time.Now(), timeLastCheck: time.Now()}}
|
2016-08-17 15:36:22 -04:00
|
|
|
*reply = true
|
2016-08-14 19:57:01 -04:00
|
|
|
} else {
|
2016-09-16 03:30:55 -04:00
|
|
|
if *reply = !isWriteLock(lri); *reply { // Unless there is a write lock
|
|
|
|
l.lockMap[args.Name] = append(l.lockMap[args.Name], lockRequesterInfo{writer: false, node: args.Node, rpcPath: args.RPCPath, uid: args.UID, timestamp: time.Now(), timeLastCheck: time.Now()})
|
|
|
|
}
|
2016-08-14 19:57:01 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-27 06:16:52 -04:00
|
|
|
// RUnlock - rpc handler for read unlock operation.
|
2016-08-22 14:01:21 -04:00
|
|
|
func (l *lockServer) RUnlock(args *LockArgs, reply *bool) error {
|
2016-08-14 19:57:01 -04:00
|
|
|
l.mutex.Lock()
|
|
|
|
defer l.mutex.Unlock()
|
2016-08-23 22:19:24 -04:00
|
|
|
if err := l.verifyArgs(args); err != nil {
|
|
|
|
return err
|
2016-08-22 14:01:21 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
var lri []lockRequesterInfo
|
|
|
|
if lri, *reply = l.lockMap[args.Name]; !*reply { // No lock is held on the given name
|
|
|
|
return fmt.Errorf("RUnlock attempted on an unlocked entity: %s", args.Name)
|
|
|
|
}
|
|
|
|
if *reply = !isWriteLock(lri); !*reply { // A write-lock is held, cannot release a read lock
|
2016-08-27 06:16:52 -04:00
|
|
|
return fmt.Errorf("RUnlock attempted on a write locked entity: %s", args.Name)
|
2016-08-14 19:57:01 -04:00
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
if l.removeEntry(args.Name, args.UID, &lri) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("RUnlock unable to find corresponding read lock for uid: %s", args.UID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Active - rpc handler for active lock status.
|
|
|
|
func (l *lockServer) Active(args *LockArgs, reply *bool) error {
|
|
|
|
l.mutex.Lock()
|
|
|
|
defer l.mutex.Unlock()
|
|
|
|
if err := l.verifyArgs(args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var lri []lockRequesterInfo
|
|
|
|
if lri, *reply = l.lockMap[args.Name]; !*reply {
|
|
|
|
return nil // No lock is held on the given name so return false
|
|
|
|
}
|
|
|
|
// Check whether uid is still active
|
|
|
|
for _, entry := range lri {
|
|
|
|
if *reply = entry.uid == args.UID; *reply {
|
|
|
|
return nil // When uid found return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil // None found so return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// removeEntry either, based on the uid of the lock message, removes a single entry from the
|
|
|
|
// lockRequesterInfo array or the whole array from the map (in case of a write lock or last read lock)
|
|
|
|
func (l *lockServer) removeEntry(name, uid string, lri *[]lockRequesterInfo) bool {
|
|
|
|
// Find correct entry to remove based on uid
|
|
|
|
for index, entry := range *lri {
|
|
|
|
if entry.uid == uid {
|
|
|
|
if len(*lri) == 1 {
|
|
|
|
delete(l.lockMap, name) // Remove the (last) lock
|
|
|
|
} else {
|
|
|
|
// Remove the appropriate read lock
|
|
|
|
*lri = append((*lri)[:index], (*lri)[index+1:]...)
|
|
|
|
l.lockMap[name] = *lri
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// nameLockRequesterInfoPair is a helper type for lock maintenance
|
|
|
|
type nameLockRequesterInfoPair struct {
|
|
|
|
name string
|
|
|
|
lri lockRequesterInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
// getLongLivedLocks returns locks that are older than a certain time and
|
|
|
|
// have not been 'checked' for validity too soon enough
|
|
|
|
func getLongLivedLocks(m map[string][]lockRequesterInfo, interval time.Duration) []nameLockRequesterInfoPair {
|
|
|
|
|
|
|
|
rslt := []nameLockRequesterInfoPair{}
|
|
|
|
|
|
|
|
for name, lriArray := range m {
|
|
|
|
|
|
|
|
for idx := range lriArray {
|
|
|
|
// Check whether enough time has gone by since last check
|
|
|
|
if time.Since(lriArray[idx].timeLastCheck) >= interval {
|
|
|
|
rslt = append(rslt, nameLockRequesterInfoPair{name: name, lri: lriArray[idx]})
|
|
|
|
lriArray[idx].timeLastCheck = time.Now()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rslt
|
|
|
|
}
|
|
|
|
|
|
|
|
// lockMaintenance loops over locks that have been active for some time and checks back
|
|
|
|
// with the original server whether it is still alive or not
|
|
|
|
func (l *lockServer) lockMaintenance(interval time.Duration) {
|
|
|
|
|
|
|
|
l.mutex.Lock()
|
|
|
|
// get list of locks to check
|
|
|
|
nlripLongLived := getLongLivedLocks(l.lockMap, interval)
|
|
|
|
l.mutex.Unlock()
|
|
|
|
|
|
|
|
for _, nlrip := range nlripLongLived {
|
|
|
|
|
|
|
|
c := newClient(nlrip.lri.node, nlrip.lri.rpcPath)
|
|
|
|
|
|
|
|
var active bool
|
|
|
|
|
|
|
|
// Call back to original server verify whether the lock is still active (based on name & uid)
|
|
|
|
if err := c.Call("Dsync.Active", &LockArgs{Name: nlrip.name, UID: nlrip.lri.uid}, &active); err != nil {
|
|
|
|
// We failed to connect back to the server that originated the lock, this can either be due to
|
|
|
|
// - server at client down
|
|
|
|
// - some network error (and server is up normally)
|
|
|
|
//
|
|
|
|
// We will ignore the error, and we will retry later to get resolve on this lock
|
|
|
|
c.Close()
|
|
|
|
} else {
|
|
|
|
c.Close()
|
|
|
|
|
|
|
|
if !active { // The lock is no longer active at server that originated the lock
|
|
|
|
// so remove the lock from the map
|
|
|
|
l.mutex.Lock()
|
|
|
|
// Check if entry is still in map (could have been removed altogether by 'concurrent' (R)Unlock of last entry)
|
|
|
|
if lri, ok := l.lockMap[nlrip.name]; ok {
|
|
|
|
if !l.removeEntry(nlrip.name, nlrip.lri.uid, &lri) {
|
|
|
|
// Remove failed, in case it is a:
|
|
|
|
if nlrip.lri.writer {
|
|
|
|
// Writer: this should never happen as the whole (mapped) entry should have been deleted
|
|
|
|
log.Errorln("Lock maintenance failed to remove entry for write lock (should never happen)", nlrip.name, nlrip.lri, lri)
|
|
|
|
} else {
|
|
|
|
// Reader: this can happen if multiple read locks were active and the one we are looking for
|
|
|
|
// has been released concurrently (so it is fine)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// remove went okay, all is fine
|
|
|
|
}
|
|
|
|
}
|
|
|
|
l.mutex.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-14 19:57:01 -04:00
|
|
|
}
|
|
|
|
|
2016-07-31 17:11:14 -04:00
|
|
|
// Initialize distributed lock.
|
|
|
|
func initDistributedNSLock(mux *router.Router, serverConfig serverCmdConfig) {
|
|
|
|
lockServers := newLockServers(serverConfig)
|
|
|
|
registerStorageLockers(mux, lockServers)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create one lock server for every local storage rpc server.
|
|
|
|
func newLockServers(serverConfig serverCmdConfig) (lockServers []*lockServer) {
|
|
|
|
// Initialize posix storage API.
|
|
|
|
exports := serverConfig.disks
|
|
|
|
ignoredExports := serverConfig.ignoredDisks
|
|
|
|
|
|
|
|
// Save ignored disks in a map
|
|
|
|
skipDisks := make(map[string]bool)
|
|
|
|
for _, ignoredExport := range ignoredExports {
|
|
|
|
skipDisks[ignoredExport] = true
|
|
|
|
}
|
|
|
|
for _, export := range exports {
|
|
|
|
if skipDisks[export] {
|
|
|
|
continue
|
|
|
|
}
|
2016-08-10 02:57:16 -04:00
|
|
|
if isLocalStorage(export) {
|
|
|
|
if idx := strings.LastIndex(export, ":"); idx != -1 {
|
|
|
|
export = export[idx+1:]
|
|
|
|
}
|
2016-09-16 03:30:55 -04:00
|
|
|
|
|
|
|
// Create handler for lock RPCs
|
|
|
|
locker := &lockServer{
|
2016-08-22 14:01:21 -04:00
|
|
|
rpcPath: export,
|
|
|
|
mutex: sync.Mutex{},
|
2016-09-16 03:30:55 -04:00
|
|
|
lockMap: make(map[string][]lockRequesterInfo),
|
2016-08-22 14:01:21 -04:00
|
|
|
timestamp: time.Now().UTC(),
|
2016-09-16 03:30:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start loop for stale lock maintenance
|
|
|
|
go func() {
|
|
|
|
// Start with random sleep time, so as to avoid "synchronous checks" between servers
|
|
|
|
time.Sleep(time.Duration(rand.Float64() * float64(lockMaintenanceLoop)))
|
|
|
|
for {
|
|
|
|
time.Sleep(lockMaintenanceLoop)
|
|
|
|
locker.lockMaintenance(lockCheckValidityInterval)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
lockServers = append(lockServers, locker)
|
2016-07-31 17:11:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return lockServers
|
|
|
|
}
|
|
|
|
|
2016-08-10 02:57:16 -04:00
|
|
|
// registerStorageLockers - register locker rpc handlers for net/rpc library clients
|
2016-07-31 17:11:14 -04:00
|
|
|
func registerStorageLockers(mux *router.Router, lockServers []*lockServer) {
|
|
|
|
for _, lockServer := range lockServers {
|
2016-08-10 02:57:16 -04:00
|
|
|
lockRPCServer := rpc.NewServer()
|
2016-07-31 17:11:14 -04:00
|
|
|
lockRPCServer.RegisterName("Dsync", lockServer)
|
|
|
|
lockRouter := mux.PathPrefix(reservedBucket).Subrouter()
|
|
|
|
lockRouter.Path(path.Join("/lock", lockServer.rpcPath)).Handler(lockRPCServer)
|
|
|
|
}
|
|
|
|
}
|