Commit 2bb07f3c authored by Eric's avatar Eric

修复网域连接未释放问题

parent 8077bf91
...@@ -32,6 +32,7 @@ var ( ...@@ -32,6 +32,7 @@ var (
type SSHClient struct { type SSHClient struct {
client *gossh.Client client *gossh.Client
proxyConn gossh.Conn
username string username string
ref int ref int
...@@ -42,7 +43,7 @@ type SSHClient struct { ...@@ -42,7 +43,7 @@ type SSHClient struct {
} }
func (s *SSHClient) refCount() int { func (s *SSHClient) refCount() int {
if s.isClosed(){ if s.isClosed() {
return 0 return 0
} }
s.mu.RLock() s.mu.RLock()
...@@ -51,7 +52,7 @@ func (s *SSHClient) refCount() int { ...@@ -51,7 +52,7 @@ func (s *SSHClient) refCount() int {
} }
func (s *SSHClient) increaseRef() { func (s *SSHClient) increaseRef() {
if s.isClosed(){ if s.isClosed() {
return return
} }
s.mu.Lock() s.mu.Lock()
...@@ -60,7 +61,7 @@ func (s *SSHClient) increaseRef() { ...@@ -60,7 +61,7 @@ func (s *SSHClient) increaseRef() {
} }
func (s *SSHClient) decreaseRef() { func (s *SSHClient) decreaseRef() {
if s.isClosed(){ if s.isClosed() {
return return
} }
s.mu.Lock() s.mu.Lock()
...@@ -76,14 +77,18 @@ func (s *SSHClient) NewSession() (*gossh.Session, error) { ...@@ -76,14 +77,18 @@ func (s *SSHClient) NewSession() (*gossh.Session, error) {
} }
func (s *SSHClient) Close() error { func (s *SSHClient) Close() error {
s.mu.Lock()
defer s.mu.Unlock()
select { select {
case <-s.closed: case <-s.closed:
return nil return nil
default: default:
close(s.closed) close(s.closed)
} }
if s.proxyConn != nil {
_ = s.proxyConn.Close()
}
s.mu.Lock()
s.ref = 0
s.mu.Unlock()
return s.client.Close() return s.client.Close()
} }
...@@ -256,12 +261,11 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du ...@@ -256,12 +261,11 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
return nil, err return nil, err
} }
closed := make(chan struct{}) closed := make(chan struct{})
client = &SSHClient{ client = &SSHClient{client: conn, proxyConn: sshConfig.proxyConn,
ref: 1,
client: conn,
username: systemUser.Username, username: systemUser.Username,
mu: new(sync.RWMutex), mu: new(sync.RWMutex),
closed: closed,} ref: 1,
closed: closed}
go KeepAlive(client, closed, 60) go KeepAlive(client, closed, 60)
return client, nil return client, nil
} }
...@@ -323,7 +327,7 @@ func RecycleClient(client *SSHClient) { ...@@ -323,7 +327,7 @@ func RecycleClient(client *SSHClient) {
} else { } else {
logger.Infof("Success to close SSH client %p", client) logger.Infof("Success to close SSH client %p", client)
} }
}else { } else {
logger.Debugf("SSH client %p ref -1. current ref: %d", client, client.refCount()) logger.Debugf("SSH client %p ref -1. current ref: %d", client, client.refCount())
} }
} }
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