-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathauth.go
88 lines (76 loc) · 1.83 KB
/
auth.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
package socker
import (
"errors"
"fmt"
"io/ioutil"
"time"
"golang.org/x/crypto/ssh"
)
var (
ErrIsDir = errors.New("destination is directory")
CopyBufferSize int64 = 1024 * 1024
CmdSeperator = "&&" // or ;
)
type Auth struct {
User string
Password string
PrivateKey string
PrivateKeyFile string
HostKeyCheck ssh.HostKeyCallback
TimeoutMs int
MaxSession int
config *ssh.ClientConfig
}
func (a *Auth) privateKeyMethod(pemBytes []byte) (ssh.AuthMethod, error) {
sign, err := ssh.ParsePrivateKey(pemBytes)
if err != nil {
return nil, fmt.Errorf("invalid private key: %s", err.Error())
}
return ssh.PublicKeys(sign), nil
}
func (a *Auth) MustSSHConfig() *ssh.ClientConfig {
cfg, err := a.SSHConfig()
if err != nil {
panic(err)
}
return cfg
}
func (a *Auth) SSHConfig() (*ssh.ClientConfig, error) {
if a.config != nil {
return a.config, nil
}
config := &ssh.ClientConfig{}
config.User = a.User
if a.Password != "" {
method := ssh.Password(a.Password)
config.Auth = append(config.Auth, method)
}
if len(a.PrivateKey) > 0 {
method, err := a.privateKeyMethod([]byte(a.PrivateKey))
if err != nil {
return nil, err
}
config.Auth = append(config.Auth, method)
}
if a.PrivateKeyFile != "" {
pemBytes, err := ioutil.ReadFile(a.PrivateKeyFile)
if err != nil {
return nil, fmt.Errorf("invalid private key file: %s", err.Error())
}
method, err := a.privateKeyMethod(pemBytes)
if err != nil {
return nil, err
}
config.Auth = append(config.Auth, method)
}
if len(config.Auth) == 0 {
return nil, errors.New("no auth method supplied")
}
config.Timeout = time.Duration(a.TimeoutMs) * time.Millisecond
config.HostKeyCallback = a.HostKeyCheck
if config.HostKeyCallback == nil {
config.HostKeyCallback = ssh.InsecureIgnoreHostKey()
}
a.config = config
return a.config, nil
}