-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathmirror-url.go
288 lines (257 loc) · 9.49 KB
/
mirror-url.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// 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"
"fmt"
"path/filepath"
"runtime"
"strings"
"time"
"github.com/minio/cli"
"github.com/minio/minio-go/v7"
"github.com/minio/pkg/v3/wildcard"
)
//
// * MIRROR ARGS - VALID CASES
// =========================
// mirror(d1..., d2) -> []mirror(d1/f, d2/d1/f)
// checkMirrorSyntax(URLs []string)
func checkMirrorSyntax(ctx context.Context, cliCtx *cli.Context, encKeyDB map[string][]prefixSSEPair) (srcURL, tgtURL string) {
if len(cliCtx.Args()) != 2 {
showCommandHelpAndExit(cliCtx, 1) // last argument is exit code.
}
parseChecksum(cliCtx)
// extract URLs.
URLs := cliCtx.Args()
srcURL = URLs[0]
tgtURL = URLs[1]
if cliCtx.Bool("force") && cliCtx.Bool("remove") {
errorIf(errInvalidArgument().Trace(URLs...), "`--force` is deprecated, please use `--overwrite` instead with `--remove` for the same functionality.")
} else if cliCtx.Bool("force") {
errorIf(errInvalidArgument().Trace(URLs...), "`--force` is deprecated, please use `--overwrite` instead for the same functionality.")
}
_, expandedSourcePath, _ := mustExpandAlias(srcURL)
srcClient := newClientURL(expandedSourcePath)
_, expandedTargetPath, _ := mustExpandAlias(tgtURL)
destClient := newClientURL(expandedTargetPath)
// Mirror with preserve option on windows
// only works for object storage to object storage
if runtime.GOOS == "windows" && cliCtx.Bool("a") {
if srcClient.Type == fileSystem || destClient.Type == fileSystem {
errorIf(errInvalidArgument(), "Preserve functionality on windows support object storage to object storage transfer only.")
}
}
/****** Generic rules *******/
if !cliCtx.Bool("watch") && !cliCtx.Bool("active-active") && !cliCtx.Bool("multi-master") {
_, srcContent, err := url2Stat(ctx, url2StatOptions{urlStr: srcURL, versionID: "", fileAttr: false, encKeyDB: encKeyDB, timeRef: time.Time{}, isZip: false, ignoreBucketExistsCheck: false})
if err != nil {
fatalIf(err.Trace(srcURL), "Unable to stat source `"+srcURL+"`.")
}
if !srcContent.Type.IsDir() {
fatalIf(errInvalidArgument().Trace(srcContent.URL.String(), srcContent.Type.String()), fmt.Sprintf("Source `%s` is not a folder. Only folders are supported by mirror command.", srcURL))
}
if srcClient.Type == fileSystem && !filepath.IsAbs(srcURL) {
origSrcURL := srcURL
var e error
// Changing relative path to absolute path, if it is a local directory.
// Save original in case of error
if srcURL, e = filepath.Abs(srcURL); e != nil {
srcURL = origSrcURL
}
}
}
return
}
func matchExcludeOptions(excludeOptions []string, srcSuffix string, typ ClientURLType) bool {
// if type is file system, remove leading slash
if typ == fileSystem {
if strings.HasPrefix(srcSuffix, "/") {
srcSuffix = srcSuffix[1:]
} else if runtime.GOOS == "windows" && strings.HasPrefix(srcSuffix, `\`) {
srcSuffix = srcSuffix[1:]
}
}
for _, pattern := range excludeOptions {
if wildcard.Match(pattern, srcSuffix) {
return true
}
}
return false
}
func matchExcludeBucketOptions(excludeBuckets []string, srcSuffix string) bool {
if strings.HasPrefix(srcSuffix, "/") {
srcSuffix = srcSuffix[1:]
} else if runtime.GOOS == "windows" && strings.HasPrefix(srcSuffix, `\`) {
srcSuffix = srcSuffix[1:]
}
var bucketName string
if runtime.GOOS == "windows" {
bucketName = strings.Split(srcSuffix, `\`)[0]
} else {
bucketName = strings.Split(srcSuffix, "/")[0]
}
for _, pattern := range excludeBuckets {
if wildcard.Match(pattern, bucketName) {
return true
}
}
return false
}
func deltaSourceTarget(ctx context.Context, sourceURL, targetURL string, opts mirrorOptions, URLsCh chan<- URLs) {
// source and targets are always directories
sourceSeparator := string(newClientURL(sourceURL).Separator)
if !strings.HasSuffix(sourceURL, sourceSeparator) {
sourceURL = sourceURL + sourceSeparator
}
targetSeparator := string(newClientURL(targetURL).Separator)
if !strings.HasSuffix(targetURL, targetSeparator) {
targetURL = targetURL + targetSeparator
}
// Extract alias and expanded URL
sourceAlias, sourceURL, _ := mustExpandAlias(sourceURL)
targetAlias, targetURL, _ := mustExpandAlias(targetURL)
defer close(URLsCh)
sourceClnt, err := newClientFromAlias(sourceAlias, sourceURL)
if err != nil {
URLsCh <- URLs{Error: err.Trace(sourceAlias, sourceURL)}
return
}
targetClnt, err := newClientFromAlias(targetAlias, targetURL)
if err != nil {
URLsCh <- URLs{Error: err.Trace(targetAlias, targetURL)}
return
}
// If the passed source URL points to fs, fetch the absolute src path
// to correctly calculate targetPath
if sourceAlias == "" {
tmpSrcURL, e := filepath.Abs(sourceURL)
if e == nil {
sourceURL = tmpSrcURL
}
}
// List both source and target, compare and return values through channel.
for diffMsg := range objectDifference(ctx, sourceClnt, targetClnt, opts) {
if diffMsg.Error != nil {
// Send all errors through the channel
URLsCh <- URLs{Error: diffMsg.Error, ErrorCond: differInUnknown}
continue
}
srcSuffix := strings.TrimPrefix(diffMsg.FirstURL, sourceURL)
// Skip the source object if it matches the Exclude options provided
if matchExcludeOptions(opts.excludeOptions, srcSuffix, newClientURL(sourceURL).Type) {
continue
}
// Skip the source bucket if it matches the Exclude options provided
if matchExcludeBucketOptions(opts.excludeBuckets, srcSuffix) {
continue
}
tgtSuffix := strings.TrimPrefix(diffMsg.SecondURL, targetURL)
// Skip the target object if it matches the Exclude options provided
if matchExcludeOptions(opts.excludeOptions, tgtSuffix, newClientURL(targetURL).Type) {
continue
}
// Skip the target bucket if it matches the Exclude options provided
if matchExcludeBucketOptions(opts.excludeBuckets, tgtSuffix) {
continue
}
if diffMsg.firstContent != nil {
var found bool
for _, esc := range opts.excludeStorageClasses {
if esc == diffMsg.firstContent.StorageClass {
found = true
break
}
}
if found {
continue
}
}
switch diffMsg.Diff {
case differInNone:
// No difference, continue.
case differInType:
URLsCh <- URLs{Error: errInvalidTarget(diffMsg.SecondURL)}
case differInSize, differInMetadata, differInAASourceMTime:
if !opts.isOverwrite && !opts.isFake && !opts.activeActive {
// Size or time or etag differs but --overwrite not set.
URLsCh <- URLs{
Error: errOverWriteNotAllowed(diffMsg.SecondURL),
ErrorCond: diffMsg.Diff,
}
continue
}
sourceSuffix := strings.TrimPrefix(diffMsg.FirstURL, sourceURL)
// Either available only in source or size differs and force is set
targetPath := urlJoinPath(targetURL, sourceSuffix)
sourceContent := diffMsg.firstContent
targetContent := &ClientContent{URL: *newClientURL(targetPath)}
URLsCh <- URLs{
SourceAlias: sourceAlias,
SourceContent: sourceContent,
TargetAlias: targetAlias,
TargetContent: targetContent,
}
case differInFirst:
// Only in first, always copy.
sourceSuffix := strings.TrimPrefix(diffMsg.FirstURL, sourceURL)
targetPath := urlJoinPath(targetURL, sourceSuffix)
sourceContent := diffMsg.firstContent
targetContent := &ClientContent{URL: *newClientURL(targetPath)}
URLsCh <- URLs{
SourceAlias: sourceAlias,
SourceContent: sourceContent,
TargetAlias: targetAlias,
TargetContent: targetContent,
}
case differInSecond:
if !opts.isRemove && !opts.isFake {
continue
}
URLsCh <- URLs{
TargetAlias: targetAlias,
TargetContent: diffMsg.secondContent,
}
default:
URLsCh <- URLs{
Error: errUnrecognizedDiffType(diffMsg.Diff).Trace(diffMsg.FirstURL, diffMsg.SecondURL),
ErrorCond: diffMsg.Diff,
}
}
}
}
type mirrorOptions struct {
isFake, isOverwrite, activeActive bool
isWatch, isRemove, isMetadata bool
isRetriable bool
isSummary bool
skipErrors bool
excludeOptions, excludeStorageClasses, excludeBuckets []string
encKeyDB map[string][]prefixSSEPair
md5, disableMultipart bool
olderThan, newerThan string
storageClass string
userMetadata map[string]string
checksum minio.ChecksumType
sourceListingOnly bool
}
// Prepares urls that need to be copied or removed based on requested options.
func prepareMirrorURLs(ctx context.Context, sourceURL, targetURL string, opts mirrorOptions) <-chan URLs {
URLsCh := make(chan URLs)
go deltaSourceTarget(ctx, sourceURL, targetURL, opts, URLsCh)
return URLsCh
}