Unverified Commit 50e75f2d authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

Merge pull request #129 from jumpserver/dev_bugfix

[Bugfix] fix bugs and add net pprof debug handlers
parents 300902b7 5da78a49
...@@ -116,10 +116,20 @@ func (h *interactiveHandler) watchWinSizeChange() { ...@@ -116,10 +116,20 @@ func (h *interactiveHandler) watchWinSizeChange() {
} }
func (h *interactiveHandler) pauseWatchWinSize() { func (h *interactiveHandler) pauseWatchWinSize() {
select {
case <-h.sess.Sess.Context().Done():
return
default:
}
h.winWatchChan <- false h.winWatchChan <- false
} }
func (h *interactiveHandler) resumeWatchWinSize() { func (h *interactiveHandler) resumeWatchWinSize() {
select {
case <-h.sess.Sess.Context().Done():
return
default:
}
h.winWatchChan <- true h.winWatchChan <- true
} }
......
...@@ -16,10 +16,13 @@ type WrapperSession struct { ...@@ -16,10 +16,13 @@ type WrapperSession struct {
inWriter io.WriteCloser inWriter io.WriteCloser
outReader io.ReadCloser outReader io.ReadCloser
mux *sync.RWMutex mux *sync.RWMutex
closed chan struct{}
} }
func (w *WrapperSession) initial() { func (w *WrapperSession) initial() {
w.Uuid = uuid.NewV4().String() w.Uuid = uuid.NewV4().String()
w.closed = make(chan struct{})
w.initReadPip() w.initReadPip()
go w.readLoop() go w.readLoop()
} }
...@@ -38,11 +41,19 @@ func (w *WrapperSession) readLoop() { ...@@ -38,11 +41,19 @@ func (w *WrapperSession) readLoop() {
break break
} }
} }
w.mux.RLock()
_ = w.inWriter.Close() _ = w.inWriter.Close()
w.mux.RUnlock()
close(w.closed)
logger.Infof("Request %s: Read loop break", w.Uuid) logger.Infof("Request %s: Read loop break", w.Uuid)
} }
func (w *WrapperSession) Read(p []byte) (int, error) { func (w *WrapperSession) Read(p []byte) (int, error) {
select {
case <-w.closed:
return 0, io.EOF
default:
}
w.mux.RLock() w.mux.RLock()
defer w.mux.RUnlock() defer w.mux.RUnlock()
return w.outReader.Read(p) return w.outReader.Read(p)
......
...@@ -5,8 +5,11 @@ import ( ...@@ -5,8 +5,11 @@ import (
"net" "net"
"net/http" "net/http"
"path/filepath" "path/filepath"
"strings"
"time" "time"
"net/http/pprof"
"github.com/gorilla/mux" "github.com/gorilla/mux"
gorillaws "github.com/gorilla/websocket" gorillaws "github.com/gorilla/websocket"
"github.com/jumpserver/koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
...@@ -105,7 +108,9 @@ func StartHTTPServer() { ...@@ -105,7 +108,9 @@ func StartHTTPServer() {
//router.HandleFunc("/coco/elfinder/sftp/", AuthDecorator(sftpFinder)) //router.HandleFunc("/coco/elfinder/sftp/", AuthDecorator(sftpFinder))
//router.HandleFunc("/coco/elfinder/sftp/connector/{host}/", //router.HandleFunc("/coco/elfinder/sftp/connector/{host}/",
// AuthDecorator(sftpHostConnectorView)).Methods("GET", "POST") // AuthDecorator(sftpHostConnectorView)).Methods("GET", "POST")
if strings.ToUpper(conf.LogLevel) == "DEBUG" {
router.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index)
}
addr := net.JoinHostPort(conf.BindHost, conf.HTTPPort) addr := net.JoinHostPort(conf.BindHost, conf.HTTPPort)
logger.Info("Start HTTP server at ", addr) logger.Info("Start HTTP server at ", addr)
httpServer = &http.Server{Addr: addr, Handler: router} httpServer = &http.Server{Addr: addr, Handler: router}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment