2015-08-21 09:51:43 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
2015-10-08 05:40:20 +00:00
|
|
|
"bytes"
|
2015-09-03 03:16:35 +00:00
|
|
|
"encoding/base64"
|
2015-08-21 09:51:43 +00:00
|
|
|
"encoding/json"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2015-08-23 11:40:18 +00:00
|
|
|
"strings"
|
2015-09-30 14:48:34 +00:00
|
|
|
"sync"
|
2017-01-09 03:01:30 +00:00
|
|
|
"sync/atomic"
|
2015-08-21 09:51:43 +00:00
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
|
|
|
|
2015-10-12 01:24:46 +00:00
|
|
|
"github.com/fatih/structs"
|
2015-08-21 09:51:43 +00:00
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
)
|
|
|
|
|
|
|
|
type clientContext struct {
|
|
|
|
app *App
|
|
|
|
request *http.Request
|
|
|
|
connection *websocket.Conn
|
|
|
|
command *exec.Cmd
|
|
|
|
pty *os.File
|
2015-09-30 14:48:34 +00:00
|
|
|
writeMutex *sync.Mutex
|
2015-08-21 09:51:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
Input = '0'
|
2015-09-01 04:27:43 +00:00
|
|
|
Ping = '1'
|
|
|
|
ResizeTerminal = '2'
|
2015-08-21 09:51:43 +00:00
|
|
|
)
|
|
|
|
|
2015-08-23 11:40:18 +00:00
|
|
|
const (
|
2015-08-27 06:23:54 +00:00
|
|
|
Output = '0'
|
2015-09-01 04:27:43 +00:00
|
|
|
Pong = '1'
|
|
|
|
SetWindowTitle = '2'
|
|
|
|
SetPreferences = '3'
|
|
|
|
SetReconnect = '4'
|
2015-08-23 11:40:18 +00:00
|
|
|
)
|
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
type argResizeTerminal struct {
|
|
|
|
Columns float64
|
|
|
|
Rows float64
|
|
|
|
}
|
|
|
|
|
2015-08-23 11:40:18 +00:00
|
|
|
type ContextVars struct {
|
|
|
|
Command string
|
|
|
|
Pid int
|
|
|
|
Hostname string
|
|
|
|
RemoteAddr string
|
|
|
|
}
|
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
func (context *clientContext) goHandleClient() {
|
|
|
|
exit := make(chan bool, 2)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer func() { exit <- true }()
|
|
|
|
|
|
|
|
context.processSend()
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer func() { exit <- true }()
|
|
|
|
|
|
|
|
context.processReceive()
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
2015-08-24 10:22:25 +00:00
|
|
|
defer context.app.server.FinishRoutine()
|
2017-01-09 03:01:30 +00:00
|
|
|
defer func() {
|
|
|
|
connections := atomic.AddInt64(context.app.connections, -1)
|
|
|
|
|
|
|
|
if context.app.options.MaxConnection != 0 {
|
|
|
|
log.Printf("Connection closed: %s, connections: %d/%d",
|
|
|
|
context.request.RemoteAddr, connections, context.app.options.MaxConnection)
|
|
|
|
} else {
|
|
|
|
log.Printf("Connection closed: %s, connections: %d",
|
|
|
|
context.request.RemoteAddr, connections)
|
|
|
|
}
|
|
|
|
|
|
|
|
if connections == 0 {
|
|
|
|
context.app.restartTimer()
|
|
|
|
}
|
|
|
|
}()
|
2015-08-24 10:22:25 +00:00
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
<-exit
|
2015-08-21 10:08:51 +00:00
|
|
|
context.pty.Close()
|
2015-08-28 08:22:42 +00:00
|
|
|
|
|
|
|
// Even if the PTY has been closed,
|
|
|
|
// Read(0 in processSend() keeps blocking and the process doen't exit
|
2015-10-13 09:26:48 +00:00
|
|
|
context.command.Process.Signal(syscall.Signal(context.app.options.CloseSignal))
|
2015-08-28 08:22:42 +00:00
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
context.command.Wait()
|
|
|
|
context.connection.Close()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *clientContext) processSend() {
|
2015-08-23 11:40:18 +00:00
|
|
|
if err := context.sendInitialize(); err != nil {
|
|
|
|
log.Printf(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
buf := make([]byte, 1024)
|
|
|
|
|
|
|
|
for {
|
2015-09-03 03:16:35 +00:00
|
|
|
size, err := context.pty.Read(buf)
|
2015-08-21 09:51:43 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Command exited for: %s", context.request.RemoteAddr)
|
|
|
|
return
|
|
|
|
}
|
2015-09-30 14:48:34 +00:00
|
|
|
safeMessage := base64.StdEncoding.EncodeToString([]byte(buf[:size]))
|
|
|
|
if err = context.write(append([]byte{Output}, []byte(safeMessage)...)); err != nil {
|
|
|
|
log.Printf(err.Error())
|
2015-08-21 09:51:43 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-30 14:48:34 +00:00
|
|
|
func (context *clientContext) write(data []byte) error {
|
|
|
|
context.writeMutex.Lock()
|
|
|
|
defer context.writeMutex.Unlock()
|
|
|
|
return context.connection.WriteMessage(websocket.TextMessage, data)
|
|
|
|
}
|
|
|
|
|
2015-08-23 11:40:18 +00:00
|
|
|
func (context *clientContext) sendInitialize() error {
|
|
|
|
hostname, _ := os.Hostname()
|
|
|
|
titleVars := ContextVars{
|
2015-08-27 06:23:54 +00:00
|
|
|
Command: strings.Join(context.app.command, " "),
|
2015-08-23 11:40:18 +00:00
|
|
|
Pid: context.command.Process.Pid,
|
|
|
|
Hostname: hostname,
|
|
|
|
RemoteAddr: context.request.RemoteAddr,
|
|
|
|
}
|
|
|
|
|
2015-10-08 05:40:20 +00:00
|
|
|
titleBuffer := new(bytes.Buffer)
|
|
|
|
if err := context.app.titleTemplate.Execute(titleBuffer, titleVars); err != nil {
|
2015-08-23 11:40:18 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-10-08 05:40:20 +00:00
|
|
|
if err := context.write(append([]byte{SetWindowTitle}, titleBuffer.Bytes()...)); err != nil {
|
2015-08-23 11:40:18 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-10-12 01:24:46 +00:00
|
|
|
prefStruct := structs.New(context.app.options.Preferences)
|
|
|
|
prefMap := prefStruct.Map()
|
2015-09-02 03:28:45 +00:00
|
|
|
htermPrefs := make(map[string]interface{})
|
2015-10-12 01:24:46 +00:00
|
|
|
for key, value := range prefMap {
|
|
|
|
rawKey := prefStruct.Field(key).Tag("hcl")
|
|
|
|
if _, ok := context.app.options.RawPreferences[rawKey]; ok {
|
|
|
|
htermPrefs[strings.Replace(rawKey, "_", "-", -1)] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prefs, err := json.Marshal(htermPrefs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-09-02 03:28:45 +00:00
|
|
|
}
|
2015-10-12 01:24:46 +00:00
|
|
|
|
2015-09-30 14:48:34 +00:00
|
|
|
if err := context.write(append([]byte{SetPreferences}, prefs...)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-27 06:23:54 +00:00
|
|
|
if context.app.options.EnableReconnect {
|
|
|
|
reconnect, _ := json.Marshal(context.app.options.ReconnectTime)
|
2015-09-30 14:48:34 +00:00
|
|
|
if err := context.write(append([]byte{SetReconnect}, reconnect...)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-23 22:14:24 +00:00
|
|
|
}
|
2015-08-23 11:40:18 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
func (context *clientContext) processReceive() {
|
|
|
|
for {
|
|
|
|
_, data, err := context.connection.ReadMessage()
|
|
|
|
if err != nil {
|
2015-09-30 14:48:34 +00:00
|
|
|
log.Print(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(data) == 0 {
|
|
|
|
log.Print("An error has occured")
|
2015-08-21 09:51:43 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch data[0] {
|
|
|
|
case Input:
|
|
|
|
if !context.app.options.PermitWrite {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := context.pty.Write(data[1:])
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-01 04:27:43 +00:00
|
|
|
case Ping:
|
2015-09-30 14:48:34 +00:00
|
|
|
if err := context.write([]byte{Pong}); err != nil {
|
|
|
|
log.Print(err.Error())
|
|
|
|
return
|
|
|
|
}
|
2015-08-21 09:51:43 +00:00
|
|
|
case ResizeTerminal:
|
|
|
|
var args argResizeTerminal
|
|
|
|
err = json.Unmarshal(data[1:], &args)
|
|
|
|
if err != nil {
|
|
|
|
log.Print("Malformed remote command")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-09-07 19:18:33 +00:00
|
|
|
rows := uint16(context.app.options.Height)
|
|
|
|
if rows == 0 {
|
|
|
|
rows = uint16(args.Rows)
|
|
|
|
}
|
|
|
|
|
|
|
|
columns := uint16(context.app.options.Width)
|
|
|
|
if columns == 0 {
|
|
|
|
columns = uint16(args.Columns)
|
|
|
|
}
|
|
|
|
|
2015-08-21 09:51:43 +00:00
|
|
|
window := struct {
|
|
|
|
row uint16
|
|
|
|
col uint16
|
|
|
|
x uint16
|
|
|
|
y uint16
|
|
|
|
}{
|
2016-09-07 19:18:33 +00:00
|
|
|
rows,
|
|
|
|
columns,
|
2015-08-21 09:51:43 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
}
|
|
|
|
syscall.Syscall(
|
|
|
|
syscall.SYS_IOCTL,
|
|
|
|
context.pty.Fd(),
|
|
|
|
syscall.TIOCSWINSZ,
|
|
|
|
uintptr(unsafe.Pointer(&window)),
|
|
|
|
)
|
|
|
|
|
|
|
|
default:
|
|
|
|
log.Print("Unknown message type")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|