| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | // Copyright (c) 2015-2022 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"encoding/gob" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 	"sort" | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	"strconv" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	xhttp "github.com/minio/minio/internal/http" | 
					
						
							|  |  |  | 	"github.com/minio/minio/internal/rest" | 
					
						
							| 
									
										
										
										
											2023-09-05 03:57:37 +08:00
										 |  |  | 	"github.com/minio/pkg/v2/sync/errgroup" | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	"golang.org/x/exp/slices" | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var errPeerOffline = errors.New("peer is offline") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | type peerS3Client interface { | 
					
						
							|  |  |  | 	ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) | 
					
						
							|  |  |  | 	GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error) | 
					
						
							|  |  |  | 	MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error | 
					
						
							|  |  |  | 	DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GetHost() string | 
					
						
							|  |  |  | 	SetPools([]int) | 
					
						
							|  |  |  | 	GetPools() []int | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type localPeerS3Client struct { | 
					
						
							|  |  |  | 	host  string | 
					
						
							|  |  |  | 	pools []int | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l *localPeerS3Client) GetHost() string { | 
					
						
							|  |  |  | 	return l.host | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l *localPeerS3Client) SetPools(p []int) { | 
					
						
							|  |  |  | 	l.pools = make([]int, len(p)) | 
					
						
							|  |  |  | 	copy(l.pools, p) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l localPeerS3Client) GetPools() []int { | 
					
						
							|  |  |  | 	return l.pools | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l localPeerS3Client) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) { | 
					
						
							|  |  |  | 	return listBucketsLocal(ctx, opts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l localPeerS3Client) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error) { | 
					
						
							|  |  |  | 	return getBucketInfoLocal(ctx, bucket, opts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l localPeerS3Client) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error { | 
					
						
							|  |  |  | 	return makeBucketLocal(ctx, bucket, opts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l localPeerS3Client) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error { | 
					
						
							|  |  |  | 	return deleteBucketLocal(ctx, bucket, opts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | // client to talk to peer Nodes.
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | type remotePeerS3Client struct { | 
					
						
							|  |  |  | 	host       string | 
					
						
							|  |  |  | 	pools      []int | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	restClient *rest.Client | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Wrapper to restClient.Call to handle network errors, in case of network error the connection is marked disconnected
 | 
					
						
							|  |  |  | // permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
 | 
					
						
							|  |  |  | // after verifying format.json
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) call(method string, values url.Values, body io.Reader, length int64) (respBody io.ReadCloser, err error) { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	return client.callWithContext(GlobalContext, method, values, body, length) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Wrapper to restClient.Call to handle network errors, in case of network error the connection is marked disconnected
 | 
					
						
							|  |  |  | // permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
 | 
					
						
							|  |  |  | // after verifying format.json
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) callWithContext(ctx context.Context, method string, values url.Values, body io.Reader, length int64) (respBody io.ReadCloser, err error) { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	if values == nil { | 
					
						
							|  |  |  | 		values = make(url.Values) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	respBody, err = client.restClient.Call(ctx, method, values, body, length) | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		return respBody, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = toStorageErr(err) | 
					
						
							|  |  |  | 	return nil, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // S3PeerSys - S3 peer call system.
 | 
					
						
							|  |  |  | type S3PeerSys struct { | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	peerClients []peerS3Client // Excludes self
 | 
					
						
							|  |  |  | 	poolsCount  int | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewS3PeerSys - creates new S3 peer calls.
 | 
					
						
							|  |  |  | func NewS3PeerSys(endpoints EndpointServerPools) *S3PeerSys { | 
					
						
							|  |  |  | 	return &S3PeerSys{ | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 		peerClients: newPeerS3Clients(endpoints.GetNodes()), | 
					
						
							|  |  |  | 		poolsCount:  len(endpoints), | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | // ListBuckets lists buckets across all nodes and returns a consistent view:
 | 
					
						
							|  |  |  | //   - Return an error when a pool cannot return N/2+1 valid bucket information
 | 
					
						
							|  |  |  | //   - For each pool, check if the bucket exists in N/2+1 nodes before including it in the final result
 | 
					
						
							|  |  |  | func (sys *S3PeerSys) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) { | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 	g := errgroup.WithNErrs(len(sys.peerClients)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	nodeBuckets := make([][]BucketInfo, len(sys.peerClients)) | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for idx, client := range sys.peerClients { | 
					
						
							|  |  |  | 		idx := idx | 
					
						
							|  |  |  | 		client := client | 
					
						
							|  |  |  | 		g.Go(func() error { | 
					
						
							|  |  |  | 			if client == nil { | 
					
						
							|  |  |  | 				return errPeerOffline | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			localBuckets, err := client.ListBuckets(ctx, opts) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return err | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 			nodeBuckets[idx] = localBuckets | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 			return nil | 
					
						
							|  |  |  | 		}, idx) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-21 08:50:21 +08:00
										 |  |  | 	errs := g.Wait() | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 	// The list of buckets in a map to avoid duplication
 | 
					
						
							|  |  |  | 	resultMap := make(map[string]BucketInfo) | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 	for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ { | 
					
						
							|  |  |  | 		perPoolErrs := make([]error, 0, len(sys.peerClients)) | 
					
						
							|  |  |  | 		for i, client := range sys.peerClients { | 
					
						
							|  |  |  | 			if slices.Contains(client.GetPools(), poolIdx) { | 
					
						
							|  |  |  | 				perPoolErrs = append(perPoolErrs, errs[i]) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-10-21 08:50:21 +08:00
										 |  |  | 		quorum := len(perPoolErrs) / 2 | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 		if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil { | 
					
						
							|  |  |  | 			return nil, poolErr | 
					
						
							| 
									
										
										
										
											2023-01-05 00:53:58 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		bucketsMap := make(map[string]int) | 
					
						
							|  |  |  | 		for idx, buckets := range nodeBuckets { | 
					
						
							|  |  |  | 			if buckets == nil { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			for _, bi := range buckets { | 
					
						
							|  |  |  | 				_, ok := resultMap[bi.Name] | 
					
						
							|  |  |  | 				if ok { | 
					
						
							|  |  |  | 					// Skip it, this bucket is found in another pool
 | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				bucketsMap[bi.Name]++ | 
					
						
							| 
									
										
										
										
											2023-10-21 08:50:21 +08:00
										 |  |  | 				if bucketsMap[bi.Name] >= quorum { | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 					resultMap[bi.Name] = bi | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2023-01-05 00:53:58 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 15:58:54 +08:00
										 |  |  | 	result := make([]BucketInfo, 0, len(resultMap)) | 
					
						
							|  |  |  | 	for _, bi := range resultMap { | 
					
						
							|  |  |  | 		result = append(result, bi) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sort.Slice(result, func(i, j int) bool { | 
					
						
							|  |  |  | 		return result[i].Name < result[j].Name | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-05 00:53:58 +08:00
										 |  |  | 	return result, nil | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | // GetBucketInfo returns bucket stat info about bucket on disk across all peers
 | 
					
						
							|  |  |  | func (sys *S3PeerSys) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (binfo BucketInfo, err error) { | 
					
						
							|  |  |  | 	g := errgroup.WithNErrs(len(sys.peerClients)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 06:44:16 +08:00
										 |  |  | 	bucketInfos := make([]BucketInfo, len(sys.peerClients)) | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	for idx, client := range sys.peerClients { | 
					
						
							|  |  |  | 		idx := idx | 
					
						
							|  |  |  | 		client := client | 
					
						
							|  |  |  | 		g.Go(func() error { | 
					
						
							|  |  |  | 			if client == nil { | 
					
						
							|  |  |  | 				return errPeerOffline | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			bucketInfo, err := client.GetBucketInfo(ctx, bucket, opts) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return err | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-04-13 06:44:16 +08:00
										 |  |  | 			bucketInfos[idx] = bucketInfo | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 			return nil | 
					
						
							|  |  |  | 		}, idx) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 06:44:16 +08:00
										 |  |  | 	errs := g.Wait() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-21 08:50:21 +08:00
										 |  |  | 	for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ { | 
					
						
							|  |  |  | 		perPoolErrs := make([]error, 0, len(sys.peerClients)) | 
					
						
							|  |  |  | 		for i, client := range sys.peerClients { | 
					
						
							|  |  |  | 			if slices.Contains(client.GetPools(), poolIdx) { | 
					
						
							|  |  |  | 				perPoolErrs = append(perPoolErrs, errs[i]) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		quorum := len(perPoolErrs) / 2 | 
					
						
							|  |  |  | 		if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil { | 
					
						
							|  |  |  | 			return BucketInfo{}, poolErr | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-04-07 13:42:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 06:44:16 +08:00
										 |  |  | 	for i, err := range errs { | 
					
						
							|  |  |  | 		if err == nil { | 
					
						
							|  |  |  | 			return bucketInfos[i], nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return BucketInfo{}, toObjectErr(errVolumeNotFound, bucket) | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) { | 
					
						
							| 
									
										
										
										
											2023-01-04 15:39:40 +08:00
										 |  |  | 	v := url.Values{} | 
					
						
							|  |  |  | 	v.Set(peerS3BucketDeleted, strconv.FormatBool(opts.Deleted)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	respBody, err := client.call(peerS3MethodListBuckets, v, nil, -1) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer xhttp.DrainBody(respBody) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var buckets []BucketInfo | 
					
						
							|  |  |  | 	err = gob.NewDecoder(respBody).Decode(&buckets) | 
					
						
							|  |  |  | 	return buckets, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | // GetBucketInfo returns bucket stat info from a peer
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error) { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	v := url.Values{} | 
					
						
							|  |  |  | 	v.Set(peerS3Bucket, bucket) | 
					
						
							|  |  |  | 	v.Set(peerS3BucketDeleted, strconv.FormatBool(opts.Deleted)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	respBody, err := client.call(peerS3MethodGetBucketInfo, v, nil, -1) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return BucketInfo{}, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer xhttp.DrainBody(respBody) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var bucketInfo BucketInfo | 
					
						
							|  |  |  | 	err = gob.NewDecoder(respBody).Decode(&bucketInfo) | 
					
						
							|  |  |  | 	return bucketInfo, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // MakeBucket creates bucket across all peers
 | 
					
						
							|  |  |  | func (sys *S3PeerSys) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error { | 
					
						
							|  |  |  | 	g := errgroup.WithNErrs(len(sys.peerClients)) | 
					
						
							|  |  |  | 	for idx, client := range sys.peerClients { | 
					
						
							|  |  |  | 		client := client | 
					
						
							|  |  |  | 		g.Go(func() error { | 
					
						
							|  |  |  | 			if client == nil { | 
					
						
							|  |  |  | 				return errPeerOffline | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return client.MakeBucket(ctx, bucket, opts) | 
					
						
							|  |  |  | 		}, idx) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	errs := g.Wait() | 
					
						
							| 
									
										
										
										
											2023-04-19 22:47:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ { | 
					
						
							|  |  |  | 		perPoolErrs := make([]error, 0, len(sys.peerClients)) | 
					
						
							|  |  |  | 		for i, client := range sys.peerClients { | 
					
						
							|  |  |  | 			if slices.Contains(client.GetPools(), poolIdx) { | 
					
						
							|  |  |  | 				perPoolErrs = append(perPoolErrs, errs[i]) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-04-19 22:47:42 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-07-26 07:58:31 +08:00
										 |  |  | 		if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, len(perPoolErrs)/2+1); poolErr != nil { | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 			return toObjectErr(poolErr, bucket) | 
					
						
							| 
									
										
										
										
											2023-04-19 22:47:42 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // MakeBucket creates a bucket on a peer
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	v := url.Values{} | 
					
						
							|  |  |  | 	v.Set(peerS3Bucket, bucket) | 
					
						
							|  |  |  | 	v.Set(peerS3BucketForceCreate, strconv.FormatBool(opts.ForceCreate)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	respBody, err := client.call(peerS3MethodMakeBucket, v, nil, -1) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer xhttp.DrainBody(respBody) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteBucket deletes bucket across all peers
 | 
					
						
							|  |  |  | func (sys *S3PeerSys) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error { | 
					
						
							|  |  |  | 	g := errgroup.WithNErrs(len(sys.peerClients)) | 
					
						
							|  |  |  | 	for idx, client := range sys.peerClients { | 
					
						
							|  |  |  | 		client := client | 
					
						
							|  |  |  | 		g.Go(func() error { | 
					
						
							|  |  |  | 			if client == nil { | 
					
						
							|  |  |  | 				return errPeerOffline | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return client.DeleteBucket(ctx, bucket, opts) | 
					
						
							|  |  |  | 		}, idx) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	errs := g.Wait() | 
					
						
							| 
									
										
										
										
											2023-04-26 05:16:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ { | 
					
						
							|  |  |  | 		perPoolErrs := make([]error, 0, len(sys.peerClients)) | 
					
						
							|  |  |  | 		for i, client := range sys.peerClients { | 
					
						
							|  |  |  | 			if slices.Contains(client.GetPools(), poolIdx) { | 
					
						
							|  |  |  | 				perPoolErrs = append(perPoolErrs, errs[i]) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-07-26 07:58:31 +08:00
										 |  |  | 		if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, len(perPoolErrs)/2+1); poolErr != nil && poolErr != errVolumeNotFound { | 
					
						
							| 
									
										
										
										
											2023-04-26 05:16:35 +08:00
										 |  |  | 			// re-create successful deletes, since we are return an error.
 | 
					
						
							|  |  |  | 			sys.MakeBucket(ctx, bucket, MakeBucketOptions{}) | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 			return toObjectErr(poolErr, bucket) | 
					
						
							| 
									
										
										
										
											2023-04-26 05:16:35 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DeleteBucket deletes bucket on a peer
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client *remotePeerS3Client) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	v := url.Values{} | 
					
						
							|  |  |  | 	v.Set(peerS3Bucket, bucket) | 
					
						
							|  |  |  | 	v.Set(peerS3BucketForceDelete, strconv.FormatBool(opts.Force)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	respBody, err := client.call(peerS3MethodDeleteBucket, v, nil, -1) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer xhttp.DrainBody(respBody) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func (client remotePeerS3Client) GetHost() string { | 
					
						
							|  |  |  | 	return client.host | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (client remotePeerS3Client) GetPools() []int { | 
					
						
							|  |  |  | 	return client.pools | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (client *remotePeerS3Client) SetPools(p []int) { | 
					
						
							|  |  |  | 	client.pools = make([]int, len(p)) | 
					
						
							|  |  |  | 	copy(client.pools, p) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | // newPeerS3Clients creates new peer clients.
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func newPeerS3Clients(nodes []Node) (peers []peerS3Client) { | 
					
						
							|  |  |  | 	peers = make([]peerS3Client, len(nodes)) | 
					
						
							|  |  |  | 	for i, node := range nodes { | 
					
						
							|  |  |  | 		if node.IsLocal { | 
					
						
							|  |  |  | 			peers[i] = &localPeerS3Client{host: node.Host} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			peers[i] = newPeerS3Client(node.Host) | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 		peers[i].SetPools(node.Pools) | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	return | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Returns a peer S3 client.
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | func newPeerS3Client(peer string) peerS3Client { | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 	scheme := "http" | 
					
						
							|  |  |  | 	if globalIsTLS { | 
					
						
							|  |  |  | 		scheme = "https" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	serverURL := &url.URL{ | 
					
						
							|  |  |  | 		Scheme: scheme, | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 		Host:   peer, | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | 		Path:   peerS3Path, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	restClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken()) | 
					
						
							|  |  |  | 	// Use a separate client to avoid recursive calls.
 | 
					
						
							|  |  |  | 	healthClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken()) | 
					
						
							|  |  |  | 	healthClient.NoMetrics = true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Construct a new health function.
 | 
					
						
							|  |  |  | 	restClient.HealthCheckFn = func() bool { | 
					
						
							|  |  |  | 		ctx, cancel := context.WithTimeout(context.Background(), restClient.HealthCheckTimeout) | 
					
						
							|  |  |  | 		defer cancel() | 
					
						
							|  |  |  | 		respBody, err := healthClient.Call(ctx, peerS3MethodHealth, nil, nil, -1) | 
					
						
							|  |  |  | 		xhttp.DrainBody(respBody) | 
					
						
							|  |  |  | 		return !isNetworkError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-24 02:48:23 +08:00
										 |  |  | 	return &remotePeerS3Client{host: peer, restClient: restClient} | 
					
						
							| 
									
										
										
										
											2023-01-04 00:16:39 +08:00
										 |  |  | } |