-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathclient.go
341 lines (280 loc) · 7.86 KB
/
client.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
/* Copyright (c) 2021 Bram Vandenbogaerde And Contributors
* You may use, distribute or modify this code under the
* terms of the Mozilla Public License 2.0, which is distributed
* along with the source code.
*/
package scp
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"sync"
"time"
"golang.org/x/crypto/ssh"
)
type PassThru func(r io.Reader, total int64) io.Reader
type Client struct {
// Host the host to connect to.
Host string
// ClientConfig the client config to use.
ClientConfig *ssh.ClientConfig
// Session stores the SSH session while the connection is running.
Session *ssh.Session
// Conn stores the SSH connection itself in order to close it after transfer.
Conn ssh.Conn
// Timeout the maximal amount of time to wait for a file transfer to complete.
// Deprecated: use context.Context for each function instead.
Timeout time.Duration
// RemoteBinary the absolute path to the remote SCP binary.
RemoteBinary string
}
// Connect connects to the remote SSH server, returns error if it couldn't establish a session to the SSH server.
func (a *Client) Connect() error {
if a.Session != nil {
return nil
}
client, err := ssh.Dial("tcp", a.Host, a.ClientConfig)
if err != nil {
return err
}
a.Conn = client.Conn
a.Session, err = client.NewSession()
if err != nil {
return err
}
return nil
}
// CopyFromFile copies the contents of an os.File to a remote location, it will get the length of the file by looking it up from the filesystem.
func (a *Client) CopyFromFile(ctx context.Context, file os.File, remotePath string, permissions string) error {
return a.CopyFromFilePassThru(ctx, file, remotePath, permissions, nil)
}
// CopyFromFilePassThru copies the contents of an os.File to a remote location, it will get the length of the file by looking it up from the filesystem.
// Access copied bytes by providing a PassThru reader factory.
func (a *Client) CopyFromFilePassThru(ctx context.Context, file os.File, remotePath string, permissions string, passThru PassThru) error {
stat, err := file.Stat()
if err != nil {
return fmt.Errorf("failed to stat file: %w", err)
}
return a.CopyPassThru(ctx, &file, remotePath, permissions, stat.Size(), passThru)
}
// CopyFile copies the contents of an io.Reader to a remote location, the length is determined by reading the io.Reader until EOF
// if the file length in know in advance please use "Copy" instead.
func (a *Client) CopyFile(ctx context.Context, fileReader io.Reader, remotePath string, permissions string) error {
return a.CopyFilePassThru(ctx, fileReader, remotePath, permissions, nil)
}
// CopyFilePassThru copies the contents of an io.Reader to a remote location, the length is determined by reading the io.Reader until EOF
// if the file length in know in advance please use "Copy" instead.
// Access copied bytes by providing a PassThru reader factory.
func (a *Client) CopyFilePassThru(ctx context.Context, fileReader io.Reader, remotePath string, permissions string, passThru PassThru) error {
contentsBytes, err := ioutil.ReadAll(fileReader)
if err != nil {
return fmt.Errorf("failed to read all data from reader: %w", err)
}
bytesReader := bytes.NewReader(contentsBytes)
return a.CopyPassThru(ctx, bytesReader, remotePath, permissions, int64(len(contentsBytes)), passThru)
}
// wait waits for the waitgroup for the specified max timeout.
// Returns true if waiting timed out.
func wait(wg *sync.WaitGroup, ctx context.Context) error {
c := make(chan struct{})
go func() {
defer close(c)
wg.Wait()
}()
select {
case <-c:
return nil
case <-ctx.Done():
return ctx.Err()
}
}
// checkResponse checks the response it reads from the remote, and will return a single error in case
// of failure.
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
}
// Copy copies the contents of an io.Reader to a remote location.
func (a *Client) Copy(ctx context.Context, r io.Reader, remotePath string, permissions string, size int64) error {
return a.CopyPassThru(ctx, r, remotePath, permissions, size, nil)
}
// CopyPassThru copies the contents of an io.Reader to a remote location.
// Access copied bytes by providing a PassThru reader factory
func (a *Client) CopyPassThru(ctx context.Context, r io.Reader, remotePath string, permissions string, size int64, passThru PassThru) error {
stdout, err := a.Session.StdoutPipe()
if err != nil {
return err
}
if passThru != nil {
r = passThru(r, size)
}
filename := path.Base(remotePath)
wg := sync.WaitGroup{}
wg.Add(2)
errCh := make(chan error, 2)
go func() {
defer wg.Done()
w, err := a.Session.StdinPipe()
if err != nil {
errCh <- err
return
}
defer w.Close()
_, err = fmt.Fprintln(w, "C"+permissions, size, filename)
if err != nil {
errCh <- err
return
}
if err = checkResponse(stdout); err != nil {
errCh <- err
return
}
_, err = io.Copy(w, r)
if err != nil {
errCh <- err
return
}
_, err = fmt.Fprint(w, "\x00")
if err != nil {
errCh <- err
return
}
if err = checkResponse(stdout); err != nil {
errCh <- err
return
}
}()
go func() {
defer wg.Done()
err := a.Session.Run(fmt.Sprintf("%s -qt %q", a.RemoteBinary, remotePath))
if err != nil {
errCh <- err
return
}
}()
if a.Timeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, a.Timeout)
defer cancel()
}
if err := wait(&wg, ctx); err != nil {
return err
}
close(errCh)
for err := range errCh {
if err != nil {
return err
}
}
return nil
}
// CopyFromRemote copies a file from the remote to the local file given by the `file`
// parameter. Use `CopyFromRemotePassThru` if a more generic writer
// is desired instead of writing directly to a file on the file system.?
func (a *Client) CopyFromRemote(ctx context.Context, file *os.File, remotePath string) error {
return a.CopyFromRemotePassThru(ctx, file, remotePath, nil)
}
// CopyFromRemotePassThru copies a file from the remote to the given writer. The passThru parameter can be used
// to keep track of progress and how many bytes that were download from the remote.
// `passThru` can be set to nil to disable this behaviour.
func (a *Client) CopyFromRemotePassThru(ctx context.Context, w io.Writer, remotePath string, passThru PassThru) error {
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 := a.Session.StdoutPipe()
if err != nil {
errCh <- err
return
}
in, err := a.Session.StdinPipe()
if err != nil {
errCh <- err
return
}
defer in.Close()
err = a.Session.Start(fmt.Sprintf("%s -f %q", a.RemoteBinary, 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
}
if passThru != nil {
r = passThru(r, infos.Size)
}
_, err = CopyN(w, r, infos.Size)
if err != nil {
errCh <- err
return
}
err = Ack(in)
if err != nil {
errCh <- err
return
}
err = a.Session.Wait()
if err != nil {
errCh <- err
return
}
}()
if a.Timeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, a.Timeout)
defer cancel()
}
if err := wait(&wg, ctx); err != nil {
return err
}
finalErr := <-errCh
close(errCh)
return finalErr
}
func (a *Client) Close() {
if a.Session != nil {
a.Session.Close()
}
if a.Conn != nil {
a.Conn.Close()
}
}