-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
141 lines (125 loc) · 3.04 KB
/
main.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
package main
import (
"fmt"
"io/ioutil"
"log"
"net/netip"
"os"
"sync"
"github.com/grilix/toonels/internal"
"github.com/pkg/errors"
"golang.org/x/crypto/ssh"
yaml "gopkg.in/yaml.v2"
)
type TunnelEndpoints struct {
Local string `yaml:"local"`
Target string `yaml:"target"`
}
type JumpNode struct {
User string `yaml:"user"`
PrivateKeyPath string `yaml:"private_key_path"`
ServerPublicKey string `yaml:"server_public_key"`
Addr string `yaml:"addr"`
Tunnels []TunnelEndpoints `yaml:"tunnels"`
}
type TunnelsFile struct {
Jump []JumpNode `yaml:"nodes"`
}
func PrivateKeyFile(file string) (ssh.AuthMethod, error) {
buffer, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
key, err := ssh.ParsePrivateKey(buffer)
if err != nil {
return nil, err
}
return ssh.PublicKeys(key), nil
}
func NewSSHNode(jump JumpNode) (*internal.SSHNode, error) {
// TODO:
// serverPublicKey, _, _, _, err := ssh.ParseAuthorizedKey([]byte(jump.ServerPublicKey))
// if err != nil {
// return nil, errors.Wrap(
// err,
// fmt.Sprintf("can't parse server public key %s", jump.ServerPublicKey),
// )
// }
auth, err := PrivateKeyFile(jump.PrivateKeyPath)
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf(
"can't load private key at %s",
jump.PrivateKeyPath,
))
}
config := &ssh.ClientConfig{
User: jump.User,
Auth: []ssh.AuthMethod{auth},
// TODO:
// HostKeyCallback: ssh.FixedHostKey(key),
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
}
jumpAddr, err := netip.ParseAddrPort(jump.Addr)
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf(
"can't parse jump address %s",
jump.Addr,
))
}
return &internal.SSHNode{
Config: config,
Addr: jumpAddr,
}, nil
}
func NewTunnel(jump *internal.SSHNode, local, target string) (*internal.SSHTunnel, error) {
localEndpoint, err := netip.ParseAddrPort(local)
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf(
"can't parse local address %s",
local,
))
}
targetEndpoint, err := netip.ParseAddrPort(target)
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf(
"can't parse target address %s",
target,
))
}
return &internal.SSHTunnel{
Jump: jump,
Local: localEndpoint,
Target: targetEndpoint,
}, nil
}
func main() {
var tunnelsFile TunnelsFile
yamlFile, err := ioutil.ReadFile(".tunnels.yaml")
if err != nil {
log.Fatal(err)
}
err = yaml.Unmarshal(yamlFile, &tunnelsFile)
if err != nil {
log.Fatal(err)
}
logger := log.New(os.Stdout, "", log.Ldate|log.Lmicroseconds)
var wg sync.WaitGroup
wg.Add(len(tunnelsFile.Jump))
for _, jump := range tunnelsFile.Jump {
jumpNode, err := NewSSHNode(jump)
if err != nil {
log.Fatal(err)
}
for _, endpoints := range jump.Tunnels {
tunnel, err := NewTunnel(jumpNode, endpoints.Local, endpoints.Target)
if err != nil {
log.Fatal(err)
}
tunnel.Log = logger
go func(tunnel *internal.SSHTunnel) {
log.Fatal(tunnel.Start())
}(tunnel)
}
}
wg.Wait()
}