Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
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
coco
Commits
e2c18bb8
Unverified
Commit
e2c18bb8
authored
May 30, 2019
by
BaiJiangJie
Committed by
GitHub
May 30, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #218 from jumpserver/dev
Dev
parents
1b7446ca
a38b9c1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
19 deletions
+36
-19
connection.py
coco/connection.py
+35
-18
proxy.py
coco/proxy.py
+1
-1
No files found.
coco/connection.py
View file @
e2c18bb8
...
...
@@ -39,6 +39,9 @@ class SSHConnection:
connection
=
cls
.
connections
.
get
(
key
)
if
not
connection
:
return
None
if
not
connection
.
is_active
:
cls
.
connections
.
pop
(
key
,
None
)
return
None
connection
.
ref
+=
1
return
connection
...
...
@@ -59,7 +62,9 @@ class SSHConnection:
)
return
connection
connection
=
cls
(
user
,
asset
,
system_user
)
cls
.
set_connection_to_cache
(
connection
)
connection
.
connect
()
if
connection
.
is_active
:
cls
.
set_connection_to_cache
(
connection
)
return
connection
@classmethod
...
...
@@ -72,6 +77,7 @@ class SSHConnection:
self
.
asset
=
asset
self
.
system_user
=
system_user
self
.
client
=
None
self
.
transport
=
None
self
.
sock
=
None
self
.
error
=
""
self
.
ref
=
1
...
...
@@ -86,7 +92,7 @@ class SSHConnection:
self
.
system_user
.
password
=
password
self
.
system_user
.
private_key
=
private_key
def
get_ssh_clien
t
(
self
):
def
connec
t
(
self
):
ssh
=
paramiko
.
SSHClient
()
ssh
.
set_missing_host_key_policy
(
paramiko
.
AutoAddPolicy
())
sock
=
None
...
...
@@ -122,6 +128,7 @@ class SSHConnection:
)
transport
=
ssh
.
get_transport
()
transport
.
set_keepalive
(
20
)
self
.
transport
=
transport
except
Exception
as
e
:
password_short
=
"None"
key_fingerprint
=
"None"
...
...
@@ -144,37 +151,44 @@ class SSHConnection:
self
.
sock
=
ssh
self
.
error
=
error
def
reconnect_if_need
(
self
):
if
not
self
.
is_active
:
self
.
connect
()
if
self
.
is_active
:
return
True
return
False
def
get_transport
(
self
):
if
not
self
.
client
:
self
.
get_ssh_client
()
if
not
self
.
client
:
return
self
.
client
.
get_transport
()
else
:
return
None
if
self
.
reconnect_if_need
():
return
self
.
transport
return
None
def
get_channel
(
self
,
term
=
"xterm"
,
width
=
80
,
height
=
24
):
if
not
self
.
client
:
self
.
get_ssh_client
()
if
self
.
client
:
if
self
.
reconnect_if_need
():
chan
=
self
.
client
.
invoke_shell
(
term
,
width
=
width
,
height
=
height
)
return
chan
else
:
return
None
def
get_sftp
(
self
):
if
not
self
.
client
:
self
.
get_ssh_client
()
if
self
.
client
:
if
self
.
reconnect_if_need
():
return
self
.
client
.
open_sftp
()
else
:
return
None
@property
def
is_active
(
self
):
return
self
.
transport
and
self
.
transport
.
is_active
()
def
close
(
self
):
if
self
.
ref
>
1
:
self
.
ref
-=
1
logger
.
debug
(
"Connection ref -1: {}->{}@{}"
.
format
(
self
.
user
.
username
,
self
.
asset
.
hostname
,
self
.
system_user
.
username
)
msg
=
"Connection ref -1: {}->{}@{}. {}"
.
format
(
self
.
user
.
username
,
self
.
asset
.
hostname
,
self
.
system_user
.
username
,
self
.
ref
)
logger
.
debug
(
msg
)
return
self
.
__class__
.
remove_ssh_connection
(
self
)
try
:
...
...
@@ -183,9 +197,12 @@ class SSHConnection:
self
.
sock
.
close
()
except
Exception
as
e
:
logger
.
error
(
"Close connection error: "
,
e
)
logger
.
debug
(
"Close connection: {}->{}@{}"
.
format
(
self
.
user
.
username
,
self
.
asset
.
ip
,
self
.
system_user
.
username
)
msg
=
"Close connection: {}->{}@{}. Total connections live: {}"
.
format
(
self
.
user
.
username
,
self
.
asset
.
ip
,
self
.
system_user
.
username
,
len
(
self
.
connections
)
)
logger
.
debug
(
msg
)
@staticmethod
def
get_proxy_sock_v2
(
asset
):
...
...
coco/proxy.py
View file @
e2c18bb8
...
...
@@ -148,7 +148,7 @@ class ProxyServer:
conn
=
SSHConnection
.
new_connection_from_cache
(
self
.
client
.
user
,
self
.
asset
,
self
.
system_user
)
if
not
conn
:
if
not
conn
or
not
conn
.
is_active
:
return
None
else
:
conn
=
SSHConnection
.
new_connection
(
...
...
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