forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copytar.go
246 lines (219 loc) · 7.63 KB
/
copytar.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
package rsync
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"strings"
"github.com/golang/glog"
"github.com/openshift/source-to-image/pkg/tar"
"github.com/spf13/cobra"
kerrors "k8s.io/apimachinery/pkg/util/errors"
s2ifs "github.com/openshift/source-to-image/pkg/util/fs"
"github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
)
// tarStrategy implements the tar copy strategy.
// The tar strategy consists of creating a tar of the file contents to copy
// and then streaming them to/from the container to the destination to a tar
// command waiting for STDIN input. If the --delete flag is specified, the
// contents of the destination directory are first cleared before the copy.
// The tar strategy requires that the remote container contain the tar command.
type tarStrategy struct {
Quiet bool
Delete bool
Tar tar.Tar
RemoteExecutor executor
IgnoredFlags []string
}
func newTarStrategy(f *clientcmd.Factory, c *cobra.Command, o *RsyncOptions) (copyStrategy, error) {
tarHelper := tar.New(s2ifs.NewFileSystem())
tarHelper.SetExclusionPattern(nil)
ignoredFlags := rsyncSpecificFlags(o)
remoteExec, err := newRemoteExecutor(f, o)
if err != nil {
return nil, err
}
return &tarStrategy{
Quiet: o.Quiet,
Delete: o.Delete,
Tar: tarHelper,
RemoteExecutor: remoteExec,
IgnoredFlags: ignoredFlags,
}, nil
}
func deleteContents(dir string) error {
glog.V(4).Infof("Deleting local directory contents: %s", dir)
files, err := ioutil.ReadDir(dir)
if err != nil {
glog.V(4).Infof("Could not read directory %s: %v", dir, err)
return err
}
for _, f := range files {
if f.IsDir() {
glog.V(5).Infof("Deleting directory: %s", f.Name())
err = os.RemoveAll(filepath.Join(dir, f.Name()))
} else {
glog.V(5).Infof("Deleting file: %s", f.Name())
err = os.Remove(filepath.Join(dir, f.Name()))
}
if err != nil {
glog.V(4).Infof("Error deleting file or directory: %s: %v", f.Name(), err)
return err
}
}
return nil
}
func deleteLocal(source, dest *pathSpec) error {
deleteDir := dest.Path
// Determine which directory to empty based on source parameter
// If the source does not end in a path separator, the directory
// being copied over is the directory that needs to be cleaned out
// in the destination. This is to replicate the behavior of the
// rsync --delete flag
if !strings.HasSuffix(source.Path, "/") {
deleteDir = filepath.Join(deleteDir, filepath.Base(source.Path))
}
return deleteContents(deleteDir)
}
func deleteRemote(source, dest *pathSpec, ex executor) error {
// Determine which directory to empty based on source parameter
// If the source does not end in a path separator, the directory
// being copied over is the directory that needs to be cleaned out
// in the destination. This is to replicate the behavior of the
// rsync --delete flag
deleteDir := dest.Path
if !strings.HasSuffix(source.Path, string(filepath.Separator)) {
deleteDir = path.Join(deleteDir, path.Base(source.Path))
}
deleteCmd := []string{"sh", "-c", fmt.Sprintf("shopt -s dotglob && rm -rf %s", path.Join(deleteDir, "*"))}
return executeWithLogging(ex, deleteCmd)
}
func deleteFiles(source, dest *pathSpec, remoteExecutor executor) error {
if dest.Local() {
return deleteLocal(source, dest)
}
return deleteRemote(source, dest, remoteExecutor)
}
func (r *tarStrategy) Copy(source, destination *pathSpec, out, errOut io.Writer) error {
glog.V(3).Infof("Copying files with tar")
if len(r.IgnoredFlags) > 0 {
fmt.Fprintf(errOut, "Ignoring the following flags because they only apply to rsync: %s\n", strings.Join(r.IgnoredFlags, ", "))
}
if r.Delete {
// Implement the rsync --delete flag as a separate call to first delete directory contents
err := deleteFiles(source, destination, r.RemoteExecutor)
if err != nil {
return fmt.Errorf("unable to delete files in destination: %v", err)
}
}
tmp, err := ioutil.TempFile("", "rsync")
if err != nil {
return fmt.Errorf("cannot create local temporary file for tar: %v", err)
}
defer os.Remove(tmp.Name())
// Create tar
if source.Local() {
glog.V(4).Infof("Creating local tar file %s from local path %s", tmp.Name(), source.Path)
err = tarLocal(r.Tar, source.Path, tmp)
if err != nil {
return fmt.Errorf("error creating local tar of source directory: %v", err)
}
} else {
glog.V(4).Infof("Creating local tar file %s from remote path %s", tmp.Name(), source.Path)
errBuf := &bytes.Buffer{}
err = tarRemote(r.RemoteExecutor, source.Path, tmp, errBuf)
if err != nil {
if checkTar(r.RemoteExecutor) != nil {
return strategySetupError("tar not available in container")
}
io.Copy(errOut, errBuf)
return fmt.Errorf("error creating remote tar of source directory: %v", err)
}
}
err = tmp.Close()
if err != nil {
return fmt.Errorf("error closing temporary tar file %s: %v", tmp.Name(), err)
}
tmp, err = os.Open(tmp.Name())
if err != nil {
return fmt.Errorf("cannot open temporary tar file %s: %v", tmp.Name(), err)
}
defer tmp.Close()
// Extract tar
if destination.Local() {
glog.V(4).Infof("Untarring temp file %s to local directory %s", tmp.Name(), destination.Path)
err = untarLocal(r.Tar, destination.Path, tmp, r.Quiet, out)
} else {
glog.V(4).Infof("Untarring temp file %s to remote directory %s", tmp.Name(), destination.Path)
errBuf := &bytes.Buffer{}
err = untarRemote(r.RemoteExecutor, destination.Path, r.Quiet, tmp, out, errBuf)
if err != nil {
if checkTar(r.RemoteExecutor) != nil {
return strategySetupError("tar not available in container")
}
io.Copy(errOut, errBuf)
}
}
if err != nil {
return fmt.Errorf("error extracting tar at destination directory: %v", err)
}
return nil
}
func (r *tarStrategy) Validate() error {
errs := []error{}
if r.Tar == nil {
errs = append(errs, errors.New("tar helper must be provided"))
}
if r.RemoteExecutor == nil {
errs = append(errs, errors.New("remote executor must be provided"))
}
if len(errs) > 0 {
return kerrors.NewAggregate(errs)
}
return nil
}
func (r *tarStrategy) String() string {
return "tar"
}
func tarRemote(exec executor, sourceDir string, out, errOut io.Writer) error {
glog.V(4).Infof("Tarring %s remotely", sourceDir)
var cmd []string
if strings.HasSuffix(sourceDir, "/") {
cmd = []string{"tar", "-C", sourceDir, "-c", "."}
} else {
cmd = []string{"tar", "-C", path.Dir(sourceDir), "-c", path.Base(sourceDir)}
}
glog.V(4).Infof("Remote tar command: %s", strings.Join(cmd, " "))
return exec.Execute(cmd, nil, out, errOut)
}
func tarLocal(tar tar.Tar, sourceDir string, w io.Writer) error {
glog.V(4).Infof("Tarring %s locally", sourceDir)
// includeParent mimics rsync's behavior. When the source path ends in a path
// separator, then only the contents of the directory are copied. Otherwise,
// the directory itself is copied.
includeParent := true
if strings.HasSuffix(sourceDir, string(filepath.Separator)) {
includeParent = false
sourceDir = sourceDir[:len(sourceDir)-1]
}
return tar.CreateTarStream(sourceDir, includeParent, w)
}
func untarLocal(tar tar.Tar, destinationDir string, r io.Reader, quiet bool, logger io.Writer) error {
glog.V(4).Infof("Extracting tar locally to %s", destinationDir)
if quiet {
return tar.ExtractTarStream(destinationDir, r)
}
return tar.ExtractTarStreamWithLogging(destinationDir, r, logger)
}
func untarRemote(exec executor, destinationDir string, quiet bool, in io.Reader, out, errOut io.Writer) error {
cmd := []string{"tar", "-C", destinationDir, "-ox"}
if !quiet {
cmd = append(cmd, "-v")
}
glog.V(4).Infof("Extracting tar remotely with command: %s", strings.Join(cmd, " "))
return exec.Execute(cmd, in, out, errOut)
}