-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
253 lines (219 loc) · 7.46 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
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
// Package main is a build entry point of sshgut.
package main
import (
"bytes"
"context"
_ "embed"
"fmt"
"slices"
"strings"
"time"
"os"
"sync"
"syscall"
"github.com/alecthomas/kingpin/v2"
"github.com/rgzr/sshtun"
"github.com/rs/zerolog/log"
"golang.org/x/term"
"gopkg.in/yaml.v3"
)
// Version is sshgut current version.
var Version = "0.0.0"
// ConfigVersion is a version of supported configuration files.
var ConfigVersion = "2"
var wg sync.WaitGroup
//go:embed embedKey.ssh
var embedKey []byte
var (
debugMode = kingpin.Flag("debug", "Add debug logs").Bool()
configPath = kingpin.Flag("config", "Path to the configuration file").Default("config.yaml").ExistingFile()
configShow = kingpin.Flag("config-show", "Show configuration file").Bool()
configShowNames = kingpin.Flag("config-show-names", "Show names from configuration file").Bool()
runCustomNames = kingpin.Flag("run-custom-names", "Establish connection to custom names from config. Delimiter:','").String()
)
// Key is a struct with data about ssh key.
type Key struct {
Path string `yaml:"path"`
Password string `yaml:"password"`
}
// Auth is a struct containing authorization data.
type Auth struct {
Method string `yaml:"method"`
Password string `yaml:"password"`
Key Key `yaml:"key"`
}
// SSH is a struct with ssh connection properties.
type SSH struct {
ForwardType string `yaml:"forward_type"`
KeyExchanges []string `yaml:"key_exchanges"`
Ciphers []string `yaml:"ciphers"`
MACs []string `yaml:"macs"`
Host string `yaml:"host"`
Port int `yaml:"port"`
User string `yaml:"user"`
Auth Auth `yaml:"auth"`
}
// Remote is a struct containing the remote `Host' and `Port' should be mapped locally.
type Remote struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
}
// Local is a struct containing the local `Host` and `Port` where will be mapped to the local host.
type Local struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
}
// ItemConfig struct describes `item` in the configuration file.
type ItemConfig struct {
Name string `yaml:"name"`
Local Local `yaml:"local"`
Remote Remote `yaml:"remote"`
SSH SSH `yaml:"ssh"`
}
// YamlConfig describes version and configuration of the connection
type YamlConfig struct {
Version string `yaml:"version"`
Configs []ItemConfig `yaml:"configs"`
}
func getPassword() string {
fmt.Println("Enter password")
bytepwd, err := term.ReadPassword(int(syscall.Stdin))
if err != nil {
log.Fatal().Str("status", "not started").Msgf("Can not read password input: %v", err)
}
strpwd := string(bytepwd)
return strpwd
}
func (configData *YamlConfig) showConfig() {
data, err := yaml.Marshal(configData)
if err != nil {
log.Fatal().Str("status", "error").Msgf("Can not marshal config data: %v", err)
}
fmt.Println(string(data))
}
func (configData *YamlConfig) showConfigNames() {
for _, config := range configData.Configs {
fmt.Println(config.Name)
}
}
func (configData *YamlConfig) getconfig(configPath string) {
data, err := os.ReadFile(configPath)
if err != nil {
log.Fatal().Str("status", "not started").Msgf("Can not read file: %v", err)
}
err = yaml.Unmarshal(data, &configData)
if err != nil {
log.Fatal().Str("status", "not started").Msgf("Can not unmarshal yaml config: %v", err)
}
if ConfigVersion != configData.Version {
log.Fatal().Str("status", "not started").
Msgf("Configuration version %s is not supported. Current config version is %s.", configData.Version, ConfigVersion)
}
for index, remote := range configData.Configs {
// Ask all passwords before start connection if any
authMethod := remote.SSH.Auth.Method
authPassword := remote.SSH.Auth.Password
authKeyPassword := remote.SSH.Auth.Key.Password
switch {
case authMethod == "password" && authPassword == "":
configData.Configs[index].SSH.Auth.Password = getPassword()
case (authMethod == "key-encrypted" || authMethod == "embedKey-encrypted") && authKeyPassword == "":
configData.Configs[index].SSH.Auth.Key.Password = getPassword()
}
}
}
func createConnection(item *ItemConfig, waitGroup *sync.WaitGroup) {
defer waitGroup.Done()
// We make available remoteHostConfig.Server which uses port remoteHostConfig.RemotePort
// on localhost with port remoteHostConfig.LocalPort via sshConfig.Host using user sshConfig.User
// and port sshConfig.Port to connect to it.
sshTun := sshtun.New(item.Local.Port, item.SSH.Host, item.Remote.Port)
sshTun.SetRemoteHost(item.Remote.Host)
sshTun.SetUser(item.SSH.User)
sshTun.SetPort(item.SSH.Port)
// Bind tunnel in the most obvious way and cover cases where `localHost` is not set in the remote config
if item.Local.Host != "" {
sshTun.SetLocalHost(item.Local.Host)
} else {
item.Local.Host = "127.0.0.1"
sshTun.SetLocalHost(item.Local.Host)
}
if item.SSH.ForwardType == "remote" {
sshTun.SetForwardType(1)
}
// Supported, forbidden and preferred values
// are in https://pkg.go.dev/golang.org/x/crypto/ssh#Config
sshTun.SetKeyExchanges(item.SSH.KeyExchanges)
sshTun.SetCiphers(item.SSH.Ciphers)
sshTun.SetMACs(item.SSH.MACs)
switch sshAuthMethod := item.SSH.Auth.Method; sshAuthMethod {
case "password":
sshTun.SetPassword(item.SSH.Auth.Password)
case "key":
sshTun.SetKeyFile(item.SSH.Auth.Key.Path)
case "key-encrypted":
sshTun.SetEncryptedKeyFile(item.SSH.Auth.Key.Path, item.SSH.Auth.Key.Password)
case "embedKey":
sshTun.SetKeyReader(bytes.NewBuffer(embedKey))
case "embedKey-encrypted":
sshTun.SetEncryptedKeyReader(bytes.NewBuffer(embedKey), item.SSH.Auth.Key.Password)
}
// We print each tunneled state to see the connections status
sshTun.SetTunneledConnState(func(tun *sshtun.SSHTun, state *sshtun.TunneledConnState) {
if *debugMode {
log.Debug().Str("status", "ok").Str("name", item.Name).Msgf("%+v", state)
}
})
// We set a callback to know when the tunnel is ready
sshTun.SetConnState(func(tun *sshtun.SSHTun, state sshtun.ConnState) {
switch state {
case sshtun.StateStarting:
log.Info().Str("status", "starting").Str("name", item.Name).Msgf("Host %v port %v available on %v:%v",
item.Remote.Host, item.Remote.Port, item.Local.Host, item.Local.Port)
case sshtun.StateStarted:
log.Info().Str("status", "started").Str("name", item.Name).Msgf("Host %v port %v available on %v:%v",
item.Remote.Host, item.Remote.Port, item.Local.Host, item.Local.Port)
case sshtun.StateStopped:
log.Info().Str("status", "stopped").Str("name", item.Name).Msgf("Host %v port %v available on %v:%v",
item.Remote.Host, item.Remote.Port, item.Local.Host, item.Local.Port)
}
})
// We start the tunnel (and restart it every time it is stopped)
for {
if err := sshTun.Start(context.Background()); err != nil {
log.Error().Msgf("SSH tunnel error: %v", err)
time.Sleep(time.Second)
}
}
}
func main() {
kingpin.Version(Version)
kingpin.Parse()
cfg := YamlConfig{}
cfg.getconfig(*configPath)
finalConfigs := cfg.Configs
switch {
case *configShow:
cfg.showConfig()
os.Exit(0)
case *configShowNames:
cfg.showConfigNames()
os.Exit(0)
case len(*runCustomNames) > 0:
finalConfigs = func() []ItemConfig {
customConfigs := []ItemConfig{}
parsedNames := strings.Split(*runCustomNames, ",")
for _, item := range finalConfigs {
if slices.Contains(parsedNames, item.Name) {
customConfigs = append(customConfigs, item)
}
}
return customConfigs
}()
}
wg.Add(len(cfg.Configs))
for _, remote := range finalConfigs {
go createConnection(&remote, &wg)
}
wg.Wait()
}