-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssh.go
126 lines (119 loc) · 2.82 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
package backend
import (
"io"
"net"
"os"
"path/filepath"
"strings"
"time"
"golang.org/x/crypto/ssh"
)
func (backend Backend) MustBindLocalToRemoteOverSSH(local, sshStr, remote string) {
if err := backend.BindLocalToRemoteOverSSH(local, sshStr, remote); err != nil {
backend.logger.Fatal(err)
}
}
// BindLocalToRemoteOverSSH connects to remote server over SSH, bind local port
// to remote port. The local and remote string should contain IP address and
// port number like this: 127.0.0.1:8080. The SSH string should contain user
// name, identity file path, remote host and port. For example:
// root:~/.ssh/id_rsa@remote-host:22.
func (backend Backend) BindLocalToRemoteOverSSH(local, sshStr, remote string) error {
user, key, host := parseSSH(sshStr)
if local == "" || user == "" || key == "" || host == "" || remote == "" {
return nil
}
if strings.HasPrefix(key, "~") {
if home, _ := os.UserHomeDir(); home != "" {
key = filepath.Join(home, strings.TrimPrefix(key, "~"))
}
}
b, err := os.ReadFile(key)
if err != nil {
return err
}
signer, err := ssh.ParsePrivateKey(b)
if err != nil {
return err
}
backend.logger.Info("SSH: Connecting to", host)
client, err := ssh.Dial("tcp", host, &ssh.ClientConfig{
User: user,
Auth: []ssh.AuthMethod{
ssh.PublicKeys(signer),
},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
})
if err != nil {
return err
}
defer client.Close()
backend.logger.Info("SSH: Connected. Listening on", remote)
listener, err := client.Listen("tcp", remote)
if err != nil {
return err
}
defer listener.Close()
for {
err = accept(local, listener)
if err == nil {
continue
}
if err == io.EOF {
return nil
}
backend.logger.Warning("SSH Error:", err)
time.Sleep(1 * time.Second)
}
return nil
}
// ParseSSHConnStr parses strings like this:
// 127.0.0.1:8080::root:~/.ssh/id_rsa@remote-host:22::127.0.0.1:9999
func ParseSSHConnStr(connStr string) (local, ssh, remote string) {
parts := strings.SplitN(connStr, "::", 3)
if len(parts) == 3 {
local = parts[0]
ssh = parts[1]
remote = parts[2]
} else if len(parts) == 2 {
local = parts[0]
ssh = parts[1]
} else if len(parts) == 1 {
ssh = parts[0]
}
return
}
func accept(local string, listener net.Listener) error {
client, err := listener.Accept()
if err != nil {
return err
}
defer client.Close()
conn, err := net.Dial("tcp", local)
if err != nil {
return err
}
defer conn.Close()
go io.Copy(client, conn)
io.Copy(conn, client)
return nil
}
func parseSSH(ssh string) (user, key, host string) {
parts := strings.SplitN(ssh, "@", 2)
if len(parts) == 0 {
return
}
if len(parts) == 1 {
host = parts[0]
return
}
partsA := strings.SplitN(parts[0], ":", 2)
if len(partsA) == 2 {
user = partsA[0]
key = partsA[1]
} else if len(partsA) == 1 {
user = partsA[0]
}
host = parts[1]
return
}