Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
5da78a49
Commit
5da78a49
authored
Oct 30, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] fix bugs and add net pprof debug handlers
parent
300902b7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
session.go
pkg/handler/session.go
+10
-0
wrappersession.go
pkg/handler/wrappersession.go
+11
-0
server.go
pkg/httpd/server.go
+6
-1
No files found.
pkg/handler/session.go
View file @
5da78a49
...
...
@@ -116,10 +116,20 @@ func (h *interactiveHandler) watchWinSizeChange() {
}
func
(
h
*
interactiveHandler
)
pauseWatchWinSize
()
{
select
{
case
<-
h
.
sess
.
Sess
.
Context
()
.
Done
()
:
return
default
:
}
h
.
winWatchChan
<-
false
}
func
(
h
*
interactiveHandler
)
resumeWatchWinSize
()
{
select
{
case
<-
h
.
sess
.
Sess
.
Context
()
.
Done
()
:
return
default
:
}
h
.
winWatchChan
<-
true
}
...
...
pkg/handler/wrappersession.go
View file @
5da78a49
...
...
@@ -16,10 +16,13 @@ type WrapperSession struct {
inWriter
io
.
WriteCloser
outReader
io
.
ReadCloser
mux
*
sync
.
RWMutex
closed
chan
struct
{}
}
func
(
w
*
WrapperSession
)
initial
()
{
w
.
Uuid
=
uuid
.
NewV4
()
.
String
()
w
.
closed
=
make
(
chan
struct
{})
w
.
initReadPip
()
go
w
.
readLoop
()
}
...
...
@@ -38,11 +41,19 @@ func (w *WrapperSession) readLoop() {
break
}
}
w
.
mux
.
RLock
()
_
=
w
.
inWriter
.
Close
()
w
.
mux
.
RUnlock
()
close
(
w
.
closed
)
logger
.
Infof
(
"Request %s: Read loop break"
,
w
.
Uuid
)
}
func
(
w
*
WrapperSession
)
Read
(
p
[]
byte
)
(
int
,
error
)
{
select
{
case
<-
w
.
closed
:
return
0
,
io
.
EOF
default
:
}
w
.
mux
.
RLock
()
defer
w
.
mux
.
RUnlock
()
return
w
.
outReader
.
Read
(
p
)
...
...
pkg/httpd/server.go
View file @
5da78a49
...
...
@@ -5,8 +5,11 @@ import (
"net"
"net/http"
"path/filepath"
"strings"
"time"
"net/http/pprof"
"github.com/gorilla/mux"
gorillaws
"github.com/gorilla/websocket"
"github.com/jumpserver/koko/pkg/config"
...
...
@@ -105,7 +108,9 @@ func StartHTTPServer() {
//router.HandleFunc("/coco/elfinder/sftp/", AuthDecorator(sftpFinder))
//router.HandleFunc("/coco/elfinder/sftp/connector/{host}/",
// 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
)
logger
.
Info
(
"Start HTTP server at "
,
addr
)
httpServer
=
&
http
.
Server
{
Addr
:
addr
,
Handler
:
router
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment