/* * 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. */ package cmd import ( "fmt" "sort" "sync" "time" "github.com/minio/minio/pkg/disk" "github.com/minio/minio/pkg/errors" ) // XL constants. const ( // XL metadata file carries per object metadata. xlMetaJSONFile = "xl.json" // Uploads metadata file carries per multipart object metadata. uploadsJSONFile = "uploads.json" // Maximum erasure blocks. maxErasureBlocks = 16 // Minimum erasure blocks. minErasureBlocks = 4 ) // xlObjects - Implements XL object layer. type xlObjects struct { mutex *sync.Mutex storageDisks []StorageAPI // Collection of initialized backend disks. // ListObjects pool management. listPool *treeWalkPool // name space mutex for object layer nsMutex *nsLockMap } // list of all errors that can be ignored in tree walk operation in XL var xlTreeWalkIgnoredErrs = append(baseIgnoredErrs, errDiskAccessDenied, errVolumeNotFound, errFileNotFound) // newXLObjectLayer - initialize any object layer depending on the number of disks. func newXLObjectLayer(storageDisks []StorageAPI) (ObjectLayer, error) { // Initialize XL object layer. objAPI, err := newXLObjects(storageDisks) fatalIf(err, "Unable to initialize XL object layer.") // Initialize and load bucket policies. err = initBucketPolicies(objAPI) fatalIf(err, "Unable to load all bucket policies.") // Initialize a new event notifier. err = initEventNotifier(objAPI) fatalIf(err, "Unable to initialize event notification.") // Success. return objAPI, nil } // newXLObjects - initialize new xl object layer. func newXLObjects(storageDisks []StorageAPI) (ObjectLayer, error) { if storageDisks == nil { return nil, errInvalidArgument } // figure out readQuorum for erasure format.json readQuorum := len(storageDisks) / 2 writeQuorum := len(storageDisks)/2 + 1 // Load saved XL format.json and validate. newStorageDisks, err := loadFormatXL(storageDisks, readQuorum) if err != nil { return nil, fmt.Errorf("Unable to recognize backend format, %s", err) } // Initialize list pool. listPool := newTreeWalkPool(globalLookupTimeout) // Initialize xl objects. xl := &xlObjects{ mutex: &sync.Mutex{}, storageDisks: newStorageDisks, listPool: listPool, nsMutex: newNSLock(globalIsDistXL), } // Initialize meta volume, if volume already exists ignores it. if err = initMetaVolume(xl.storageDisks); err != nil { return nil, fmt.Errorf("Unable to initialize '.minio.sys' meta volume, %s", err) } // If the number of offline servers is equal to the readQuorum // (i.e. the number of online servers also equals the // readQuorum), we cannot perform quick-heal (no // write-quorum). However reads may still be possible, so we // skip quick-heal in this case, and continue. offlineCount := len(newStorageDisks) - diskCount(newStorageDisks) if offlineCount == readQuorum { return xl, nil } // Perform a quick heal on the buckets and bucket metadata for any discrepancies. if err = quickHeal(*xl, writeQuorum, readQuorum); err != nil { return nil, err } // Start background process to cleanup old multipart objects in `.minio.sys`. go cleanupStaleMultipartUploads(multipartCleanupInterval, multipartExpiry, xl, xl.listMultipartUploadsCleanup, globalServiceDoneCh) return xl, nil } // Shutdown function for object storage interface. func (xl xlObjects) Shutdown() error { // Add any object layer shutdown activities here. for _, disk := range xl.storageDisks { // This closes storage rpc client connections if any. // Otherwise this is a no-op. if disk == nil { continue } disk.Close() } return nil } // Locking operations // List namespace locks held in object layer func (xl xlObjects) ListLocks(bucket, prefix string, duration time.Duration) ([]VolumeLockInfo, error) { xl.nsMutex.lockMapMutex.Lock() defer xl.nsMutex.lockMapMutex.Unlock() // Fetch current time once instead of fetching system time for every lock. timeNow := UTCNow() volumeLocks := []VolumeLockInfo{} for param, debugLock := range xl.nsMutex.debugLockMap { if param.volume != bucket { continue } // N B empty prefix matches all param.path. if !hasPrefix(param.path, prefix) { continue } volLockInfo := VolumeLockInfo{ Bucket: param.volume, Object: param.path, LocksOnObject: debugLock.counters.total, TotalBlockedLocks: debugLock.counters.blocked, LocksAcquiredOnObject: debugLock.counters.granted, } // Filter locks that are held on bucket, prefix. for opsID, lockInfo := range debugLock.lockInfo { // filter locks that were held for longer than duration. elapsed := timeNow.Sub(lockInfo.since) if elapsed < duration { continue } // Add locks that are held for longer than duration. volLockInfo.LockDetailsOnObject = append(volLockInfo.LockDetailsOnObject, OpsLockState{ OperationID: opsID, LockSource: lockInfo.lockSource, LockType: lockInfo.lType, Status: lockInfo.status, Since: lockInfo.since, }) volumeLocks = append(volumeLocks, volLockInfo) } } return volumeLocks, nil } // Clear namespace locks held in object layer func (xl xlObjects) ClearLocks(volLocks []VolumeLockInfo) error { // Remove lock matching bucket/prefix held longer than duration. for _, volLock := range volLocks { xl.nsMutex.ForceUnlock(volLock.Bucket, volLock.Object) } return nil } // byDiskTotal is a collection satisfying sort.Interface. type byDiskTotal []disk.Info func (d byDiskTotal) Len() int { return len(d) } func (d byDiskTotal) Swap(i, j int) { d[i], d[j] = d[j], d[i] } func (d byDiskTotal) Less(i, j int) bool { return d[i].Total < d[j].Total } // getDisksInfo - fetch disks info across all other storage API. func getDisksInfo(disks []StorageAPI) (disksInfo []disk.Info, onlineDisks int, offlineDisks int) { disksInfo = make([]disk.Info, len(disks)) for i, storageDisk := range disks { if storageDisk == nil { // Storage disk is empty, perhaps ignored disk or not available. offlineDisks++ continue } info, err := storageDisk.DiskInfo() if err != nil { errorIf(err, "Unable to fetch disk info for %#v", storageDisk) if errors.IsErr(err, baseErrs...) { offlineDisks++ continue } } onlineDisks++ disksInfo[i] = info } // Success. return disksInfo, onlineDisks, offlineDisks } // returns sorted disksInfo slice which has only valid entries. // i.e the entries where the total size of the disk is not stated // as 0Bytes, this means that the disk is not online or ignored. func sortValidDisksInfo(disksInfo []disk.Info) []disk.Info { var validDisksInfo []disk.Info for _, diskInfo := range disksInfo { if diskInfo.Total == 0 { continue } validDisksInfo = append(validDisksInfo, diskInfo) } sort.Sort(byDiskTotal(validDisksInfo)) return validDisksInfo } // Get an aggregated storage info across all disks. func getStorageInfo(disks []StorageAPI) StorageInfo { disksInfo, onlineDisks, offlineDisks := getDisksInfo(disks) // Sort so that the first element is the smallest. validDisksInfo := sortValidDisksInfo(disksInfo) // If there are no valid disks, set total and free disks to 0 if len(validDisksInfo) == 0 { return StorageInfo{ Total: 0, Free: 0, } } _, sscParity := getRedundancyCount(standardStorageClass, len(disks)) _, rrscparity := getRedundancyCount(reducedRedundancyStorageClass, len(disks)) // Total number of online data drives available // This is the number of drives we report free and total space for availableDataDisks := uint64(onlineDisks - sscParity) // Return calculated storage info, choose the lowest Total and // Free as the total aggregated values. Total capacity is always // the multiple of smallest disk among the disk list. storageInfo := StorageInfo{ Total: validDisksInfo[0].Total * availableDataDisks, Free: validDisksInfo[0].Free * availableDataDisks, } storageInfo.Backend.Type = Erasure storageInfo.Backend.OnlineDisks = onlineDisks storageInfo.Backend.OfflineDisks = offlineDisks storageInfo.Backend.StandardSCParity = sscParity storageInfo.Backend.RRSCParity = rrscparity return storageInfo } // StorageInfo - returns underlying storage statistics. func (xl xlObjects) StorageInfo() StorageInfo { storageInfo := getStorageInfo(xl.storageDisks) return storageInfo }