| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2018 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 ( | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"reflect" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	// Represents Cache format json holding details on all other cache drives in use.
 | 
					
						
							|  |  |  | 	formatCache = "cache" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// formatCacheV1.Cache.Version
 | 
					
						
							|  |  |  | 	formatCacheVersionV1 = "1" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	formatMetaVersion1 = "1" | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	formatCacheV1DistributionAlgo = "CRCMOD" | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Represents the current cache structure with list of
 | 
					
						
							|  |  |  | // disks comprising the disk cache
 | 
					
						
							|  |  |  | // formatCacheV1 - structure holds format config version '1'.
 | 
					
						
							|  |  |  | type formatCacheV1 struct { | 
					
						
							|  |  |  | 	formatMetaV1 | 
					
						
							|  |  |  | 	Cache struct { | 
					
						
							|  |  |  | 		Version string `json:"version"` // Version of 'cache' format.
 | 
					
						
							|  |  |  | 		This    string `json:"this"`    // This field carries assigned disk uuid.
 | 
					
						
							|  |  |  | 		// Disks field carries the input disk order generated the first
 | 
					
						
							|  |  |  | 		// time when fresh disks were supplied.
 | 
					
						
							|  |  |  | 		Disks []string `json:"disks"` | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		// Distribution algorithm represents the hashing algorithm
 | 
					
						
							|  |  |  | 		// to pick the right set index for an object.
 | 
					
						
							|  |  |  | 		DistributionAlgo string `json:"distributionAlgo"` | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} `json:"cache"` // Cache field holds cache format.
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Used to detect the version of "cache" format.
 | 
					
						
							|  |  |  | type formatCacheVersionDetect struct { | 
					
						
							|  |  |  | 	Cache struct { | 
					
						
							|  |  |  | 		Version string `json:"version"` | 
					
						
							|  |  |  | 	} `json:"cache"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Return a slice of format, to be used to format uninitialized disks.
 | 
					
						
							|  |  |  | func newFormatCacheV1(drives []string) []*formatCacheV1 { | 
					
						
							|  |  |  | 	diskCount := len(drives) | 
					
						
							|  |  |  | 	var disks = make([]string, diskCount) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var formats = make([]*formatCacheV1, diskCount) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i := 0; i < diskCount; i++ { | 
					
						
							|  |  |  | 		format := &formatCacheV1{} | 
					
						
							|  |  |  | 		format.Version = formatMetaVersion1 | 
					
						
							|  |  |  | 		format.Format = formatCache | 
					
						
							|  |  |  | 		format.Cache.Version = formatCacheVersionV1 | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		format.Cache.DistributionAlgo = formatCacheV1DistributionAlgo | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		format.Cache.This = mustGetUUID() | 
					
						
							|  |  |  | 		formats[i] = format | 
					
						
							|  |  |  | 		disks[i] = formats[i].Cache.This | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i := 0; i < diskCount; i++ { | 
					
						
							|  |  |  | 		format := formats[i] | 
					
						
							|  |  |  | 		format.Cache.Disks = disks | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return formats | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Creates a new cache format.json if unformatted.
 | 
					
						
							|  |  |  | func createFormatCache(fsFormatPath string, format *formatCacheV1) error { | 
					
						
							|  |  |  | 	// open file using READ & WRITE permission
 | 
					
						
							|  |  |  | 	var file, err = os.OpenFile(fsFormatPath, os.O_RDWR|os.O_CREATE, 0600) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	// Close the locked file upon return.
 | 
					
						
							|  |  |  | 	defer file.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fi, err := file.Stat() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if fi.Size() != 0 { | 
					
						
							|  |  |  | 		// format.json already got created because of another minio process's createFormatCache()
 | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return jsonSave(file, format) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This function creates a cache format file on disk and returns a slice
 | 
					
						
							|  |  |  | // of format cache config
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func initFormatCache(ctx context.Context, drives []string) (formats []*formatCacheV1, err error) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	nformats := newFormatCacheV1(drives) | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	for _, drive := range drives { | 
					
						
							|  |  |  | 		_, err = os.Stat(drive) | 
					
						
							|  |  |  | 		if err == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if !os.IsNotExist(err) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.GetReqInfo(ctx).AppendTags("drive", drive) | 
					
						
							|  |  |  | 			logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		if err = os.Mkdir(drive, 0777); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.GetReqInfo(ctx).AppendTags("drive", drive) | 
					
						
							|  |  |  | 			logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 			return nil, err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	for i, drive := range drives { | 
					
						
							|  |  |  | 		if err = os.Mkdir(pathJoin(drive, minioMetaBucket), 0777); err != nil { | 
					
						
							|  |  |  | 			if !os.IsExist(err) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 				logger.GetReqInfo(ctx).AppendTags("drive", drive) | 
					
						
							|  |  |  | 				logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		cacheFormatPath := pathJoin(drive, minioMetaBucket, formatConfigFile) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		// Fresh disk - create format.json for this cfs
 | 
					
						
							|  |  |  | 		if err = createFormatCache(cacheFormatPath, nformats[i]); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.GetReqInfo(ctx).AppendTags("drive", drive) | 
					
						
							|  |  |  | 			logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nformats, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func loadFormatCache(ctx context.Context, drives []string) ([]*formatCacheV1, error) { | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	formats := make([]*formatCacheV1, len(drives)) | 
					
						
							|  |  |  | 	for i, drive := range drives { | 
					
						
							|  |  |  | 		cacheFormatPath := pathJoin(drive, minioMetaBucket, formatConfigFile) | 
					
						
							|  |  |  | 		f, err := os.Open(cacheFormatPath) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			if os.IsNotExist(err) { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 			return nil, err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		defer f.Close() | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		format, err := formatMetaCacheV1(f) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		formats[i] = format | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	return formats, nil | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // unmarshalls the cache format.json into formatCacheV1
 | 
					
						
							|  |  |  | func formatMetaCacheV1(r io.ReadSeeker) (*formatCacheV1, error) { | 
					
						
							|  |  |  | 	format := &formatCacheV1{} | 
					
						
							|  |  |  | 	if err := jsonLoad(r, format); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return format, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func checkFormatCacheValue(format *formatCacheV1) error { | 
					
						
							|  |  |  | 	// Validate format version and format type.
 | 
					
						
							|  |  |  | 	if format.Version != formatMetaVersion1 { | 
					
						
							|  |  |  | 		return fmt.Errorf("Unsupported version of cache format [%s] found", format.Version) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if format.Format != formatCache { | 
					
						
							|  |  |  | 		return fmt.Errorf("Unsupported cache format [%s] found", format.Format) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if format.Cache.Version != formatCacheVersionV1 { | 
					
						
							|  |  |  | 		return fmt.Errorf("Unsupported Cache backend format found [%s]", format.Cache.Version) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func checkFormatCacheValues(formats []*formatCacheV1) (int, error) { | 
					
						
							|  |  |  | 	for i, formatCache := range formats { | 
					
						
							|  |  |  | 		if formatCache == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if err := checkFormatCacheValue(formatCache); err != nil { | 
					
						
							|  |  |  | 			return i, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if len(formats) != len(formatCache.Cache.Disks) { | 
					
						
							|  |  |  | 			return i, fmt.Errorf("Expected number of cache drives %d , got  %d", | 
					
						
							|  |  |  | 				len(formatCache.Cache.Disks), len(formats)) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -1, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // checkCacheDisksConsistency - checks if "This" disk uuid on each disk is consistent with all "Disks" slices
 | 
					
						
							|  |  |  | // across disks.
 | 
					
						
							|  |  |  | func checkCacheDiskConsistency(formats []*formatCacheV1) error { | 
					
						
							|  |  |  | 	var disks = make([]string, len(formats)) | 
					
						
							|  |  |  | 	// Collect currently available disk uuids.
 | 
					
						
							|  |  |  | 	for index, format := range formats { | 
					
						
							|  |  |  | 		if format == nil { | 
					
						
							|  |  |  | 			disks[index] = "" | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		disks[index] = format.Cache.This | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, format := range formats { | 
					
						
							|  |  |  | 		if format == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		j := findCacheDiskIndex(disks[i], format.Cache.Disks) | 
					
						
							|  |  |  | 		if j == -1 { | 
					
						
							|  |  |  | 			return fmt.Errorf("UUID on positions %d:%d do not match with , expected %s", i, j, disks[i]) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if i != j { | 
					
						
							|  |  |  | 			return fmt.Errorf("UUID on positions %d:%d do not match with , expected %s got %s", i, j, disks[i], format.Cache.Disks[j]) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // checkCacheDisksSliceConsistency - validate cache Disks order if they are consistent.
 | 
					
						
							|  |  |  | func checkCacheDisksSliceConsistency(formats []*formatCacheV1) error { | 
					
						
							|  |  |  | 	var sentinelDisks []string | 
					
						
							|  |  |  | 	// Extract first valid Disks slice.
 | 
					
						
							|  |  |  | 	for _, format := range formats { | 
					
						
							|  |  |  | 		if format == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sentinelDisks = format.Cache.Disks | 
					
						
							|  |  |  | 		break | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for _, format := range formats { | 
					
						
							|  |  |  | 		if format == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		currentDisks := format.Cache.Disks | 
					
						
							|  |  |  | 		if !reflect.DeepEqual(sentinelDisks, currentDisks) { | 
					
						
							|  |  |  | 			return errors.New("inconsistent cache drives found") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // findCacheDiskIndex returns position of cache disk in JBOD.
 | 
					
						
							|  |  |  | func findCacheDiskIndex(disk string, disks []string) int { | 
					
						
							|  |  |  | 	for index, uuid := range disks { | 
					
						
							|  |  |  | 		if uuid == disk { | 
					
						
							|  |  |  | 			return index | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -1 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // validate whether cache drives order has changed
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func validateCacheFormats(ctx context.Context, formats []*formatCacheV1) error { | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	count := 0 | 
					
						
							|  |  |  | 	for _, format := range formats { | 
					
						
							|  |  |  | 		if format == nil { | 
					
						
							|  |  |  | 			count++ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if count == len(formats) { | 
					
						
							|  |  |  | 		return errors.New("Cache format files missing on all drives") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if _, err := checkFormatCacheValues(formats); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err := checkCacheDisksSliceConsistency(formats); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	err := checkCacheDiskConsistency(formats) | 
					
						
							|  |  |  | 	logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 	return err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // return true if all of the list of cache drives are
 | 
					
						
							|  |  |  | // fresh disks
 | 
					
						
							|  |  |  | func cacheDrivesUnformatted(drives []string) bool { | 
					
						
							|  |  |  | 	count := 0 | 
					
						
							|  |  |  | 	for _, drive := range drives { | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		cacheFormatPath := pathJoin(drive, minioMetaBucket, formatConfigFile) | 
					
						
							|  |  |  | 		if _, err := os.Stat(cacheFormatPath); os.IsNotExist(err) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			count++ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return count == len(drives) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // create format.json for each cache drive if fresh disk or load format from disk
 | 
					
						
							|  |  |  | // Then validate the format for all drives in the cache to ensure order
 | 
					
						
							|  |  |  | // of cache drives has not changed.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func loadAndValidateCacheFormat(ctx context.Context, drives []string) (formats []*formatCacheV1, err error) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if cacheDrivesUnformatted(drives) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		formats, err = initFormatCache(ctx, drives) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		formats, err = loadFormatCache(ctx, drives) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = validateCacheFormats(ctx, formats); err != nil { | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	return formats, nil | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } |