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
fddf3bed
Commit
fddf3bed
authored
Sep 04, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改连接复用
parent
a40f2585
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
21 deletions
+19
-21
switch.go
pkg/proxy/switch.go
+3
-3
init.go
pkg/service/init.go
+1
-0
connmanager.go
pkg/srvconn/connmanager.go
+14
-18
sftpconn.go
pkg/srvconn/sftpconn.go
+1
-0
No files found.
pkg/proxy/switch.go
View file @
fddf3bed
...
...
@@ -201,12 +201,12 @@ func LoopRead(read io.Reader, inChan chan<- []byte) {
for
{
buf
:=
make
([]
byte
,
1024
)
nr
,
err
:=
read
.
Read
(
buf
)
if
err
!=
nil
{
break
}
if
nr
>
0
{
inChan
<-
buf
[
:
nr
]
}
if
err
!=
nil
{
break
}
}
close
(
inChan
)
}
pkg/service/init.go
View file @
fddf3bed
...
...
@@ -102,6 +102,7 @@ func KeepSyncConfigWithServer(ctx context.Context) {
select
{
case
<-
ctx
.
Done
()
:
logger
.
Info
(
"Sync config with server exit."
)
return
case
<-
ticker
.
C
:
err
:=
LoadConfigFromServer
()
if
err
!=
nil
{
...
...
pkg/srvconn/connmanager.go
View file @
fddf3bed
...
...
@@ -56,6 +56,9 @@ func (s *SSHClient) increaseRef() {
func
(
s
*
SSHClient
)
decreaseRef
()
{
s
.
mu
.
Lock
()
defer
s
.
mu
.
Unlock
()
if
s
.
ref
==
0
{
return
}
s
.
ref
--
}
...
...
@@ -66,9 +69,6 @@ func (s *SSHClient) NewSession() (*gossh.Session, error) {
func
(
s
*
SSHClient
)
Close
()
error
{
s
.
mu
.
Lock
()
defer
s
.
mu
.
Unlock
()
if
s
.
ref
>
1
{
return
nil
}
select
{
case
<-
s
.
closed
:
return
nil
...
...
@@ -91,7 +91,6 @@ func KeepAlive(c *gossh.Client, closed <-chan struct{}, keepInterval time.Durati
_
,
_
,
err
:=
c
.
SendRequest
(
"keepalive@jumpserver.org"
,
true
,
nil
)
if
err
!=
nil
{
logger
.
Errorf
(
"SSH client %p keep alive err: "
,
c
,
err
.
Error
())
return
}
}
...
...
@@ -238,10 +237,10 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
closed
:=
make
(
chan
struct
{})
go
KeepAlive
(
conn
,
closed
,
60
)
return
&
SSHClient
{
client
:
conn
,
client
:
conn
,
username
:
systemUser
.
Username
,
mu
:
new
(
sync
.
RWMutex
),
closed
:
closed
,},
nil
mu
:
new
(
sync
.
RWMutex
),
closed
:
closed
,},
nil
}
func
NewClient
(
user
*
model
.
User
,
asset
*
model
.
Asset
,
systemUser
*
model
.
SystemUser
,
timeout
time
.
Duration
,
...
...
@@ -255,8 +254,8 @@ func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUse
if
systemUser
.
Username
==
""
{
systemUser
.
Username
=
client
.
username
}
logger
.
Infof
(
"Reuse connection: %s->%s@%s ref: %d"
,
user
.
Username
,
client
.
username
,
asset
.
IP
,
client
.
refCount
())
logger
.
Infof
(
"Reuse connection: %s->%s@%s
. SSH client %p current
ref: %d"
,
user
.
Username
,
client
.
username
,
asset
.
IP
,
client
.
client
,
client
.
refCount
())
return
client
,
nil
}
}
...
...
@@ -287,24 +286,21 @@ func setClientCache(key string, client *SSHClient) {
}
func
RecycleClient
(
client
*
SSHClient
)
{
// 0, 1: delete Cache, close client.
// default: client ref decrease.
// decrease client ref; if ref==0, delete Cache, close client.
if
client
==
nil
{
return
}
switch
client
.
refCount
()
{
case
0
,
1
:
client
.
decreaseRef
()
logger
.
Debugf
(
"SSH client %p ref -1. current ref: %d"
,
client
.
client
,
client
.
refCount
())
if
client
.
refCount
()
==
0
{
clientLock
.
Lock
()
delete
(
sshClients
,
client
.
key
)
clientLock
.
Unlock
()
err
:=
client
.
Close
()
if
err
!=
nil
{
logger
.
Errorf
(
"Failed to close
client %p err: %s "
,
client
.
client
,
err
.
Error
())
logger
.
Errorf
(
"Failed to close
SSH client %p err: %s "
,
client
.
client
,
err
.
Error
())
}
else
{
logger
.
Debugf
(
"Success to close
client %p"
,
client
.
client
)
logger
.
Debugf
(
"Success to close
SSH client %p"
,
client
.
client
)
}
default
:
client
.
decreaseRef
()
logger
.
Debugf
(
"Reuse client %p Current ref: %d"
,
client
.
client
,
client
.
refCount
())
}
}
pkg/srvconn/sftpconn.go
View file @
fddf3bed
...
...
@@ -595,6 +595,7 @@ func (u *UserSftp) GetSftpClient(asset *model.Asset, sysUser *model.SystemUser)
}
sftpClient
,
err
:=
sftp
.
NewClient
(
sshClient
.
client
)
if
err
!=
nil
{
RecycleClient
(
sshClient
)
return
}
...
...
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