forked from yinheli/sshw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscp.go
262 lines (212 loc) · 4.51 KB
/
scp.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
package sshw
import (
"context"
"fmt"
"io"
"os"
"path/filepath"
"sync"
"github.com/pkg/errors"
"github.com/schollz/progressbar/v3"
"golang.org/x/crypto/ssh"
)
func CopyFromRemote(ctx context.Context, s *ssh.Session, remotePath string, localPath string) error {
f, err := os.OpenFile(localPath, os.O_RDWR|os.O_CREATE, 0644)
if err != nil {
return errors.Wrap(err, "open file fail")
}
wg := sync.WaitGroup{}
errCh := make(chan error, 1)
wg.Add(1)
go func() {
var err error
defer func() {
// We must unblock the go routine first as we block on reading the channel later
wg.Done()
errCh <- err
}()
r, err := s.StdoutPipe()
if err != nil {
errCh <- err
return
}
in, err := s.StdinPipe()
if err != nil {
errCh <- err
return
}
defer in.Close()
err = s.Start(fmt.Sprintf("scp -f %q", remotePath))
if err != nil {
errCh <- err
return
}
err = Ack(in)
if err != nil {
errCh <- err
return
}
res, err := ParseResponse(r)
if err != nil {
errCh <- err
return
}
if res.IsFailure() {
errCh <- errors.New(res.GetMessage())
return
}
infos, err := res.ParseFileInfos()
if err != nil {
errCh <- err
return
}
err = Ack(in)
if err != nil {
errCh <- err
return
}
bar := getBar(infos.Size, "downloading : "+infos.Filename)
_, err = CopyN(io.MultiWriter(f, bar), r, infos.Size)
if err != nil {
errCh <- err
return
}
err = Ack(in)
if err != nil {
errCh <- err
return
}
err = s.Wait()
if err != nil {
errCh <- err
return
}
}()
if err := wait(ctx, &wg); err != nil {
return err
}
finalErr := <-errCh
close(errCh)
return finalErr
}
func CopyFromLocal(ctx context.Context, s *ssh.Session, localPath string, remotePath string) error {
info, err := os.Stat(localPath)
if err != nil {
return errors.Wrap(err, "get file fail")
}
if info.IsDir() {
return errors.Errorf("can not send a dir : %s", localPath)
}
f, _ := os.Open(localPath)
defer f.Close()
stdout, err := s.StdoutPipe()
if err != nil {
return errors.Wrap(err, "get stdout pipe fail")
}
wg := sync.WaitGroup{}
wg.Add(2)
errCh := make(chan error, 2)
go func() {
defer wg.Done()
w, err := s.StdinPipe()
if err != nil {
errCh <- errors.Wrap(err, "get stdin fail")
return
}
defer w.Close()
_, err = fmt.Fprintln(w, "C0644", info.Size(), filepath.Base(remotePath))
if err != nil {
errCh <- errors.Wrap(err, "write command fail")
return
}
if err = checkResponse(stdout); err != nil {
errCh <- errors.Wrap(err, "check response 1 fail")
return
}
bar := getBar(info.Size(), "uploading : "+info.Name())
_, err = io.CopyN(io.MultiWriter(w, bar), f, info.Size())
if err != nil {
errCh <- errors.Wrap(err, "copy fail")
return
}
_, err = fmt.Fprint(w, "\x00")
if err != nil {
errCh <- errors.Wrap(err, "write fail")
return
}
if err = checkResponse(stdout); err != nil {
errCh <- errors.Wrap(err, "check response 2 fail")
return
}
}()
go func() {
defer wg.Done()
cmd := fmt.Sprintf("scp -vt %q", remotePath)
err := s.Run(cmd)
if err != nil {
errCh <- errors.Wrap(err, "run scp fail")
return
}
}()
if err := wait(ctx, &wg); err != nil {
return errors.Wrap(err, "wait fail")
}
close(errCh)
for err := range errCh {
if err != nil {
return errors.Wrap(err, "copy from local fail")
}
}
return nil
}
func checkResponse(r io.Reader) error {
response, err := ParseResponse(r)
if err != nil {
return err
}
if response.IsFailure() {
return errors.New(response.GetMessage())
}
return nil
}
func wait(ctx context.Context, wg *sync.WaitGroup) error {
c := make(chan struct{})
go func() {
defer close(c)
wg.Wait()
}()
select {
case <-c:
return nil
case <-ctx.Done():
return ctx.Err()
}
}
func CopyN(writer io.Writer, src io.Reader, size int64) (int64, error) {
var total int64
total = 0
for total < size {
n, err := io.CopyN(writer, src, size)
if err != nil {
return 0, err
}
total += n
}
return total, nil
}
func getBar(size int64, desc string) io.Writer {
bar := progressbar.NewOptions(int(size),
// progressbar.OptionSetWriter(ansi.NewAnsiStdout()),
progressbar.OptionEnableColorCodes(true),
progressbar.OptionShowBytes(true),
progressbar.OptionSetWidth(25),
progressbar.OptionSetDescription(desc),
progressbar.OptionSetTheme(progressbar.Theme{
Saucer: "[green]=[reset]",
SaucerHead: "[green]>[reset]",
SaucerPadding: " ",
BarStart: "[",
BarEnd: "]",
}))
return bar
}