-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathwebssh.go
195 lines (185 loc) · 4.84 KB
/
webssh.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
/*
* @Copyright Reserved By Janusec (https://www.janusec.com/).
* @Author: U2
* @Date: 2020-02-10 22:07:47
* @Last Modified: U2, 2020-02-10 22:07:47
*/
package gateway
import (
"bytes"
"encoding/json"
"errors"
"io"
"log"
"net/http"
"time"
"janusec/data"
"janusec/usermgmt"
"janusec/utils"
"github.com/gorilla/websocket"
"golang.org/x/crypto/ssh"
)
// HostInfo : the information of remote Host
type HostInfo struct {
IP string `json:"ip"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
}
// SSH build connection
func SSH(sshInput *io.WriteCloser, sshOutput *io.Reader, host *HostInfo, errChan chan<- error) {
sshClient, err := ssh.Dial("tcp", host.IP+":"+host.Port, &ssh.ClientConfig{
User: host.Username,
Auth: []ssh.AuthMethod{ssh.Password(host.Password)},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
})
if err != nil {
errChan <- err
utils.DebugPrintln("errChan", err)
return
}
sshSession, err := sshClient.NewSession()
if err != nil {
utils.DebugPrintln("new ssh session", err)
}
defer sshSession.Close()
*sshInput, err = sshSession.StdinPipe()
if err != nil {
utils.DebugPrintln("sshInput", err)
}
*sshOutput, err = sshSession.StdoutPipe()
if err != nil {
utils.DebugPrintln("sshOuput", err)
}
errChan <- err
modes := ssh.TerminalModes{
ssh.ECHO: 1,
ssh.TTY_OP_ISPEED: 14400,
ssh.TTY_OP_OSPEED: 14400,
}
err = sshSession.RequestPty("xterm", 25, 80, modes)
if err != nil {
utils.DebugPrintln("request pty", err)
}
err = sshSession.Shell()
if err != nil {
utils.DebugPrintln("start shell", err)
}
err = sshSession.Wait()
errChan <- err
}
// RoutineOutput update the console display
func RoutineOutput(outputTicker *time.Ticker, wsConn *websocket.Conn, sshOutput *io.Reader) {
for range outputTicker.C {
cmdOutput := make([]byte, 1024*10)
n, err := (*sshOutput).Read(cmdOutput)
if err != nil {
// EOF
return
}
if n > 0 {
err := wsConn.WriteMessage(websocket.TextMessage, cmdOutput)
if err != nil {
return
}
}
}
}
// WebSSHHandlerFunc Handle Web SSH
func WebSSHHandlerFunc(w http.ResponseWriter, r *http.Request) {
var isLogin bool
isLogin, _ = usermgmt.IsLogIn(w, r)
if !isLogin {
GenResponseByObject(w, nil, errors.New("please login"))
return
}
username := usermgmt.GetLoginUsername(r)
var sshInput io.WriteCloser
var sshOutput io.Reader //bytes.Buffer
upgrader := websocket.Upgrader{
ReadBufferSize: 1024,
WriteBufferSize: 1024 * 10,
}
wsConn, err := upgrader.Upgrade(w, r, nil)
// websocket.Upgrade deprecated, add upgrader.Upgrade above, v1.2.0
// wsConn, err := websocket.Upgrade(w, r, nil, 1024, 1024*10)
if err != nil {
log.Println("upgrade:", err)
return
}
defer wsConn.Close()
// Read SSH Parameters
_, msg, err2 := wsConn.ReadMessage()
if err2 != nil {
utils.DebugPrintln("ReadMessage SSH Parameters Error:", err2)
return
}
if !data.PrimarySetting.WebSSHEnabled {
err = wsConn.WriteMessage(websocket.TextMessage, []byte("WebSSH disabled in settings!\r\n"))
if err != nil {
utils.DebugPrintln("WebSSHHandlerFunc wsConn.WriteMessage error", err)
}
return
}
var host HostInfo
err = json.Unmarshal(msg, &host)
if err != nil {
utils.DebugPrintln("WebSSHHandlerFunc json.Unmarshal error", err)
}
if err = wsConn.WriteMessage(websocket.TextMessage, []byte("Connecting "+host.IP+":"+host.Port+" ... Please wait a moment!\r\n")); err != nil {
return
}
errChan := make(chan error)
go SSH(&sshInput, &sshOutput, &host, errChan)
err = <-errChan
if err != nil {
err2 := wsConn.WriteMessage(websocket.TextMessage, []byte(err.Error()))
if err2 != nil {
utils.DebugPrintln("WebSSHHandlerFunc wsConn.WriteMessage error", err2)
}
return
}
var logBuf bytes.Buffer
outputTicker := time.NewTicker(100 * time.Millisecond)
go RoutineOutput(outputTicker, wsConn, &sshOutput)
for {
select {
case <-errChan:
err2 := wsConn.WriteMessage(websocket.TextMessage, []byte(err.Error()))
if err2 != nil {
utils.DebugPrintln("WebSSHHandlerFunc wsConn.WriteMessage error", err2)
}
return
default:
if wsConn == nil {
return
}
_, msg, err2 := wsConn.ReadMessage()
if err2 != nil {
return
}
//log.Printf("Received: %s %v\n", string(msg), msg)
if sshInput != nil {
go CmdLog(&logBuf, username, &host, &msg)
if _, err = sshInput.Write(msg); err != nil {
return
}
}
}
}
}
// CmdLog write to log files
func CmdLog(logBuf *bytes.Buffer, username string, host *HostInfo, cmdChars *[]byte) {
for i := 0; i < len(*cmdChars); i++ {
cmdChar := (*cmdChars)[i]
switch cmdChar {
case '\r', '\n':
cmdStr := logBuf.String()
hostInfo := host.Username + "@" + host.IP + ":" + host.Port
utils.DebugPrintln("WebSSH User:", username, hostInfo, "Command:", cmdStr)
logBuf.Reset()
default:
logBuf.WriteByte(cmdChar)
}
}
}