-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathssh.go
380 lines (322 loc) · 7.17 KB
/
ssh.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
package sshclient
//Handle all ssh connection and run command
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"sync"
"golang.org/x/crypto/ssh"
)
type SSHAuthTypeEnum int
const (
//Type authentication login in ssh, it can using password or using public-private key
SSHAuthType_Password SSHAuthTypeEnum = iota
SSHAuthType_Certificate
)
type SshSetting struct {
//Setting information for ssh connection
SSHHost string
SSHUser string
SSHPassword string
SSHKeyLocation string
SSHAuthType SSHAuthTypeEnum
SSHDebug bool
}
/*
Parsing private key certicate using for connection over ssh
*/
func PublicKeyFile(file string) ssh.AuthMethod {
buffer, err := ioutil.ReadFile(file)
if err != nil {
return nil
}
key, err := ssh.ParsePrivateKey(buffer)
if err != nil {
return nil
}
return ssh.PublicKeys(key)
}
/*
Build connection ssh client to ssh server
*/
func (S *SshSetting) Connect() (*ssh.Client, error) {
var (
cfg *ssh.ClientConfig
)
if S.SSHAuthType == SSHAuthType_Certificate {
cfg = &ssh.ClientConfig{
User: S.SSHUser,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
Auth: []ssh.AuthMethod{
PublicKeyFile(S.SSHKeyLocation),
},
}
} else {
cfg = &ssh.ClientConfig{
User: S.SSHUser,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
Auth: []ssh.AuthMethod{
ssh.Password(S.SSHPassword),
},
}
}
client, e := ssh.Dial("tcp", S.SSHHost, cfg)
return client, e
}
/*
Handle input and output into terminal using channel
*/
func TermInOut(w io.Writer, r io.Reader) (chan<- string, <-chan string) {
in := make(chan string, 1)
out := make(chan string, 1)
var wg sync.WaitGroup
wg.Add(1)
go func() {
for cmd := range in {
wg.Add(1)
w.Write([]byte(cmd + "\n"))
wg.Wait()
}
}()
go func() {
var (
buf [1024 * 1024]byte
t int
)
for {
n, err := r.Read(buf[t:])
if err != nil {
close(in)
close(out)
return
}
t += n
if buf[t-2] == '$' || (buf[t-3] == '~' && buf[t-2] == '>') {
out <- string(buf[:t])
t = 0
wg.Done()
}
}
}()
return in, out
}
/*
Create new session
*/
func (s *SshSetting) NewSession() (*ssh.Client, *ssh.Session, error) {
c, e := s.Connect()
if e != nil {
e = fmt.Errorf("Unable to connect: %s", e.Error())
return c, nil, e
}
if s.SSHDebug {
fmt.Println("Connected to ", s.SSHHost)
}
Ses, e := c.NewSession()
if e != nil {
e = fmt.Errorf("Unable to start new session: %s", e.Error())
return c, Ses, e
}
if s.SSHDebug {
fmt.Println("Session opened at ", s.SSHHost)
}
return c, Ses, e
}
/*
Build connection and run ssh script, catch the output or give error message if any
*/
func (S *SshSetting) RunCommandSsh(cmds ...string) (string, error) {
var (
res string
err error
)
c, Ses, e := S.NewSession()
if e != nil {
err = fmt.Errorf("Unable to connect: %s", e.Error())
return res, err
}
defer c.Close()
defer Ses.Close()
if S.SSHDebug {
fmt.Println("Xterm Requested")
}
modes := ssh.TerminalModes{
ssh.ECHO: 0,
ssh.TTY_OP_ISPEED: 14400,
ssh.TTY_OP_OSPEED: 14400,
}
if e = Ses.RequestPty("xterm", 80, 40, modes); e != nil {
err = fmt.Errorf("Unable to start term: %s", e.Error())
return res, err
}
if S.SSHDebug {
fmt.Println("Xterm Requested Complete")
}
w, _ := Ses.StdinPipe()
r, _ := Ses.StdoutPipe()
if S.SSHDebug {
fmt.Println("Writer Reader initiated")
}
in, out := TermInOut(w, r)
if e = Ses.Shell(); e != nil {
err = fmt.Errorf("Unable to start shell: %s", e.Error())
return res, err
}
<-out
if S.SSHDebug {
fmt.Println("Shell started")
}
cmds = append(cmds, "exit")
cmdtemp := ""
for _, cmd := range cmds {
in <- cmd
outs := strings.Split(<-out, "\n")
if len(outs) > 1 {
outtemp := strings.Trim(strings.Join(outs[:len(outs)-1], "\n"), " ")
res = res + "Output of " + cmdtemp + " : " + outtemp
}
cmdtemp = cmd
}
Ses.Wait()
return res, err
}
type RunCommandResult struct {
CMD string
Output string
}
/*
Build connection and run ssh script, catch the output or give error message if any
*/
func (s *SshSetting) RunCommandSshAsMap(cmds ...string) ([]RunCommandResult, error) {
result := []RunCommandResult{}
client, sess, err := s.NewSession()
if err != nil {
return result, fmt.Errorf("Unable to connect: %s", err.Error())
}
defer client.Close()
defer sess.Close()
modes := ssh.TerminalModes{
ssh.ECHO: 0,
ssh.TTY_OP_ISPEED: 14400,
ssh.TTY_OP_OSPEED: 14400,
}
if s.SSHDebug {
fmt.Println("Xterm Requested")
}
if err = sess.RequestPty("xterm", 80, 40, modes); err != nil {
return result, fmt.Errorf("Unable to start term: %s", err.Error())
}
if s.SSHDebug {
fmt.Println("Xterm Requested Complete")
}
writer, _ := sess.StdinPipe()
reader, _ := sess.StdoutPipe()
if s.SSHDebug {
fmt.Println("Writer Reader initiated")
}
in, out := TermInOut(writer, reader)
if err = sess.Shell(); err != nil {
return result, fmt.Errorf("Unable to start shell: %s", err.Error())
}
if s.SSHDebug {
fmt.Println("Shell started")
}
<-out
cmds = append(cmds, "exit")
for _, cmd := range cmds {
in <- cmd
if s.SSHDebug {
fmt.Println("execute command ", cmd)
}
if cmd != "exit" {
res := <-out
res = strings.Split(res, `]0;`)[0]
res = strings.Split(res, string(0x1b))[0]
res = strings.TrimSpace(res)
result = append(result, RunCommandResult{cmd, res})
}
}
sess.Wait()
return result, nil
}
/*
Run single command, get the output
*/
func (s *SshSetting) GetOutputCommandSsh(cmd string) (string, error) {
c, Ses, e := s.NewSession()
if e != nil {
e = fmt.Errorf("Unable to connect: %s", e.Error())
return "", e
}
defer c.Close()
defer Ses.Close()
var out bytes.Buffer
Ses.Stdout = &out
var err bytes.Buffer
Ses.Stderr = &err
if e := Ses.Run(cmd); e != nil {
return "", errors.New(fmt.Sprintf("%s. %s", e.Error(), err.String()))
}
return out.String(), nil
}
// Copy file adopted from https://github.com/tmc/scp/blob/master/scp.go
func (S *SshSetting) SshCopyByPath(filePath, destinationPath string) error {
var (
err error
)
f, err := os.Open(filePath)
if err != nil {
return err
}
defer f.Close()
s, err := f.Stat()
if err != nil {
return err
}
err = S.SshCopyByFile(f, s.Size(), s.Mode().Perm(), filepath.Base(f.Name()), destinationPath)
return nil
}
func (S *SshSetting) SshCopyByFile(content io.Reader, size int64, perm os.FileMode, filename string, destination string) error {
var (
err error
)
c, Ses, e := S.NewSession()
if e != nil {
err = fmt.Errorf("Unable to connect: %s", e.Error())
return err
}
defer c.Close()
defer Ses.Close()
go func() {
w, _ := Ses.StdinPipe()
defer w.Close()
fmt.Fprintf(w, "C%#o %d %s\n", perm, size, filename)
io.Copy(w, content)
fmt.Fprint(w, "\x00")
}()
cmd := fmt.Sprintf("scp -t %s", destination)
if err = Ses.Run(cmd); err != nil {
return err
}
return nil
}
func (S *SshSetting) SshGetFile(path string) (res bytes.Buffer, e error) {
c, Ses, e := S.NewSession()
if e != nil {
e = fmt.Errorf("Unable to connect: %s", e.Error())
return
}
defer c.Close()
defer Ses.Close()
cmd := fmt.Sprintf(CAT, path)
Ses.Stdout = &res
if e = Ses.Run(cmd); e != nil {
return
}
return
}