wide/session/processes.go

314 lines
7.3 KiB
Go
Raw Normal View History

2019-05-18 20:20:47 +03:00
// Copyright (c) 2014-present, b3log.org
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package session
import (
2020-01-18 10:40:52 +03:00
"bytes"
2019-05-18 20:20:47 +03:00
"encoding/json"
"math/rand"
"net/http"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"
"sync"
"time"
2019-05-24 16:04:25 +03:00
2019-12-01 15:21:00 +03:00
"github.com/88250/gulu"
"github.com/88250/wide/conf"
"github.com/88250/wide/util"
2019-05-18 20:20:47 +03:00
)
// Type of process set.
type procs map[string][]*os.Process
// Processse of all users.
//
// <sid, []*os.Process>
var Processes = procs{}
// Exclusive lock.
var procMutex sync.Mutex
// RunHandler handles request of executing a binary file.
func RunHandler(w http.ResponseWriter, r *http.Request, channel map[string]*util.WSChannel) {
2019-05-24 16:04:25 +03:00
result := gulu.Ret.NewResult()
defer gulu.Ret.RetResult(w, r, result)
2019-05-18 20:20:47 +03:00
2022-08-09 04:43:46 +03:00
if conf.Wide.ReadOnly {
result.Code = -1
result.Msg = "readonly mode"
return
}
2019-05-18 20:20:47 +03:00
var args map[string]interface{}
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
logger.Error(err)
2019-05-24 16:52:17 +03:00
result.Code = -1
2019-05-18 20:20:47 +03:00
}
sid := args["sid"].(string)
wSession := WideSessions.Get(sid)
if nil == wSession {
2019-05-24 16:52:17 +03:00
result.Code = -1
2019-05-18 20:20:47 +03:00
}
filePath := args["executable"].(string)
randInt := rand.Int()
rid := strconv.Itoa(randInt)
var cmd *exec.Cmd
if conf.Docker {
fileName := filepath.Base(filePath)
cmd = exec.Command("docker", "run", "--rm", "--name", rid, "-v", filePath+":/"+fileName,
"--memory", "64M", "--cpus", "0.1",
conf.DockerImageGo, "/"+fileName)
2019-05-18 20:20:47 +03:00
} else {
cmd = exec.Command(filePath)
curDir := filepath.Dir(filePath)
cmd.Dir = curDir
}
2020-01-18 10:40:52 +03:00
outBuf := &bytes.Buffer{}
errBuf := &bytes.Buffer{}
cmd.Stdout = outBuf
cmd.Stderr = errBuf
2019-05-18 20:20:47 +03:00
if err := cmd.Start(); nil != err {
logger.Error(err)
2019-05-24 16:52:17 +03:00
result.Code = -1
2019-05-18 20:20:47 +03:00
}
wsChannel := channel[sid]
channelRet := map[string]interface{}{}
2019-05-24 16:52:17 +03:00
if 0 != result.Code {
2019-05-18 20:20:47 +03:00
channelRet["cmd"] = "run-done"
channelRet["output"] = ""
wsChannel.WriteJSON(&channelRet)
wsChannel.Refresh()
return
}
done := make(chan error)
go func() { done <- cmd.Wait() }()
channelRet["pid"] = cmd.Process.Pid
Processes.Add(wSession, cmd.Process)
2020-01-18 10:40:52 +03:00
shouldExitBuf := false
2019-05-18 20:20:47 +03:00
// push once for front-end to get the 'run' state and pid
if nil != wsChannel {
channelRet["cmd"] = "run"
channelRet["output"] = ""
if nil != wsChannel {
wsChannel.WriteJSON(&channelRet)
wsChannel.Refresh()
}
}
go func() {
2019-08-06 07:04:27 +03:00
defer gulu.Panic.Recover(nil)
2019-05-18 20:20:47 +03:00
logger.Debugf("User [%s, %s] is running [id=%s, file=%s]", wSession.UserId, sid, rid, filePath)
go func() {
2019-08-06 07:04:27 +03:00
defer gulu.Panic.Recover(nil)
2019-05-18 20:20:47 +03:00
for {
2020-01-18 10:40:52 +03:00
if shouldExitBuf {
2019-05-18 20:20:47 +03:00
break
}
2020-01-18 10:40:52 +03:00
if 1 > outBuf.Len() {
time.Sleep(7 * time.Millisecond)
continue
}
r, _, err := outBuf.ReadRune()
if nil != err {
time.Sleep(7 * time.Millisecond)
continue
}
2019-05-18 20:20:47 +03:00
oneRuneStr := string(r)
oneRuneStr = strings.Replace(oneRuneStr, "<", "&lt;", -1)
oneRuneStr = strings.Replace(oneRuneStr, ">", "&gt;", -1)
channelRet["cmd"] = "run"
channelRet["output"] = oneRuneStr
wsChannel := channel[sid]
if nil != wsChannel {
wsChannel.WriteJSON(&channelRet)
wsChannel.Refresh()
}
}
}()
for {
2020-01-18 10:40:52 +03:00
if shouldExitBuf {
2019-05-18 20:20:47 +03:00
break
}
2020-01-18 10:40:52 +03:00
if 1 > errBuf.Len() {
time.Sleep(7 * time.Millisecond)
continue
}
r, _, err := errBuf.ReadRune()
if nil != err {
time.Sleep(7 * time.Millisecond)
continue
}
2019-05-18 20:20:47 +03:00
oneRuneStr := string(r)
oneRuneStr = strings.Replace(oneRuneStr, "<", "&lt;", -1)
oneRuneStr = strings.Replace(oneRuneStr, ">", "&gt;", -1)
channelRet["cmd"] = "run"
channelRet["output"] = "<span class='stderr'>" + oneRuneStr + "</span>"
wsChannel := channel[sid]
if nil != wsChannel {
wsChannel.WriteJSON(&channelRet)
wsChannel.Refresh()
}
}
}()
after := time.After(5 * time.Second)
2019-05-18 20:25:41 +03:00
kill := false
2019-05-18 20:20:47 +03:00
select {
case <-after:
if conf.Docker {
killCmd := exec.Command("docker", "rm", "-f", rid)
if err := killCmd.Run(); nil != err {
logger.Errorf("executes [docker rm -f " + rid + "] failed [" + err.Error() + "], this will cause resource leaking")
}
} else {
cmd.Process.Kill()
}
2019-05-18 20:53:31 +03:00
channelRet["output"] = "\n<span class='stderr'>run program timeout in 5s</span>\n"
2019-05-18 20:25:41 +03:00
kill = true
2019-05-18 20:20:47 +03:00
case <-done:
channelRet["output"] = "\n<span class='stderr'>run program complete</span>\n"
}
2020-01-18 10:40:52 +03:00
shouldExitBuf = true
2019-05-18 20:20:47 +03:00
Processes.Remove(wSession, cmd.Process)
2019-05-18 20:25:41 +03:00
logger.Debugf("User [%s, %s] done running [id=%s, file=%s, kill=%v]", wSession.UserId, sid, rid, filePath, kill)
2019-05-18 20:20:47 +03:00
if nil != wsChannel {
2019-05-19 06:01:36 +03:00
channelRet["cmd"] = "run-done"
2019-05-18 20:20:47 +03:00
wsChannel.WriteJSON(&channelRet)
wsChannel.Refresh()
}
}
// StopHandler handles request of stopping a running process.
func StopHandler(w http.ResponseWriter, r *http.Request) {
2019-05-24 16:04:25 +03:00
result := gulu.Ret.NewResult()
defer gulu.Ret.RetResult(w, r, result)
2019-05-18 20:20:47 +03:00
var args map[string]interface{}
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
logger.Error(err)
2019-05-24 16:52:17 +03:00
result.Code = -1
2019-05-18 20:20:47 +03:00
return
}
sid := args["sid"].(string)
pid := int(args["pid"].(float64))
wSession := WideSessions.Get(sid)
if nil == wSession {
2019-05-24 16:52:17 +03:00
result.Code = -1
2019-05-18 20:20:47 +03:00
return
}
Processes.Kill(wSession, pid)
}
// Add adds the specified process to the user process set.
func (procs *procs) Add(wSession *WideSession, proc *os.Process) {
procMutex.Lock()
defer procMutex.Unlock()
sid := wSession.ID
userProcesses := (*procs)[sid]
userProcesses = append(userProcesses, proc)
(*procs)[sid] = userProcesses
// bind process with wide session
wSession.SetProcesses(userProcesses)
logger.Tracef("Session [%s] has [%d] processes", sid, len((*procs)[sid]))
}
// Remove removes the specified process from the user process set.
func (procs *procs) Remove(wSession *WideSession, proc *os.Process) {
procMutex.Lock()
defer procMutex.Unlock()
sid := wSession.ID
userProcesses := (*procs)[sid]
var newProcesses []*os.Process
for i, p := range userProcesses {
if p.Pid == proc.Pid {
newProcesses = append(userProcesses[:i], userProcesses[i+1:]...) // remove it
(*procs)[sid] = newProcesses
// bind process with wide session
wSession.SetProcesses(newProcesses)
logger.Tracef("Session [%s] has [%d] processes", sid, len((*procs)[sid]))
return
}
}
}
// Kill kills a process specified by the given pid.
func (procs *procs) Kill(wSession *WideSession, pid int) {
procMutex.Lock()
defer procMutex.Unlock()
sid := wSession.ID
userProcesses := (*procs)[sid]
for i, p := range userProcesses {
if p.Pid == pid {
if err := p.Kill(); nil != err {
logger.Errorf("Kill a process [pid=%d] of user [%s, %s] failed [error=%v]", pid, wSession.UserId, sid, err)
} else {
var newProcesses []*os.Process
newProcesses = append(userProcesses[:i], userProcesses[i+1:]...)
(*procs)[sid] = newProcesses
// bind process with wide session
wSession.SetProcesses(newProcesses)
logger.Debugf("Killed a process [pid=%d] of user [%s, %s]", pid, wSession.UserId, sid)
}
return
}
}
}