jumpserver/terminal/ssh_server.py

333 lines
11 KiB
Python
Raw Normal View History

2016-09-20 15:34:37 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2016-09-25 15:11:09 +00:00
#
__version__ = '0.3.3'
2016-09-24 13:47:10 +00:00
import sys
import os
2016-09-20 16:43:19 +00:00
import base64
2016-09-25 15:11:09 +00:00
import time
2016-09-20 16:43:19 +00:00
from binascii import hexlify
import sys
import threading
2016-09-25 16:05:23 +00:00
from multiprocessing.process import Process
2016-09-20 16:43:19 +00:00
import traceback
2016-09-22 15:26:44 +00:00
import tty
import termios
2016-09-24 13:47:10 +00:00
import struct
import fcntl
import signal
import socket
import select
2016-09-22 15:26:44 +00:00
import errno
2016-09-20 16:43:19 +00:00
import paramiko
2016-09-24 16:11:31 +00:00
import django
2016-09-20 16:43:19 +00:00
2016-09-24 16:11:31 +00:00
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
2016-09-24 16:21:32 +00:00
APP_DIR = os.path.join(os.path.dirname(BASE_DIR), 'apps')
2016-09-24 16:11:31 +00:00
sys.path.append(APP_DIR)
os.environ['DJANGO_SETTINGS_MODULE'] = 'jumpserver.settings'
2016-09-24 13:47:10 +00:00
2016-09-24 16:11:31 +00:00
try:
django.setup()
except IndexError:
pass
2016-09-20 16:43:19 +00:00
2016-09-24 16:11:31 +00:00
from django.conf import settings
2016-09-24 16:21:32 +00:00
from users.utils import ssh_key_gen, check_user_is_valid
2016-09-25 15:11:09 +00:00
from utils import get_logger, SSHServerException
2016-09-25 11:53:55 +00:00
2016-09-20 16:43:19 +00:00
2016-09-24 16:11:31 +00:00
logger = get_logger(__name__)
2016-09-20 16:43:19 +00:00
2016-09-25 15:11:09 +00:00
class SSHServer(paramiko.ServerInterface):
2016-09-24 16:21:32 +00:00
host_key_path = os.path.join(BASE_DIR, 'host_rsa_key')
2016-09-25 11:53:55 +00:00
channel_pools = []
2016-09-20 16:43:19 +00:00
2016-09-25 11:53:55 +00:00
def __init__(self, client, addr):
2016-09-20 16:43:19 +00:00
self.event = threading.Event()
2016-09-25 11:53:55 +00:00
self.client = client
self.addr = addr
2016-09-25 15:11:09 +00:00
self.username = None
2016-09-24 16:11:31 +00:00
self.user = None
2016-09-25 15:11:09 +00:00
self.channel_width = None
self.channel_height = None
2016-09-24 16:11:31 +00:00
@classmethod
def host_key(cls):
return cls.get_host_key()
2016-09-20 16:43:19 +00:00
2016-09-24 13:47:10 +00:00
@classmethod
def get_host_key(cls):
2016-09-24 16:11:31 +00:00
logger.debug("Get ssh server host key")
if not os.path.isfile(cls.host_key_path):
cls.host_key_gen()
return paramiko.RSAKey(filename=cls.host_key_path)
2016-09-24 13:47:10 +00:00
@classmethod
def host_key_gen(cls):
2016-09-24 16:11:31 +00:00
logger.debug("Generate ssh server host key")
2016-09-24 13:47:10 +00:00
ssh_key, ssh_pub_key = ssh_key_gen()
2016-09-24 16:11:31 +00:00
with open(cls.host_key_path, 'w') as f:
f.write(ssh_key)
2016-09-24 13:47:10 +00:00
2016-09-20 16:43:19 +00:00
def check_channel_request(self, kind, chanid):
if kind == 'session':
return paramiko.OPEN_SUCCEEDED
return paramiko.OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED
def check_auth_password(self, username, password):
2016-09-25 15:11:09 +00:00
self.user = user = check_user_is_valid(username=username, password=password)
self.username = username = user.username
2016-09-24 16:11:31 +00:00
if self.user:
2016-09-25 15:11:09 +00:00
logger.info('Accepted password for %(username)s from %(host)s port %(port)s ' % {
'username': username,
2016-09-25 11:53:55 +00:00
'host': self.addr[0],
'port': self.addr[1],
})
2016-09-20 16:43:19 +00:00
return paramiko.AUTH_SUCCESSFUL
2016-09-24 16:11:31 +00:00
else:
2016-09-25 15:11:09 +00:00
logger.info('Authentication password failed for %(username)s from %(host)s port %(port)s ' % {
'username': username,
2016-09-25 11:53:55 +00:00
'host': self.addr[0],
'port': self.addr[1],
})
2016-09-20 16:43:19 +00:00
return paramiko.AUTH_FAILED
2016-09-24 16:11:31 +00:00
def check_auth_publickey(self, username, public_key):
2016-09-25 15:11:09 +00:00
self.user = user = check_user_is_valid(username=username, public_key=public_key)
self.username = username = user.username
2016-09-24 16:11:31 +00:00
if self.user:
2016-09-25 15:11:09 +00:00
logger.info('Accepted public key for %(username)s from %(host)s port %(port)s ' % {
'username': username,
2016-09-25 11:53:55 +00:00
'host': self.addr[0],
'port': self.addr[1],
})
2016-09-20 16:43:19 +00:00
return paramiko.AUTH_SUCCESSFUL
2016-09-24 16:11:31 +00:00
else:
2016-09-25 15:11:09 +00:00
logger.info('Authentication public key failed for %(username)s from %(host)s port %(port)s ' % {
'username': username,
2016-09-25 11:53:55 +00:00
'host': self.addr[0],
'port': self.addr[1],
})
2016-09-20 16:43:19 +00:00
return paramiko.AUTH_FAILED
def get_allowed_auths(self, username):
2016-09-24 16:11:31 +00:00
auth_method_list = []
if settings.CONFIG.SSH_PASSWORD_AUTH:
auth_method_list.append('password')
if settings.CONFIG.SSH_PUBLICK_KEY_AUTH:
auth_method_list.append('publickey')
return ','.join(auth_method_list)
2016-09-20 16:43:19 +00:00
def check_channel_shell_request(self, channel):
self.event.set()
2016-09-25 11:53:55 +00:00
self.__class__.channel_pools.append(channel)
2016-09-25 16:05:23 +00:00
channel.username = self.username
channel.addr = self.addr
2016-09-20 16:43:19 +00:00
return True
def check_channel_pty_request(self, channel, term, width, height, pixelwidth,
2016-09-21 16:37:13 +00:00
pixelheight, modes):
2016-09-20 16:43:19 +00:00
return True
2016-09-25 11:53:55 +00:00
def check_channel_window_change_request(self, channel, width, height, pixelwidth, pixelheight):
return True
2016-09-20 16:43:19 +00:00
2016-09-25 13:21:25 +00:00
class BackendServer:
def __init__(self, host, port, username):
self.host = host
self.port = port
self.username = username
self.ssh = None
self.channel = None
2016-09-25 15:11:09 +00:00
def connect(self, term='xterm', width=80, height=24, timeout=10):
2016-09-25 13:21:25 +00:00
self.ssh = ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname=self.host, port=self.port, username=self.username, password=self.host_password,
2016-09-25 15:11:09 +00:00
pkey=self.host_private_key, look_for_keys=False, allow_agent=True, compress=True, timeout=timeout)
2016-09-25 13:21:25 +00:00
self.channel = channel = ssh.invoke_shell(term=term, width=width, height=height)
2016-09-25 16:05:23 +00:00
logger.info('Connect backend server %(username)s@%(host)s:%(port)s successfully' % {
2016-09-25 15:11:09 +00:00
'username': self.username,
'host': self.host,
'port': self.port,
})
channel.settimeout(100)
2016-09-25 16:05:23 +00:00
channel.host = self.host
channel.port = self.port
channel.username = self.username
2016-09-25 13:21:25 +00:00
return channel
@property
def host_password(self):
return 'redhat'
@property
def host_private_key(self):
2016-09-25 15:11:09 +00:00
return None
2016-09-25 13:21:25 +00:00
class Navigation:
2016-09-25 15:11:09 +00:00
def __init__(self, username, client_channel):
2016-09-25 13:21:25 +00:00
self.username = username
2016-09-25 15:11:09 +00:00
self.client_channel = client_channel
def display_banner(self):
client_channel = self.client_channel
client_channel.send('\r\n\r\n\t\tWelcome to use Jumpserver open source system !\r\n\r\n')
2016-09-25 16:05:23 +00:00
client_channel.send('If you find some bug please contact us <ibuler@qq.com>\r\n')
client_channel.send('See more at https://www.jumpserver.org\r\n')
2016-09-25 15:11:09 +00:00
# client_channel.send(self.username)
2016-09-25 13:21:25 +00:00
def display(self):
2016-09-25 15:11:09 +00:00
self.display_banner()
def return_to_connect(self):
2016-09-25 13:21:25 +00:00
pass
2016-09-25 15:11:09 +00:00
class JumpServer:
2016-09-25 15:38:42 +00:00
backend_server_pools = []
backend_channel_pools = []
client_channel_pools = []
2016-09-25 15:11:09 +00:00
def __init__(self):
self.listen_host = '0.0.0.0'
self.listen_port = 2222
self.sock = None
2016-09-22 15:26:44 +00:00
2016-09-25 15:11:09 +00:00
def display_navigation(self, username, client_channel):
nav = Navigation(username, client_channel)
nav.display()
return '127.0.0.1', 22, 'root'
2016-09-25 13:21:25 +00:00
2016-09-25 15:11:09 +00:00
def get_client_channel(self, client, addr):
transport = paramiko.Transport(client, gss_kex=False)
transport.set_gss_host(socket.getfqdn(""))
try:
transport.load_server_moduli()
except:
logger.warning('Failed to load moduli -- gex will be unsupported.')
raise
2016-09-25 13:21:25 +00:00
2016-09-25 15:11:09 +00:00
transport.add_server_key(SSHServer.get_host_key())
ssh_server = SSHServer(client, addr)
try:
transport.start_server(server=ssh_server)
except paramiko.SSHException:
logger.warning('SSH negotiation failed.')
2016-09-25 15:38:42 +00:00
client_channel = transport.accept(20)
self.__class__.client_channel_pools.append(client_channel)
2016-09-25 15:11:09 +00:00
if client_channel is None:
logger.warning('No channel get.')
raise SSHServerException('No channel get.')
if not ssh_server.event.is_set():
logger.warning('Client never asked for a shell.')
raise SSHServerException('Client never asked for a shell.')
return client_channel
def get_backend_channel(self, host, port, username):
backend_server = BackendServer(host, port, username)
2016-09-25 15:38:42 +00:00
backend_channel = backend_server.connect()
self.__class__.backend_server_pools.append(backend_server)
self.__class__.backend_channel_pools.append(backend_channel)
2016-09-25 15:11:09 +00:00
if not backend_channel:
logger.warning('Connect %(username)s@%(host)s:%(port)s failed' % {
'username': username,
'host': host,
'port': port,
})
return backend_channel
2016-09-22 15:26:44 +00:00
def handle_ssh_request(self, client, addr):
2016-09-25 15:11:09 +00:00
logger.info("Get ssh request from %(host)s:%(port)s" % {
2016-09-25 11:53:55 +00:00
'host': addr[0],
'port': addr[1],
})
2016-09-20 16:43:19 +00:00
try:
2016-09-25 15:11:09 +00:00
client_channel = self.get_client_channel(client, addr)
2016-09-25 15:38:42 +00:00
host, port, username = self.display_navigation('root', client_channel)
2016-09-25 15:11:09 +00:00
backend_channel = self.get_backend_channel(host, port, username)
2016-09-24 16:11:31 +00:00
2016-09-21 16:37:13 +00:00
while True:
2016-09-25 15:11:09 +00:00
r, w, x = select.select([client_channel, backend_channel], [], [])
2016-09-22 15:56:27 +00:00
2016-09-25 11:53:55 +00:00
if client_channel in r:
2016-09-25 15:38:42 +00:00
client_data = client_channel.recv(1024)
if len(client_data) == 0:
2016-09-25 16:05:23 +00:00
logger.info('Logout from ssh server %(host)s: %(username)s' % {
'host': addr[0],
'username': client_channel.username,
})
2016-09-22 15:26:44 +00:00
break
2016-09-25 15:38:42 +00:00
backend_channel.send(client_data)
2016-09-22 15:26:44 +00:00
2016-09-25 15:11:09 +00:00
if backend_channel in r:
2016-09-25 15:38:42 +00:00
backend_data = backend_channel.recv(1024)
if len(backend_data) == 0:
2016-09-25 16:05:23 +00:00
logger.info('Logout from backend server %(host)s: %(username)s' % {
'host': backend_channel.host,
'username': backend_channel.username,
})
2016-09-22 15:26:44 +00:00
break
2016-09-25 15:38:42 +00:00
client_channel.send(backend_data)
2016-09-25 11:53:55 +00:00
# if len(recv_data) > 20:
# server_data.append('...')
# else:
# server_data.append(recv_data)
# try:
# if repr(server_data[-2]) == u'\r\n':
# result = server_data.pop()
# server_data.pop()
# command = ''.join(server_data)
# server_data = []
# except IndexError:
# pass
2016-09-25 16:05:23 +00:00
# Todo: catch other exception
2016-09-25 15:11:09 +00:00
except IndexError:
2016-09-25 16:05:23 +00:00
logger.info('Close with server %s from %s' % (addr[0], addr[1]))
2016-09-25 13:21:25 +00:00
sys.exit(100)
2016-09-21 16:37:13 +00:00
def listen(self):
2016-09-25 15:11:09 +00:00
self.sock = sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.bind((self.listen_host, self.listen_port))
sock.listen(5)
print(time.ctime())
print('Jumpserver version %s, more see https://www.jumpserver.org' % __version__)
print('Starting ssh server at %(host)s:%(port)s' % {'host': self.listen_host, 'port': self.listen_port})
print('Quit the server with CONTROL-C.')
2016-09-21 16:37:13 +00:00
while True:
try:
client, addr = self.sock.accept()
2016-09-25 16:05:23 +00:00
process = Process(target=self.handle_ssh_request, args=(client, addr))
process.daemon = True
process.start()
2016-09-21 16:37:13 +00:00
except Exception as e:
2016-09-25 15:11:09 +00:00
logger.error('Bind failed: ' + str(e))
2016-09-21 16:37:13 +00:00
traceback.print_exc()
sys.exit(1)
2016-09-20 16:43:19 +00:00
2016-09-21 16:37:13 +00:00
if __name__ == '__main__':
2016-09-25 15:11:09 +00:00
server = JumpServer()
2016-09-20 16:43:19 +00:00
try:
2016-09-21 16:37:13 +00:00
server.listen()
except KeyboardInterrupt:
2016-09-20 16:43:19 +00:00
sys.exit(1)