-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
158 lines (142 loc) · 3.49 KB
/
handler.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
package main
import (
"bufio"
"encoding/json"
"fmt"
"github.com/creack/pty"
"github.com/gliderlabs/ssh"
"github.com/jonasbak/yasp/utils"
"io"
"log"
"os"
"os/exec"
"strings"
"syscall"
"unsafe"
)
func (h *forwardedTCPHandler) sshHandler(s ssh.Session) {
serviceURL := os.Getenv("SERVICE_URL")
if serviceURL == "" {
serviceURL = "localhost:8080"
}
ptyReq, winCh, isPty := s.Pty()
sessionID := s.Context().(ssh.Context).SessionID()
log.Printf("started session for %s - %s", s.User(), sessionID)
defer log.Printf("ended session for %s - %s", s.User(), sessionID)
h.Lock()
if h.onCreate == nil {
h.onCreate = make(map[string]chan struct{})
}
onCreate, ok := h.onCreate[sessionID]
if !ok {
onCreate = make(chan struct{})
h.onCreate[sessionID] = onCreate
}
h.Unlock()
// TODO timeout
<-onCreate
session, _ := h.sessions[sessionID]
if s, err := utils.ParseSettings(session.settings, isPty, s.Command()); err != nil {
session.pushError(err)
} else {
session.settings = s
}
if len(session.errors) > 0 {
fmt.Fprintln(s, "Failed to connect:")
for _, err := range session.errors {
fmt.Fprintln(s, err.Error())
}
s.Exit(1)
return
}
if !isPty {
fmt.Fprintf(s, "Sharing connection on: %s.%s\n", session.settings.Subdomain, serviceURL)
if len(session.settings.Password) > 0 {
fmt.Fprintf(s, "Using password authentication\n")
}
fmt.Fprintf(s, "Request log:\n")
readLog(session.pipeR, func(log string) {
fmt.Fprintf(s, colorRegex.ReplaceAllString(log, ""))
})
return
}
cmd := exec.Command(os.Args[0], "--tui", "--service-url", serviceURL)
cmd.ExtraFiles = []*os.File{
session.pipeR,
}
cmd.Env = append(cmd.Env, fmt.Sprintf("TERM=%s", ptyReq.Term))
stderr, err := cmd.StderrPipe()
if err != nil {
panic(err)
}
f, err := pty.Start(cmd)
if err != nil {
panic(err)
}
writeSettings := func() {
settingsStr, _ := json.Marshal(session.settings)
fmt.Fprintf(session.pipeW, "%s%s\n", utils.SETTINGS_MSG_PREFIX, settingsStr)
}
go writeSettings()
go readMessages(stderr, func(s utils.SessionSettings) {
session.settings = s
writeSettings()
})
go func() {
for win := range winCh {
setWinsize(f, win.Width, win.Height)
}
}()
go func() {
io.Copy(f, s) // stdin
}()
io.Copy(s, f) // stdout
s.Exit(0)
}
func readMessages(stderr io.ReadCloser, setSettings func(utils.SessionSettings)) {
r := bufio.NewReader(stderr)
for {
line, err := r.ReadBytes('\n')
if err != nil && err != io.EOF {
panic(err)
}
if len(line) > 0 {
lineStr := string(line)
if strings.HasPrefix(lineStr, utils.SETTINGS_MSG_PREFIX) {
settings := utils.SessionSettings{}
err := json.Unmarshal(line[len(utils.SETTINGS_MSG_PREFIX):], &settings)
if err != nil {
log.Println("could not parse settings")
} else {
setSettings(settings)
}
} else {
log.Printf("could not parse last message: %s", lineStr)
}
}
if err == io.EOF {
return
}
}
}
func readLog(pipe io.ReadCloser, pushLog func(string)) {
r := bufio.NewReader(pipe)
for {
line, err := r.ReadBytes('\n')
if len(line) > 0 {
lineStr := string(line)
if strings.HasPrefix(lineStr, utils.LOG_MSG_PREFIX) {
pushLog(lineStr[len(utils.LOG_MSG_PREFIX):])
} else {
log.Printf("could not parse last message: %s", lineStr)
}
}
if err != nil {
return
}
}
}
func setWinsize(f *os.File, w, h int) {
syscall.Syscall(syscall.SYS_IOCTL, f.Fd(), uintptr(syscall.TIOCSWINSZ),
uintptr(unsafe.Pointer(&struct{ h, w, x, y uint16 }{uint16(h), uint16(w), 0, 0})))
}