-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathdifference.go
424 lines (378 loc) · 11.4 KB
/
difference.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
// 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"
"strings"
"time"
"unicode/utf8"
// golang does not support flat keys for path matching, find does
"github.com/minio/mc/pkg/probe"
"github.com/minio/minio-go/v7"
"golang.org/x/text/unicode/norm"
)
// differType difference in type.
type differType int
const (
differInUnknown differType = iota
differInNone // does not differ
differInSize // differs in size
differInMetadata // differs in metadata
differInType // differs in type, exfile/directory
differInFirst // only in source (FIRST)
differInSecond // only in target (SECOND)
differInAASourceMTime // differs in active-active source modtime
)
func (d differType) String() string {
switch d {
case differInNone:
return ""
case differInSize:
return "size"
case differInMetadata:
return "metadata"
case differInAASourceMTime:
return "mm-source-mtime"
case differInType:
return "type"
case differInFirst:
return "only-in-first"
case differInSecond:
return "only-in-second"
}
return "unknown"
}
const activeActiveSourceModTimeKey = "X-Amz-Meta-Mm-Source-Mtime"
func getSourceModTimeKey(metadata map[string]string) string {
if metadata[activeActiveSourceModTimeKey] != "" {
return metadata[activeActiveSourceModTimeKey]
}
if metadata[strings.ToLower(activeActiveSourceModTimeKey)] != "" {
return metadata[strings.ToLower(activeActiveSourceModTimeKey)]
}
if metadata[strings.ToLower("Mm-Source-Mtime")] != "" {
return metadata[strings.ToLower("Mm-Source-Mtime")]
}
if metadata["Mm-Source-Mtime"] != "" {
return metadata["Mm-Source-Mtime"]
}
return ""
}
// activeActiveModTimeUpdated tries to calculate if the object copy in the target
// is older than the one in the source by comparing the modtime of the data.
func activeActiveModTimeUpdated(src, dst *ClientContent) bool {
if src == nil || dst == nil {
return false
}
if src.Time.IsZero() || dst.Time.IsZero() {
// This should only happen in a messy environment
// but we are returning false anyway so the caller
// function won't take any action.
return false
}
srcActualModTime := src.Time
dstActualModTime := dst.Time
srcModTime := getSourceModTimeKey(src.UserMetadata)
dstModTime := getSourceModTimeKey(dst.UserMetadata)
if srcModTime == "" && dstModTime == "" {
// No active-active mirror context found, fallback to modTimes presented
// by the client content
return srcActualModTime.After(dstActualModTime)
}
var srcOriginLastModified, dstOriginLastModified time.Time
var err error
if srcModTime != "" {
srcOriginLastModified, err = time.Parse(time.RFC3339Nano, srcModTime)
if err != nil {
// failure to parse source modTime, modTime tampered ignore the file
return false
}
}
if dstModTime != "" {
dstOriginLastModified, err = time.Parse(time.RFC3339Nano, dstModTime)
if err != nil {
// failure to parse source modTime, modTime tampered ignore the file
return false
}
}
if !srcOriginLastModified.IsZero() && srcOriginLastModified.After(src.Time) {
srcActualModTime = srcOriginLastModified
}
if !dstOriginLastModified.IsZero() && dstOriginLastModified.After(dst.Time) {
dstActualModTime = dstOriginLastModified
}
return srcActualModTime.After(dstActualModTime)
}
func metadataEqual(m1, m2 map[string]string) bool {
for k, v := range m1 {
if k == activeActiveSourceModTimeKey {
continue
}
if k == strings.ToLower(activeActiveSourceModTimeKey) {
continue
}
if m2[k] != v {
return false
}
}
for k, v := range m2 {
if k == activeActiveSourceModTimeKey {
continue
}
if k == strings.ToLower(activeActiveSourceModTimeKey) {
continue
}
if m1[k] != v {
return false
}
}
return true
}
func bucketObjectDifference(ctx context.Context, sourceClnt, targetClnt Client) (diffCh chan diffMessage) {
return objectDifference(ctx, sourceClnt, targetClnt, mirrorOptions{
isMetadata: false,
})
}
func objectDifference(ctx context.Context, sourceClnt, targetClnt Client, opts mirrorOptions) (diffCh chan diffMessage) {
sourceURL := sourceClnt.GetURL().String()
sourceCh := sourceClnt.List(ctx, ListOptions{Recursive: true, WithMetadata: opts.isMetadata, ShowDir: DirNone})
targetURL := targetClnt.GetURL().String()
targetCh := targetClnt.List(ctx, ListOptions{Recursive: true, WithMetadata: opts.isMetadata, ShowDir: DirNone})
return difference(sourceURL, sourceCh, targetURL, targetCh, opts, false)
}
func bucketDifference(ctx context.Context, sourceClnt, targetClnt Client, opts mirrorOptions) (diffCh chan diffMessage) {
sourceURL := sourceClnt.GetURL().String()
sourceCh := make(chan *ClientContent)
go func() {
defer close(sourceCh)
buckets, err := sourceClnt.ListBuckets(ctx)
if err != nil {
select {
case <-ctx.Done():
case sourceCh <- &ClientContent{Err: err}:
}
return
}
for _, b := range buckets {
select {
case <-ctx.Done():
return
case sourceCh <- b:
}
}
}()
targetURL := targetClnt.GetURL().String()
targetCh := make(chan *ClientContent)
go func() {
defer close(targetCh)
buckets, err := targetClnt.ListBuckets(ctx)
if err != nil {
select {
case <-ctx.Done():
case targetCh <- &ClientContent{Err: err}:
}
return
}
for _, b := range buckets {
select {
case <-ctx.Done():
return
case targetCh <- b:
}
}
}()
return difference(sourceURL, sourceCh, targetURL, targetCh, opts, false)
}
func differenceInternal(sourceURL string,
srcCh <-chan *ClientContent,
targetURL string,
tgtCh <-chan *ClientContent,
opts mirrorOptions,
returnSimilar bool,
diffCh chan<- diffMessage,
) *probe.Error {
// Pop first entries from the source and targets
srcCtnt, srcOk := <-srcCh
tgtCtnt, tgtOk := <-tgtCh
var srcEOF, tgtEOF bool
for {
srcEOF = !srcOk
tgtEOF = !tgtOk
// No objects from source AND target: Finish
if opts.sourceListingOnly {
if srcEOF {
break
}
} else {
if srcEOF && tgtEOF {
break
}
}
if !srcEOF && srcCtnt.Err != nil {
return srcCtnt.Err.Trace(sourceURL, targetURL)
}
if !tgtEOF && tgtCtnt.Err != nil {
return tgtCtnt.Err.Trace(sourceURL, targetURL)
}
// If source doesn't have objects anymore, comparison becomes obvious
if srcEOF {
diffCh <- diffMessage{
SecondURL: tgtCtnt.URL.String(),
Diff: differInSecond,
secondContent: tgtCtnt,
}
tgtCtnt, tgtOk = <-tgtCh
continue
}
// The same for target
if tgtEOF {
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
Diff: differInFirst,
firstContent: srcCtnt,
}
srcCtnt, srcOk = <-srcCh
continue
}
srcSuffix := strings.TrimPrefix(srcCtnt.URL.String(), sourceURL)
tgtSuffix := strings.TrimPrefix(tgtCtnt.URL.String(), targetURL)
current := urlJoinPath(targetURL, srcSuffix)
expected := urlJoinPath(targetURL, tgtSuffix)
if !utf8.ValidString(srcSuffix) {
// Error. Keys must be valid UTF-8.
diffCh <- diffMessage{Error: errInvalidSource(current).Trace()}
srcCtnt, srcOk = <-srcCh
continue
}
if !utf8.ValidString(tgtSuffix) {
// Error. Keys must be valid UTF-8.
diffCh <- diffMessage{Error: errInvalidTarget(expected).Trace()}
tgtCtnt, tgtOk = <-tgtCh
continue
}
// Normalize to avoid situations where multiple byte representations are possible.
// e.g. 'ä' can be represented as precomposed U+00E4 (UTF-8 0xc3a4) or decomposed
// U+0061 U+0308 (UTF-8 0x61cc88).
normalizedCurrent := norm.NFC.String(current)
normalizedExpected := norm.NFC.String(expected)
if normalizedExpected > normalizedCurrent {
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
Diff: differInFirst,
firstContent: srcCtnt,
}
srcCtnt, srcOk = <-srcCh
continue
}
if normalizedExpected == normalizedCurrent {
srcType, tgtType := srcCtnt.Type, tgtCtnt.Type
srcSize, tgtSize := srcCtnt.Size, tgtCtnt.Size
if srcType.IsRegular() && !tgtType.IsRegular() ||
!srcType.IsRegular() && tgtType.IsRegular() {
// Type differs. Source is never a directory.
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
SecondURL: tgtCtnt.URL.String(),
Diff: differInType,
firstContent: srcCtnt,
secondContent: tgtCtnt,
}
continue
}
if srcSize != tgtSize {
// Regular files differing in size.
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
SecondURL: tgtCtnt.URL.String(),
Diff: differInSize,
firstContent: srcCtnt,
secondContent: tgtCtnt,
}
} else if activeActiveModTimeUpdated(srcCtnt, tgtCtnt) {
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
SecondURL: tgtCtnt.URL.String(),
Diff: differInAASourceMTime,
firstContent: srcCtnt,
secondContent: tgtCtnt,
}
} else if opts.isMetadata &&
!metadataEqual(srcCtnt.UserMetadata, tgtCtnt.UserMetadata) &&
!metadataEqual(srcCtnt.Metadata, tgtCtnt.Metadata) {
// Regular files user requesting additional metadata to same file.
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
SecondURL: tgtCtnt.URL.String(),
Diff: differInMetadata,
firstContent: srcCtnt,
secondContent: tgtCtnt,
}
}
// No differ
if returnSimilar {
diffCh <- diffMessage{
FirstURL: srcCtnt.URL.String(),
SecondURL: tgtCtnt.URL.String(),
Diff: differInNone,
firstContent: srcCtnt,
secondContent: tgtCtnt,
}
}
srcCtnt, srcOk = <-srcCh
tgtCtnt, tgtOk = <-tgtCh
continue
}
// Differ in second
diffCh <- diffMessage{
SecondURL: tgtCtnt.URL.String(),
Diff: differInSecond,
secondContent: tgtCtnt,
}
tgtCtnt, tgtOk = <-tgtCh
continue
}
return nil
}
// objectDifference function finds the difference between all objects
// recursively in sorted order from source and target.
func difference(sourceURL string, sourceCh <-chan *ClientContent, targetURL string, targetCh <-chan *ClientContent, opts mirrorOptions, returnSimilar bool) (diffCh chan diffMessage) {
diffCh = make(chan diffMessage, 10000)
go func() {
defer close(diffCh)
err := differenceInternal(sourceURL, sourceCh, targetURL, targetCh, opts, returnSimilar, diffCh)
if err != nil {
// handle this specifically for filesystem related errors.
switch v := err.ToGoError().(type) {
case PathNotFound, PathInsufficientPermission, PathNotADirectory:
diffCh <- diffMessage{
Error: err,
}
return
case minio.ErrorResponse:
switch v.Code {
case "NoSuchBucket", "NoSuchKey", "SignatureDoesNotMatch":
diffCh <- diffMessage{
Error: err,
}
return
}
}
errorIf(err, "Unable to list comparison retrying..")
}
}()
return diffCh
}