| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2019,2020 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2020-06-16 00:05:35 +08:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/config/cache" | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2020-01-28 06:12:34 +08:00
										 |  |  | 	objectlock "github.com/minio/minio/pkg/bucket/object/lock" | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/color" | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/sync/errgroup" | 
					
						
							| 
									
										
										
										
											2018-07-28 06:32:19 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/wildcard" | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	cacheBlkSize    = int64(1 * 1024 * 1024) | 
					
						
							|  |  |  | 	cacheGCInterval = time.Minute * 30 | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-31 02:30:14 +08:00
										 |  |  | // CacheStorageInfo - represents total, free capacity of
 | 
					
						
							|  |  |  | // underlying cache storage.
 | 
					
						
							|  |  |  | type CacheStorageInfo struct { | 
					
						
							|  |  |  | 	Total uint64 // Total cache disk space.
 | 
					
						
							|  |  |  | 	Free  uint64 // Free cache available space.
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | // CacheObjectLayer implements primitives for cache object API layer.
 | 
					
						
							|  |  |  | type CacheObjectLayer interface { | 
					
						
							|  |  |  | 	// Object operations.
 | 
					
						
							| 
									
										
										
										
											2018-09-27 18:06:45 +08:00
										 |  |  | 	GetObjectNInfo(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, lockType LockType, opts ObjectOptions) (gr *GetObjectReader, err error) | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | 	GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	DeleteObject(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) | 
					
						
							|  |  |  | 	DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 	PutObject(ctx context.Context, bucket, object string, data *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2020-02-08 06:36:46 +08:00
										 |  |  | 	CopyObject(ctx context.Context, srcBucket, srcObject, destBucket, destObject string, srcInfo ObjectInfo, srcOpts, dstOpts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	// Storage operations.
 | 
					
						
							| 
									
										
										
										
											2018-05-31 02:30:14 +08:00
										 |  |  | 	StorageInfo(ctx context.Context) CacheStorageInfo | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	CacheStats() *CacheStats | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // Abstracts disk caching - used by the S3 layer
 | 
					
						
							|  |  |  | type cacheObjects struct { | 
					
						
							|  |  |  | 	// slice of cache drives
 | 
					
						
							|  |  |  | 	cache []*diskCache | 
					
						
							|  |  |  | 	// file path patterns to exclude from cache
 | 
					
						
							|  |  |  | 	exclude []string | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	// number of accesses after which to cache an object
 | 
					
						
							|  |  |  | 	after int | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	// if true migration is in progress from v1 to v2
 | 
					
						
							|  |  |  | 	migrating bool | 
					
						
							|  |  |  | 	// mutex to protect migration bool
 | 
					
						
							|  |  |  | 	migMutex sync.Mutex | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	// Cache stats
 | 
					
						
							|  |  |  | 	cacheStats *CacheStats | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	GetObjectNInfoFn func(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, lockType LockType, opts ObjectOptions) (gr *GetObjectReader, err error) | 
					
						
							|  |  |  | 	GetObjectInfoFn  func(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	DeleteObjectFn   func(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 	PutObjectFn      func(ctx context.Context, bucket, object string, data *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2020-02-08 06:36:46 +08:00
										 |  |  | 	CopyObjectFn     func(ctx context.Context, srcBucket, srcObject, destBucket, destObject string, srcInfo ObjectInfo, srcOpts, dstOpts ObjectOptions) (objInfo ObjectInfo, err error) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | func (c *cacheObjects) incHitsToMeta(ctx context.Context, dcache *diskCache, bucket, object string, size int64, eTag string, rs *HTTPRangeSpec) error { | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	metadata := make(map[string]string) | 
					
						
							|  |  |  | 	metadata["etag"] = eTag | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | 	return dcache.SaveMetadata(ctx, bucket, object, metadata, size, rs, "", true) | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | // Backend metadata could have changed through server side copy - reset cache metadata if that is the case
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | func (c *cacheObjects) updateMetadataIfChanged(ctx context.Context, dcache *diskCache, bucket, object string, bkObjectInfo, cacheObjInfo ObjectInfo, rs *HTTPRangeSpec) error { | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	bkMeta := make(map[string]string) | 
					
						
							|  |  |  | 	cacheMeta := make(map[string]string) | 
					
						
							|  |  |  | 	for k, v := range bkObjectInfo.UserDefined { | 
					
						
							| 
									
										
										
										
											2020-05-29 05:36:38 +08:00
										 |  |  | 		if strings.HasPrefix(strings.ToLower(k), ReservedMetadataPrefixLower) { | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 			// Do not need to send any internal metadata
 | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		bkMeta[http.CanonicalHeaderKey(k)] = v | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	for k, v := range cacheObjInfo.UserDefined { | 
					
						
							| 
									
										
										
										
											2020-05-29 05:36:38 +08:00
										 |  |  | 		if strings.HasPrefix(strings.ToLower(k), ReservedMetadataPrefixLower) { | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 			// Do not need to send any internal metadata
 | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		cacheMeta[http.CanonicalHeaderKey(k)] = v | 
					
						
							| 
									
										
										
										
											2019-05-22 11:00:27 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	if !isMetadataSame(bkMeta, cacheMeta) || | 
					
						
							|  |  |  | 		bkObjectInfo.ETag != cacheObjInfo.ETag || | 
					
						
							|  |  |  | 		bkObjectInfo.ContentType != cacheObjInfo.ContentType || | 
					
						
							|  |  |  | 		!bkObjectInfo.Expires.Equal(cacheObjInfo.Expires) { | 
					
						
							|  |  |  | 		return dcache.SaveMetadata(ctx, bucket, object, getMetadata(bkObjectInfo), bkObjectInfo.Size, nil, "", false) | 
					
						
							| 
									
										
										
										
											2019-12-09 05:58:04 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | 	return c.incHitsToMeta(ctx, dcache, bucket, object, cacheObjInfo.Size, cacheObjInfo.ETag, rs) | 
					
						
							| 
									
										
										
										
											2019-12-09 05:58:04 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // DeleteObject clears cache entry if backend delete operation succeeds
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | func (c *cacheObjects) DeleteObject(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) { | 
					
						
							|  |  |  | 	if objInfo, err = c.DeleteObjectFn(ctx, bucket, object, opts); err != nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if c.isCacheExclude(bucket, object) || c.skipCache() { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-16 09:35:41 +08:00
										 |  |  | 	dcache, cerr := c.getCacheLoc(bucket, object) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if cerr != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		return objInfo, cerr | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	return | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteObjects batch deletes objects in slice, and clears any cached entries
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | func (c *cacheObjects) DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	errs := make([]error, len(objects)) | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	objInfos := make([]ObjectInfo, len(objects)) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	for idx, object := range objects { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		opts.VersionID = object.VersionID | 
					
						
							|  |  |  | 		objInfos[idx], errs[idx] = c.DeleteObject(ctx, bucket, object.ObjectName, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	deletedObjects := make([]DeletedObject, len(objInfos)) | 
					
						
							|  |  |  | 	for idx := range errs { | 
					
						
							|  |  |  | 		if errs[idx] != nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if objInfos[idx].DeleteMarker { | 
					
						
							|  |  |  | 			deletedObjects[idx] = DeletedObject{ | 
					
						
							|  |  |  | 				DeleteMarker:          objInfos[idx].DeleteMarker, | 
					
						
							|  |  |  | 				DeleteMarkerVersionID: objInfos[idx].VersionID, | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		deletedObjects[idx] = DeletedObject{ | 
					
						
							|  |  |  | 			ObjectName: objInfos[idx].Name, | 
					
						
							|  |  |  | 			VersionID:  objInfos[idx].VersionID, | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	return deletedObjects, errs | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // construct a metadata k-v map
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | func getMetadata(objInfo ObjectInfo) map[string]string { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	metadata := make(map[string]string) | 
					
						
							|  |  |  | 	metadata["etag"] = objInfo.ETag | 
					
						
							|  |  |  | 	metadata["content-type"] = objInfo.ContentType | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if objInfo.ContentEncoding != "" { | 
					
						
							|  |  |  | 		metadata["content-encoding"] = objInfo.ContentEncoding | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-08-25 03:11:20 +08:00
										 |  |  | 	if !objInfo.Expires.Equal(timeSentinel) { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		metadata["expires"] = objInfo.Expires.Format(http.TimeFormat) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for k, v := range objInfo.UserDefined { | 
					
						
							|  |  |  | 		metadata[k] = v | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return metadata | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | // marks cache hit
 | 
					
						
							|  |  |  | func (c *cacheObjects) incCacheStats(size int64) { | 
					
						
							|  |  |  | 	c.cacheStats.incHit() | 
					
						
							|  |  |  | 	c.cacheStats.incBytesServed(size) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | func (c *cacheObjects) GetObjectNInfo(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, lockType LockType, opts ObjectOptions) (gr *GetObjectReader, err error) { | 
					
						
							|  |  |  | 	if c.isCacheExclude(bucket, object) || c.skipCache() { | 
					
						
							| 
									
										
										
										
											2019-04-10 05:49:45 +08:00
										 |  |  | 		return c.GetObjectNInfoFn(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	var cc *cacheControl | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 	var cacheObjSize int64 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	// fetch diskCache if object is currently cached or nearest available cache drive
 | 
					
						
							|  |  |  | 	dcache, err := c.getCacheToLoc(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2019-04-10 05:49:45 +08:00
										 |  |  | 		return c.GetObjectNInfoFn(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	cacheReader, numCacheHits, cacheErr := dcache.Get(ctx, bucket, object, rs, h, opts) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if cacheErr == nil { | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 		cacheObjSize = cacheReader.ObjInfo.Size | 
					
						
							|  |  |  | 		if rs != nil { | 
					
						
							|  |  |  | 			if _, len, err := rs.GetOffsetLength(cacheObjSize); err == nil { | 
					
						
							|  |  |  | 				cacheObjSize = len | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		cc = cacheControlOpts(cacheReader.ObjInfo) | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 		if cc != nil && (!cc.isStale(cacheReader.ObjInfo.ModTime) || | 
					
						
							|  |  |  | 			cc.onlyIfCached) { | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 			// This is a cache hit, mark it so
 | 
					
						
							| 
									
										
										
										
											2019-12-09 05:58:04 +08:00
										 |  |  | 			bytesServed := cacheReader.ObjInfo.Size | 
					
						
							|  |  |  | 			if rs != nil { | 
					
						
							|  |  |  | 				if _, len, err := rs.GetOffsetLength(bytesServed); err == nil { | 
					
						
							|  |  |  | 					bytesServed = len | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			c.cacheStats.incHit() | 
					
						
							|  |  |  | 			c.cacheStats.incBytesServed(bytesServed) | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | 			c.incHitsToMeta(ctx, dcache, bucket, object, cacheReader.ObjInfo.Size, cacheReader.ObjInfo.ETag, rs) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			return cacheReader, nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-28 02:57:00 +08:00
										 |  |  | 		if cc != nil && cc.noStore { | 
					
						
							| 
									
										
										
										
											2020-04-23 03:13:57 +08:00
										 |  |  | 			cacheReader.Close() | 
					
						
							| 
									
										
										
										
											2019-12-07 10:19:36 +08:00
										 |  |  | 			c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 			bReader, err := c.GetObjectNInfo(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							|  |  |  | 			bReader.ObjInfo.CacheLookupStatus = CacheHit | 
					
						
							|  |  |  | 			bReader.ObjInfo.CacheStatus = CacheMiss | 
					
						
							|  |  |  | 			return bReader, err | 
					
						
							| 
									
										
										
										
											2019-12-07 10:19:36 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-05-22 11:00:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	objInfo, err := c.GetObjectInfoFn(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2018-10-18 01:57:12 +08:00
										 |  |  | 	if backendDownError(err) && cacheErr == nil { | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 		c.incCacheStats(cacheObjSize) | 
					
						
							| 
									
										
										
										
											2018-10-18 01:57:12 +08:00
										 |  |  | 		return cacheReader, nil | 
					
						
							|  |  |  | 	} else if err != nil { | 
					
						
							| 
									
										
										
										
											2020-04-23 03:13:57 +08:00
										 |  |  | 		if cacheErr == nil { | 
					
						
							|  |  |  | 			cacheReader.Close() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		if _, ok := err.(ObjectNotFound); ok { | 
					
						
							| 
									
										
										
										
											2019-04-19 04:53:22 +08:00
										 |  |  | 			if cacheErr == nil { | 
					
						
							|  |  |  | 				// Delete cached entry if backend object
 | 
					
						
							|  |  |  | 				// was deleted.
 | 
					
						
							|  |  |  | 				dcache.Delete(ctx, bucket, object) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 		c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2018-10-18 01:57:12 +08:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if !objInfo.IsCacheable() { | 
					
						
							| 
									
										
										
										
											2020-04-23 03:13:57 +08:00
										 |  |  | 		if cacheErr == nil { | 
					
						
							|  |  |  | 			cacheReader.Close() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 		c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2019-04-10 05:49:45 +08:00
										 |  |  | 		return c.GetObjectNInfoFn(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-17 07:41:56 +08:00
										 |  |  | 	// skip cache for objects with locks
 | 
					
						
							|  |  |  | 	objRetention := objectlock.GetObjectRetentionMeta(objInfo.UserDefined) | 
					
						
							|  |  |  | 	legalHold := objectlock.GetObjectLegalHoldMeta(objInfo.UserDefined) | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 	if objRetention.Mode.Valid() || legalHold.Status.Valid() { | 
					
						
							| 
									
										
										
										
											2020-04-23 03:13:57 +08:00
										 |  |  | 		if cacheErr == nil { | 
					
						
							|  |  |  | 			cacheReader.Close() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-01-17 07:41:56 +08:00
										 |  |  | 		c.cacheStats.incMiss() | 
					
						
							|  |  |  | 		return c.GetObjectNInfoFn(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-18 01:57:12 +08:00
										 |  |  | 	if cacheErr == nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		// if ETag matches for stale cache entry, serve from cache
 | 
					
						
							|  |  |  | 		if cacheReader.ObjInfo.ETag == objInfo.ETag { | 
					
						
							|  |  |  | 			// Update metadata in case server-side copy might have changed object metadata
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | 			c.updateMetadataIfChanged(ctx, dcache, bucket, object, objInfo, cacheReader.ObjInfo, rs) | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 			c.incCacheStats(cacheObjSize) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 			return cacheReader, nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-11 14:01:24 +08:00
										 |  |  | 		cacheReader.Close() | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		// Object is stale, so delete from cache
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 		dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 	// Reaching here implies cache miss
 | 
					
						
							|  |  |  | 	c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2020-06-16 00:05:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	// Since we got here, we are serving the request from backend,
 | 
					
						
							|  |  |  | 	// and also adding the object to the cache.
 | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	if dcache.diskUsageHigh() { | 
					
						
							| 
									
										
										
										
											2020-06-16 00:05:35 +08:00
										 |  |  | 		dcache.triggerGC <- struct{}{} // this is non-blocking
 | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bkReader, bkErr := c.GetObjectNInfoFn(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-25 07:49:16 +08:00
										 |  |  | 	if bkErr != nil { | 
					
						
							|  |  |  | 		return bkReader, bkErr | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	// If object has less hits than configured cache after, just increment the hit counter
 | 
					
						
							|  |  |  | 	// but do not cache it.
 | 
					
						
							|  |  |  | 	if numCacheHits < c.after { | 
					
						
							| 
									
										
										
										
											2020-05-19 09:33:43 +08:00
										 |  |  | 		c.incHitsToMeta(ctx, dcache, bucket, object, objInfo.Size, objInfo.ETag, rs) | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 		return bkReader, bkErr | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 	// Record if cache has a hit that was invalidated by ETag verification
 | 
					
						
							|  |  |  | 	if cacheErr == nil { | 
					
						
							|  |  |  | 		bkReader.ObjInfo.CacheLookupStatus = CacheHit | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	if !dcache.diskAvailable(objInfo.Size) { | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 		return bkReader, bkErr | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if rs != nil { | 
					
						
							|  |  |  | 		go func() { | 
					
						
							| 
									
										
										
										
											2020-06-30 04:25:29 +08:00
										 |  |  | 			// if range caching is disabled, download entire object.
 | 
					
						
							|  |  |  | 			if !dcache.enableRange { | 
					
						
							|  |  |  | 				rs = nil | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			// fill cache in the background for range GET requests
 | 
					
						
							| 
									
										
										
										
											2020-08-21 05:23:24 +08:00
										 |  |  | 			bReader, bErr := c.GetObjectNInfoFn(GlobalContext, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			if bErr != nil { | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			defer bReader.Close() | 
					
						
							| 
									
										
										
										
											2020-08-21 05:23:24 +08:00
										 |  |  | 			oi, _, _, err := dcache.statRange(GlobalContext, bucket, object, rs) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			// avoid cache overwrite if another background routine filled cache
 | 
					
						
							|  |  |  | 			if err != nil || oi.ETag != bReader.ObjInfo.ETag { | 
					
						
							| 
									
										
										
										
											2020-06-30 04:25:29 +08:00
										 |  |  | 				// use a new context to avoid locker prematurely timing out operation when the GetObjectNInfo returns.
 | 
					
						
							| 
									
										
										
										
											2020-08-14 00:16:01 +08:00
										 |  |  | 				dcache.Put(GlobalContext, bucket, object, bReader, bReader.ObjInfo.Size, rs, ObjectOptions{ | 
					
						
							|  |  |  | 					UserDefined: getMetadata(bReader.ObjInfo), | 
					
						
							|  |  |  | 				}, false) | 
					
						
							| 
									
										
										
										
											2020-06-30 04:25:29 +08:00
										 |  |  | 				return | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 		return bkReader, bkErr | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-11 12:21:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	// Initialize pipe.
 | 
					
						
							|  |  |  | 	pipeReader, pipeWriter := io.Pipe() | 
					
						
							|  |  |  | 	teeReader := io.TeeReader(bkReader, pipeWriter) | 
					
						
							|  |  |  | 	go func() { | 
					
						
							| 
									
										
										
										
											2020-08-14 00:16:01 +08:00
										 |  |  | 		putErr := dcache.Put(ctx, bucket, object, | 
					
						
							|  |  |  | 			io.LimitReader(pipeReader, bkReader.ObjInfo.Size), | 
					
						
							|  |  |  | 			bkReader.ObjInfo.Size, nil, ObjectOptions{ | 
					
						
							|  |  |  | 				UserDefined: getMetadata(bkReader.ObjInfo), | 
					
						
							|  |  |  | 			}, false) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		// close the write end of the pipe, so the error gets
 | 
					
						
							|  |  |  | 		// propagated to getObjReader
 | 
					
						
							|  |  |  | 		pipeWriter.CloseWithError(putErr) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 	cleanupBackend := func() { bkReader.Close() } | 
					
						
							| 
									
										
										
										
											2019-09-06 02:03:32 +08:00
										 |  |  | 	cleanupPipe := func() { pipeWriter.Close() } | 
					
						
							| 
									
										
										
										
											2020-04-21 13:01:59 +08:00
										 |  |  | 	return NewGetObjectReaderFromReader(teeReader, bkReader.ObjInfo, opts, cleanupBackend, cleanupPipe) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | // Returns ObjectInfo from cache if available.
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | func (c *cacheObjects) GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	getObjectInfoFn := c.GetObjectInfoFn | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if c.isCacheExclude(bucket, object) || c.skipCache() { | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | 		return getObjectInfoFn(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// fetch diskCache if object is currently cached or nearest available cache drive
 | 
					
						
							|  |  |  | 	dcache, err := c.getCacheToLoc(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | 		return getObjectInfoFn(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	var cc *cacheControl | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	// if cache control setting is valid, avoid HEAD operation to backend
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 	cachedObjInfo, _, cerr := dcache.Stat(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if cerr == nil { | 
					
						
							|  |  |  | 		cc = cacheControlOpts(cachedObjInfo) | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 		if cc == nil || (cc != nil && !cc.isStale(cachedObjInfo.ModTime)) { | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 			// This is a cache hit, mark it so
 | 
					
						
							|  |  |  | 			c.cacheStats.incHit() | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			return cachedObjInfo, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | 	objInfo, err := getObjectInfoFn(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 		if _, ok := err.(ObjectNotFound); ok { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			// Delete the cached entry if backend object was deleted.
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 			dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 			c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			return ObjectInfo{}, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if !backendDownError(err) { | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 			c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			return ObjectInfo{}, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if cerr == nil { | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 			// This is a cache hit, mark it so
 | 
					
						
							|  |  |  | 			c.cacheStats.incHit() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			return cachedObjInfo, nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 		c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		return ObjectInfo{}, BackendDown{} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-08 01:44:33 +08:00
										 |  |  | 	// Reaching here implies cache miss
 | 
					
						
							|  |  |  | 	c.cacheStats.incMiss() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	// when backend is up, do a sanity check on cached object
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if cerr != nil { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		return objInfo, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if cachedObjInfo.ETag != objInfo.ETag { | 
					
						
							|  |  |  | 		// Delete the cached entry if the backend object was replaced.
 | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 		dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return objInfo, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-08 06:36:46 +08:00
										 |  |  | // CopyObject reverts to backend after evicting any stale cache entries
 | 
					
						
							|  |  |  | func (c *cacheObjects) CopyObject(ctx context.Context, srcBucket, srcObject, dstBucket, dstObject string, srcInfo ObjectInfo, srcOpts, dstOpts ObjectOptions) (objInfo ObjectInfo, err error) { | 
					
						
							|  |  |  | 	copyObjectFn := c.CopyObjectFn | 
					
						
							|  |  |  | 	if c.isCacheExclude(srcBucket, srcObject) || c.skipCache() { | 
					
						
							|  |  |  | 		return copyObjectFn(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if srcBucket != dstBucket || srcObject != dstObject { | 
					
						
							|  |  |  | 		return copyObjectFn(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// fetch diskCache if object is currently cached or nearest available cache drive
 | 
					
						
							|  |  |  | 	dcache, err := c.getCacheToLoc(ctx, srcBucket, srcObject) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return copyObjectFn(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// if currently cached, evict old entry and revert to backend.
 | 
					
						
							|  |  |  | 	if cachedObjInfo, _, cerr := dcache.Stat(ctx, srcBucket, srcObject); cerr == nil { | 
					
						
							|  |  |  | 		cc := cacheControlOpts(cachedObjInfo) | 
					
						
							| 
									
										
										
										
											2020-02-28 02:57:00 +08:00
										 |  |  | 		if cc == nil || !cc.isStale(cachedObjInfo.ModTime) { | 
					
						
							| 
									
										
										
										
											2020-02-08 06:36:46 +08:00
										 |  |  | 			dcache.Delete(ctx, srcBucket, srcObject) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return copyObjectFn(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // StorageInfo - returns underlying storage statistics.
 | 
					
						
							|  |  |  | func (c *cacheObjects) StorageInfo(ctx context.Context) (cInfo CacheStorageInfo) { | 
					
						
							|  |  |  | 	var total, free uint64 | 
					
						
							|  |  |  | 	for _, cache := range c.cache { | 
					
						
							| 
									
										
										
										
											2018-04-26 13:09:05 +08:00
										 |  |  | 		if cache == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		info, err := getDiskInfo(cache.dir) | 
					
						
							|  |  |  | 		logger.GetReqInfo(ctx).AppendTags("cachePath", cache.dir) | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		total += info.Total | 
					
						
							|  |  |  | 		free += info.Free | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	return CacheStorageInfo{ | 
					
						
							|  |  |  | 		Total: total, | 
					
						
							|  |  |  | 		Free:  free, | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | // CacheStats - returns underlying storage statistics.
 | 
					
						
							|  |  |  | func (c *cacheObjects) CacheStats() (cs *CacheStats) { | 
					
						
							|  |  |  | 	return c.cacheStats | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // skipCache() returns true if cache migration is in progress
 | 
					
						
							|  |  |  | func (c *cacheObjects) skipCache() bool { | 
					
						
							|  |  |  | 	c.migMutex.Lock() | 
					
						
							|  |  |  | 	defer c.migMutex.Unlock() | 
					
						
							|  |  |  | 	return c.migrating | 
					
						
							| 
									
										
										
										
											2019-05-14 03:25:49 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | // Returns true if object should be excluded from cache
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | func (c *cacheObjects) isCacheExclude(bucket, object string) bool { | 
					
						
							|  |  |  | 	// exclude directories from cache
 | 
					
						
							|  |  |  | 	if strings.HasSuffix(object, SlashSeparator) { | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	for _, pattern := range c.exclude { | 
					
						
							|  |  |  | 		matchStr := fmt.Sprintf("%s/%s", bucket, object) | 
					
						
							|  |  |  | 		if ok := wildcard.MatchSimple(pattern, matchStr); ok { | 
					
						
							|  |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // choose a cache deterministically based on hash of bucket,object. The hash index is treated as
 | 
					
						
							|  |  |  | // a hint. In the event that the cache drive at hash index is offline, treat the list of cache drives
 | 
					
						
							|  |  |  | // as a circular buffer and walk through them starting at hash index until an online drive is found.
 | 
					
						
							| 
									
										
										
										
											2019-10-16 09:35:41 +08:00
										 |  |  | func (c *cacheObjects) getCacheLoc(bucket, object string) (*diskCache, error) { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	index := c.hashIndex(bucket, object) | 
					
						
							|  |  |  | 	numDisks := len(c.cache) | 
					
						
							|  |  |  | 	for k := 0; k < numDisks; k++ { | 
					
						
							|  |  |  | 		i := (index + k) % numDisks | 
					
						
							|  |  |  | 		if c.cache[i] == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		if c.cache[i].IsOnline() { | 
					
						
							|  |  |  | 			return c.cache[i], nil | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	return nil, errDiskNotFound | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // get cache disk where object is currently cached for a GET operation. If object does not exist at that location,
 | 
					
						
							|  |  |  | // treat the list of cache drives as a circular buffer and walk through them starting at hash index
 | 
					
						
							|  |  |  | // until an online drive is found.If object is not found, fall back to the first online cache drive
 | 
					
						
							|  |  |  | // closest to the hash index, so that object can be re-cached.
 | 
					
						
							|  |  |  | func (c *cacheObjects) getCacheToLoc(ctx context.Context, bucket, object string) (*diskCache, error) { | 
					
						
							|  |  |  | 	index := c.hashIndex(bucket, object) | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	numDisks := len(c.cache) | 
					
						
							|  |  |  | 	// save first online cache disk closest to the hint index
 | 
					
						
							|  |  |  | 	var firstOnlineDisk *diskCache | 
					
						
							|  |  |  | 	for k := 0; k < numDisks; k++ { | 
					
						
							|  |  |  | 		i := (index + k) % numDisks | 
					
						
							|  |  |  | 		if c.cache[i] == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		if c.cache[i].IsOnline() { | 
					
						
							|  |  |  | 			if firstOnlineDisk == nil { | 
					
						
							|  |  |  | 				firstOnlineDisk = c.cache[i] | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if c.cache[i].Exists(ctx, bucket, object) { | 
					
						
							|  |  |  | 				return c.cache[i], nil | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if firstOnlineDisk != nil { | 
					
						
							|  |  |  | 		return firstOnlineDisk, nil | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	return nil, errDiskNotFound | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | // Compute a unique hash sum for bucket and object
 | 
					
						
							|  |  |  | func (c *cacheObjects) hashIndex(bucket, object string) int { | 
					
						
							|  |  |  | 	return crcHashMod(pathJoin(bucket, object), len(c.cache)) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // newCache initializes the cacheFSObjects for the "drives" specified in config.json
 | 
					
						
							|  |  |  | // or the global env overrides.
 | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | func newCache(config cache.Config) ([]*diskCache, bool, error) { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	var caches []*diskCache | 
					
						
							| 
									
										
										
										
											2020-04-10 00:30:02 +08:00
										 |  |  | 	ctx := logger.SetReqInfo(GlobalContext, &logger.ReqInfo{}) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	formats, migrating, err := loadAndValidateCacheFormat(ctx, config.Drives) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		return nil, false, err | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 	for i, dir := range config.Drives { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		// skip diskCache creation for cache drives missing a format.json
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		if formats[i] == nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			caches = append(caches, nil) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if err := checkAtimeSupport(dir); err != nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			return nil, false, errors.New("Atime support required for disk caching") | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-30 04:25:29 +08:00
										 |  |  | 		cache, err := newDiskCache(ctx, dir, config) | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 			return nil, false, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		caches = append(caches, cache) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	return caches, migrating, nil | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | func (c *cacheObjects) migrateCacheFromV1toV2(ctx context.Context) { | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | 	logStartupMessage(color.Blue("Cache migration initiated ....")) | 
					
						
							| 
									
										
										
										
											2019-08-24 01:13:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 	g := errgroup.WithNErrs(len(c.cache)) | 
					
						
							|  |  |  | 	for index, dc := range c.cache { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		if dc == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 		index := index | 
					
						
							|  |  |  | 		g.Go(func() error { | 
					
						
							|  |  |  | 			// start migration from V1 to V2
 | 
					
						
							|  |  |  | 			return migrateOldCache(ctx, c.cache[index]) | 
					
						
							|  |  |  | 		}, index) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	errCnt := 0 | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	for _, err := range g.Wait() { | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			errCnt++ | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if errCnt > 0 { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-15 00:44:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	// update migration status
 | 
					
						
							|  |  |  | 	c.migMutex.Lock() | 
					
						
							|  |  |  | 	defer c.migMutex.Unlock() | 
					
						
							|  |  |  | 	c.migrating = false | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | 	logStartupMessage(color.Blue("Cache migration completed successfully.")) | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | // PutObject - caches the uploaded object for single Put operations
 | 
					
						
							|  |  |  | func (c *cacheObjects) PutObject(ctx context.Context, bucket, object string, r *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, err error) { | 
					
						
							|  |  |  | 	putObjectFn := c.PutObjectFn | 
					
						
							|  |  |  | 	dcache, err := c.getCacheToLoc(ctx, bucket, object) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		// disk cache could not be located,execute backend call.
 | 
					
						
							|  |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	size := r.Size() | 
					
						
							|  |  |  | 	if c.skipCache() { | 
					
						
							|  |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// fetch from backend if there is no space on cache drive
 | 
					
						
							|  |  |  | 	if !dcache.diskAvailable(size) { | 
					
						
							|  |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if opts.ServerSideEncryption != nil { | 
					
						
							| 
									
										
										
										
											2019-12-13 07:11:27 +08:00
										 |  |  | 		dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-11-21 05:18:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// skip cache for objects with locks
 | 
					
						
							| 
									
										
										
										
											2020-01-17 07:41:56 +08:00
										 |  |  | 	objRetention := objectlock.GetObjectRetentionMeta(opts.UserDefined) | 
					
						
							|  |  |  | 	legalHold := objectlock.GetObjectLegalHoldMeta(opts.UserDefined) | 
					
						
							| 
									
										
										
										
											2020-04-07 04:44:16 +08:00
										 |  |  | 	if objRetention.Mode.Valid() || legalHold.Status.Valid() { | 
					
						
							| 
									
										
										
										
											2019-12-13 07:11:27 +08:00
										 |  |  | 		dcache.Delete(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-11-21 05:18:09 +08:00
										 |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 	// fetch from backend if cache exclude pattern or cache-control
 | 
					
						
							|  |  |  | 	// directive set to exclude
 | 
					
						
							|  |  |  | 	if c.isCacheExclude(bucket, object) { | 
					
						
							|  |  |  | 		dcache.Delete(ctx, bucket, object) | 
					
						
							|  |  |  | 		return putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-17 05:24:04 +08:00
										 |  |  | 	objInfo, err = putObjectFn(ctx, bucket, object, r, opts) | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-17 05:24:04 +08:00
										 |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		go func() { | 
					
						
							|  |  |  | 			// fill cache in the background
 | 
					
						
							| 
									
										
										
										
											2020-08-21 05:23:24 +08:00
										 |  |  | 			bReader, bErr := c.GetObjectNInfoFn(GlobalContext, bucket, object, nil, http.Header{}, readLock, ObjectOptions{}) | 
					
						
							| 
									
										
										
										
											2019-09-17 05:24:04 +08:00
										 |  |  | 			if bErr != nil { | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			defer bReader.Close() | 
					
						
							| 
									
										
										
										
											2020-08-21 05:23:24 +08:00
										 |  |  | 			oi, _, err := dcache.Stat(GlobalContext, bucket, object) | 
					
						
							| 
									
										
										
										
											2019-09-17 05:24:04 +08:00
										 |  |  | 			// avoid cache overwrite if another background routine filled cache
 | 
					
						
							|  |  |  | 			if err != nil || oi.ETag != bReader.ObjInfo.ETag { | 
					
						
							| 
									
										
										
										
											2020-08-21 05:23:24 +08:00
										 |  |  | 				dcache.Put(GlobalContext, bucket, object, bReader, bReader.ObjInfo.Size, nil, ObjectOptions{UserDefined: getMetadata(bReader.ObjInfo)}, false) | 
					
						
							| 
									
										
										
										
											2019-09-17 05:24:04 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return objInfo, err | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | // Returns cacheObjects for use by Server.
 | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | func newServerCacheObjects(ctx context.Context, config cache.Config) (CacheObjectLayer, error) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	// list of disk caches for cache "drives" specified in config.json or MINIO_CACHE_DRIVES env var.
 | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	cache, migrateSw, err := newCache(config) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	c := &cacheObjects{ | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 		cache:      cache, | 
					
						
							|  |  |  | 		exclude:    config.Exclude, | 
					
						
							| 
									
										
										
										
											2020-02-04 11:40:01 +08:00
										 |  |  | 		after:      config.After, | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 		migrating:  migrateSw, | 
					
						
							|  |  |  | 		migMutex:   sync.Mutex{}, | 
					
						
							|  |  |  | 		cacheStats: newCacheStats(), | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | 		GetObjectInfoFn: func(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) { | 
					
						
							| 
									
										
										
										
											2019-11-10 01:27:23 +08:00
										 |  |  | 			return newObjectLayerFn().GetObjectInfo(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-10-11 14:01:24 +08:00
										 |  |  | 		GetObjectNInfoFn: func(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, lockType LockType, opts ObjectOptions) (gr *GetObjectReader, err error) { | 
					
						
							| 
									
										
										
										
											2019-11-10 01:27:23 +08:00
										 |  |  | 			return newObjectLayerFn().GetObjectNInfo(ctx, bucket, object, rs, h, lockType, opts) | 
					
						
							| 
									
										
										
										
											2018-10-11 14:01:24 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		DeleteObjectFn: func(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) { | 
					
						
							|  |  |  | 			return newObjectLayerFn().DeleteObject(ctx, bucket, object, opts) | 
					
						
							| 
									
										
										
										
											2019-05-14 03:25:49 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 		PutObjectFn: func(ctx context.Context, bucket, object string, data *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, err error) { | 
					
						
							| 
									
										
										
										
											2019-11-10 01:27:23 +08:00
										 |  |  | 			return newObjectLayerFn().PutObject(ctx, bucket, object, data, opts) | 
					
						
							| 
									
										
										
										
											2019-09-05 22:20:16 +08:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2020-02-08 06:36:46 +08:00
										 |  |  | 		CopyObjectFn: func(ctx context.Context, srcBucket, srcObject, destBucket, destObject string, srcInfo ObjectInfo, srcOpts, dstOpts ObjectOptions) (objInfo ObjectInfo, err error) { | 
					
						
							|  |  |  | 			return newObjectLayerFn().CopyObject(ctx, srcBucket, srcObject, destBucket, destObject, srcInfo, srcOpts, dstOpts) | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-16 00:05:35 +08:00
										 |  |  | 	c.cacheStats.GetDiskStats = func() []CacheDiskStats { | 
					
						
							|  |  |  | 		cacheDiskStats := make([]CacheDiskStats, len(c.cache)) | 
					
						
							|  |  |  | 		for i := range c.cache { | 
					
						
							| 
									
										
										
										
											2020-07-29 01:06:52 +08:00
										 |  |  | 			dcache := c.cache[i] | 
					
						
							|  |  |  | 			cacheDiskStats[i] = CacheDiskStats{} | 
					
						
							|  |  |  | 			if dcache != nil { | 
					
						
							|  |  |  | 				cacheDiskStats[i].Dir = dcache.stats.Dir | 
					
						
							|  |  |  | 				atomic.StoreInt32(&cacheDiskStats[i].UsageState, atomic.LoadInt32(&dcache.stats.UsageState)) | 
					
						
							|  |  |  | 				atomic.StoreUint64(&cacheDiskStats[i].UsagePercent, atomic.LoadUint64(&dcache.stats.UsagePercent)) | 
					
						
							| 
									
										
										
										
											2020-06-16 00:05:35 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return cacheDiskStats | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-10 08:09:08 +08:00
										 |  |  | 	if migrateSw { | 
					
						
							|  |  |  | 		go c.migrateCacheFromV1toV2(ctx) | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 	go c.gc(ctx) | 
					
						
							| 
									
										
										
										
											2019-05-23 05:54:15 +08:00
										 |  |  | 	return c, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | func (c *cacheObjects) gc(ctx context.Context) { | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 	ticker := time.NewTicker(cacheGCInterval) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	defer ticker.Stop() | 
					
						
							|  |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							| 
									
										
										
										
											2020-03-23 03:16:36 +08:00
										 |  |  | 		case <-ctx.Done(): | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		case <-ticker.C: | 
					
						
							|  |  |  | 			if c.migrating { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			for _, dcache := range c.cache { | 
					
						
							| 
									
										
										
										
											2020-07-29 01:06:52 +08:00
										 |  |  | 				if dcache != nil { | 
					
						
							|  |  |  | 					dcache.triggerGC <- struct{}{} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-02-23 21:33:39 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |