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
cde63548
Commit
cde63548
authored
Jun 04, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改一些变量
parent
f7cf431a
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
78 additions
and
78 deletions
+78
-78
pagination.go
pkg/handler/pagination.go
+1
-1
session.go
pkg/handler/session.go
+3
-3
sftp.go
pkg/handler/sftp.go
+2
-2
connection.go
pkg/httpd/connection.go
+3
-1
handler.go
pkg/httpd/handler.go
+12
-12
server.go
pkg/httpd/server.go
+5
-6
assets.go
pkg/model/assets.go
+10
-10
session.go
pkg/model/session.go
+2
-2
terminal.go
pkg/model/terminal.go
+2
-2
users.go
pkg/model/users.go
+3
-3
proxy.go
pkg/proxy/proxy.go
+3
-3
recorder.go
pkg/proxy/recorder.go
+3
-3
sessmanager.go
pkg/proxy/sessmanager.go
+6
-6
switch.go
pkg/proxy/switch.go
+10
-10
init.go
pkg/service/init.go
+0
-1
perms.go
pkg/service/perms.go
+6
-6
connmanager.go
pkg/srvconn/connmanager.go
+4
-4
telnetconn.go
pkg/srvconn/telnetconn.go
+3
-3
No files found.
pkg/handler/pagination.go
View file @
cde63548
...
@@ -137,7 +137,7 @@ func (p *AssetPagination) displayPageAssets() {
...
@@ -137,7 +137,7 @@ func (p *AssetPagination) displayPageAssets() {
row
:=
make
(
map
[
string
]
string
)
row
:=
make
(
map
[
string
]
string
)
row
[
"ID"
]
=
strconv
.
Itoa
(
i
+
1
)
row
[
"ID"
]
=
strconv
.
Itoa
(
i
+
1
)
row
[
"hostname"
]
=
j
.
Hostname
row
[
"hostname"
]
=
j
.
Hostname
row
[
"IP"
]
=
j
.
I
p
row
[
"IP"
]
=
j
.
I
P
systemUser
:=
selectHighestPrioritySystemUsers
(
j
.
SystemUsers
)
systemUser
:=
selectHighestPrioritySystemUsers
(
j
.
SystemUsers
)
names
:=
make
([]
string
,
len
(
systemUser
))
names
:=
make
([]
string
,
len
(
systemUser
))
...
...
pkg/handler/session.go
View file @
cde63548
...
@@ -339,7 +339,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
...
@@ -339,7 +339,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
key
=
strings
.
ToLower
(
key
)
key
=
strings
.
ToLower
(
key
)
for
_
,
assetValue
:=
range
searchData
{
for
_
,
assetValue
:=
range
searchData
{
contents
:=
[]
string
{
strings
.
ToLower
(
assetValue
.
Hostname
),
contents
:=
[]
string
{
strings
.
ToLower
(
assetValue
.
Hostname
),
strings
.
ToLower
(
assetValue
.
I
p
),
strings
.
ToLower
(
assetValue
.
Comment
)}
strings
.
ToLower
(
assetValue
.
I
P
),
strings
.
ToLower
(
assetValue
.
Comment
)}
if
isSubstring
(
contents
,
key
)
{
if
isSubstring
(
contents
,
key
)
{
assets
=
append
(
assets
,
assetValue
)
assets
=
append
(
assets
,
assetValue
)
}
}
...
@@ -347,7 +347,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
...
@@ -347,7 +347,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
// assetsData, _ := Cached.Load(h.user.ID)
// assetsData, _ := Cached.Load(h.user.ID)
// for _, assetValue := range assetsData.([]model.Asset) {
// for _, assetValue := range assetsData.([]model.Asset) {
// if isSubstring([]string{assetValue.I
p
, assetValue.Hostname, assetValue.Comment}, key) {
// if isSubstring([]string{assetValue.I
P
, assetValue.Hostname, assetValue.Comment}, key) {
// assets = append(assets, assetValue)
// assets = append(assets, assetValue)
// }
// }
// }
// }
...
@@ -462,7 +462,7 @@ func selectHighestPrioritySystemUsers(systemUsers []model.SystemUser) []model.Sy
...
@@ -462,7 +462,7 @@ func selectHighestPrioritySystemUsers(systemUsers []model.SystemUser) []model.Sy
// sshConn := userhome.NewSSHConn(i.sess)
// sshConn := userhome.NewSSHConn(i.sess)
// serverAuth := transport.ServerAuth{
// serverAuth := transport.ServerAuth{
// SessionID: uuid.NewV4().String(),
// SessionID: uuid.NewV4().String(),
// IP: asset.I
p
,
// IP: asset.I
P
,
// port: asset.port,
// port: asset.port,
// Username: systemUser.Username,
// Username: systemUser.Username,
// password: systemUser.password,
// password: systemUser.password,
...
...
pkg/handler/sftp.go
View file @
cde63548
...
@@ -224,8 +224,8 @@ func (fs *userSftpRequests) Fileread(r *sftp.Request) (io.ReaderAt, error) {
...
@@ -224,8 +224,8 @@ func (fs *userSftpRequests) Fileread(r *sftp.Request) (io.ReaderAt, error) {
func
(
fs
*
userSftpRequests
)
GetSftpClient
(
asset
*
model
.
Asset
,
sysUser
*
model
.
SystemUser
)
(
*
sftp
.
Client
,
error
)
{
func
(
fs
*
userSftpRequests
)
GetSftpClient
(
asset
*
model
.
Asset
,
sysUser
*
model
.
SystemUser
)
(
*
sftp
.
Client
,
error
)
{
logger
.
Debug
(
"Get Sftp Client"
)
logger
.
Debug
(
"Get Sftp Client"
)
info
:=
service
.
GetSystemUserAssetAuthInfo
(
sysUser
.
I
d
,
asset
.
Id
)
info
:=
service
.
GetSystemUserAssetAuthInfo
(
sysUser
.
I
D
,
asset
.
ID
)
return
CreateSFTPConn
(
sysUser
.
Username
,
info
.
Password
,
info
.
PrivateKey
,
asset
.
I
p
,
strconv
.
Itoa
(
asset
.
Port
))
return
CreateSFTPConn
(
sysUser
.
Username
,
info
.
Password
,
info
.
PrivateKey
,
asset
.
I
P
,
strconv
.
Itoa
(
asset
.
Port
))
}
}
type
HostNameDir
struct
{
type
HostNameDir
struct
{
...
...
pkg/httpd/connection.go
View file @
cde63548
package
httpd
package
httpd
import
(
import
(
"github.com/googollee/go-socket.io"
"sync"
"sync"
"github.com/gliderlabs/ssh"
"github.com/gliderlabs/ssh"
socketio
"github.com/googollee/go-socket.io"
"cocogo/pkg/model"
"cocogo/pkg/model"
)
)
var
conns
=
&
connections
{
container
:
make
(
map
[
string
]
*
WebConn
),
mu
:
new
(
sync
.
RWMutex
)}
type
connections
struct
{
type
connections
struct
{
container
map
[
string
]
*
WebConn
container
map
[
string
]
*
WebConn
mu
*
sync
.
RWMutex
mu
*
sync
.
RWMutex
...
...
pkg/httpd/handler.go
View file @
cde63548
...
@@ -80,10 +80,10 @@ func OnErrorHandler(e error) {
...
@@ -80,10 +80,10 @@ func OnErrorHandler(e error) {
// OnHostHandler 当用户连接Host时触发
// OnHostHandler 当用户连接Host时触发
func
OnHostHandler
(
s
socketio
.
Conn
,
message
HostMsg
)
{
func
OnHostHandler
(
s
socketio
.
Conn
,
message
HostMsg
)
{
// secret uuid string
// secret uuid string
logger
.
Debug
(
"On
Hos
t trigger"
)
logger
.
Debug
(
"On
host even
t trigger"
)
win
:=
ssh
.
Window
{
Height
:
24
,
Width
:
80
}
win
:=
ssh
.
Window
{
Height
:
24
,
Width
:
80
}
assetID
:=
message
.
Uuid
assetID
:=
message
.
Uuid
systemUserI
d
:=
message
.
UserID
systemUserI
D
:=
message
.
UserID
secret
:=
message
.
Secret
secret
:=
message
.
Secret
width
,
height
:=
message
.
Size
[
0
],
message
.
Size
[
1
]
width
,
height
:=
message
.
Size
[
0
],
message
.
Size
[
1
]
if
width
!=
0
{
if
width
!=
0
{
...
@@ -97,9 +97,9 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
...
@@ -97,9 +97,9 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
s
.
Emit
(
"room"
,
emitMsg
)
s
.
Emit
(
"room"
,
emitMsg
)
logger
.
Debug
(
"Asset id: "
,
assetID
)
logger
.
Debug
(
"Asset id: "
,
assetID
)
asset
:=
service
.
GetAsset
(
assetID
)
asset
:=
service
.
GetAsset
(
assetID
)
systemUser
:=
service
.
GetSystemUser
(
systemUserI
d
)
systemUser
:=
service
.
GetSystemUser
(
systemUserI
D
)
if
asset
.
I
d
==
""
||
systemUser
.
Id
==
""
{
if
asset
.
I
D
==
""
||
systemUser
.
ID
==
""
{
return
return
}
}
...
@@ -123,7 +123,7 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
...
@@ -123,7 +123,7 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
// OnTokenHandler 当使用token连接时触发
// OnTokenHandler 当使用token连接时触发
func
OnTokenHandler
(
s
socketio
.
Conn
,
message
TokenMsg
)
{
func
OnTokenHandler
(
s
socketio
.
Conn
,
message
TokenMsg
)
{
logger
.
Debug
(
"On
Token
trigger"
)
logger
.
Debug
(
"On
token event
trigger"
)
win
:=
ssh
.
Window
{
Height
:
24
,
Width
:
80
}
win
:=
ssh
.
Window
{
Height
:
24
,
Width
:
80
}
token
:=
message
.
Token
token
:=
message
.
Token
secret
:=
message
.
Secret
secret
:=
message
.
Secret
...
@@ -146,18 +146,18 @@ func OnTokenHandler(s socketio.Conn, message TokenMsg) {
...
@@ -146,18 +146,18 @@ func OnTokenHandler(s socketio.Conn, message TokenMsg) {
s
.
Emit
(
"disconnect"
)
s
.
Emit
(
"disconnect"
)
}
}
tokenUser
:=
service
.
GetTokenAsset
(
token
)
tokenUser
:=
service
.
GetTokenAsset
(
token
)
if
tokenUser
.
UserI
d
==
""
{
if
tokenUser
.
UserI
D
==
""
{
msg
:=
"Token info is none, maybe token expired"
msg
:=
"Token info is none, maybe token expired"
dataMsg
:=
EmitDataMsg
{
Data
:
msg
,
Room
:
clientID
}
dataMsg
:=
EmitDataMsg
{
Data
:
msg
,
Room
:
clientID
}
s
.
Emit
(
"data"
,
dataMsg
)
s
.
Emit
(
"data"
,
dataMsg
)
s
.
Emit
(
"disconnect"
)
s
.
Emit
(
"disconnect"
)
}
}
currentUser
:=
service
.
GetUserDetail
(
tokenUser
.
UserI
d
)
currentUser
:=
service
.
GetUserDetail
(
tokenUser
.
UserI
D
)
asset
:=
service
.
GetAsset
(
tokenUser
.
AssetI
d
)
asset
:=
service
.
GetAsset
(
tokenUser
.
AssetI
D
)
systemUser
:=
service
.
GetSystemUser
(
tokenUser
.
SystemUserI
d
)
systemUser
:=
service
.
GetSystemUser
(
tokenUser
.
SystemUserI
D
)
if
asset
.
I
d
==
""
||
systemUser
.
Id
==
""
{
if
asset
.
I
D
==
""
||
systemUser
.
ID
==
""
{
return
return
}
}
...
@@ -201,7 +201,7 @@ func OnResizeHandler(s socketio.Conn, message ResizeMsg) {
...
@@ -201,7 +201,7 @@ func OnResizeHandler(s socketio.Conn, message ResizeMsg) {
// OnLogoutHandler 用户登出一个会话时触发
// OnLogoutHandler 用户登出一个会话时触发
func
OnLogoutHandler
(
s
socketio
.
Conn
,
message
string
)
{
func
OnLogoutHandler
(
s
socketio
.
Conn
,
message
string
)
{
logger
.
Debug
(
"On
Logou
t trigger"
)
logger
.
Debug
(
"On
logout even
t trigger"
)
conn
:=
conns
.
GetWebConn
(
s
.
ID
())
conn
:=
conns
.
GetWebConn
(
s
.
ID
())
if
conn
==
nil
{
if
conn
==
nil
{
logger
.
Error
(
"No conn found"
)
logger
.
Error
(
"No conn found"
)
...
@@ -217,7 +217,7 @@ func OnLogoutHandler(s socketio.Conn, message string) {
...
@@ -217,7 +217,7 @@ func OnLogoutHandler(s socketio.Conn, message string) {
// OnDisconnect websocket断开后触发
// OnDisconnect websocket断开后触发
func
OnDisconnect
(
s
socketio
.
Conn
,
msg
string
)
{
func
OnDisconnect
(
s
socketio
.
Conn
,
msg
string
)
{
logger
.
Debug
(
"On
Disconnec
t trigger"
)
logger
.
Debug
(
"On
disconnect even
t trigger"
)
conn
:=
conns
.
GetWebConn
(
s
.
ID
())
conn
:=
conns
.
GetWebConn
(
s
.
ID
())
conn
.
Close
()
conn
.
Close
()
}
}
pkg/httpd/server.go
View file @
cde63548
package
httpd
package
httpd
import
(
import
(
"net/http"
"sync"
"github.com/googollee/go-socket.io"
"github.com/googollee/go-socket.io"
"net"
"net/http"
"cocogo/pkg/config"
"cocogo/pkg/config"
"cocogo/pkg/logger"
"cocogo/pkg/logger"
...
@@ -12,7 +11,6 @@ import (
...
@@ -12,7 +11,6 @@ import (
var
(
var
(
httpServer
*
http
.
Server
httpServer
*
http
.
Server
conns
=
&
connections
{
container
:
make
(
map
[
string
]
*
WebConn
),
mu
:
new
(
sync
.
RWMutex
)}
)
)
func
StartHTTPServer
()
{
func
StartHTTPServer
()
{
...
@@ -34,7 +32,8 @@ func StartHTTPServer() {
...
@@ -34,7 +32,8 @@ func StartHTTPServer() {
defer
server
.
Close
()
defer
server
.
Close
()
http
.
Handle
(
"/socket.io/"
,
server
)
http
.
Handle
(
"/socket.io/"
,
server
)
logger
.
Debug
(
"start HTTP Serving "
,
conf
.
HTTPPort
)
addr
:=
net
.
JoinHostPort
(
conf
.
BindHost
,
conf
.
HTTPPort
)
httpServer
=
&
http
.
Server
{
Addr
:
conf
.
BindHost
+
":"
+
conf
.
HTTPPort
,
Handler
:
nil
}
logger
.
Debug
(
"Start HTTP server at "
,
addr
)
httpServer
=
&
http
.
Server
{
Addr
:
addr
,
Handler
:
nil
}
logger
.
Fatal
(
httpServer
.
ListenAndServe
())
logger
.
Fatal
(
httpServer
.
ListenAndServe
())
}
}
pkg/model/assets.go
View file @
cde63548
...
@@ -17,7 +17,7 @@ func (a AssetList) SortBy(tp string) AssetList {
...
@@ -17,7 +17,7 @@ func (a AssetList) SortBy(tp string) AssetList {
case
"ip"
:
case
"ip"
:
sorter
:=
&
assetSorter
{
sorter
:=
&
assetSorter
{
data
:
sortedAssets
,
data
:
sortedAssets
,
sortBy
:
assetSort
b
yIP
,
sortBy
:
assetSort
B
yIP
,
}
}
sort
.
Sort
(
sorter
)
sort
.
Sort
(
sorter
)
default
:
default
:
...
@@ -46,9 +46,9 @@ func (s *assetSorter) Less(i, j int) bool {
...
@@ -46,9 +46,9 @@ func (s *assetSorter) Less(i, j int) bool {
return
s
.
sortBy
(
&
s
.
data
[
i
],
&
s
.
data
[
j
])
return
s
.
sortBy
(
&
s
.
data
[
i
],
&
s
.
data
[
j
])
}
}
func
assetSort
b
yIP
(
asset1
,
asset2
*
Asset
)
bool
{
func
assetSort
B
yIP
(
asset1
,
asset2
*
Asset
)
bool
{
iIPs
:=
strings
.
Split
(
asset1
.
I
p
,
"."
)
iIPs
:=
strings
.
Split
(
asset1
.
I
P
,
"."
)
jIPs
:=
strings
.
Split
(
asset2
.
I
p
,
"."
)
jIPs
:=
strings
.
Split
(
asset2
.
I
P
,
"."
)
for
i
:=
0
;
i
<
len
(
iIPs
);
i
++
{
for
i
:=
0
;
i
<
len
(
iIPs
);
i
++
{
if
i
>=
len
(
jIPs
)
{
if
i
>=
len
(
jIPs
)
{
return
false
return
false
...
@@ -75,9 +75,9 @@ func assetSortByHostName(asset1, asset2 *Asset) bool {
...
@@ -75,9 +75,9 @@ func assetSortByHostName(asset1, asset2 *Asset) bool {
type
NodeList
[]
Node
type
NodeList
[]
Node
type
Asset
struct
{
type
Asset
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Hostname
string
`json:"hostname"`
Hostname
string
`json:"hostname"`
I
p
string
`json:"ip"`
I
P
string
`json:"ip"`
Port
int
`json:"port"`
Port
int
`json:"port"`
SystemUsers
[]
SystemUser
`json:"system_users_granted"`
SystemUsers
[]
SystemUser
`json:"system_users_granted"`
IsActive
bool
`json:"is_active"`
IsActive
bool
`json:"is_active"`
...
@@ -109,14 +109,14 @@ type Domain struct {
...
@@ -109,14 +109,14 @@ type Domain struct {
}
}
type
Node
struct
{
type
Node
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Key
string
`json:"key"`
Key
string
`json:"key"`
Name
string
`json:"name"`
Name
string
`json:"name"`
Value
string
`json:"value"`
Value
string
`json:"value"`
Parent
string
`json:"parent"`
Parent
string
`json:"parent"`
AssetsGranted
[]
Asset
`json:"assets_granted"`
AssetsGranted
[]
Asset
`json:"assets_granted"`
AssetsAmount
int
`json:"assets_amount"`
AssetsAmount
int
`json:"assets_amount"`
OrgI
d
string
`json:"org_id"`
OrgI
D
string
`json:"org_id"`
}
}
type
nodeSortBy
func
(
node1
,
node2
*
Node
)
bool
type
nodeSortBy
func
(
node1
,
node2
*
Node
)
bool
...
@@ -179,7 +179,7 @@ func SortAssetNodesByKey(assetNodes []Node) {
...
@@ -179,7 +179,7 @@ func SortAssetNodesByKey(assetNodes []Node) {
const
LoginModeManual
=
"manual"
const
LoginModeManual
=
"manual"
type
SystemUser
struct
{
type
SystemUser
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Name
string
`json:"name"`
Name
string
`json:"name"`
Username
string
`json:"username"`
Username
string
`json:"username"`
Priority
int
`json:"priority"`
Priority
int
`json:"priority"`
...
@@ -191,7 +191,7 @@ type SystemUser struct {
...
@@ -191,7 +191,7 @@ type SystemUser struct {
}
}
type
SystemUserAuthInfo
struct
{
type
SystemUserAuthInfo
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Name
string
`json:"name"`
Name
string
`json:"name"`
UserName
string
`json:"username"`
UserName
string
`json:"username"`
Protocol
string
`json:"protocol"`
Protocol
string
`json:"protocol"`
...
...
pkg/model/session.go
View file @
cde63548
package
model
package
model
type
Command
struct
{
type
Command
struct
{
SessionI
d
string
`json:"session"`
SessionI
D
string
`json:"session"`
OrgI
d
string
`json:"org_id"`
OrgI
D
string
`json:"org_id"`
Input
string
`json:"input"`
Input
string
`json:"input"`
Output
string
`json:"output"`
Output
string
`json:"output"`
User
string
`json:"user"`
User
string
`json:"user"`
...
...
pkg/model/terminal.go
View file @
cde63548
...
@@ -4,7 +4,7 @@ type Terminal struct {
...
@@ -4,7 +4,7 @@ type Terminal struct {
Name
string
`json:"name"`
Name
string
`json:"name"`
Comment
string
`json:"comment"`
Comment
string
`json:"comment"`
ServiceAccount
struct
{
ServiceAccount
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Name
string
`json:"name"`
Name
string
`json:"name"`
AccessKey
struct
{
AccessKey
struct
{
ID
string
`json:"id"`
ID
string
`json:"id"`
...
@@ -14,7 +14,7 @@ type Terminal struct {
...
@@ -14,7 +14,7 @@ type Terminal struct {
}
}
type
TerminalTask
struct
{
type
TerminalTask
struct
{
I
d
string
`json:"id"`
I
D
string
`json:"id"`
Name
string
`json:"name"`
Name
string
`json:"name"`
Args
string
`json:"args"`
Args
string
`json:"args"`
IsFinished
bool
IsFinished
bool
...
...
pkg/model/users.go
View file @
cde63548
...
@@ -36,10 +36,10 @@ type User struct {
...
@@ -36,10 +36,10 @@ type User struct {
}
}
type
TokenUser
struct
{
type
TokenUser
struct
{
UserI
d
string
`json:"user"`
UserI
D
string
`json:"user"`
UserName
string
`json:"username"`
UserName
string
`json:"username"`
AssetI
d
string
`json:"asset"`
AssetI
D
string
`json:"asset"`
Hostname
string
`json:"hostname"`
Hostname
string
`json:"hostname"`
SystemUserI
d
string
`json:"system_user"`
SystemUserI
D
string
`json:"system_user"`
SystemUserName
string
`json:"system_user_name"`
SystemUserName
string
`json:"system_user_name"`
}
}
pkg/proxy/proxy.go
View file @
cde63548
...
@@ -24,7 +24,7 @@ type ProxyServer struct {
...
@@ -24,7 +24,7 @@ type ProxyServer struct {
// getSystemUserAuthOrManualSet 获取系统用户的认证信息或手动设置
// getSystemUserAuthOrManualSet 获取系统用户的认证信息或手动设置
func
(
p
*
ProxyServer
)
getSystemUserAuthOrManualSet
()
{
func
(
p
*
ProxyServer
)
getSystemUserAuthOrManualSet
()
{
info
:=
service
.
GetSystemUserAssetAuthInfo
(
p
.
SystemUser
.
I
d
,
p
.
Asset
.
Id
)
info
:=
service
.
GetSystemUserAssetAuthInfo
(
p
.
SystemUser
.
I
D
,
p
.
Asset
.
ID
)
p
.
SystemUser
.
Password
=
info
.
Password
p
.
SystemUser
.
Password
=
info
.
Password
p
.
SystemUser
.
PrivateKey
=
info
.
PrivateKey
p
.
SystemUser
.
PrivateKey
=
info
.
PrivateKey
needManualSet
:=
false
needManualSet
:=
false
...
@@ -82,7 +82,7 @@ func (p *ProxyServer) checkProtocolIsGraph() bool {
...
@@ -82,7 +82,7 @@ func (p *ProxyServer) checkProtocolIsGraph() bool {
// validatePermission 检查是否有权限连接
// validatePermission 检查是否有权限连接
func
(
p
*
ProxyServer
)
validatePermission
()
bool
{
func
(
p
*
ProxyServer
)
validatePermission
()
bool
{
return
service
.
ValidateUserAssetPermission
(
return
service
.
ValidateUserAssetPermission
(
p
.
User
.
ID
,
p
.
Asset
.
I
d
,
p
.
SystemUser
.
Id
,
"connect"
,
p
.
User
.
ID
,
p
.
Asset
.
I
D
,
p
.
SystemUser
.
ID
,
"connect"
,
)
)
}
}
...
@@ -149,7 +149,7 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err
...
@@ -149,7 +149,7 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err
// sendConnectingMsg 发送连接信息
// sendConnectingMsg 发送连接信息
func
(
p
*
ProxyServer
)
sendConnectingMsg
(
done
chan
struct
{},
delayDuration
time
.
Duration
)
{
func
(
p
*
ProxyServer
)
sendConnectingMsg
(
done
chan
struct
{},
delayDuration
time
.
Duration
)
{
delay
:=
0.0
delay
:=
0.0
msg
:=
fmt
.
Sprintf
(
i18n
.
T
(
"Connecting to %s@%s %.1f"
),
p
.
SystemUser
.
Username
,
p
.
Asset
.
I
p
,
delay
)
msg
:=
fmt
.
Sprintf
(
i18n
.
T
(
"Connecting to %s@%s %.1f"
),
p
.
SystemUser
.
Username
,
p
.
Asset
.
I
P
,
delay
)
utils
.
IgnoreErrWriteString
(
p
.
UserConn
,
msg
)
utils
.
IgnoreErrWriteString
(
p
.
UserConn
,
msg
)
for
int
(
delay
)
<
int
(
delayDuration
/
time
.
Second
)
{
for
int
(
delay
)
<
int
(
delayDuration
/
time
.
Second
)
{
select
{
select
{
...
...
pkg/proxy/recorder.go
View file @
cde63548
...
@@ -119,13 +119,13 @@ func (r *ReplyRecorder) Record(b []byte) {
...
@@ -119,13 +119,13 @@ func (r *ReplyRecorder) Record(b []byte) {
}
}
func
(
r
*
ReplyRecorder
)
prepare
()
{
func
(
r
*
ReplyRecorder
)
prepare
()
{
sessionI
d
:=
r
.
sessionID
sessionI
D
:=
r
.
sessionID
rootPath
:=
config
.
GetConf
()
.
RootPath
rootPath
:=
config
.
GetConf
()
.
RootPath
today
:=
time
.
Now
()
.
UTC
()
.
Format
(
"2006-01-02"
)
today
:=
time
.
Now
()
.
UTC
()
.
Format
(
"2006-01-02"
)
gzFileName
:=
sessionI
d
+
".replay.gz"
gzFileName
:=
sessionI
D
+
".replay.gz"
replayDir
:=
filepath
.
Join
(
rootPath
,
"data"
,
"replays"
,
today
)
replayDir
:=
filepath
.
Join
(
rootPath
,
"data"
,
"replays"
,
today
)
r
.
absFilePath
=
filepath
.
Join
(
replayDir
,
sessionI
d
)
r
.
absFilePath
=
filepath
.
Join
(
replayDir
,
sessionI
D
)
r
.
AbsGzFilePath
=
filepath
.
Join
(
replayDir
,
gzFileName
)
r
.
AbsGzFilePath
=
filepath
.
Join
(
replayDir
,
gzFileName
)
r
.
Target
=
strings
.
Join
([]
string
{
today
,
gzFileName
},
"/"
)
r
.
Target
=
strings
.
Join
([]
string
{
today
,
gzFileName
},
"/"
)
r
.
timeStartNano
=
time
.
Now
()
.
UnixNano
()
r
.
timeStartNano
=
time
.
Now
()
.
UnixNano
()
...
...
pkg/proxy/sessmanager.go
View file @
cde63548
...
@@ -17,7 +17,7 @@ func HandleSessionTask(task model.TerminalTask) {
...
@@ -17,7 +17,7 @@ func HandleSessionTask(task model.TerminalTask) {
switch
task
.
Name
{
switch
task
.
Name
{
case
"kill_session"
:
case
"kill_session"
:
KillSession
(
task
.
Args
)
KillSession
(
task
.
Args
)
service
.
FinishTask
(
task
.
I
d
)
service
.
FinishTask
(
task
.
I
D
)
default
:
default
:
}
}
...
@@ -44,14 +44,14 @@ func GetAliveSessions() []string {
...
@@ -44,14 +44,14 @@ func GetAliveSessions() []string {
func
RemoveSession
(
sw
*
SwitchSession
)
{
func
RemoveSession
(
sw
*
SwitchSession
)
{
lock
.
Lock
()
lock
.
Lock
()
defer
lock
.
Unlock
()
defer
lock
.
Unlock
()
delete
(
sessionMap
,
sw
.
I
d
)
delete
(
sessionMap
,
sw
.
I
D
)
finishSession
(
sw
)
finishSession
(
sw
)
}
}
func
AddSession
(
sw
*
SwitchSession
)
{
func
AddSession
(
sw
*
SwitchSession
)
{
lock
.
Lock
()
lock
.
Lock
()
defer
lock
.
Unlock
()
defer
lock
.
Unlock
()
sessionMap
[
sw
.
I
d
]
=
sw
sessionMap
[
sw
.
I
D
]
=
sw
}
}
func
CreateSession
(
p
*
ProxyServer
)
(
sw
*
SwitchSession
,
err
error
)
{
func
CreateSession
(
p
*
ProxyServer
)
(
sw
*
SwitchSession
,
err
error
)
{
...
@@ -67,7 +67,7 @@ func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) {
...
@@ -67,7 +67,7 @@ func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) {
return
return
}
}
// 获取系统用户的过滤规则,并设置
// 获取系统用户的过滤规则,并设置
cmdRules
,
err
:=
service
.
GetSystemUserFilterRules
(
p
.
SystemUser
.
I
d
)
cmdRules
,
err
:=
service
.
GetSystemUserFilterRules
(
p
.
SystemUser
.
I
D
)
if
err
!=
nil
{
if
err
!=
nil
{
msg
:=
i18n
.
T
(
"Connect with api server failed"
)
msg
:=
i18n
.
T
(
"Connect with api server failed"
)
msg
=
utils
.
WrapperWarn
(
msg
)
msg
=
utils
.
WrapperWarn
(
msg
)
...
@@ -93,6 +93,6 @@ func postSession(s *SwitchSession) bool {
...
@@ -93,6 +93,6 @@ func postSession(s *SwitchSession) bool {
func
finishSession
(
s
*
SwitchSession
)
{
func
finishSession
(
s
*
SwitchSession
)
{
data
:=
s
.
MapData
()
data
:=
s
.
MapData
()
service
.
FinishSession
(
data
)
service
.
FinishSession
(
data
)
service
.
FinishReply
(
s
.
I
d
)
service
.
FinishReply
(
s
.
I
D
)
logger
.
Debugf
(
"Finish session: %s"
,
s
.
I
d
)
logger
.
Debugf
(
"Finish session: %s"
,
s
.
I
D
)
}
}
pkg/proxy/switch.go
View file @
cde63548
...
@@ -23,7 +23,7 @@ func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) {
...
@@ -23,7 +23,7 @@ func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) {
}
}
type
SwitchSession
struct
{
type
SwitchSession
struct
{
I
d
string
I
D
string
p
*
ProxyServer
p
*
ProxyServer
DateStart
string
DateStart
string
...
@@ -45,11 +45,11 @@ type SwitchSession struct {
...
@@ -45,11 +45,11 @@ type SwitchSession struct {
}
}
func
(
s
*
SwitchSession
)
Initial
()
{
func
(
s
*
SwitchSession
)
Initial
()
{
s
.
I
d
=
uuid
.
NewV4
()
.
String
()
s
.
I
D
=
uuid
.
NewV4
()
.
String
()
s
.
DateStart
=
time
.
Now
()
.
UTC
()
.
Format
(
"2006-01-02 15:04:05 +0000"
)
s
.
DateStart
=
time
.
Now
()
.
UTC
()
.
Format
(
"2006-01-02 15:04:05 +0000"
)
s
.
MaxIdleTime
=
config
.
GetConf
()
.
MaxIdleTime
s
.
MaxIdleTime
=
config
.
GetConf
()
.
MaxIdleTime
s
.
cmdRecorder
=
NewCommandRecorder
(
s
.
I
d
)
s
.
cmdRecorder
=
NewCommandRecorder
(
s
.
I
D
)
s
.
replayRecorder
=
NewReplyRecord
(
s
.
I
d
)
s
.
replayRecorder
=
NewReplyRecord
(
s
.
I
D
)
s
.
parser
=
newParser
()
s
.
parser
=
newParser
()
s
.
ctx
,
s
.
cancel
=
context
.
WithCancel
(
context
.
Background
())
s
.
ctx
,
s
.
cancel
=
context
.
WithCancel
(
context
.
Background
())
}
}
...
@@ -92,8 +92,8 @@ func (s *SwitchSession) generateCommandResult(command [2]string) *model.Command
...
@@ -92,8 +92,8 @@ func (s *SwitchSession) generateCommandResult(command [2]string) *model.Command
}
}
return
&
model
.
Command
{
return
&
model
.
Command
{
SessionI
d
:
s
.
Id
,
SessionI
D
:
s
.
ID
,
OrgI
d
:
s
.
p
.
Asset
.
OrgID
,
OrgI
D
:
s
.
p
.
Asset
.
OrgID
,
Input
:
input
,
Input
:
input
,
Output
:
output
,
Output
:
output
,
User
:
s
.
p
.
User
.
Username
,
User
:
s
.
p
.
User
.
Username
,
...
@@ -123,11 +123,11 @@ func (s *SwitchSession) SetFilterRules(cmdRules []model.SystemUserFilterRule) {
...
@@ -123,11 +123,11 @@ func (s *SwitchSession) SetFilterRules(cmdRules []model.SystemUserFilterRule) {
func
(
s
*
SwitchSession
)
Bridge
(
userConn
UserConnection
,
srvConn
srvconn
.
ServerConnection
)
(
err
error
)
{
func
(
s
*
SwitchSession
)
Bridge
(
userConn
UserConnection
,
srvConn
srvconn
.
ServerConnection
)
(
err
error
)
{
winCh
:=
userConn
.
WinCh
()
winCh
:=
userConn
.
WinCh
()
// 将ReadWriter转换为Channel读写
// 将ReadWriter转换为Channel读写
s
.
srvTran
=
NewDirectTransport
(
s
.
I
d
,
srvConn
)
s
.
srvTran
=
NewDirectTransport
(
s
.
I
D
,
srvConn
)
s
.
userTran
=
NewDirectTransport
(
s
.
I
d
,
userConn
)
s
.
userTran
=
NewDirectTransport
(
s
.
I
D
,
userConn
)
defer
func
()
{
defer
func
()
{
logger
.
Info
(
"Session bridge done: "
,
s
.
I
d
)
logger
.
Info
(
"Session bridge done: "
,
s
.
I
D
)
s
.
postBridge
()
s
.
postBridge
()
}()
}()
...
@@ -190,7 +190,7 @@ func (s *SwitchSession) MapData() map[string]interface{} {
...
@@ -190,7 +190,7 @@ func (s *SwitchSession) MapData() map[string]interface{} {
dataEnd
=
s
.
DateEnd
dataEnd
=
s
.
DateEnd
}
}
return
map
[
string
]
interface
{}{
return
map
[
string
]
interface
{}{
"id"
:
s
.
I
d
,
"id"
:
s
.
I
D
,
"user"
:
s
.
p
.
User
.
Name
,
"user"
:
s
.
p
.
User
.
Name
,
"asset"
:
s
.
p
.
Asset
.
Hostname
,
"asset"
:
s
.
p
.
Asset
.
Hostname
,
"org_id"
:
s
.
p
.
Asset
.
OrgID
,
"org_id"
:
s
.
p
.
Asset
.
OrgID
,
...
...
pkg/service/init.go
View file @
cde63548
...
@@ -89,7 +89,6 @@ func LoadConfigFromServer() (err error) {
...
@@ -89,7 +89,6 @@ func LoadConfigFromServer() (err error) {
func
KeepSyncConfigWithServer
()
{
func
KeepSyncConfigWithServer
()
{
for
{
for
{
logger
.
Debug
(
"Sync config with server"
)
err
:=
LoadConfigFromServer
()
err
:=
LoadConfigFromServer
()
if
err
!=
nil
{
if
err
!=
nil
{
logger
.
Warn
(
"Sync config with server error: "
,
err
)
logger
.
Warn
(
"Sync config with server error: "
,
err
)
...
...
pkg/service/perms.go
View file @
cde63548
...
@@ -20,12 +20,12 @@ func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) {
...
@@ -20,12 +20,12 @@ func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) {
return
return
}
}
func
GetUserNodes
(
userI
d
,
cachePolicy
string
)
(
nodes
model
.
NodeList
)
{
func
GetUserNodes
(
userI
D
,
cachePolicy
string
)
(
nodes
model
.
NodeList
)
{
if
cachePolicy
==
""
{
if
cachePolicy
==
""
{
cachePolicy
=
"0"
cachePolicy
=
"0"
}
}
payload
:=
map
[
string
]
string
{
"cache_policy"
:
cachePolicy
}
payload
:=
map
[
string
]
string
{
"cache_policy"
:
cachePolicy
}
Url
:=
fmt
.
Sprintf
(
UserNodesAssetsURL
,
userI
d
)
Url
:=
fmt
.
Sprintf
(
UserNodesAssetsURL
,
userI
D
)
err
:=
authClient
.
Get
(
Url
,
&
nodes
,
payload
)
err
:=
authClient
.
Get
(
Url
,
&
nodes
,
payload
)
if
err
!=
nil
{
if
err
!=
nil
{
logger
.
Error
(
"GetUserNodes err"
)
logger
.
Error
(
"GetUserNodes err"
)
...
@@ -33,11 +33,11 @@ func GetUserNodes(userId, cachePolicy string) (nodes model.NodeList) {
...
@@ -33,11 +33,11 @@ func GetUserNodes(userId, cachePolicy string) (nodes model.NodeList) {
return
return
}
}
func
ValidateUserAssetPermission
(
userI
d
,
assetId
,
systemUserId
,
action
string
)
bool
{
func
ValidateUserAssetPermission
(
userI
D
,
assetID
,
systemUserID
,
action
string
)
bool
{
payload
:=
map
[
string
]
string
{
payload
:=
map
[
string
]
string
{
"user_id"
:
userI
d
,
"user_id"
:
userI
D
,
"asset_id"
:
assetI
d
,
"asset_id"
:
assetI
D
,
"system_user_id"
:
systemUserI
d
,
"system_user_id"
:
systemUserI
D
,
"action_name"
:
action
,
"action_name"
:
action
,
}
}
Url
:=
ValidateUserAssetPermissionURL
Url
:=
ValidateUserAssetPermissionURL
...
...
pkg/srvconn/connmanager.go
View file @
cde63548
...
@@ -132,7 +132,7 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
...
@@ -132,7 +132,7 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
}
}
}
}
sshConfig
:=
SSHClientConfig
{
sshConfig
:=
SSHClientConfig
{
Host
:
asset
.
I
p
,
Host
:
asset
.
I
P
,
Port
:
strconv
.
Itoa
(
asset
.
Port
),
Port
:
strconv
.
Itoa
(
asset
.
Port
),
User
:
systemUser
.
Username
,
User
:
systemUser
.
Username
,
Password
:
systemUser
.
Password
,
Password
:
systemUser
.
Password
,
...
@@ -145,13 +145,13 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
...
@@ -145,13 +145,13 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
}
}
func
NewClient
(
user
*
model
.
User
,
asset
*
model
.
Asset
,
systemUser
*
model
.
SystemUser
,
timeout
time
.
Duration
)
(
client
*
gossh
.
Client
,
err
error
)
{
func
NewClient
(
user
*
model
.
User
,
asset
*
model
.
Asset
,
systemUser
*
model
.
SystemUser
,
timeout
time
.
Duration
)
(
client
*
gossh
.
Client
,
err
error
)
{
key
:=
fmt
.
Sprintf
(
"%s_%s_%s"
,
user
.
ID
,
asset
.
I
d
,
systemUser
.
Id
)
key
:=
fmt
.
Sprintf
(
"%s_%s_%s"
,
user
.
ID
,
asset
.
I
D
,
systemUser
.
ID
)
clientLock
.
RLock
()
clientLock
.
RLock
()
client
,
ok
:=
sshClients
[
key
]
client
,
ok
:=
sshClients
[
key
]
clientLock
.
RUnlock
()
clientLock
.
RUnlock
()
var
u
=
user
.
Username
var
u
=
user
.
Username
var
ip
=
asset
.
I
p
var
ip
=
asset
.
I
P
var
sysName
=
systemUser
.
Username
var
sysName
=
systemUser
.
Username
if
ok
{
if
ok
{
...
@@ -175,7 +175,7 @@ func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUse
...
@@ -175,7 +175,7 @@ func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUse
}
}
func
GetClientFromCache
(
user
*
model
.
User
,
asset
*
model
.
Asset
,
systemUser
*
model
.
SystemUser
)
(
client
*
gossh
.
Client
)
{
func
GetClientFromCache
(
user
*
model
.
User
,
asset
*
model
.
Asset
,
systemUser
*
model
.
SystemUser
)
(
client
*
gossh
.
Client
)
{
key
:=
fmt
.
Sprintf
(
"%s_%s_%s"
,
user
.
ID
,
asset
.
I
d
,
systemUser
.
Id
)
key
:=
fmt
.
Sprintf
(
"%s_%s_%s"
,
user
.
ID
,
asset
.
I
D
,
systemUser
.
ID
)
clientLock
.
Lock
()
clientLock
.
Lock
()
defer
clientLock
.
Unlock
()
defer
clientLock
.
Unlock
()
client
,
ok
:=
sshClients
[
key
]
client
,
ok
:=
sshClients
[
key
]
...
...
pkg/srvconn/telnetconn.go
View file @
cde63548
...
@@ -119,11 +119,11 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
...
@@ -119,11 +119,11 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
return
AuthFailed
return
AuthFailed
}
else
if
usernamePattern
.
Match
(
data
)
{
}
else
if
usernamePattern
.
Match
(
data
)
{
_
,
_
=
tc
.
conn
.
Write
([]
byte
(
tc
.
SystemUser
.
Username
+
"
\r\n
"
))
_
,
_
=
tc
.
conn
.
Write
([]
byte
(
tc
.
SystemUser
.
Username
+
"
\r\n
"
))
logger
.
Debug
(
"
usernamePattern "
,
tc
.
User
)
logger
.
Debug
(
"
Username pattern match: "
,
data
)
return
AuthPartial
return
AuthPartial
}
else
if
passwordPattern
.
Match
(
data
)
{
}
else
if
passwordPattern
.
Match
(
data
)
{
_
,
_
=
tc
.
conn
.
Write
([]
byte
(
tc
.
SystemUser
.
Password
+
"
\r\n
"
))
_
,
_
=
tc
.
conn
.
Write
([]
byte
(
tc
.
SystemUser
.
Password
+
"
\r\n
"
))
logger
.
Debug
(
"
passwordPattern "
,
tc
.
SystemUser
.
Password
)
logger
.
Debug
(
"
Password pattern "
,
data
)
return
AuthPartial
return
AuthPartial
}
else
if
successPattern
.
Match
(
data
)
{
}
else
if
successPattern
.
Match
(
data
)
{
return
AuthSuccess
return
AuthSuccess
...
@@ -137,7 +137,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
...
@@ -137,7 +137,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
}
}
func
(
tc
*
ServerTelnetConnection
)
Connect
(
h
,
w
int
,
term
string
)
(
err
error
)
{
func
(
tc
*
ServerTelnetConnection
)
Connect
(
h
,
w
int
,
term
string
)
(
err
error
)
{
var
ip
=
tc
.
Asset
.
I
p
var
ip
=
tc
.
Asset
.
I
P
var
port
=
strconv
.
Itoa
(
tc
.
Asset
.
Port
)
var
port
=
strconv
.
Itoa
(
tc
.
Asset
.
Port
)
conn
,
err
:=
net
.
DialTimeout
(
"tcp"
,
net
.
JoinHostPort
(
ip
,
port
),
tc
.
Timeout
())
conn
,
err
:=
net
.
DialTimeout
(
"tcp"
,
net
.
JoinHostPort
(
ip
,
port
),
tc
.
Timeout
())
if
err
!=
nil
{
if
err
!=
nil
{
...
...
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