forked from cyfdecyf/cow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh.go
53 lines (47 loc) · 1.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
package main
import (
"net"
"os/exec"
"strings"
"time"
)
func SshRunning(socksServer string) bool {
c, err := net.Dial("tcp", socksServer)
if err != nil {
return false
}
c.Close()
return true
}
func runOneSSH(server string) {
// config parsing canonicalize sshServer config value
arr := strings.SplitN(server, ":", 3)
sshServer, localPort, sshPort := arr[0], arr[1], arr[2]
alreadyRunPrinted := false
socksServer := "127.0.0.1:" + localPort
for {
if SshRunning(socksServer) {
if !alreadyRunPrinted {
debug.Println("ssh socks server", socksServer, "maybe already running")
alreadyRunPrinted = true
}
time.Sleep(30 * time.Second)
continue
}
// -n redirects stdin from /dev/null
// -N do not execute remote command
debug.Println("connecting to ssh server", sshServer+":"+sshPort)
cmd := exec.Command("ssh", "-n", "-N", "-D", localPort, "-p", sshPort, sshServer)
if err := cmd.Run(); err != nil {
debug.Println("ssh:", err)
}
debug.Println("ssh", sshServer+":"+sshPort, "exited, reconnect")
time.Sleep(5 * time.Second)
alreadyRunPrinted = false
}
}
func runSSH() {
for _, server := range config.SshServer {
go runOneSSH(server)
}
}