forked from openshift/imagebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.go
768 lines (705 loc) · 21.6 KB
/
archive.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
package dockerclient
import (
"archive/tar"
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"os"
"path"
"path/filepath"
"strings"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/fileutils"
"github.com/containers/storage/pkg/idtools"
"github.com/containers/storage/pkg/ioutils"
"k8s.io/klog"
)
var isArchivePath = archive.IsArchivePath
var dstNeedsToBeDirectoryError = errors.New("copying would overwrite content that was already copied; destination needs to be a directory")
// TransformFileFunc is given a chance to transform an arbitrary input file.
type TransformFileFunc func(h *tar.Header, r io.Reader) (data []byte, update bool, skip bool, err error)
// FetchArchiveFunc retrieves an entire second copy of the archive we're
// processing, so that we can fetch something from it that we discarded
// earlier. This is expensive, so it is only called when it's needed.
type FetchArchiveFunc func(pw *io.PipeWriter)
// FilterArchive transforms the provided input archive to a new archive,
// giving the fn a chance to transform arbitrary files.
func FilterArchive(r io.Reader, w io.Writer, fn TransformFileFunc) error {
tr := tar.NewReader(r)
tw := tar.NewWriter(w)
for {
h, err := tr.Next()
if err == io.EOF {
return tw.Close()
}
if err != nil {
return err
}
var body io.Reader = tr
name := h.Name
data, ok, skip, err := fn(h, tr)
klog.V(6).Infof("Transform %s(0%o) -> %s: data=%t ok=%t skip=%t err=%v", name, h.Mode, h.Name, data != nil, ok, skip, err)
if err != nil {
return err
}
if skip {
continue
}
if ok {
h.Size = int64(len(data))
body = bytes.NewBuffer(data)
}
if err := tw.WriteHeader(h); err != nil {
return err
}
if _, err := io.Copy(tw, body); err != nil {
return err
}
}
}
type CreateFileFunc func() (*tar.Header, io.ReadCloser, bool, error)
func NewLazyArchive(fn CreateFileFunc) io.ReadCloser {
pr, pw := io.Pipe()
tw := tar.NewWriter(pw)
go func() {
for {
h, r, more, err := fn()
if err != nil {
pw.CloseWithError(err)
return
}
if h == nil {
tw.Flush()
pw.Close()
return
}
if err := tw.WriteHeader(h); err != nil {
r.Close()
pw.CloseWithError(err)
return
}
n, err := io.Copy(tw, &io.LimitedReader{R: r, N: h.Size})
r.Close()
if err != nil {
pw.CloseWithError(err)
return
}
if n != h.Size {
pw.CloseWithError(fmt.Errorf("short read for %s", h.Name))
return
}
if !more {
tw.Flush()
pw.Close()
return
}
}
}()
return pr
}
func archiveFromURL(src, dst, tempDir string, check DirectoryCheck) (io.Reader, io.Closer, error) {
// get filename from URL
u, err := url.Parse(src)
if err != nil {
return nil, nil, err
}
base := path.Base(u.Path)
if base == "." {
return nil, nil, fmt.Errorf("cannot determine filename from url: %s", u)
}
resp, err := http.Get(src)
if err != nil {
return nil, nil, err
}
archive := NewLazyArchive(func() (*tar.Header, io.ReadCloser, bool, error) {
if resp.StatusCode >= 400 {
return nil, nil, false, fmt.Errorf("server returned a status code >= 400: %s", resp.Status)
}
header := &tar.Header{
Name: sourceToDestinationName(path.Base(u.Path), dst, false),
Mode: 0600,
}
r := resp.Body
if resp.ContentLength == -1 {
f, err := ioutil.TempFile(tempDir, "url")
if err != nil {
return nil, nil, false, fmt.Errorf("unable to create temporary file for source URL: %v", err)
}
n, err := io.Copy(f, resp.Body)
if err != nil {
f.Close()
return nil, nil, false, fmt.Errorf("unable to download source URL: %v", err)
}
if err := f.Close(); err != nil {
return nil, nil, false, fmt.Errorf("unable to write source URL: %v", err)
}
f, err = os.Open(f.Name())
if err != nil {
return nil, nil, false, fmt.Errorf("unable to open downloaded source URL: %v", err)
}
r = f
header.Size = n
} else {
header.Size = resp.ContentLength
}
return header, r, false, nil
})
return archive, closers{resp.Body.Close, archive.Close}, nil
}
func archiveFromDisk(directory string, src, dst string, allowDownload bool, excludes []string, check DirectoryCheck) (io.Reader, io.Closer, error) {
var err error
if filepath.IsAbs(src) {
src, err = filepath.Rel(directory, filepath.Join(directory, src))
if err != nil {
return nil, nil, err
}
}
infos, err := CalcCopyInfo(src, directory, true)
if err != nil {
return nil, nil, err
}
// special case when we are archiving a single file at the root
if len(infos) == 1 && !infos[0].FileInfo.IsDir() && (infos[0].Path == "." || infos[0].Path == "/") {
klog.V(5).Infof("Archiving a file instead of a directory from %s", directory)
infos[0].Path = filepath.Base(directory)
infos[0].FromDir = false
directory = filepath.Dir(directory)
}
options, err := archiveOptionsFor(directory, infos, dst, excludes, allowDownload, check)
if err != nil {
return nil, nil, err
}
pipeReader, pipeWriter := io.Pipe() // the archive we're creating
includeFiles := options.IncludeFiles
var returnedError error
go func() {
defer pipeWriter.Close()
tw := tar.NewWriter(pipeWriter)
defer tw.Close()
var nonArchives []string
for _, includeFile := range includeFiles {
if allowDownload && src != "." && src != "/" && isArchivePath(filepath.Join(directory, includeFile)) {
// it's an archive -> copy each item to the
// archive being written to the pipe writer
klog.V(4).Infof("Extracting %s", includeFile)
if err := func() error {
f, err := os.Open(filepath.Join(directory, includeFile))
if err != nil {
return err
}
defer f.Close()
dc, err := archive.DecompressStream(f)
if err != nil {
return err
}
defer dc.Close()
tr := tar.NewReader(dc)
hdr, err := tr.Next()
for err == nil {
if renamed, ok := options.RebaseNames[includeFile]; ok {
hdr.Name = strings.TrimSuffix(renamed, includeFile) + hdr.Name
if hdr.Typeflag == tar.TypeLink {
hdr.Linkname = strings.TrimSuffix(renamed, includeFile) + hdr.Linkname
}
}
tw.WriteHeader(hdr)
_, err = io.Copy(tw, tr)
if err != nil {
break
}
hdr, err = tr.Next()
}
if err != nil && err != io.EOF {
return err
}
return nil
}(); err != nil {
returnedError = err
break
}
continue
}
nonArchives = append(nonArchives, includeFile)
}
if len(nonArchives) > 0 && returnedError == nil {
// the not-archive items -> add them all to the archive as-is
options.IncludeFiles = nonArchives
klog.V(4).Infof("Tar of %s %#v", directory, options)
rc, err := archive.TarWithOptions(directory, options)
if err != nil {
returnedError = err
return
}
defer rc.Close()
tr := tar.NewReader(rc)
hdr, err := tr.Next()
for err == nil {
tw.WriteHeader(hdr)
_, err = io.Copy(tw, tr)
if err != nil {
break
}
hdr, err = tr.Next()
}
if err != nil && err != io.EOF {
returnedError = err
return
}
}
}()
// the reader should close the pipe, and also get any error we need to report
readWrapper := ioutils.NewReadCloserWrapper(pipeReader, func() error {
if err := pipeReader.Close(); err != nil {
return err
}
return returnedError
})
return readWrapper, readWrapper, err
}
func archiveFromFile(file string, src, dst string, excludes []string, check DirectoryCheck) (io.Reader, io.Closer, error) {
var err error
if filepath.IsAbs(src) {
src, err = filepath.Rel(filepath.Dir(src), src)
if err != nil {
return nil, nil, err
}
}
refetch := func(pw *io.PipeWriter) {
f, err := os.Open(file)
if err != nil {
pw.CloseWithError(err)
return
}
defer f.Close()
dc, err := archive.DecompressStream(f)
if err != nil {
pw.CloseWithError(err)
return
}
defer dc.Close()
_, err = io.Copy(pw, dc)
pw.CloseWithError(err)
}
mapper, _, err := newArchiveMapper(src, dst, excludes, false, true, check, refetch, true)
if err != nil {
return nil, nil, err
}
f, err := os.Open(file)
if err != nil {
return nil, nil, err
}
r, err := transformArchive(f, true, mapper.Filter)
cc := newCloser(func() error {
err := f.Close()
if mapper.foundItems == 0 {
return fmt.Errorf("%s: %w", src, os.ErrNotExist)
}
return err
})
return r, cc, err
}
func archiveFromContainer(in io.Reader, src, dst string, excludes []string, check DirectoryCheck, refetch FetchArchiveFunc, assumeDstIsDirectory bool) (io.ReadCloser, string, error) {
mapper, archiveRoot, err := newArchiveMapper(src, dst, excludes, true, false, check, refetch, assumeDstIsDirectory)
if err != nil {
return nil, "", err
}
r, err := transformArchive(in, false, mapper.Filter)
rc := readCloser{Reader: r, Closer: newCloser(func() error {
if mapper.foundItems == 0 {
return fmt.Errorf("%s: %w", src, os.ErrNotExist)
}
return nil
})}
return rc, archiveRoot, err
}
func transformArchive(r io.Reader, compressed bool, fn TransformFileFunc) (io.Reader, error) {
pr, pw := io.Pipe()
go func() {
if compressed {
in, err := archive.DecompressStream(r)
if err != nil {
pw.CloseWithError(err)
return
}
r = in
}
err := FilterArchive(r, pw, fn)
pw.CloseWithError(err)
}()
return pr, nil
}
// * -> test
// a (dir) -> test
// a (file) -> test
// a (dir) -> test/
// a (file) -> test/
func archivePathMapper(src, dst string, isDestDir bool) (fn func(itemCount *int, name string, isDir bool) (string, bool, error)) {
srcPattern := filepath.Clean(src)
if srcPattern == "." {
srcPattern = "*"
}
pattern := filepath.Base(srcPattern)
klog.V(6).Infof("creating mapper for srcPattern=%s pattern=%s dst=%s isDestDir=%t", srcPattern, pattern, dst, isDestDir)
// no wildcards
if !containsWildcards(pattern) {
return func(itemCount *int, name string, isDir bool) (string, bool, error) {
// when extracting from the working directory, Docker prefaces with ./
if strings.HasPrefix(name, "."+string(filepath.Separator)) {
name = name[2:]
}
if name == srcPattern {
if isDir { // the source is a directory: this directory; skip it
return "", false, nil
}
if isDestDir { // the destination is a directory, put this under it
return filepath.Join(dst, filepath.Base(name)), true, nil
}
// the source is a non-directory: copy to the destination's name
if itemCount != nil && *itemCount != 0 { // but we've already written something there
return "", false, dstNeedsToBeDirectoryError // tell the caller to start over
}
return dst, true, nil
}
// source is a directory, this is under it; put this under the destination directory
remainder := strings.TrimPrefix(name, srcPattern+string(filepath.Separator))
if remainder == name {
return "", false, nil
}
return filepath.Join(dst, remainder), true, nil
}
}
// root with pattern
prefix := filepath.Dir(srcPattern)
if prefix == "." {
return func(itemCount *int, name string, isDir bool) (string, bool, error) {
// match only on the first segment under the prefix
var firstSegment = name
if i := strings.Index(name, string(filepath.Separator)); i != -1 {
firstSegment = name[:i]
}
ok, _ := filepath.Match(pattern, firstSegment)
if !ok {
return "", false, nil
}
if !isDestDir && !isDir { // the destination is not a directory, put this right there
if itemCount != nil && *itemCount != 0 { // but we've already written something there
return "", false, dstNeedsToBeDirectoryError // tell the caller to start over
}
return dst, true, nil
}
return filepath.Join(dst, name), true, nil
}
}
prefix += string(filepath.Separator)
// nested with pattern
return func(_ *int, name string, isDir bool) (string, bool, error) {
remainder := strings.TrimPrefix(name, prefix)
if remainder == name {
return "", false, nil
}
// match only on the first segment under the prefix
var firstSegment = remainder
if i := strings.Index(remainder, string(filepath.Separator)); i != -1 {
firstSegment = remainder[:i]
}
ok, _ := filepath.Match(pattern, firstSegment)
if !ok {
return "", false, nil
}
return filepath.Join(dst, remainder), true, nil
}
}
type archiveMapper struct {
exclude *fileutils.PatternMatcher
rename func(itemCount *int, name string, isDir bool) (string, bool, error)
prefix string
dst string
resetDstMode bool
resetOwners bool
foundItems int
refetch FetchArchiveFunc
renameLinks map[string]string
}
func newArchiveMapper(src, dst string, excludes []string, resetDstMode, resetOwners bool, check DirectoryCheck, refetch FetchArchiveFunc, assumeDstIsDirectory bool) (*archiveMapper, string, error) {
ex, err := fileutils.NewPatternMatcher(excludes)
if err != nil {
return nil, "", err
}
isDestDir := strings.HasSuffix(dst, "/") || path.Base(dst) == "." || strings.HasSuffix(src, "/") || path.Base(src) == "." || assumeDstIsDirectory
dst = path.Clean(dst)
if !isDestDir && check != nil {
isDir, err := check.IsDirectory(dst)
if err != nil {
return nil, "", err
}
isDestDir = isDir
}
var prefix string
archiveRoot := src
srcPattern := "*"
switch {
case src == "":
return nil, "", fmt.Errorf("source may not be empty")
case src == ".", src == "/":
// no transformation necessary
case strings.HasSuffix(src, "/"), strings.HasSuffix(src, "/."):
src = path.Clean(src)
archiveRoot = src
if archiveRoot != "/" && archiveRoot != "." {
prefix = path.Base(archiveRoot)
}
default:
src = path.Clean(src)
srcPattern = path.Base(src)
archiveRoot = path.Dir(src)
if archiveRoot != "/" && archiveRoot != "." {
prefix = path.Base(archiveRoot)
}
}
if !strings.HasSuffix(archiveRoot, "/") {
archiveRoot += "/"
}
mapperFn := archivePathMapper(srcPattern, dst, isDestDir)
return &archiveMapper{
exclude: ex,
rename: mapperFn,
prefix: prefix,
dst: dst,
resetDstMode: resetDstMode,
resetOwners: resetOwners,
refetch: refetch,
renameLinks: make(map[string]string),
}, archiveRoot, nil
}
func (m *archiveMapper) Filter(h *tar.Header, r io.Reader) ([]byte, bool, bool, error) {
if m.resetOwners {
h.Uid, h.Gid = 0, 0
}
// Trim a leading path, the prefix segment (which has no leading or trailing slashes), and
// the final leader segment. Depending on the segment, Docker could return /prefix/ or prefix/.
h.Name = strings.TrimPrefix(h.Name, "/")
if !strings.HasPrefix(h.Name, m.prefix) {
return nil, false, true, nil
}
h.Name = strings.TrimPrefix(strings.TrimPrefix(h.Name, m.prefix), "/")
// skip a file if it doesn't match the src
isDir := h.Typeflag == tar.TypeDir
newName, ok, err := m.rename(&m.foundItems, h.Name, isDir)
if err != nil {
return nil, false, true, err
}
if !ok {
return nil, false, true, nil
}
if newName == "." {
return nil, false, true, nil
}
// skip based on excludes
if ok, _ := m.exclude.Matches(h.Name); ok {
return nil, false, true, nil
}
m.foundItems++
h.Name = newName
if m.resetDstMode && isDir && path.Clean(h.Name) == path.Clean(m.dst) {
h.Mode = (h.Mode & ^0o777) | 0o755
}
if h.Typeflag == tar.TypeLink {
if newTarget, ok := m.renameLinks[h.Linkname]; ok {
// we already replaced the original link target, so make this a link to the file we copied
klog.V(6).Infof("Replaced link target %s -> %s: ok=%t", h.Linkname, newTarget, ok)
h.Linkname = newTarget
} else {
needReplacement := false
// run the link target name through the same mapping the Name
// in the target's entry would have gotten
linkName := strings.TrimPrefix(h.Linkname, "/")
if !strings.HasPrefix(linkName, m.prefix) {
// the link target didn't start with the prefix, so it wasn't passed along
needReplacement = true
}
var newTarget string
if !needReplacement {
linkName = strings.TrimPrefix(strings.TrimPrefix(linkName, m.prefix), "/")
var ok bool
if newTarget, ok, err = m.rename(nil, linkName, false); err != nil {
return nil, false, true, err
}
if !ok || newTarget == "." {
// the link target wasn't passed along
needReplacement = true
}
}
if !needReplacement {
if ok, _ := m.exclude.Matches(linkName); ok {
// link target was skipped based on excludes
needReplacement = true
}
}
if !needReplacement {
// the link target was passed along, everything's fine
klog.V(6).Infof("Transform link target %s -> %s: ok=%t skip=%t", h.Linkname, newTarget, ok, true)
h.Linkname = newTarget
} else {
// the link target wasn't passed along, splice it back in as this file
if m.refetch == nil {
return nil, false, true, fmt.Errorf("need to create %q as a hard link to %q, but did not copy %q", h.Name, h.Linkname, h.Linkname)
}
pr, pw := io.Pipe()
go m.refetch(pw)
tr2 := tar.NewReader(pr)
rehdr, err := tr2.Next()
for err == nil && rehdr.Name != h.Linkname {
rehdr, err = tr2.Next()
}
if err != nil {
pr.Close()
return nil, false, true, fmt.Errorf("needed to create %q as a hard link to %q, but got error refetching %q: %v", h.Name, h.Linkname, h.Linkname, err)
}
buf, err := ioutil.ReadAll(pr)
pr.Close()
if err != nil {
return nil, false, true, fmt.Errorf("needed to create %q as a hard link to %q, but got error refetching contents of %q: %v", h.Name, h.Linkname, h.Linkname, err)
}
m.renameLinks[h.Linkname] = h.Name
h.Typeflag = tar.TypeReg
h.Size, h.Mode = rehdr.Size, rehdr.Mode
h.Uid, h.Gid = rehdr.Uid, rehdr.Gid
h.Uname, h.Gname = rehdr.Uname, rehdr.Gname
h.ModTime, h.AccessTime, h.ChangeTime = rehdr.ModTime, rehdr.AccessTime, rehdr.ChangeTime
h.Xattrs = nil
for k, v := range rehdr.Xattrs {
if h.Xattrs != nil {
h.Xattrs = make(map[string]string)
}
h.Xattrs[k] = v
}
klog.V(6).Infof("Transform link %s -> reg %s", h.Linkname, h.Name)
h.Linkname = ""
return buf, true, false, nil
}
}
}
// include all files
return nil, false, false, nil
}
func archiveOptionsFor(directory string, infos []CopyInfo, dst string, excludes []string, allowDownload bool, check DirectoryCheck) (*archive.TarOptions, error) {
dst = trimLeadingPath(dst)
dstIsDir := strings.HasSuffix(dst, "/") || dst == "." || dst == "/" || strings.HasSuffix(dst, "/.")
dst = trimTrailingSlash(dst)
dstIsRoot := dst == "." || dst == "/"
if !dstIsDir && check != nil {
isDir, err := check.IsDirectory(dst)
if err != nil {
return nil, fmt.Errorf("unable to check whether %s is a directory: %v", dst, err)
}
dstIsDir = isDir
}
options := &archive.TarOptions{
ChownOpts: &idtools.IDPair{UID: 0, GID: 0},
}
pm, err := fileutils.NewPatternMatcher(excludes)
if err != nil {
return options, nil
}
if !dstIsDir {
for _, info := range infos {
if ok, _ := pm.Matches(info.Path); ok {
continue
}
infoPath := info.Path
if directory != "" {
infoPath = filepath.Join(directory, infoPath)
}
if allowDownload && isArchivePath(infoPath) {
dstIsDir = true
break
}
}
}
for _, info := range infos {
if ok, _ := pm.Matches(info.Path); ok {
continue
}
srcIsDir := strings.HasSuffix(info.Path, "/") || info.Path == "." || info.Path == "/" || strings.HasSuffix(info.Path, "/.")
infoPath := trimTrailingSlash(info.Path)
options.IncludeFiles = append(options.IncludeFiles, infoPath)
if len(dst) == 0 {
continue
}
if options.RebaseNames == nil {
options.RebaseNames = make(map[string]string)
}
klog.V(6).Infof("len=%d info.FromDir=%t info.IsDir=%t dstIsRoot=%t dstIsDir=%t srcIsDir=%t", len(infos), info.FromDir, info.IsDir(), dstIsRoot, dstIsDir, srcIsDir)
switch {
case len(infos) > 1 && dstIsRoot:
// copying multiple things into root, no rename necessary ([Dockerfile, dir] -> [Dockerfile, dir])
case len(infos) > 1:
// put each input into the target, which is assumed to be a directory ([Dockerfile, dir] -> [a/Dockerfile, a/dir])
options.RebaseNames[infoPath] = path.Join(dst, path.Base(infoPath))
case info.FileInfo.IsDir():
// mapping a directory to a destination, explicit or not ([dir] -> [a])
options.RebaseNames[infoPath] = dst
case info.FromDir:
// this is a file that was part of an explicit directory request, no transformation
options.RebaseNames[infoPath] = path.Join(dst, path.Base(infoPath))
case dstIsDir:
// mapping what is probably a file to a non-root directory ([Dockerfile] -> [dir/Dockerfile])
options.RebaseNames[infoPath] = path.Join(dst, path.Base(infoPath))
default:
// a single file mapped to another single file ([Dockerfile] -> [Dockerfile.2])
options.RebaseNames[infoPath] = dst
}
}
options.ExcludePatterns = excludes
return options, nil
}
func sourceToDestinationName(src, dst string, forceDir bool) string {
switch {
case forceDir, strings.HasSuffix(dst, "/"), path.Base(dst) == ".":
return path.Join(dst, src)
default:
return dst
}
}
// logArchiveOutput prints log info about the provided tar file as it is streamed. If an
// error occurs the remainder of the pipe is read to prevent blocking.
func logArchiveOutput(r io.Reader, prefix string) {
pr, pw := io.Pipe()
r = ioutil.NopCloser(io.TeeReader(r, pw))
go func() {
err := func() error {
tr := tar.NewReader(pr)
for {
h, err := tr.Next()
if err != nil {
return err
}
klog.Infof("%s %s (%d %s)", prefix, h.Name, h.Size, h.FileInfo().Mode())
if _, err := io.Copy(ioutil.Discard, tr); err != nil {
return err
}
}
}()
if err != io.EOF {
klog.Infof("%s: unable to log archive output: %v", prefix, err)
io.Copy(ioutil.Discard, pr)
}
}()
}
type closer struct {
closefn func() error
}
func newCloser(closeFunction func() error) *closer {
return &closer{closefn: closeFunction}
}
func (r *closer) Close() error {
return r.closefn()
}
type readCloser struct {
io.Reader
io.Closer
}