jumpserver/terminal/ssh_server.py

282 lines
9.1 KiB
Python
Raw Normal View History

2016-09-20 15:34:37 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
2016-09-24 13:47:10 +00:00
import sys
import os
2016-09-20 16:43:19 +00:00
import base64
from binascii import hexlify
import sys
import threading
2016-09-25 11:53:55 +00:00
from multiprocessing 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
from paramiko.py3compat import b, u, decodebytes
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 11:53:55 +00:00
from utils import get_logger
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 03:30:02 +00:00
class SSHServerInterface(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-24 16:11:31 +00:00
self.user = None
@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-24 16:11:31 +00:00
self.user = check_user_is_valid(username=username, password=password)
if self.user:
2016-09-25 11:53:55 +00:00
logger.info('Accepted password for %(user)s from %(host)s port %(port)s ' % {
'user': username,
'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 11:53:55 +00:00
logger.info('Authentication password failed for %(user)s from %(host)s port %(port)s ' % {
'user': username,
'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):
self.user = check_user_is_valid(username=username, public_key=public_key)
if self.user:
2016-09-25 11:53:55 +00:00
logger.info('Accepted public key for %(user)s from %(host)s port %(port)s ' % {
'user': username,
'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 11:53:55 +00:00
logger.info('Authentication public key failed for %(user)s from %(host)s port %(port)s ' % {
'user': username,
'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-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
def connect(self, term='xterm', width=80, height=24):
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,
pkey=self.host_private_key, look_for_keys=False, allow_agent=True, compress=True)
self.channel = channel = ssh.invoke_shell(term=term, width=width, height=height)
return channel
@property
def host_password(self):
return 'redhat'
@property
def host_private_key(self):
return 'redhat'
class Navigation:
def __init__(self, username):
self.username = username
def display(self):
pass
2016-09-21 16:37:13 +00:00
class SSHServer:
2016-09-24 16:11:31 +00:00
def __init__(self, host='127.0.0.1', port=2200):
2016-09-21 16:37:13 +00:00
self.host = host
self.port = port
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
self.sock.bind((self.host, self.port))
2016-09-22 15:26:44 +00:00
self.server_ssh = None
2016-09-25 11:53:55 +00:00
self.server_channel = None
self.client_channel = None
2016-09-22 15:26:44 +00:00
2016-09-25 13:21:25 +00:00
def invoke_with_backend(self):
pass
def display_navigation(self):
pass
def make_client_channel(self):
pass
2016-09-22 15:26:44 +00:00
def handle_ssh_request(self, client, addr):
2016-09-25 11:53:55 +00:00
logger.info("Get connection from %(host)s:%(port)s" % {
'host': addr[0],
'port': addr[1],
})
2016-09-20 16:43:19 +00:00
try:
2016-09-24 16:11:31 +00:00
transport = paramiko.Transport(client, gss_kex=False)
transport.set_gss_host(socket.getfqdn(""))
2016-09-21 16:37:13 +00:00
try:
2016-09-24 16:11:31 +00:00
transport.load_server_moduli()
2016-09-21 16:37:13 +00:00
except:
2016-09-24 16:11:31 +00:00
logger.warning('(Failed to load moduli -- gex will be unsupported.)')
2016-09-21 16:37:13 +00:00
raise
2016-09-24 16:11:31 +00:00
2016-09-25 03:30:02 +00:00
transport.add_server_key(SSHServerInterface.get_host_key())
2016-09-25 11:53:55 +00:00
ssh_interface = SSHServerInterface(client, addr)
2016-09-21 16:37:13 +00:00
try:
2016-09-25 03:30:02 +00:00
transport.start_server(server=ssh_interface)
2016-09-21 16:37:13 +00:00
except paramiko.SSHException:
print('*** SSH negotiation failed.')
return
2016-09-20 16:43:19 +00:00
2016-09-25 11:53:55 +00:00
self.client_channel = client_channel = transport.accept(20)
2016-09-25 13:21:25 +00:00
# self.client_channel = client_channel = transport.open_session()
# client_channel.get_pty(term='xterm')
2016-09-25 11:53:55 +00:00
if client_channel is None:
2016-09-22 15:26:44 +00:00
print('*** No channel.')
return
print('Authenticated!')
2016-09-25 11:53:55 +00:00
client_channel.settimeout(100)
2016-09-22 15:26:44 +00:00
2016-09-25 11:53:55 +00:00
client_channel.send('\r\n\r\nWelcome to my dorky little BBS!\r\n\r\n')
client_channel.send('We are on fire all the time! Hooray! Candy corn for everyone!\r\n')
client_channel.send('Happy birthday to Robot Dave!\r\n\r\n')
2016-09-24 16:11:31 +00:00
server_channel = self.connect()
2016-09-25 03:30:02 +00:00
if not ssh_interface.event.is_set():
2016-09-22 15:26:44 +00:00
print('*** Client never asked for a shell.')
return
2016-09-25 11:53:55 +00:00
2016-09-21 16:37:13 +00:00
while True:
2016-09-25 11:53:55 +00:00
r, w, x = select.select([client_channel, server_channel], [], [])
2016-09-22 15:56:27 +00:00
2016-09-25 11:53:55 +00:00
if client_channel in r:
data_client = client_channel.recv(1024)
logger.info(data_client)
if len(data_client) == 0:
2016-09-22 15:26:44 +00:00
break
2016-09-25 11:53:55 +00:00
# client_channel.send(data_client)
server_channel.send(data_client)
2016-09-22 15:26:44 +00:00
2016-09-24 16:11:31 +00:00
if server_channel in r:
2016-09-25 11:53:55 +00:00
data_server = server_channel.recv(1024)
if len(data_server) == 0:
2016-09-22 15:26:44 +00:00
break
2016-09-25 11:53:55 +00:00
client_channel.send(data_server)
# 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
except Exception:
logger.info('Close with server %s from %s' % ('127.0.0.1', '127.0.0.1'))
2016-09-25 13:21:25 +00:00
sys.exit(100)
2016-09-21 16:37:13 +00:00
def listen(self):
self.sock.listen(5)
2016-09-24 16:11:31 +00:00
print('Start ssh server %(host)s:%(port)s' % {'host': self.host, 'port': self.port})
2016-09-21 16:37:13 +00:00
while True:
try:
client, addr = self.sock.accept()
print('Listening for connection ...')
2016-09-25 11:53:55 +00:00
# t = threading.Thread(target=self.handle_ssh_request, args=(client, addr))
t = process.Process(target=self.handle_ssh_request, args=(client, addr))
2016-09-24 16:21:32 +00:00
t.daemon = True
t.start()
2016-09-21 16:37:13 +00:00
except Exception as e:
print('*** Bind failed: ' + str(e))
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-24 16:11:31 +00:00
server = SSHServer(host='', port=2200)
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)