| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2016, 2017, 2018 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2019-12-26 14:05:54 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2019-12-26 14:05:54 +08:00
										 |  |  | 	"os/user" | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 	"path" | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	"sort" | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2018-02-01 05:17:24 +08:00
										 |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2018-05-23 18:11:29 +08:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 06:51:27 +08:00
										 |  |  | 	jsoniter "github.com/json-iterator/go" | 
					
						
							| 
									
										
										
										
											2019-05-30 07:35:12 +08:00
										 |  |  | 	"github.com/minio/minio-go/v6/pkg/s3utils" | 
					
						
							| 
									
										
										
										
											2019-10-05 01:35:33 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/config" | 
					
						
							| 
									
										
										
										
											2020-01-21 00:45:59 +08:00
										 |  |  | 	xhttp "github.com/minio/minio/cmd/http" | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							| 
									
										
										
										
											2020-02-05 17:42:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bucketsse "github.com/minio/minio/pkg/bucket/encryption" | 
					
						
							| 
									
										
										
										
											2020-01-28 06:12:34 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/bucket/lifecycle" | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/bucket/object/tagging" | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/bucket/policy" | 
					
						
							| 
									
										
										
										
											2020-02-05 17:42:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/lock" | 
					
						
							| 
									
										
										
										
											2018-01-23 06:54:55 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/madmin" | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/mimedb" | 
					
						
							| 
									
										
										
										
											2018-06-28 09:59:38 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/mountinfo" | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | // Default etag is used for pre-existing objects.
 | 
					
						
							|  |  |  | var defaultEtag = "00000000000000000000000000000000-1" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | // FSObjects - Implements fs object layer.
 | 
					
						
							|  |  |  | type FSObjects struct { | 
					
						
							| 
									
										
										
										
											2018-06-05 09:35:41 +08:00
										 |  |  | 	// Disk usage metrics
 | 
					
						
							|  |  |  | 	totalUsed uint64 // ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	// The count of concurrent calls on FSObjects API
 | 
					
						
							|  |  |  | 	activeIOCount int64 | 
					
						
							|  |  |  | 	// The active IO count ceiling for crawling to work
 | 
					
						
							|  |  |  | 	maxActiveIOCount int64 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Path to be exported over S3 API.
 | 
					
						
							|  |  |  | 	fsPath string | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	// meta json filename, varies by fs / cache backend.
 | 
					
						
							|  |  |  | 	metaJSONFile string | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Unique value to be used for all
 | 
					
						
							|  |  |  | 	// temporary transactions.
 | 
					
						
							|  |  |  | 	fsUUID string | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 23:29:07 +08:00
										 |  |  | 	// This value shouldn't be touched, once initialized.
 | 
					
						
							|  |  |  | 	fsFormatRlk *lock.RLockedFile // Is a read lock on `format.json`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// FS rw pool.
 | 
					
						
							|  |  |  | 	rwPool *fsIOPool | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ListObjects pool management.
 | 
					
						
							| 
									
										
										
										
											2019-04-18 00:52:08 +08:00
										 |  |  | 	listPool *TreeWalkPool | 
					
						
							| 
									
										
										
										
											2016-11-21 15:42:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 09:59:38 +08:00
										 |  |  | 	diskMount bool | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 05:17:24 +08:00
										 |  |  | 	appendFileMap   map[string]*fsAppendFile | 
					
						
							|  |  |  | 	appendFileMapMu sync.Mutex | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 05:17:24 +08:00
										 |  |  | 	// To manage the appendRoutine go-routines
 | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	nsMutex *nsLockMap | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 05:17:24 +08:00
										 |  |  | // Represents the background append file.
 | 
					
						
							|  |  |  | type fsAppendFile struct { | 
					
						
							|  |  |  | 	sync.Mutex | 
					
						
							|  |  |  | 	parts    []PartInfo // List of parts appended.
 | 
					
						
							|  |  |  | 	filePath string     // Absolute path of the file in the temp location.
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // Initializes meta volume on all the fs path.
 | 
					
						
							|  |  |  | func initMetaVolumeFS(fsPath, fsUUID string) error { | 
					
						
							|  |  |  | 	// This happens for the first time, but keep this here since this
 | 
					
						
							|  |  |  | 	// is the only place where it can be made less expensive
 | 
					
						
							|  |  |  | 	// optimizing all other calls. Create minio meta volume,
 | 
					
						
							|  |  |  | 	// if it doesn't exist yet.
 | 
					
						
							|  |  |  | 	metaBucketPath := pathJoin(fsPath, minioMetaBucket) | 
					
						
							| 
									
										
										
										
											2018-05-09 10:04:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	if err := os.MkdirAll(metaBucketPath, 0777); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	metaTmpPath := pathJoin(fsPath, minioMetaTmpBucket, fsUUID) | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	if err := os.MkdirAll(metaTmpPath, 0777); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-22 06:07:49 +08:00
										 |  |  | 	if err := os.MkdirAll(pathJoin(fsPath, minioMetaBackgroundOpsBucket), 0777); err != nil { | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	metaMultipartPath := pathJoin(fsPath, minioMetaMultipartBucket) | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	return os.MkdirAll(metaMultipartPath, 0777) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-16 04:43:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | // NewFSObjectLayer - initialize new fs object layer.
 | 
					
						
							|  |  |  | func NewFSObjectLayer(fsPath string) (ObjectLayer, error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	ctx := context.Background() | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if fsPath == "" { | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  | 		return nil, errInvalidArgument | 
					
						
							| 
									
										
										
										
											2016-07-02 16:59:28 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 08:40:28 +08:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2018-05-17 22:27:07 +08:00
										 |  |  | 	if fsPath, err = getValidPath(fsPath); err != nil { | 
					
						
							| 
									
										
										
										
											2018-06-29 03:01:05 +08:00
										 |  |  | 		if err == errMinDiskSize { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-12-26 14:05:54 +08:00
										 |  |  | 		// Show a descriptive error with a hint about how to fix it.
 | 
					
						
							|  |  |  | 		var username string | 
					
						
							|  |  |  | 		if u, err := user.Current(); err == nil { | 
					
						
							|  |  |  | 			username = u.Username | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			username = "<your-username>" | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		hint := fmt.Sprintf("Use 'sudo chown %s %s && sudo chmod u+rxw %s' to provide sufficient permissions.", username, fsPath, fsPath) | 
					
						
							|  |  |  | 		return nil, config.ErrUnableToWriteInBackend(err).Hint(hint) | 
					
						
							| 
									
										
										
										
											2017-07-11 09:14:48 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Assign a new UUID for FS minio mode. Each server instance
 | 
					
						
							|  |  |  | 	// gets its own UUID for temporary file transaction.
 | 
					
						
							|  |  |  | 	fsUUID := mustGetUUID() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 10:11:50 +08:00
										 |  |  | 	// Initialize meta volume, if volume already exists ignores it.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err = initMetaVolumeFS(fsPath, fsUUID); err != nil { | 
					
						
							| 
									
										
										
										
											2018-05-09 10:04:36 +08:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2016-11-26 10:11:50 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 23:29:07 +08:00
										 |  |  | 	// Initialize `format.json`, this function also returns.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	rlk, err := initFormatFS(ctx, fsPath) | 
					
						
							| 
									
										
										
										
											2017-06-13 23:29:07 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 13:01:58 +08:00
										 |  |  | 	// Initialize fs objects.
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | 	fs := &FSObjects{ | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		fsPath:       fsPath, | 
					
						
							| 
									
										
										
										
											2018-03-30 05:38:26 +08:00
										 |  |  | 		metaJSONFile: fsMetaJSONFile, | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		fsUUID:       fsUUID, | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		rwPool: &fsIOPool{ | 
					
						
							|  |  |  | 			readersMap: make(map[string]*lock.RLockedFile), | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2018-06-05 09:35:41 +08:00
										 |  |  | 		nsMutex:       newNSLock(false), | 
					
						
							| 
									
										
										
										
											2019-04-18 00:52:08 +08:00
										 |  |  | 		listPool:      NewTreeWalkPool(globalLookupTimeout), | 
					
						
							| 
									
										
										
										
											2018-06-05 09:35:41 +08:00
										 |  |  | 		appendFileMap: make(map[string]*fsAppendFile), | 
					
						
							| 
									
										
										
										
											2018-06-28 09:59:38 +08:00
										 |  |  | 		diskMount:     mountinfo.IsLikelyMountPoint(fsPath), | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		maxActiveIOCount: 10, | 
					
						
							| 
									
										
										
										
											2016-08-05 13:01:58 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 23:29:07 +08:00
										 |  |  | 	// Once the filesystem has initialized hold the read lock for
 | 
					
						
							|  |  |  | 	// the life time of the server. This is done to ensure that under
 | 
					
						
							|  |  |  | 	// shared backend mode for FS, remote servers do not migrate
 | 
					
						
							|  |  |  | 	// or cause changes on backend format.
 | 
					
						
							|  |  |  | 	fs.fsFormatRlk = rlk | 
					
						
							| 
									
										
										
										
											2017-05-05 23:49:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-06 06:16:43 +08:00
										 |  |  | 	go fs.cleanupStaleMultipartUploads(ctx, GlobalMultipartCleanupInterval, GlobalMultipartExpiry, GlobalServiceDoneCh) | 
					
						
							| 
									
										
										
										
											2018-02-16 09:45:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 13:01:58 +08:00
										 |  |  | 	// Return successfully initialized object layer.
 | 
					
						
							|  |  |  | 	return fs, nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | // NewNSLock - initialize a new namespace RWLocker instance.
 | 
					
						
							| 
									
										
										
										
											2020-02-21 13:59:57 +08:00
										 |  |  | func (fs *FSObjects) NewNSLock(ctx context.Context, bucket string, objects ...string) RWLocker { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	// lockers are explicitly 'nil' for FS mode since there are only local lockers
 | 
					
						
							| 
									
										
										
										
											2020-02-21 13:59:57 +08:00
										 |  |  | 	return fs.nsMutex.NewNSLock(ctx, nil, bucket, objects...) | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | // Shutdown - should be called when process shuts down.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) Shutdown(ctx context.Context) error { | 
					
						
							| 
									
										
										
										
											2017-08-11 05:11:57 +08:00
										 |  |  | 	fs.fsFormatRlk.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Cleanup and delete tmp uuid.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	return fsRemoveAll(ctx, pathJoin(fs.fsPath, minioMetaTmpBucket, fs.fsUUID)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-27 05:13:10 +08:00
										 |  |  | // StorageInfo - returns underlying storage statistics.
 | 
					
						
							| 
									
										
										
										
											2020-02-20 11:51:33 +08:00
										 |  |  | func (fs *FSObjects) StorageInfo(ctx context.Context, _ bool) StorageInfo { | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 09:59:38 +08:00
										 |  |  | 	di, err := getDiskInfo(fs.fsPath) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return StorageInfo{} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	used := di.Total - di.Free | 
					
						
							|  |  |  | 	if !fs.diskMount { | 
					
						
							|  |  |  | 		used = atomic.LoadUint64(&fs.totalUsed) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  | 	storageInfo := StorageInfo{ | 
					
						
							| 
									
										
										
										
											2019-10-23 12:01:14 +08:00
										 |  |  | 		Used:       []uint64{used}, | 
					
						
							|  |  |  | 		Total:      []uint64{di.Total}, | 
					
						
							|  |  |  | 		Available:  []uint64{di.Free}, | 
					
						
							| 
									
										
										
										
											2019-11-01 00:13:54 +08:00
										 |  |  | 		MountPaths: []string{fs.fsPath}, | 
					
						
							| 
									
										
										
										
											2016-05-27 05:13:10 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-08-24 14:35:37 +08:00
										 |  |  | 	storageInfo.Backend.Type = BackendFS | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  | 	return storageInfo | 
					
						
							| 
									
										
										
										
											2016-05-27 05:13:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 08:45:59 +08:00
										 |  |  | func (fs *FSObjects) waitForLowActiveIO() { | 
					
						
							| 
									
										
										
										
											2020-01-22 06:07:49 +08:00
										 |  |  | 	for atomic.LoadInt64(&fs.activeIOCount) >= fs.maxActiveIOCount { | 
					
						
							| 
									
										
										
										
											2020-02-04 08:45:59 +08:00
										 |  |  | 		time.Sleep(lowActiveIOWaitTick) | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-22 06:07:49 +08:00
										 |  |  | // CrawlAndGetDataUsage returns data usage stats of the current FS deployment
 | 
					
						
							|  |  |  | func (fs *FSObjects) CrawlAndGetDataUsage(ctx context.Context, endCh <-chan struct{}) DataUsageInfo { | 
					
						
							|  |  |  | 	dataUsageInfo := updateUsage(fs.fsPath, endCh, fs.waitForLowActiveIO, func(item Item) (int64, error) { | 
					
						
							|  |  |  | 		// Get file size, symlinks which cannot bex
 | 
					
						
							|  |  |  | 		// followed are automatically filtered by fastwalk.
 | 
					
						
							|  |  |  | 		fi, err := os.Stat(item.Path) | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2020-01-22 06:07:49 +08:00
										 |  |  | 			return 0, errSkipFile | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-01-22 06:07:49 +08:00
										 |  |  | 		return fi.Size(), nil | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dataUsageInfo.LastUpdate = UTCNow() | 
					
						
							|  |  |  | 	atomic.StoreUint64(&fs.totalUsed, dataUsageInfo.ObjectsTotalSize) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return dataUsageInfo | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | /// Bucket operations
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // getBucketDir - will convert incoming bucket names to
 | 
					
						
							|  |  |  | // corresponding valid bucket names on the backend in a platform
 | 
					
						
							|  |  |  | // compatible way for all operating systems.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) getBucketDir(ctx context.Context, bucket string) (string, error) { | 
					
						
							| 
									
										
										
										
											2018-04-24 11:27:33 +08:00
										 |  |  | 	if bucket == "" || bucket == "." || bucket == ".." { | 
					
						
							|  |  |  | 		return "", errVolumeNotFound | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	bucketDir := pathJoin(fs.fsPath, bucket) | 
					
						
							|  |  |  | 	return bucketDir, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) statBucketDir(ctx context.Context, bucket string) (os.FileInfo, error) { | 
					
						
							|  |  |  | 	bucketDir, err := fs.getBucketDir(ctx, bucket) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	st, err := fsStatVolume(ctx, bucketDir) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return st, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | // MakeBucketWithLocation - create a new bucket, returns if it
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // already exists.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) MakeBucketWithLocation(ctx context.Context, bucket, location string) error { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	bucketLock := fs.NewNSLock(ctx, bucket, "") | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if err := bucketLock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer bucketLock.Unlock() | 
					
						
							| 
									
										
										
										
											2018-04-24 11:27:33 +08:00
										 |  |  | 	// Verify if bucket is valid.
 | 
					
						
							| 
									
										
										
										
											2019-03-06 02:42:32 +08:00
										 |  |  | 	if s3utils.CheckValidBucketNameStrict(bucket) != nil { | 
					
						
							|  |  |  | 		return BucketNameInvalid{Bucket: bucket} | 
					
						
							| 
									
										
										
										
											2018-04-24 11:27:33 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	bucketDir, err := fs.getBucketDir(ctx, bucket) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = fsMkdir(ctx, bucketDir); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 		return toObjectErr(err, bucket) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // GetBucketInfo - fetch bucket metadata info.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) GetBucketInfo(ctx context.Context, bucket string) (bi BucketInfo, e error) { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	bucketLock := fs.NewNSLock(ctx, bucket, "") | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	if e := bucketLock.GetRLock(globalObjectTimeout); e != nil { | 
					
						
							|  |  |  | 		return bi, e | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer bucketLock.RUnlock() | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	st, err := fs.statBucketDir(ctx, bucket) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-06-22 10:53:09 +08:00
										 |  |  | 		return bi, toObjectErr(err, bucket) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-13 18:01:15 +08:00
										 |  |  | 	// As os.Stat() doesn't carry other than ModTime(), use ModTime() as CreatedTime.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	createdTime := st.ModTime() | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	return BucketInfo{ | 
					
						
							|  |  |  | 		Name:    bucket, | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		Created: createdTime, | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	}, nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // ListBuckets - list all s3 compatible buckets (directories) at fsPath.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) ListBuckets(ctx context.Context) ([]BucketInfo, error) { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err := checkPathLength(fs.fsPath); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	var bucketInfos []BucketInfo | 
					
						
							| 
									
										
										
										
											2017-08-13 10:25:43 +08:00
										 |  |  | 	entries, err := readDir((fs.fsPath)) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, errDiskNotFound) | 
					
						
							|  |  |  | 		return nil, toObjectErr(errDiskNotFound) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for _, entry := range entries { | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 		// Ignore all reserved bucket names and invalid bucket names.
 | 
					
						
							| 
									
										
										
										
											2019-03-06 02:42:32 +08:00
										 |  |  | 		if isReservedOrInvalidBucket(entry, false) { | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		var fi os.FileInfo | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		fi, err = fsStatVolume(ctx, pathJoin(fs.fsPath, entry)) | 
					
						
							| 
									
										
										
										
											2017-08-11 04:36:11 +08:00
										 |  |  | 		// There seems like no practical reason to check for errors
 | 
					
						
							|  |  |  | 		// at this point, if there are indeed errors we can simply
 | 
					
						
							|  |  |  | 		// just ignore such buckets and list only those which
 | 
					
						
							|  |  |  | 		// return proper Stat information instead.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2017-08-11 04:36:11 +08:00
										 |  |  | 			// Ignore any errors returned here.
 | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 		bucketInfos = append(bucketInfos, BucketInfo{ | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 			Name: fi.Name(), | 
					
						
							| 
									
										
										
										
											2017-10-13 18:01:15 +08:00
										 |  |  | 			// As os.Stat() doesnt carry CreatedTime, use ModTime() as CreatedTime.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 			Created: fi.ModTime(), | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Sort bucket infos by bucket name.
 | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	sort.Sort(byBucketName(bucketInfos)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Succes.
 | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	return bucketInfos, nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // DeleteBucket - delete a bucket and all the metadata associated
 | 
					
						
							|  |  |  | // with the bucket including pending multipart, object metadata.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) DeleteBucket(ctx context.Context, bucket string) error { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	bucketLock := fs.NewNSLock(ctx, bucket, "") | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	if err := bucketLock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer bucketLock.Unlock() | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	bucketDir, err := fs.getBucketDir(ctx, bucket) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return toObjectErr(err, bucket) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 16:01:47 +08:00
										 |  |  | 	// Attempt to delete regular bucket.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = fsRemoveDir(ctx, bucketDir); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return toObjectErr(err, bucket) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Cleanup all the bucket metadata.
 | 
					
						
							|  |  |  | 	minioMetadataBucketDir := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = fsRemoveAll(ctx, minioMetadataBucketDir); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 10:34:30 +08:00
										 |  |  | 	// Delete all bucket metadata.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	deleteBucketMetadata(ctx, bucket, fs) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// Object Operations
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | // CopyObject - copy object source object to destination object.
 | 
					
						
							|  |  |  | // if source object and destination object are same we only
 | 
					
						
							|  |  |  | // update metadata.
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | func (fs *FSObjects) CopyObject(ctx context.Context, srcBucket, srcObject, dstBucket, dstObject string, srcInfo ObjectInfo, srcOpts, dstOpts ObjectOptions) (oi ObjectInfo, e error) { | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 	cpSrcDstSame := isStringEqual(pathJoin(srcBucket, srcObject), pathJoin(dstBucket, dstObject)) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if !cpSrcDstSame { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 		objectDWLock := fs.NewNSLock(ctx, dstBucket, dstObject) | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 		if err := objectDWLock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 			return oi, err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 		defer objectDWLock.Unlock() | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if _, err := fs.statBucketDir(ctx, srcBucket); err != nil { | 
					
						
							| 
									
										
										
										
											2017-06-22 10:53:09 +08:00
										 |  |  | 		return oi, toObjectErr(err, srcBucket) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 	if cpSrcDstSame && srcInfo.metadataOnly { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, srcBucket, srcObject, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 		wlk, err := fs.rwPool.Write(fsMetaPath) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			return oi, toObjectErr(err, srcBucket, srcObject) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		// This close will allow for locks to be synchronized on `fs.json`.
 | 
					
						
							|  |  |  | 		defer wlk.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | 		// Save objects' metadata in `fs.json`.
 | 
					
						
							|  |  |  | 		fsMeta := newFSMetaV1() | 
					
						
							| 
									
										
										
										
											2019-06-13 07:42:04 +08:00
										 |  |  | 		if _, err = fsMeta.ReadFrom(ctx, wlk); err != nil { | 
					
						
							|  |  |  | 			// For any error to read fsMeta, set default ETag and proceed.
 | 
					
						
							|  |  |  | 			fsMeta = fs.defaultFsJSON(srcObject) | 
					
						
							| 
									
										
										
										
											2018-03-03 09:24:02 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 16:48:47 +08:00
										 |  |  | 		fsMeta.Meta = srcInfo.UserDefined | 
					
						
							| 
									
										
										
										
											2018-03-10 02:50:39 +08:00
										 |  |  | 		fsMeta.Meta["etag"] = srcInfo.ETag | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		if _, err = fsMeta.WriteTo(wlk); err != nil { | 
					
						
							| 
									
										
										
										
											2017-06-22 10:53:09 +08:00
										 |  |  | 			return oi, toObjectErr(err, srcBucket, srcObject) | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 		// Stat the file to get file size.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		fi, err := fsStatFile(ctx, pathJoin(fs.fsPath, srcBucket, srcObject)) | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return oi, toObjectErr(err, srcBucket, srcObject) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		// Return the new object info.
 | 
					
						
							|  |  |  | 		return fsMeta.ToObjectInfo(srcBucket, srcObject, fi), nil | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-05-14 01:12:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if err := checkPutObjectArgs(ctx, dstBucket, dstObject, fs, srcInfo.PutObjReader.Size()); err != nil { | 
					
						
							|  |  |  | 		return ObjectInfo{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | 	objInfo, err := fs.putObject(ctx, dstBucket, dstObject, srcInfo.PutObjReader, ObjectOptions{ServerSideEncryption: dstOpts.ServerSideEncryption, UserDefined: srcInfo.UserDefined}) | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-06-22 10:53:09 +08:00
										 |  |  | 		return oi, toObjectErr(err, dstBucket, dstObject) | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return objInfo, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | // GetObjectNInfo - returns object info and a reader for object
 | 
					
						
							|  |  |  | // content.
 | 
					
						
							| 
									
										
										
										
											2018-09-27 18:06:45 +08:00
										 |  |  | func (fs *FSObjects) GetObjectNInfo(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, lockType LockType, opts ObjectOptions) (gr *GetObjectReader, err error) { | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	if err = checkGetObjArgs(ctx, bucket, object); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	if _, err = fs.statBucketDir(ctx, bucket); err != nil { | 
					
						
							|  |  |  | 		return nil, toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 	var nsUnlocker = func() {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if lockType != noLock { | 
					
						
							|  |  |  | 		// Lock the object before reading.
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 		lock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 		switch lockType { | 
					
						
							|  |  |  | 		case writeLock: | 
					
						
							|  |  |  | 			if err = lock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							|  |  |  | 				logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			nsUnlocker = lock.Unlock | 
					
						
							|  |  |  | 		case readLock: | 
					
						
							|  |  |  | 			if err = lock.GetRLock(globalObjectTimeout); err != nil { | 
					
						
							|  |  |  | 				logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			nsUnlocker = lock.RUnlock | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Otherwise we get the object info
 | 
					
						
							|  |  |  | 	var objInfo ObjectInfo | 
					
						
							|  |  |  | 	if objInfo, err = fs.getObjectInfo(ctx, bucket, object); err != nil { | 
					
						
							|  |  |  | 		nsUnlocker() | 
					
						
							|  |  |  | 		return nil, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-27 07:09:14 +08:00
										 |  |  | 	// For a directory, we need to send an reader that returns no bytes.
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	if HasSuffix(object, SlashSeparator) { | 
					
						
							| 
									
										
										
										
											2019-02-27 07:09:14 +08:00
										 |  |  | 		// The lock taken above is released when
 | 
					
						
							|  |  |  | 		// objReader.Close() is called by the caller.
 | 
					
						
							| 
									
										
										
										
											2019-03-07 04:38:41 +08:00
										 |  |  | 		return NewGetObjectReaderFromReader(bytes.NewBuffer(nil), objInfo, opts.CheckCopyPrecondFn, nsUnlocker) | 
					
						
							| 
									
										
										
										
											2019-02-27 07:09:14 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	// Take a rwPool lock for NFS gateway type deployment
 | 
					
						
							|  |  |  | 	rwPoolUnlocker := func() {} | 
					
						
							| 
									
										
										
										
											2018-09-26 03:39:46 +08:00
										 |  |  | 	if bucket != minioMetaBucket && lockType != noLock { | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							|  |  |  | 		_, err = fs.rwPool.Open(fsMetaPath) | 
					
						
							|  |  |  | 		if err != nil && err != errFileNotFound { | 
					
						
							|  |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			nsUnlocker() | 
					
						
							|  |  |  | 			return nil, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// Need to clean up lock after getObject is
 | 
					
						
							|  |  |  | 		// completed.
 | 
					
						
							|  |  |  | 		rwPoolUnlocker = func() { fs.rwPool.Close(fsMetaPath) } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-07 04:38:41 +08:00
										 |  |  | 	objReaderFn, off, length, rErr := NewGetObjectReader(rs, objInfo, opts.CheckCopyPrecondFn, nsUnlocker, rwPoolUnlocker) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	if rErr != nil { | 
					
						
							|  |  |  | 		return nil, rErr | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Read the object, doesn't exist returns an s3 compatible error.
 | 
					
						
							|  |  |  | 	fsObjPath := pathJoin(fs.fsPath, bucket, object) | 
					
						
							|  |  |  | 	readCloser, size, err := fsOpenFile(ctx, fsObjPath, off) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		rwPoolUnlocker() | 
					
						
							|  |  |  | 		nsUnlocker() | 
					
						
							|  |  |  | 		return nil, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 	reader := io.LimitReader(readCloser, length) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 	closeFn := func() { | 
					
						
							|  |  |  | 		readCloser.Close() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Check if range is valid
 | 
					
						
							|  |  |  | 	if off > size || off+length > size { | 
					
						
							|  |  |  | 		err = InvalidRange{off, length, size} | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, err, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | 		closeFn() | 
					
						
							|  |  |  | 		rwPoolUnlocker() | 
					
						
							|  |  |  | 		nsUnlocker() | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-07 04:38:41 +08:00
										 |  |  | 	return objReaderFn(reader, h, opts.CheckCopyPrecondFn, closeFn) | 
					
						
							| 
									
										
										
										
											2018-09-21 10:22:09 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | // GetObject - reads an object from the disk.
 | 
					
						
							|  |  |  | // Supports additional parameters like offset and length
 | 
					
						
							|  |  |  | // which are synonymous with HTTP Range requests.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // startOffset indicates the starting read location of the object.
 | 
					
						
							|  |  |  | // length indicates the total length of the object.
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | func (fs *FSObjects) GetObject(ctx context.Context, bucket, object string, offset int64, length int64, writer io.Writer, etag string, opts ObjectOptions) (err error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = checkGetObjArgs(ctx, bucket, object); err != nil { | 
					
						
							| 
									
										
										
										
											2016-12-02 15:15:17 +08:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	// Lock the object before reading.
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	objectLock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if err := objectLock.GetRLock(globalObjectTimeout); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer objectLock.RUnlock() | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	return fs.getObject(ctx, bucket, object, offset, length, writer, etag, true) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // getObject - wrapper for GetObject
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) getObject(ctx context.Context, bucket, object string, offset int64, length int64, writer io.Writer, etag string, lock bool) (err error) { | 
					
						
							|  |  |  | 	if _, err = fs.statBucketDir(ctx, bucket); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-22 03:29:32 +08:00
										 |  |  | 	// Offset cannot be negative.
 | 
					
						
							|  |  |  | 	if offset < 0 { | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, errUnexpected, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return toObjectErr(errUnexpected, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-07-07 16:30:34 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-08 22:46:49 +08:00
										 |  |  | 	// Writer cannot be nil.
 | 
					
						
							|  |  |  | 	if writer == nil { | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, errUnexpected, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return toObjectErr(errUnexpected, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-07-08 22:46:49 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-08 10:49:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	// If its a directory request, we return an empty body.
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	if HasSuffix(object, SlashSeparator) { | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 		_, err = writer.Write([]byte("")) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if bucket != minioMetaBucket { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 		if lock { | 
					
						
							|  |  |  | 			_, err = fs.rwPool.Open(fsMetaPath) | 
					
						
							|  |  |  | 			if err != nil && err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 				logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 				return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-02-24 07:07:21 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			defer fs.rwPool.Close(fsMetaPath) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-08 08:00:44 +08:00
										 |  |  | 	if etag != "" && etag != defaultEtag { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		objEtag, perr := fs.getObjectETag(ctx, bucket, object, lock) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 		if perr != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			return toObjectErr(perr, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if objEtag != etag { | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 			logger.LogIf(ctx, InvalidETag{}, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			return toObjectErr(InvalidETag{}, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-02 03:37:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Read the object, doesn't exist returns an s3 compatible error.
 | 
					
						
							|  |  |  | 	fsObjPath := pathJoin(fs.fsPath, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	reader, size, err := fsOpenFile(ctx, fsObjPath, offset) | 
					
						
							| 
									
										
										
										
											2016-07-08 10:49:45 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 		return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-07-08 10:49:45 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	defer reader.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bufSize := int64(readSizeV1) | 
					
						
							|  |  |  | 	if length > 0 && bufSize > length { | 
					
						
							|  |  |  | 		bufSize = length | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-08 10:49:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-22 03:29:32 +08:00
										 |  |  | 	// For negative length we read everything.
 | 
					
						
							|  |  |  | 	if length < 0 { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		length = size - offset | 
					
						
							| 
									
										
										
										
											2016-07-08 22:46:49 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-22 03:29:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Reply back invalid range if the input offset and length fall out of range.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if offset > size || offset+length > size { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		err = InvalidRange{offset, length, size} | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, err, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-07-08 10:49:45 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-06 11:59:54 +08:00
										 |  |  | 	// Allocate a staging buffer.
 | 
					
						
							|  |  |  | 	buf := make([]byte, int(bufSize)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_, err = io.CopyBuffer(writer, io.LimitReader(reader, length), buf) | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 	// The writer will be closed incase of range queries, which will emit ErrClosedPipe.
 | 
					
						
							|  |  |  | 	if err == io.ErrClosedPipe { | 
					
						
							|  |  |  | 		err = nil | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | // Create a new fs.json file, if the existing one is corrupt. Should happen very rarely.
 | 
					
						
							|  |  |  | func (fs *FSObjects) createFsJSON(object, fsMetaPath string) error { | 
					
						
							|  |  |  | 	fsMeta := newFSMetaV1() | 
					
						
							|  |  |  | 	fsMeta.Meta = make(map[string]string) | 
					
						
							|  |  |  | 	fsMeta.Meta["etag"] = GenETag() | 
					
						
							| 
									
										
										
										
											2018-10-02 14:18:17 +08:00
										 |  |  | 	contentType := mimedb.TypeByExtension(path.Ext(object)) | 
					
						
							|  |  |  | 	fsMeta.Meta["content-type"] = contentType | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	wlk, werr := fs.rwPool.Create(fsMetaPath) | 
					
						
							|  |  |  | 	if werr == nil { | 
					
						
							|  |  |  | 		_, err := fsMeta.WriteTo(wlk) | 
					
						
							|  |  |  | 		wlk.Close() | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return werr | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Used to return default etag values when a pre-existing object's meta data is queried.
 | 
					
						
							|  |  |  | func (fs *FSObjects) defaultFsJSON(object string) fsMetaV1 { | 
					
						
							|  |  |  | 	fsMeta := newFSMetaV1() | 
					
						
							|  |  |  | 	fsMeta.Meta = make(map[string]string) | 
					
						
							|  |  |  | 	fsMeta.Meta["etag"] = defaultEtag | 
					
						
							| 
									
										
										
										
											2018-10-02 14:18:17 +08:00
										 |  |  | 	contentType := mimedb.TypeByExtension(path.Ext(object)) | 
					
						
							|  |  |  | 	fsMeta.Meta["content-type"] = contentType | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	return fsMeta | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | // getObjectInfo - wrapper for reading object metadata and constructs ObjectInfo.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) getObjectInfo(ctx context.Context, bucket, object string) (oi ObjectInfo, e error) { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	fsMeta := fsMetaV1{} | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | 	if HasSuffix(object, SlashSeparator) { | 
					
						
							| 
									
										
										
										
											2018-05-09 10:09:15 +08:00
										 |  |  | 		fi, err := fsStatDir(ctx, pathJoin(fs.fsPath, bucket, object)) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return oi, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return fsMeta.ToObjectInfo(bucket, object, fi), nil | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Read `fs.json` to perhaps contend with
 | 
					
						
							|  |  |  | 	// parallel Put() operations.
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	rlk, err := fs.rwPool.Open(fsMetaPath) | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		// Read from fs metadata only if it exists.
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 		_, rerr := fsMeta.ReadFrom(ctx, rlk.LockedFile) | 
					
						
							|  |  |  | 		fs.rwPool.Close(fsMetaPath) | 
					
						
							| 
									
										
										
										
											2018-11-10 02:34:59 +08:00
										 |  |  | 		if rerr != nil { | 
					
						
							| 
									
										
										
										
											2019-06-13 07:42:04 +08:00
										 |  |  | 			// For any error to read fsMeta, set default ETag and proceed.
 | 
					
						
							| 
									
										
										
										
											2018-11-10 02:34:59 +08:00
										 |  |  | 			fsMeta = fs.defaultFsJSON(object) | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-17 12:42:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	// Return a default etag and content-type based on the object's extension.
 | 
					
						
							|  |  |  | 	if err == errFileNotFound { | 
					
						
							|  |  |  | 		fsMeta = fs.defaultFsJSON(object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Ignore if `fs.json` is not available, this is true for pre-existing data.
 | 
					
						
							|  |  |  | 	if err != nil && err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 		return oi, err | 
					
						
							| 
									
										
										
										
											2016-11-30 08:47:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Stat the file to get file size.
 | 
					
						
							| 
									
										
										
										
											2018-05-09 10:09:15 +08:00
										 |  |  | 	fi, err := fsStatFile(ctx, pathJoin(fs.fsPath, bucket, object)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 		return oi, err | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-30 08:47:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	return fsMeta.ToObjectInfo(bucket, object, fi), nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | // getObjectInfoWithLock - reads object metadata and replies back ObjectInfo.
 | 
					
						
							|  |  |  | func (fs *FSObjects) getObjectInfoWithLock(ctx context.Context, bucket, object string) (oi ObjectInfo, e error) { | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	// Lock the object before reading.
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	objectLock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if err := objectLock.GetRLock(globalObjectTimeout); err != nil { | 
					
						
							|  |  |  | 		return oi, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer objectLock.RUnlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err := checkGetObjArgs(ctx, bucket, object); err != nil { | 
					
						
							| 
									
										
										
										
											2017-06-22 10:53:09 +08:00
										 |  |  | 		return oi, err | 
					
						
							| 
									
										
										
										
											2016-09-03 03:18:35 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if _, err := fs.statBucketDir(ctx, bucket); err != nil { | 
					
						
							| 
									
										
										
										
											2018-06-26 09:24:00 +08:00
										 |  |  | 		return oi, err | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-07 03:08:58 +08:00
										 |  |  | 	if strings.HasSuffix(object, SlashSeparator) && !fs.isObjectDir(bucket, object) { | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 		return oi, errFileNotFound | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	return fs.getObjectInfo(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-09-03 03:18:35 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | // GetObjectInfo - reads object metadata and replies back ObjectInfo.
 | 
					
						
							| 
									
										
										
										
											2018-09-11 00:42:43 +08:00
										 |  |  | func (fs *FSObjects) GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (oi ObjectInfo, e error) { | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 	oi, err := fs.getObjectInfoWithLock(ctx, bucket, object) | 
					
						
							|  |  |  | 	if err == errCorruptedFormat || err == io.EOF { | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 		objectLock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-04-25 08:36:43 +08:00
										 |  |  | 		if err = objectLock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							|  |  |  | 			return oi, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							|  |  |  | 		err = fs.createFsJSON(object, fsMetaPath) | 
					
						
							|  |  |  | 		objectLock.Unlock() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return oi, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		oi, err = fs.getObjectInfoWithLock(ctx, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return oi, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | // This function does the following check, suppose
 | 
					
						
							|  |  |  | // object is "a/b/c/d", stat makes sure that objects ""a/b/c""
 | 
					
						
							|  |  |  | // "a/b" and "a" do not exist.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) parentDirIsObject(ctx context.Context, bucket, parent string) bool { | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 	var isParentDirObject func(string) bool | 
					
						
							|  |  |  | 	isParentDirObject = func(p string) bool { | 
					
						
							| 
									
										
										
										
											2019-08-07 03:08:58 +08:00
										 |  |  | 		if p == "." || p == SlashSeparator { | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 			return false | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-09 10:09:15 +08:00
										 |  |  | 		if fsIsFile(ctx, pathJoin(fs.fsPath, bucket, p)) { | 
					
						
							| 
									
										
										
										
											2017-09-26 05:47:58 +08:00
										 |  |  | 			// If there is already a file at prefix "p", return true.
 | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 			return true | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-09-26 05:47:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 		// Check if there is a file as one of the parent paths.
 | 
					
						
							|  |  |  | 		return isParentDirObject(path.Dir(p)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return isParentDirObject(parent) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 08:29:26 +08:00
										 |  |  | // PutObject - creates an object upon reading from the input stream
 | 
					
						
							|  |  |  | // until EOF, writes data directly to configured filesystem path.
 | 
					
						
							|  |  |  | // Additionally writes `fs.json` which carries the necessary metadata
 | 
					
						
							|  |  |  | // for future object operations.
 | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | func (fs *FSObjects) PutObject(ctx context.Context, bucket string, object string, r *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, retErr error) { | 
					
						
							| 
									
										
										
										
											2018-11-15 09:36:41 +08:00
										 |  |  | 	if err := checkPutObjectArgs(ctx, bucket, object, fs, r.Size()); err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 		return ObjectInfo{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	// Lock the object.
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	objectLock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if err := objectLock.GetLock(globalObjectTimeout); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 		return objInfo, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer objectLock.Unlock() | 
					
						
							| 
									
										
										
										
											2019-05-14 01:12:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | 	return fs.putObject(ctx, bucket, object, r, opts) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // putObject - wrapper for PutObject
 | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | func (fs *FSObjects) putObject(ctx context.Context, bucket string, object string, r *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, retErr error) { | 
					
						
							| 
									
										
										
										
											2018-11-15 09:36:41 +08:00
										 |  |  | 	data := r.Reader | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	// No metadata is set, allocate a new one.
 | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	meta := make(map[string]string) | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | 	for k, v := range opts.UserDefined { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 		meta[k] = v | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-15 03:06:24 +08:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2017-05-26 00:22:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Validate if bucket name is valid and exists.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if _, err = fs.statBucketDir(ctx, bucket); err != nil { | 
					
						
							| 
									
										
										
										
											2017-05-26 00:22:43 +08:00
										 |  |  | 		return ObjectInfo{}, toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 	fsMeta := newFSMetaV1() | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	fsMeta.Meta = meta | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-26 00:22:43 +08:00
										 |  |  | 	// This is a special case with size as '0' and object ends
 | 
					
						
							|  |  |  | 	// with a slash separator, we treat it like a valid operation
 | 
					
						
							|  |  |  | 	// and return success.
 | 
					
						
							| 
									
										
										
										
											2017-09-20 03:40:27 +08:00
										 |  |  | 	if isObjectDir(object, data.Size()) { | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 		// Check if an object is present as one of the parent dir.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		if fs.parentDirIsObject(ctx, bucket, path.Dir(object)) { | 
					
						
							| 
									
										
										
										
											2019-03-21 04:06:53 +08:00
										 |  |  | 			return ObjectInfo{}, toObjectErr(errFileParentIsFile, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-14 01:13:02 +08:00
										 |  |  | 		if err = mkdirAll(pathJoin(fs.fsPath, bucket, object), 0777); err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 			return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		var fi os.FileInfo | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		if fi, err = fsStatDir(ctx, pathJoin(fs.fsPath, bucket, object)); err != nil { | 
					
						
							| 
									
										
										
										
											2017-10-17 08:20:54 +08:00
										 |  |  | 			return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return fsMeta.ToObjectInfo(bucket, object, fi), nil | 
					
						
							| 
									
										
										
										
											2017-01-21 08:33:01 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-05-10 05:32:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 	// Check if an object is present as one of the parent dir.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if fs.parentDirIsObject(ctx, bucket, path.Dir(object)) { | 
					
						
							| 
									
										
										
										
											2019-03-21 04:06:53 +08:00
										 |  |  | 		return ObjectInfo{}, toObjectErr(errFileParentIsFile, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-05-10 08:46:46 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-07 00:38:01 +08:00
										 |  |  | 	// Validate input data size and it can never be less than zero.
 | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 	if data.Size() < -1 { | 
					
						
							| 
									
										
										
										
											2019-10-12 09:50:54 +08:00
										 |  |  | 		logger.LogIf(ctx, errInvalidArgument, logger.Application) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		return ObjectInfo{}, errInvalidArgument | 
					
						
							| 
									
										
										
										
											2017-10-07 00:38:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	var wlk *lock.LockedFile | 
					
						
							|  |  |  | 	if bucket != minioMetaBucket { | 
					
						
							| 
									
										
										
										
											2017-04-15 03:06:24 +08:00
										 |  |  | 		bucketMetaDir := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		fsMetaPath := pathJoin(bucketMetaDir, bucket, object, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		wlk, err = fs.rwPool.Create(fsMetaPath) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		// This close will allow for locks to be synchronized on `fs.json`.
 | 
					
						
							|  |  |  | 		defer wlk.Close() | 
					
						
							| 
									
										
										
										
											2017-04-15 03:06:24 +08:00
										 |  |  | 		defer func() { | 
					
						
							|  |  |  | 			// Remove meta file when PutObject encounters any error
 | 
					
						
							|  |  |  | 			if retErr != nil { | 
					
						
							|  |  |  | 				tmpDir := pathJoin(fs.fsPath, minioMetaTmpBucket, fs.fsUUID) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 				fsRemoveMeta(ctx, bucketMetaDir, fsMetaPath, tmpDir) | 
					
						
							| 
									
										
										
										
											2017-04-15 03:06:24 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-29 15:42:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 13:00:31 +08:00
										 |  |  | 	// Uploaded object will first be written to the temporary location which will eventually
 | 
					
						
							|  |  |  | 	// be renamed to the actual location. It is first written to the temporary location
 | 
					
						
							|  |  |  | 	// so that cleaning it up will be easy if the server goes down.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	tempObj := mustGetUUID() | 
					
						
							| 
									
										
										
										
											2016-05-14 02:52:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 	// Allocate a buffer to Read() from request body
 | 
					
						
							|  |  |  | 	bufSize := int64(readSizeV1) | 
					
						
							| 
									
										
										
										
											2017-09-20 03:40:27 +08:00
										 |  |  | 	if size := data.Size(); size > 0 && bufSize > size { | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 		bufSize = size | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 	buf := make([]byte, int(bufSize)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	fsTmpObjPath := pathJoin(fs.fsPath, minioMetaTmpBucket, fs.fsUUID, tempObj) | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	bytesWritten, err := fsCreateFile(ctx, fsTmpObjPath, data, buf, data.Size()) | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		fsRemoveFile(ctx, fsTmpObjPath) | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 		return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-11-15 09:36:41 +08:00
										 |  |  | 	fsMeta.Meta["etag"] = r.MD5CurrentHexString() | 
					
						
							| 
									
										
										
										
											2017-10-25 03:25:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 	// Should return IncompleteBody{} error when reader has fewer
 | 
					
						
							|  |  |  | 	// bytes than specified in request header.
 | 
					
						
							| 
									
										
										
										
											2017-09-20 03:40:27 +08:00
										 |  |  | 	if bytesWritten < data.Size() { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		fsRemoveFile(ctx, fsTmpObjPath) | 
					
						
							|  |  |  | 		return ObjectInfo{}, IncompleteBody{} | 
					
						
							| 
									
										
										
										
											2016-05-14 02:52:36 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-04 03:53:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 13:52:03 +08:00
										 |  |  | 	// Delete the temporary object in the case of a
 | 
					
						
							|  |  |  | 	// failure. If PutObject succeeds, then there would be
 | 
					
						
							|  |  |  | 	// nothing to delete.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	defer fsRemoveFile(ctx, fsTmpObjPath) | 
					
						
							| 
									
										
										
										
											2016-05-14 02:52:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-05 16:04:50 +08:00
										 |  |  | 	// Entire object was written to the temp location, now it's safe to rename it to the actual location.
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	fsNSObjPath := pathJoin(fs.fsPath, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-03-28 07:44:45 +08:00
										 |  |  | 	// Deny if WORM is enabled
 | 
					
						
							| 
									
										
										
										
											2020-01-14 09:29:31 +08:00
										 |  |  | 	if isWORMEnabled(bucket) { | 
					
						
							| 
									
										
										
										
											2019-11-21 05:18:09 +08:00
										 |  |  | 		if _, err := fsStatFile(ctx, fsNSObjPath); err == nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			return ObjectInfo{}, ObjectAlreadyExists{Bucket: bucket, Object: object} | 
					
						
							| 
									
										
										
										
											2018-03-28 07:44:45 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err = fsRenameFile(ctx, fsTmpObjPath, fsNSObjPath); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-05-14 02:52:36 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 03:33:08 +08:00
										 |  |  | 	if bucket != minioMetaBucket { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		// Write FS metadata after a successful namespace operation.
 | 
					
						
							|  |  |  | 		if _, err = fsMeta.WriteTo(wlk); err != nil { | 
					
						
							|  |  |  | 			return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-11-28 03:33:08 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-22 08:31:14 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-12 08:36:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// Stat the file to fetch timestamp, size.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	fi, err := fsStatFile(ctx, pathJoin(fs.fsPath, bucket, object)) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 		return ObjectInfo{}, toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Success.
 | 
					
						
							|  |  |  | 	return fsMeta.ToObjectInfo(bucket, object, fi), nil | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-14 03:25:49 +08:00
										 |  |  | // DeleteObjects - deletes an object from a bucket, this operation is destructive
 | 
					
						
							|  |  |  | // and there are no rollbacks supported.
 | 
					
						
							|  |  |  | func (fs *FSObjects) DeleteObjects(ctx context.Context, bucket string, objects []string) ([]error, error) { | 
					
						
							|  |  |  | 	errs := make([]error, len(objects)) | 
					
						
							|  |  |  | 	for idx, object := range objects { | 
					
						
							|  |  |  | 		errs[idx] = fs.DeleteObject(ctx, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return errs, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-22 08:31:14 +08:00
										 |  |  | // DeleteObject - deletes an object from a bucket, this operation is destructive
 | 
					
						
							|  |  |  | // and there are no rollbacks supported.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) DeleteObject(ctx context.Context, bucket, object string) error { | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	// Acquire a write lock before deleting the object.
 | 
					
						
							| 
									
										
										
										
											2019-11-14 04:17:45 +08:00
										 |  |  | 	objectLock := fs.NewNSLock(ctx, bucket, object) | 
					
						
							| 
									
										
										
										
											2018-01-13 12:34:52 +08:00
										 |  |  | 	if err := objectLock.GetLock(globalOperationTimeout); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer objectLock.Unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err := checkDelObjArgs(ctx, bucket, object); err != nil { | 
					
						
							| 
									
										
										
										
											2016-12-02 15:15:17 +08:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-11 01:20:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if _, err := fs.statBucketDir(ctx, bucket); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		return toObjectErr(err, bucket) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	minioMetaBucketDir := pathJoin(fs.fsPath, minioMetaBucket) | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	fsMetaPath := pathJoin(minioMetaBucketDir, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2016-11-28 03:33:08 +08:00
										 |  |  | 	if bucket != minioMetaBucket { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		rwlk, lerr := fs.rwPool.Write(fsMetaPath) | 
					
						
							|  |  |  | 		if lerr == nil { | 
					
						
							|  |  |  | 			// This close will allow for fs locks to be synchronized on `fs.json`.
 | 
					
						
							|  |  |  | 			defer rwlk.Close() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if lerr != nil && lerr != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, lerr) | 
					
						
							|  |  |  | 			return toObjectErr(lerr, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-11-28 03:33:08 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-22 08:31:14 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Delete the object.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	if err := fsDeleteFile(ctx, pathJoin(fs.fsPath, bucket), pathJoin(fs.fsPath, bucket, object)); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 		return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if bucket != minioMetaBucket { | 
					
						
							|  |  |  | 		// Delete the metadata object.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		err := fsDeleteFile(ctx, minioMetaBucketDir, fsMetaPath) | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 		if err != nil && err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2017-01-27 07:40:10 +08:00
										 |  |  | 			return toObjectErr(err, bucket, object) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-04-30 05:24:10 +08:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | // Returns function "listDir" of the type listDirFunc.
 | 
					
						
							|  |  |  | // isLeaf - is used by listDir function to check if an entry
 | 
					
						
							|  |  |  | // is a leaf or non-leaf entry.
 | 
					
						
							| 
									
										
										
										
											2019-05-02 13:06:57 +08:00
										 |  |  | func (fs *FSObjects) listDirFactory() ListDirFunc { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	// listDir - lists all the entries at a given prefix and given entry in the prefix.
 | 
					
						
							| 
									
										
										
										
											2019-05-02 13:06:57 +08:00
										 |  |  | 	listDir := func(bucket, prefixDir, prefixEntry string) (entries []string) { | 
					
						
							| 
									
										
										
										
											2018-07-28 06:32:19 +08:00
										 |  |  | 		var err error | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 		entries, err = readDir(pathJoin(fs.fsPath, bucket, prefixDir)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		if err != nil && err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-07-28 06:32:19 +08:00
										 |  |  | 			logger.LogIf(context.Background(), err) | 
					
						
							|  |  |  | 			return | 
					
						
							| 
									
										
										
										
											2017-01-27 07:39:22 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-24 05:54:28 +08:00
										 |  |  | 		sort.Strings(entries) | 
					
						
							| 
									
										
										
										
											2019-05-02 13:06:57 +08:00
										 |  |  | 		return filterMatchingPrefix(entries, prefixEntry) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Return list factory instance.
 | 
					
						
							|  |  |  | 	return listDir | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | // isObjectDir returns true if the specified bucket & prefix exists
 | 
					
						
							|  |  |  | // and the prefix represents an empty directory. An S3 empty directory
 | 
					
						
							|  |  |  | // is also an empty directory in the FS backend.
 | 
					
						
							|  |  |  | func (fs *FSObjects) isObjectDir(bucket, prefix string) bool { | 
					
						
							|  |  |  | 	entries, err := readDirN(pathJoin(fs.fsPath, bucket, prefix), 1) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return len(entries) == 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | // getObjectETag is a helper function, which returns only the md5sum
 | 
					
						
							|  |  |  | // of the file on the disk.
 | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | func (fs *FSObjects) getObjectETag(ctx context.Context, bucket, entry string, lock bool) (string, error) { | 
					
						
							| 
									
										
										
										
											2018-03-29 05:14:06 +08:00
										 |  |  | 	fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, entry, fs.metaJSONFile) | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 	var reader io.Reader | 
					
						
							|  |  |  | 	var fi os.FileInfo | 
					
						
							|  |  |  | 	var size int64 | 
					
						
							|  |  |  | 	if lock { | 
					
						
							|  |  |  | 		// Read `fs.json` to perhaps contend with
 | 
					
						
							|  |  |  | 		// parallel Put() operations.
 | 
					
						
							|  |  |  | 		rlk, err := fs.rwPool.Open(fsMetaPath) | 
					
						
							|  |  |  | 		// Ignore if `fs.json` is not available, this is true for pre-existing data.
 | 
					
						
							|  |  |  | 		if err != nil && err != errFileNotFound { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			return "", toObjectErr(err, bucket, entry) | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		// If file is not found, we don't need to proceed forward.
 | 
					
						
							|  |  |  | 		if err == errFileNotFound { | 
					
						
							|  |  |  | 			return "", nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		// Read from fs metadata only if it exists.
 | 
					
						
							|  |  |  | 		defer fs.rwPool.Close(fsMetaPath) | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		// Fetch the size of the underlying file.
 | 
					
						
							|  |  |  | 		fi, err = rlk.LockedFile.Stat() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			return "", toObjectErr(err, bucket, entry) | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		size = fi.Size() | 
					
						
							|  |  |  | 		reader = io.NewSectionReader(rlk.LockedFile, 0, fi.Size()) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		var err error | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		reader, size, err = fsOpenFile(ctx, fsMetaPath, 0) | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 			return "", toObjectErr(err, bucket, entry) | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-24 08:59:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// `fs.json` can be empty due to previously failed
 | 
					
						
							|  |  |  | 	// PutObject() transaction, if we arrive at such
 | 
					
						
							|  |  |  | 	// a situation we just ignore and continue.
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 	if size == 0 { | 
					
						
							| 
									
										
										
										
											2017-08-24 08:59:14 +08:00
										 |  |  | 		return "", nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 04:52:38 +08:00
										 |  |  | 	fsMetaBuf, err := ioutil.ReadAll(reader) | 
					
						
							| 
									
										
										
										
											2017-08-24 08:59:14 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		return "", toObjectErr(err, bucket, entry) | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 06:51:27 +08:00
										 |  |  | 	var fsMeta fsMetaV1 | 
					
						
							|  |  |  | 	var json = jsoniter.ConfigCompatibleWithStandardLibrary | 
					
						
							|  |  |  | 	if err = json.Unmarshal(fsMetaBuf, &fsMeta); err != nil { | 
					
						
							|  |  |  | 		return "", err | 
					
						
							| 
									
										
										
										
											2019-08-20 02:35:52 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 	// Check if FS metadata is valid, if not return error.
 | 
					
						
							| 
									
										
										
										
											2019-09-06 06:51:27 +08:00
										 |  |  | 	if !isFSMetaValid(fsMeta.Version) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 		logger.LogIf(ctx, errCorruptedFormat) | 
					
						
							|  |  |  | 		return "", toObjectErr(errCorruptedFormat, bucket, entry) | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 06:51:27 +08:00
										 |  |  | 	return extractETag(fsMeta.Meta), nil | 
					
						
							| 
									
										
										
										
											2017-04-05 00:14:03 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-18 04:26:08 +08:00
										 |  |  | // ListObjects - list all objects at prefix upto maxKeys., optionally delimited by '/'. Maintains the list pool
 | 
					
						
							|  |  |  | // state for future re-entrant list requests.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) ListObjects(ctx context.Context, bucket, prefix, marker, delimiter string, maxKeys int) (loi ListObjectsInfo, e error) { | 
					
						
							| 
									
										
										
										
											2019-12-12 22:02:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	atomic.AddInt64(&fs.activeIOCount, 1) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		atomic.AddInt64(&fs.activeIOCount, -1) | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 13:06:57 +08:00
										 |  |  | 	return listObjects(ctx, fs, bucket, prefix, marker, delimiter, maxKeys, fs.listPool, | 
					
						
							|  |  |  | 		fs.listDirFactory(), fs.getObjectInfo, fs.getObjectInfo) | 
					
						
							| 
									
										
										
										
											2016-05-21 11:48:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 00:45:59 +08:00
										 |  |  | // GetObjectTag - get object tags from an existing object
 | 
					
						
							|  |  |  | func (fs *FSObjects) GetObjectTag(ctx context.Context, bucket, object string) (tagging.Tagging, error) { | 
					
						
							|  |  |  | 	oi, err := fs.GetObjectInfo(ctx, bucket, object, ObjectOptions{}) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return tagging.Tagging{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tags, err := tagging.FromString(oi.UserTags) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return tagging.Tagging{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return tags, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // PutObjectTag - replace or add tags to an existing object
 | 
					
						
							|  |  |  | func (fs *FSObjects) PutObjectTag(ctx context.Context, bucket, object string, tags string) error { | 
					
						
							|  |  |  | 	fsMetaPath := pathJoin(fs.fsPath, minioMetaBucket, bucketMetaPrefix, bucket, object, fs.metaJSONFile) | 
					
						
							|  |  |  | 	fsMeta := fsMetaV1{} | 
					
						
							|  |  |  | 	wlk, err := fs.rwPool.Write(fsMetaPath) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		return toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// This close will allow for locks to be synchronized on `fs.json`.
 | 
					
						
							|  |  |  | 	defer wlk.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Read objects' metadata in `fs.json`.
 | 
					
						
							|  |  |  | 	if _, err = fsMeta.ReadFrom(ctx, wlk); err != nil { | 
					
						
							|  |  |  | 		// For any error to read fsMeta, set default ETag and proceed.
 | 
					
						
							|  |  |  | 		fsMeta = fs.defaultFsJSON(object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// clean fsMeta.Meta of tag key, before updating the new tags
 | 
					
						
							|  |  |  | 	delete(fsMeta.Meta, xhttp.AmzObjectTagging) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Do not update for empty tags
 | 
					
						
							|  |  |  | 	if tags != "" { | 
					
						
							|  |  |  | 		fsMeta.Meta[xhttp.AmzObjectTagging] = tags | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if _, err = fsMeta.WriteTo(wlk); err != nil { | 
					
						
							|  |  |  | 		return toObjectErr(err, bucket, object) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteObjectTag - delete object tags from an existing object
 | 
					
						
							|  |  |  | func (fs *FSObjects) DeleteObjectTag(ctx context.Context, bucket, object string) error { | 
					
						
							|  |  |  | 	return fs.PutObjectTag(ctx, bucket, object, "") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-10 01:25:41 +08:00
										 |  |  | // ReloadFormat - no-op for fs, Valid only for XL.
 | 
					
						
							|  |  |  | func (fs *FSObjects) ReloadFormat(ctx context.Context, dryRun bool) error { | 
					
						
							| 
									
										
										
										
											2018-04-11 00:36:37 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							|  |  |  | 	return NotImplemented{} | 
					
						
							| 
									
										
										
										
											2018-04-10 01:25:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-16 09:45:57 +08:00
										 |  |  | // HealFormat - no-op for fs, Valid only for XL.
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) HealFormat(ctx context.Context, dryRun bool) (madmin.HealResultItem, error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							|  |  |  | 	return madmin.HealResultItem{}, NotImplemented{} | 
					
						
							| 
									
										
										
										
											2018-02-16 09:45:57 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-18 02:36:33 +08:00
										 |  |  | // HealObject - no-op for fs. Valid only for XL.
 | 
					
						
							| 
									
										
										
										
											2019-03-15 04:08:51 +08:00
										 |  |  | func (fs *FSObjects) HealObject(ctx context.Context, bucket, object string, dryRun, remove bool, scanMode madmin.HealScanMode) ( | 
					
						
							| 
									
										
										
										
											2018-01-23 06:54:55 +08:00
										 |  |  | 	res madmin.HealResultItem, err error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							|  |  |  | 	return res, NotImplemented{} | 
					
						
							| 
									
										
										
										
											2016-08-18 02:36:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-15 10:57:40 +08:00
										 |  |  | // HealBucket - no-op for fs, Valid only for XL.
 | 
					
						
							| 
									
										
										
										
											2019-02-11 11:53:13 +08:00
										 |  |  | func (fs *FSObjects) HealBucket(ctx context.Context, bucket string, dryRun, remove bool) (madmin.HealResultItem, | 
					
						
							| 
									
										
										
										
											2018-01-23 06:54:55 +08:00
										 |  |  | 	error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							| 
									
										
										
										
											2019-02-11 11:53:13 +08:00
										 |  |  | 	return madmin.HealResultItem{}, NotImplemented{} | 
					
						
							| 
									
										
										
										
											2016-10-15 10:57:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | // Walk a bucket, optionally prefix recursively, until we have returned
 | 
					
						
							|  |  |  | // all the content to objectInfo channel, it is callers responsibility
 | 
					
						
							|  |  |  | // to allocate a receive channel for ObjectInfo, upon any unhandled
 | 
					
						
							|  |  |  | // error walker returns error. Optionally if context.Done() is received
 | 
					
						
							|  |  |  | // then Walk() stops the walker.
 | 
					
						
							|  |  |  | func (fs *FSObjects) Walk(ctx context.Context, bucket, prefix string, results chan<- ObjectInfo) error { | 
					
						
							|  |  |  | 	return fsWalk(ctx, fs, bucket, prefix, fs.listDirFactory(), results, fs.getObjectInfo, fs.getObjectInfo) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 08:35:09 +08:00
										 |  |  | // HealObjects - no-op for fs. Valid only for XL.
 | 
					
						
							| 
									
										
										
										
											2020-01-29 14:35:44 +08:00
										 |  |  | func (fs *FSObjects) HealObjects(ctx context.Context, bucket, prefix string, fn healObjectFn) (e error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							| 
									
										
										
										
											2019-03-14 08:35:09 +08:00
										 |  |  | 	return NotImplemented{} | 
					
						
							| 
									
										
										
										
											2016-08-18 02:36:33 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-20 01:34:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // ListBucketsHeal - list all buckets to be healed. Valid only for XL
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) ListBucketsHeal(ctx context.Context) ([]BucketInfo, error) { | 
					
						
							| 
									
										
										
										
											2018-04-06 06:04:40 +08:00
										 |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							|  |  |  | 	return []BucketInfo{}, NotImplemented{} | 
					
						
							| 
									
										
										
										
											2017-01-20 01:34:18 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 15:16:06 +08:00
										 |  |  | // GetMetrics - no op
 | 
					
						
							|  |  |  | func (fs *FSObjects) GetMetrics(ctx context.Context) (*Metrics, error) { | 
					
						
							|  |  |  | 	logger.LogIf(ctx, NotImplemented{}) | 
					
						
							|  |  |  | 	return &Metrics{}, NotImplemented{} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | // SetBucketPolicy sets policy on bucket
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | func (fs *FSObjects) SetBucketPolicy(ctx context.Context, bucket string, policy *policy.Policy) error { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	return savePolicyConfig(ctx, fs, bucket, policy) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetBucketPolicy will get policy on bucket
 | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | func (fs *FSObjects) GetBucketPolicy(ctx context.Context, bucket string) (*policy.Policy, error) { | 
					
						
							| 
									
										
										
										
											2018-06-27 14:59:48 +08:00
										 |  |  | 	return getPolicyConfig(fs, bucket) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteBucketPolicy deletes all policies on bucket
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) DeleteBucketPolicy(ctx context.Context, bucket string) error { | 
					
						
							| 
									
										
										
										
											2018-04-25 06:53:30 +08:00
										 |  |  | 	return removePolicyConfig(ctx, fs, bucket) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-20 04:20:33 +08:00
										 |  |  | // SetBucketLifecycle sets lifecycle on bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) SetBucketLifecycle(ctx context.Context, bucket string, lifecycle *lifecycle.Lifecycle) error { | 
					
						
							|  |  |  | 	return saveLifecycleConfig(ctx, fs, bucket, lifecycle) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetBucketLifecycle will get lifecycle on bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) GetBucketLifecycle(ctx context.Context, bucket string) (*lifecycle.Lifecycle, error) { | 
					
						
							|  |  |  | 	return getLifecycleConfig(fs, bucket) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteBucketLifecycle deletes all lifecycle on bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) DeleteBucketLifecycle(ctx context.Context, bucket string) error { | 
					
						
							|  |  |  | 	return removeLifecycleConfig(ctx, fs, bucket) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 17:42:34 +08:00
										 |  |  | // GetBucketSSEConfig returns bucket encryption config on given bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) GetBucketSSEConfig(ctx context.Context, bucket string) (*bucketsse.BucketSSEConfig, error) { | 
					
						
							|  |  |  | 	return getBucketSSEConfig(fs, bucket) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetBucketSSEConfig sets bucket encryption config on given bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) SetBucketSSEConfig(ctx context.Context, bucket string, config *bucketsse.BucketSSEConfig) error { | 
					
						
							|  |  |  | 	return saveBucketSSEConfig(ctx, fs, bucket, config) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteBucketSSEConfig deletes bucket encryption config on given bucket
 | 
					
						
							|  |  |  | func (fs *FSObjects) DeleteBucketSSEConfig(ctx context.Context, bucket string) error { | 
					
						
							|  |  |  | 	return removeBucketSSEConfig(ctx, fs, bucket) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | // ListObjectsV2 lists all blobs in bucket filtered by prefix
 | 
					
						
							| 
									
										
										
										
											2018-03-15 03:01:47 +08:00
										 |  |  | func (fs *FSObjects) ListObjectsV2(ctx context.Context, bucket, prefix, continuationToken, delimiter string, maxKeys int, fetchOwner bool, startAfter string) (result ListObjectsV2Info, err error) { | 
					
						
							| 
									
										
										
										
											2018-07-01 12:22:45 +08:00
										 |  |  | 	marker := continuationToken | 
					
						
							|  |  |  | 	if marker == "" { | 
					
						
							|  |  |  | 		marker = startAfter | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	loi, err := fs.ListObjects(ctx, bucket, prefix, marker, delimiter, maxKeys) | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return result, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	listObjectsV2Info := ListObjectsV2Info{ | 
					
						
							|  |  |  | 		IsTruncated:           loi.IsTruncated, | 
					
						
							|  |  |  | 		ContinuationToken:     continuationToken, | 
					
						
							|  |  |  | 		NextContinuationToken: loi.NextMarker, | 
					
						
							|  |  |  | 		Objects:               loi.Objects, | 
					
						
							|  |  |  | 		Prefixes:              loi.Prefixes, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return listObjectsV2Info, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // IsNotificationSupported returns whether bucket notification is applicable for this layer.
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | func (fs *FSObjects) IsNotificationSupported() bool { | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 06:03:42 +08:00
										 |  |  | // IsListenBucketSupported returns whether listen bucket notification is applicable for this layer.
 | 
					
						
							|  |  |  | func (fs *FSObjects) IsListenBucketSupported() bool { | 
					
						
							|  |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-06 06:16:43 +08:00
										 |  |  | // IsEncryptionSupported returns whether server side encryption is implemented for this layer.
 | 
					
						
							| 
									
										
										
										
											2018-02-21 04:21:12 +08:00
										 |  |  | func (fs *FSObjects) IsEncryptionSupported() bool { | 
					
						
							| 
									
										
										
										
											2018-02-10 07:19:30 +08:00
										 |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-09-28 11:36:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // IsCompressionSupported returns whether compression is applicable for this layer.
 | 
					
						
							|  |  |  | func (fs *FSObjects) IsCompressionSupported() bool { | 
					
						
							|  |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-29 00:54:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // IsReady - Check if the backend disk is ready to accept traffic.
 | 
					
						
							|  |  |  | func (fs *FSObjects) IsReady(_ context.Context) bool { | 
					
						
							|  |  |  | 	_, err := os.Stat(fs.fsPath) | 
					
						
							|  |  |  | 	return err == nil | 
					
						
							|  |  |  | } |